/* Lodgy styles
   Base desktop-first styles live in section blocks below.
   Mobile-only differences are grouped in the final max-width: 768px block. */

    /* =========================================================
       RESET & BASE
    ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: #2C2C2A;
      background: #FCFCF9;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* =========================================================
       CSS VARIABLES
    ========================================================= */
    :root {
      --primary:      #FF894D;
      --primary-dark: #E67038;
      --dark:         #2C2C2A;
      --bg:           #F7F7F5;
      --bg-warm:      #FAF9F7;
      --white:        #FFFFFF;
      --muted:        rgba(44,44,42,0.8);
      --border:       #E1E4ED;
      --shadow-sm:    0px 1px 4px rgba(25,33,61,0.08);
      --shadow-xs:    0px 0.5px 4px rgba(25,33,61,0.04);
      --shadow-card:  0px 15px 15px rgba(225,228,237,0.2);
      --shadow-video: 0px 12px 36px rgba(25,33,61,0.18);
      --radius-sm:    6px;
      --radius-md:    8px;
      --radius-lg:    16px;
      --px:           144px;
    }

    /* =========================================================
       BUTTONS
    ========================================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 56px;
      padding: 0 40px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      line-height: 20px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
      white-space: nowrap;
      border: 1px solid transparent;
      text-decoration: none;
    }
    .btn svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s; }
    .btn:hover svg { transform: translateX(2px); }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }
    .btn-primary::after {
      content: '↗';
      font-size: 16px;
      font-weight: 400;
      line-height: 1;
    }
    .btn-primary svg {
      display: none;
    }
    .btn-primary:hover { background: var(--primary-dark); }

    .btn-ghost {
      background: transparent;
      color: var(--dark);
      border: 0 !important;
      border-color: transparent !important;
      box-shadow: none;
    }
    .btn-ghost:hover {
      border: 0 !important;
      border-color: transparent !important;
      box-shadow: none;
    }
    .btn-ghost svg path {
      stroke: currentColor;
    }
    .btn-ghost {
      display: none;
    }
    .hero .btn-ghost {
      display: inline-flex;
    }
    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      color: var(--dark);
    }
    .text-link svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .btn-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .mobile-sticky-cta {
      display: none;
    }
    .reveal {
      opacity: 0;
      transform: translateY(72px);
      transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }
    .reveal-delay-hero-block { transition-delay: 0.22s; }
    .hero-animate {
      opacity: 0;
      transform: translateY(36px);
      transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    .hero-animate.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .hero-animate-delay-1 { transition-delay: 0.12s; }
    .hero-animate-delay-2 { transition-delay: 0.22s; }
    .hero-animate-delay-3 { transition-delay: 0.42s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .hero-animate {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* =========================================================
       HEADER
    ========================================================= */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #FCFCF9;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.02);
      transition: box-shadow 0.3s;
    }
    .header.scrolled { box-shadow: 0px 4px 24px rgba(0,0,0,0.07); }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 25px var(--px);
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .logo img { height: 31px; width: auto; }
    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .nav a {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: var(--dark);
      position: relative;
      transition: color 0.2s;
    }
    .nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1.5px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.2s;
    }
    .nav a:hover { color: var(--primary); }
    .nav a:hover::after { transform: scaleX(1); }

    .header-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .header-login {
      font-size: 16px;
      font-weight: 400;
      color: var(--dark);
      transition: color 0.2s;
    }
    .header-login:hover { color: var(--primary); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px 4px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: flex;
      position: fixed;
      inset: 0;
      background: #FCFCF9;
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
    }
    .mobile-menu::before {
      display: none;
    }
    .mobile-menu-panel {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 18px;
      padding: 104px 24px 32px;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mobile-menu-logo {
      display: inline-flex;
      align-items: center;
      position: absolute;
      top: 16px;
      left: 24px;
      margin-bottom: 0;
    }
    .mobile-menu-logo img {
      height: 31px;
      width: auto;
    }
    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-menu.open::before,
    .mobile-menu.open .mobile-menu-panel {
      transform: translateX(0);
    }
    .mobile-menu a {
      width: 100%;
      font-size: 22px;
      font-weight: 600;
      color: var(--dark);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu-nav {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 6px;
    }
    .mobile-menu-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.2;
      border-bottom: 1px solid rgba(44,44,42,0.08);
    }
    .mobile-menu-nav a::after {
      content: '↗';
      font-size: 20px;
      font-weight: 400;
      color: var(--dark);
      flex-shrink: 0;
      margin-right: 8px;
      transition: color 0.2s;
    }
    .mobile-menu-nav a:hover::after {
      color: var(--primary);
    }
    .mobile-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
      color: var(--dark);
      border-radius: 50%;
      transition: background 0.2s;
    }
    .mobile-close::before,
    .mobile-close::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
    }
    .mobile-close::before { transform: rotate(45deg); }
    .mobile-close::after { transform: rotate(-45deg); }
    .mobile-close:hover { background: var(--bg); }

    /* =========================================================
       HERO
    ========================================================= */
    .hero {

      background: #FCFCF9;
      padding: 61px var(--px) 10px;
      display: flex;
      align-items: flex-end;
      gap: 0;
      min-height: 580px;
      overflow: hidden;
    }
    .hero-text {
      flex: 0 0 467px;
      display: flex;
      flex-direction: column;
      gap: 64px;
      padding-bottom: 0;
      align-self: center;
    }
    .hero-content { display: flex; flex-direction: column; gap: 32px; }
    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      color: var(--dark);
    }
    .hero-sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--dark);
      max-width: 420px;
    }
.hero-image {
    flex: 1;
    height: 445px;
    overflow: visible;
    position: relative;
    align-self: flex-end;
    margin-bottom: -45px;
    margin-left: 55px;
}
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
      transform: translateX(60px) translateY(-20px);
    }

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    background: transparent;
    transform: scale(1.35);
    transform-origin: center bottom;
    clip-path: inset(0% 25% 0% 25%);
}

    /* =========================================================
       LOGO STRIP
    ========================================================= */
    .logo-strip {
     background: #FCFCF9;
      padding: 50px 0;
      position: relative;
      overflow: hidden;
    }
    .logo-strip-viewport {
      overflow: hidden;
      position: relative;
      margin: 0 167px;
      -webkit-mask-image: none;
      mask-image: none;
    }
    .logo-strip-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .logo-strip-track:hover { animation-play-state: paused; }
    .logo-strip-group {
      display: flex;
      align-items: center;
      gap: 80px;
      padding-right: 80px;
    }
    .logo-strip-group img {
      width: auto;
      max-width: none;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s, opacity 0.3s;
    }
    /* Hauteurs ajustées par densité visuelle */
    .logo-strip-group img:nth-child(1) { height: 19px; } /* Makita — script dense */
    .logo-strip-group img:nth-child(2) { height: 21px; } /* Philips */
    .logo-strip-group img:nth-child(3) { height: 23px; } /* Schneider */
    .logo-strip-group img:nth-child(4) { height: 20px; } /* Geberit */
    .logo-strip-group img:nth-child(5) { height: 25px; } /* Legrand */
    .logo-strip-group img:nth-child(6) { height: 21px; } /* Bosch */
    .logo-strip-group img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
    .logo-fade {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 260px;
      pointer-events: none;
      z-index: 3;
    }
    .logo-fade-left {
      left: 0;
      background: linear-gradient(to right, #FCFCF9 40%, transparent);
    }
    .logo-fade-right {
      right: 0;
      background: linear-gradient(to left, #FCFCF9 40%, transparent);
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* =========================================================
       BG CARD SECTIONS
    ========================================================= */
    .bg-section-outer {

      background: #FCFCF9;
      padding: 44px var(--px) 73px;
    }
    .bg-section-outer.warm { background: var(--bg-warm); }

    .bg-card {
      background: var(--bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      align-items: center;
      position: relative;
      height: 490px;
      padding: 72px;
      gap: 120px;
    }
    .bg-card.reverse { flex-direction: row-reverse; }
    .bg-card.reverse .bg-card-content { padding-left: 48px; }
    .bg-card.reverse .bg-card-image { padding-right: 48px; justify-content: flex-end; }

    .bg-card-image {
      position: relative;
      z-index: 1;
      flex: 0 0 45%;
      height: 346px;
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .bg-card-image img {
      max-height: 100%;
      width: 100%;
      object-fit: contain;
      object-position: bottom;
    }

.bg-card-image video {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
    transform: translate(-25px, 20px);
}
  
/* vidéo à gauche → gradient côté droit (texte) */
    .bg-card.bg-card-video {
      background: var(--bg) radial-gradient(ellipse at bottom right, rgba(230, 223, 214, 0.25) 0%, transparent 45%);
    }
    /* vidéo à droite → gradient côté gauche (texte) */
    .bg-card.bg-card-video-2 {
      background: var(--bg) radial-gradient(ellipse at bottom left, rgba(230, 223, 214, 0.25) 0%, transparent 45%);
    }

.bg-card-video .bg-card-image {
    flex: 0 0 49%;
    height: 460px;
    position: relative;
    overflow: hidden;
}
    .bg-card-video-2 .bg-card-image {
      flex: 0 0 49%;
      height: 455px;
      position: relative;
      overflow: hidden;
    }
    .bg-card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 64px;
      position: relative;
      z-index: 1;
    }
    .bg-card-text { display: flex; flex-direction: column; gap: 32px; }
    .bg-card-title { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--dark); }
    .bg-card-desc  { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--dark); max-width: 398px; }

    /* =========================================================
       FEATURES — 2. Content
    ========================================================= */
    .features {

      background: #FCFCF9;
      padding: 73px var(--px) 73px calc(var(--px) + 71px);
    }
    .features-inner {
      display: flex;
      align-items: center;
      gap: 144px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 67px 66px;
      flex: 0 0 586px;
    }
    .feature-item { display: flex; flex-direction: column; gap: 20px; }
    .feature-icon { width: 54px; height: 54px; flex-shrink: 0; }
    .feature-icon img { width: 100%; height: 100%; object-fit: contain; }
    .feature-text  { display: flex; flex-direction: column; gap: 12px; }
    .feature-title { font-size: 20px; font-weight: 800; line-height: 28px; color: var(--dark); }
    .feature-desc  { font-size: 14px; font-weight: 400; line-height: 22px; color: var(--dark); }

    .features-cta {
      flex: 0 0 325px;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }
    .features-cta-text { display: flex; flex-direction: column; gap: 32px; }
    .features-cta-title { font-size: 24px; font-weight: 800; line-height: 1.33; color: var(--dark); }
    .features-cta-desc  { font-size: 14px; font-weight: 400; line-height: 22px; color: var(--dark); }

    /* =========================================================
       VIDEO SECTION — Hero V5
    ========================================================= */
    .video-section {

      background: #FCFCF9;
      padding: 73px var(--px) 145px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }
    .video-heading { text-align: center; display: flex; flex-direction: column; gap: 32px; }
    .video-title   { font-size: 36px; font-weight: 800; line-height: 1.11; color: var(--dark); }
    .video-sub     { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--dark); }

    .video-wrap {
      width: 100%;
      height: 560px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: var(--shadow-video);
      transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .video-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    .video-wrap:hover { transform: scale(1.02); }

    .video-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 32%, rgba(0,0,0,0.43));
      pointer-events: none;
    }
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, background 0.3s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
    .play-btn::after {
      content: '';
      width: 0;
      height: 0;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      border-left: 20px solid var(--dark);
      margin-left: 5px;
    }
    .video-wrap:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255,255,255,1);
    }

    /* =========================================================
       CARDS — Dernières rénovations
    ========================================================= */
    .cards-section {

      background: #FCFCF9;
      padding: 73px var(--px);
      display: flex;
      flex-direction: column;
      gap: 64px;
      align-items: center;
    }
    .cards-heading { text-align: center; display: flex; flex-direction: column; gap: 32px; }
    .cards-title { font-size: 36px; font-weight: 800; line-height: 1.11; color: var(--dark); }
    .cards-sub   { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--dark); max-width: 419px; margin: 0 auto; }

    .cards-grid {
      display: flex;
      gap: 22px;
      width: 100%;
      align-items: stretch;
    }
    .card {
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 365px;
      position: relative;
      cursor: pointer;
      box-shadow: var(--shadow-card);
      flex-shrink: 0;
    }
    .card-large { flex: 0 0 542px; }
    .card-small { flex: 1; }
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .card:hover img { transform: scale(1.06); }
    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(25,33,61,0) 50%, #030610 94%);
      pointer-events: none;
    }
    .card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .card-label {
      font-size: 12px;
      font-weight: 400;
      line-height: 18px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
    }
    .card-name {
      font-size: 24px;
      font-weight: 800;
      line-height: 32px;
      color: #fff;
    }

    /* =========================================================
       CTA
    ========================================================= */
    .cta-section {

      background: linear-gradient(to bottom, #FCFCF9 39%, #FAF9F7 100%);
      padding: 72px var(--px) 144px;
    }
    .cta-card {
      background: var(--bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      height: 392px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* orange tint overlay */
    .cta-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--primary);
      mix-blend-mode: multiply;
      opacity: 0.08;
      border-radius: var(--radius-lg);
      pointer-events: none;
    }
    .cta-img-left {
      position: absolute;
      left: 0;
      bottom: 0;
      height: 299px;
      width: auto;
      object-fit: contain;
      object-position: bottom left;
    }
    .cta-img-right {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 376px;
      width: auto;
      object-fit: contain;
      object-position: bottom right;
    }
    .cta-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      text-align: center;
      max-width: 502px;
    }
    .cta-text { display: flex; flex-direction: column; gap: 32px; align-items: center; }
    .cta-title { font-size: 36px; font-weight: 800; line-height: 1.11; color: var(--dark); }
    .cta-desc  { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--dark); max-width: 419px; }

    /* =========================================================
       FOOTER
    ========================================================= */
    .footer {
      background: var(--bg-warm);
      padding: 72px var(--px);
      display: flex;
      flex-direction: column;
      gap: 72px;
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 64px;
    }
    .footer-brand-top { display: flex; flex-direction: column; gap: 32px; }
    .footer-logo img  { height: 31px; width: auto; }
    .footer-desc { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--dark); max-width: 260px; }

    .footer-col { display: flex; flex-direction: column; gap: 32px; }
    .footer-links-row {
      display: flex;
      align-items: flex-start;
      gap: 40px;
    }
    .footer-col-title { font-size: 16px; font-weight: 600; line-height: 22px; color: var(--dark); }
    .footer-links { display: flex; flex-direction: column; gap: 24px; }
    .footer-links a {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: var(--muted);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .footer-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: #B4B9C9;
    }
    .footer-rights {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: #B4B9C9;
    }
    .footer-legal {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .footer-legal a {
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 0.12em;
    }
    .footer-social { display: flex; align-items: center; gap: 16px; }
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      color: var(--dark);
      transition: color 0.2s, transform 0.2s;
    }
    .footer-social a:hover { color: var(--primary); transform: translateY(-2px); }
    .footer-social svg { width: 20px; height: 20px; }

    /* =========================================================
       RESPONSIVE — 1080px
    ========================================================= */
    @media (max-width: 1200px) {
      :root { --px: 72px; }
      .header-inner { padding: 20px 72px; }

      .hero { gap: 64px; }
      .hero-text { flex: 0 0 400px; }
      .hero-title { font-size: 40px; }
      .hero-image { flex: 1; }

      .logo-strip-viewport { margin: 0 72px; }

      .features { padding: 73px 72px 73px 130px; }
      .features-inner { gap: 80px; }
      .features-grid { gap: 48px; }
      .features-cta { flex: 0 0 280px; }

      .bg-card { padding: 56px; gap: 80px; }
      .bg-card-image { flex: 0 0 280px; }

      .video-section { padding: 73px 72px 120px; }
      .video-wrap { height: 480px; }

      .cards-section { padding: 73px 72px; }
      .card-large { flex: 0 0 420px; }

      .cta-section { padding: 72px 72px 120px; }
      .footer { padding: 72px 72px; }
    }

    /* =========================================================
       RESPONSIVE — 1920px+
    ========================================================= */
    @media (min-width: 1600px) {
      :root { --px: 200px; }
      .header-inner { padding: 28px 200px; }
      .logo-strip-viewport { margin: 0 200px; }
      .features { padding: 90px 200px 90px 271px; }
      .bg-card { height: 520px; }
      .video-wrap { height: 680px; }
      .cta-card { height: 440px; }
    }

    /* =========================================================
       RESPONSIVE — Mobile
    ========================================================= */
    @media (max-width: 768px) {
      :root { --px: 24px; }
      :root { --section-space: 64px; }

      body {
        background: #FCFCF9;
      }

      .btn-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
      }
      .btn-row .btn {
        width: 100%;
        justify-content: center;
      }
      .btn {
        padding: 0 32px;
      }
      .btn-row .text-link {
        width: 100%;
        justify-content: center;
        min-height: 24px;
        padding-top: 8px;
      }
      .mobile-sticky-cta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        background: var(--white);
        box-shadow: 0 -10px 30px rgba(25,33,61,0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .mobile-sticky-cta.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      .mobile-sticky-cta .btn {
        width: 100%;
        justify-content: center;
        height: 56px;
        font-size: 15px;
        border-radius: var(--radius-sm);
        background: var(--primary);
        color: var(--white);
        box-shadow: none;
      }
      .mobile-sticky-cta .btn:hover {
        background: var(--primary-dark);
      }
      .mobile-sticky-cta .btn svg path {
        stroke: var(--white);
      }
      .mobile-sticky-cta .btn::after {
        color: var(--white);
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1200;
      }
      .header-inner  { padding: 16px 24px; }
      .header { box-shadow: none; }
      .header.scrolled { box-shadow: 0 8px 20px rgba(44,44,42,0.06); }
      .nav           { display: none; }
      .header-login  { display: none; }
      .header-right .btn { display: none; }
      .hamburger     { display: flex; }
      .mobile-menu {
        background: #FCFCF9;
      }
      .mobile-menu-panel {
        gap: 14px;
        padding: 88px 24px 32px;
      }
      .mobile-menu-logo {
        top: 16px;
        left: 24px;
      }
      .mobile-menu a {
        font-size: 18px;
        line-height: 1.3;
      }
      .mobile-menu-nav {
        gap: 2px;
      }
      .mobile-menu-nav a {
        padding: 18px 0;
        font-size: 18px;
      }
      .mobile-close {
        top: 18px;
        right: 18px;
        z-index: 2;
        background: rgba(247,247,245,0.88);
      }

      /* Hero */
      .hero {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding: 28px 24px 20px;
        min-height: auto;
        background: #FCFCF9;
        overflow: visible;
      }
      .hero-text      { display: contents; }
      .hero-content   { order: 1; display: flex; flex-direction: column; gap: 20px; width: 100%; }
      .hero .btn-row  { display: none; }
      .hero-content   { gap: 20px; }
      .hero-title     { max-width: none; font-size: 32px; line-height: 34px; }
      .hero-sub       { max-width: 32ch; font-size: 15px; line-height: 24px; }
      .hero .btn {
        height: 56px;
        min-height: 56px;
      }
      .hero .btn-primary {
        display: none;
      }
      .hero .btn-ghost {
        display: none;
        width: 100%;
        justify-content: center;
        border: 0;
        box-shadow: none;
        background: transparent;
      }
      .hero-image     { order: 2; flex: none; width: 100%; height: auto; margin-bottom: 0; margin-top: -32px; }
      .hero-image img {
        width: 100%;
        height: auto;
        transform: none;
      }
      .hero-image video {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: none;
        clip-path: none;
      }
      /* Logo strip */
      .logo-strip {
        padding: 0 0 var(--section-space) 24px;
        background: linear-gradient(to bottom, #FCFCF9 0%, #FCFCF9 62%);
      }
      .logo-strip {
        display: none;
      }
      .logo-strip-viewport {
        margin: 0;
        -webkit-mask-image: none;
        mask-image: none;
      }
      .logo-strip-group {
        gap: 44px;
        padding-right: 44px;
      }

      /* BG cards */
      .bg-section-outer {
        padding: 0 24px var(--section-space);
        background: #FCFCF9;
      }
      .bg-card {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: 26px 24px 24px;
        gap: 24px;
        border-radius: 20px;
        box-shadow: none;
      }
      .bg-card.reverse         { flex-direction: column; }
      .bg-card.reverse .bg-card-content { padding-left: 0; }
      .bg-card.reverse .bg-card-image   { padding-right: 0; justify-content: center; }
      .bg-card-image,
      .bg-card-video .bg-card-image,
      .bg-card-video-2 .bg-card-image {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 200px;
        margin: 0;
        align-self: stretch;
        justify-content: center;
        overflow: hidden;
      }
      .bg-card-image video,
      .bg-card-video .bg-card-image video,
      .bg-card-video-2 .bg-card-image video {
        width: 100%;
        height: auto;
        transform: none;
        border-radius: 12px;
        object-fit: contain;
        object-position: center top;
      }
      .bg-card-image img {
        width: auto;
        max-width: min(100%, 220px);
      }
      .bg-card-content {
        gap: 24px;
        padding: 0;
        width: 100%;
        align-items: flex-start;
      }
      .bg-card-text    { gap: 16px; }
      .bg-card-title   { max-width: none; font-size: 24px; line-height: 34px; }
      .bg-card-desc    { max-width: none; font-size: 14px; line-height: 22px; }
      .bg-card .btn,
      .bg-card .btn-primary,
      .bg-card .btn-ghost {
        height: 56px !important;
        min-height: 56px !important;
        line-height: 56px !important;
        padding: 0 18px !important;
        font-size: 13px !important;
      }

      /* Features */
      .features {
        padding: 0 46px var(--section-space);
        background: #FCFCF9;
      }
      .features-inner  { flex-direction: column; gap: 36px; align-items: stretch; }
      .features-grid   { flex: none; width: 100%; grid-template-columns: 1fr; gap: 0; }
      .features-cta    { order: -1; }
      .features-cta .btn-row { display: none; }
      .feature-item {
        padding: 0 0 24px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(44,44,42,0.08);
      }
      .features-grid .feature-item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
      }
      .feature-icon    { width: 44px; height: 44px; }
      .feature-title   { font-size: 18px; line-height: 25px; }
      .feature-desc    { max-width: 28ch; font-size: 14px; line-height: 22px; }
      .features-cta    { flex: none; width: 100%; gap: 24px; align-items: flex-start; }
      .features-cta-text { gap: 16px; }
      .features-cta-title { max-width: none; font-size: 24px; line-height: 34px; }
      .features-cta-desc  { font-size: 14px; line-height: 22px; }

      /* Video */
      .video-section  {
        padding: 0 24px var(--section-space);
        gap: 20px;
        align-items: stretch;
        background: #FCFCF9;
      }
      .video-heading {
        width: 100%;
        gap: 16px;
        text-align: left;
      }
      .video-title br,
      .video-sub br,
      .cards-title br {
        display: none;
      }
      .video-wrap     { height: 240px; border-radius: 20px; }
      .video-title    { max-width: none; font-size: 24px; line-height: 34px; }
      .video-sub      { max-width: 28ch; font-size: 14px; line-height: 22px; }
      .play-btn       { width: 52px; height: 52px; }
      .play-btn::after { border-top-width: 8px; border-bottom-width: 8px; border-left-width: 13px; }

      /* Photo cards */
      .cards-section  {
        padding: 0 24px var(--section-space);
        gap: 28px;
        align-items: stretch;
        background: #FCFCF9;
      }
      .cards-heading  { gap: 16px; text-align: left; }
      .cards-grid     { flex-direction: column; gap: 16px; }
      .card-large, .card-small { flex: none; width: 100%; height: 240px; }
      .card-content   { padding: 20px; }
      .card-name      { font-size: 20px; line-height: 26px; }
      .cards-title    { max-width: none; font-size: 24px; line-height: 34px; }
      .cards-sub      { margin: 0; max-width: 29ch; font-size: 14px; line-height: 22px; }

      /* CTA */
      .cta-section { padding: 0 24px var(--section-space); background: #FCFCF9; }
      .cta-card    {
        height: auto;
        padding: 32px 24px;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        flex-direction: column;
      }
      .cta-img-left { display: none; }
      .cta-img-right {
        display: block;
        position: relative;
        right: auto;
        bottom: auto;
        top: auto;
        order: -1;
        align-self: center;
        margin: 0 auto 20px;
        height: 280px;
        width: auto;
        max-width: 100%;
        opacity: 1;
        object-fit: contain;
        object-position: center;
      }
      .cta-content {
        align-items: flex-start;
        gap: 24px;
        text-align: left;
        max-width: none;
        width: 100%;
        padding-right: 0;
      }
      .cta-text {
        gap: 16px;
        align-items: flex-start;
      }
      .cta-title   { max-width: none; font-size: 24px; line-height: 34px; }
      .cta-desc    { max-width: 31ch; font-size: 14px; line-height: 22px; }
      .cta-content .btn-row {
        width: 100%;
      }
      .cta-content .btn-row .btn {
        width: 100%;
      }
      .cta-content .btn-ghost { display: none; }

      /* Footer */
      .footer        { padding: 0 24px var(--section-space); gap: 48px; }
      .footer {
        background: linear-gradient(to bottom, #FCFCF9 0%, #FAF9F7 10%, var(--bg-warm) 26%);
      }
      .footer-top    { flex-direction: column; align-items: stretch; gap: 36px; }
      .footer-brand  { width: 100%; max-width: none; gap: 24px; }
      .footer-brand-top { width: 100%; gap: 16px; }
      .footer-brand .btn-row {
        width: 100%;
        max-width: none;
        gap: 14px;
      }
      .footer-brand .btn-row { display: none; }
      .footer-brand .btn-row .btn {
        width: 100%;
      }
      .footer-col    { gap: 18px; }
      .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 12px 0 12px;
        width: 100%;
      }
      .footer-links-row .footer-col {
        min-width: 0;
      }
      .footer-links  { gap: 14px; }
      .footer-desc   { width: 100%; max-width: none; font-size: 14px; line-height: 22px; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        text-align: left;
      }
      .footer-meta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
      }
      .footer-rights,
      .footer-copy {
        font-size: 12px;
        line-height: 18px;
        color: #9FA6B7;
      }
      .footer-legal {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }
      .footer-legal a {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--dark);
        text-decoration: none;
      }
      .footer-social {
        padding-top: 2px;
      }
    }
