@charset "UTF-8";
/* CSS Document */

*, *::before, *::after { box-sizing: border-box; }
      body{
          margin: 0;
      background: var(--bg);
      }
a{text-decoration: none;}
ul{padding: 0;}
    :root {
      --bg: #000;
      --surface: #13151a;
      --text: #e8e8ea;
      --muted: #a7a7ad;
      --accent: #FFE100; /* yellow matching brand */
      --accent-contrast: #111;
      --radius: 14px;
      --container: min(1200px, 96vw);
      --shadow: 0 10px 45px rgba(0, 0, 0, .55);
      --header-h: 64px;
    }
.yellow{color: var(--accent);}

/* prevent heading from hiding behind fixed header */
html{ scroll-padding-top: var(--header-h); scroll-behavior: smooth; }

/* ---- Skip link --------------------------------------------------------- */
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:12px; z-index:10000;
  width:auto;height:auto;padding:10px 14px;border-radius:10px;
  background:#191c23;color:#fff;border:1px solid #2b2f39;
}

/* ---- Header ------------------------------------------------------------ */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,12,15,.78);
  /* frosted glass blur (supported browsers) */
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
}
.header__inner{
  height: var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
}

/* Logo */
.brand{ display:inline-flex; align-items:center; gap:10px; min-width:0; }
.brand img{ height:40px; width:auto; display:block; }
.brand__text{ font-weight:900; letter-spacing:.04em; font-size:18px; }

/* Nav (desktop default) */
.site-nav{
  display:flex; align-items:center; gap: 16px;
}
.nav__list{
  display:flex; gap: clamp(12px, 1.8vw, 24px);
  list-style:none; margin:0; padding:0;
}
.nav__list a{
  display:inline-block; padding:10px 6px;
  color:var(--text); opacity:.9; font-weight:700;
  border-radius:8px;
}
.nav__list a:hover,
.nav__list a:focus-visible{
  background:#151821; outline:none;
}
.header__cta{ margin-left: 6px; }

/* Hamburger (visible on mobile) */
.hamburger{ display:none; }

/* ---- Mobile layout ---------------------------------------------- */
.nav-toggle{ display:none; }

@media (max-width: 960px){
  /* Remove backdrop-filter so child position:fixed works correctly */
  .site-header{
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
    background:#0b0c0f;
  }

  .hamburger{
    display:flex; justify-content:center; align-items:center;
    width:44px; height:44px;
    border:none; background:transparent;
    cursor:pointer; position:relative; z-index:1001;
  }
  .hamburger span{
    display:block; width:22px; height:2px; background:#e8e8ea;
    border-radius:2px; position:absolute;
    transition: transform .4s var(--ease-out-expo),
                opacity .25s ease,
                width .3s var(--ease-out-expo);
  }
  .hamburger span:nth-child(1){ transform: translateY(-7px); }
  .hamburger span:nth-child(2){ width:14px; }
  .hamburger span:nth-child(3){ transform: translateY(7px); }

  .hamburger:hover span:nth-child(2){ width:22px; }

  /* Open state → X */
  .nav-toggle:checked + .hamburger span:nth-child(1){
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .hamburger span:nth-child(2){
    opacity:0; width:0;
  }
  .nav-toggle:checked + .hamburger span:nth-child(3){
    transform: rotate(-45deg);
  }

  /* Fullscreen overlay nav */
  .site-nav{
    position:fixed; inset:0;
    background:rgba(0,0,0,.92);
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter:blur(20px);
    display:flex; flex-direction:column;
    justify-content:center; align-items:center;
    gap:32px; padding:80px 24px 40px;
    opacity:0; visibility:hidden;
    transition:opacity .4s var(--ease-out-expo),
               visibility 0s linear .4s;
    z-index:999;
  }
  .nav-toggle:checked ~ .site-nav{
    opacity:1; visibility:visible;
    transition-delay:0s;
  }

  .nav__list{
    flex-direction:column; gap:0; text-align:center;
  }
  .nav__list li{
    opacity:0;
    transform:translateY(20px);
    transition:opacity .4s var(--ease-out-expo),
               transform .4s var(--ease-out-expo);
  }
  .nav-toggle:checked ~ .site-nav .nav__list li{
    opacity:1; transform:translateY(0);
  }
  .nav-toggle:checked ~ .site-nav .nav__list li:nth-child(1){ transition-delay:.08s; }
  .nav-toggle:checked ~ .site-nav .nav__list li:nth-child(2){ transition-delay:.14s; }
  .nav-toggle:checked ~ .site-nav .nav__list li:nth-child(3){ transition-delay:.20s; }
  .nav-toggle:checked ~ .site-nav .nav__list li:nth-child(4){ transition-delay:.26s; }
  .nav-toggle:checked ~ .site-nav .nav__list li:nth-child(5){ transition-delay:.32s; }

  .nav__list a{
    padding:16px 24px; border-radius:12px;
    font-size:clamp(22px,4vw,28px); font-weight:700;
    letter-spacing:.02em;
  }
  .nav__list a:hover{ background:rgba(255,255,255,.06); }

  .site-nav .socials{
    opacity:0; transform:translateY(16px);
    transition:opacity .4s var(--ease-out-expo) .3s,
               transform .4s var(--ease-out-expo) .3s;
  }
  .nav-toggle:checked ~ .site-nav .socials{
    opacity:1; transform:translateY(0);
  }

  .header__cta{
    width:auto; min-width:200px;
    justify-content:center; text-align:center;
    font-size:16px; padding:16px 32px;
    opacity:0; transform:translateY(16px);
    transition:opacity .4s var(--ease-out-expo) .36s,
               transform .4s var(--ease-out-expo) .36s,
               filter .2s ease, background-color .2s ease;
  }
  .nav-toggle:checked ~ .site-nav .header__cta{
    opacity:1; transform:translateY(0);
  }
}

/* Focus ring */
.site-header a:focus-visible,
.hamburger:focus-visible{
  outline:2px solid #fff; outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  .hamburger span{ transition:none }
  .site-nav{ transition:none }
  .nav__list li{ transition:none; opacity:1; transform:none; }
  .site-nav .socials{ transition:none; opacity:1; transform:none; }
  .header__cta{ transition:none; opacity:1; transform:none; }
}

    .hero {
      color: var(--text);
      padding: clamp(56px, 9vw, 96px) 0;
      position: relative;
      overflow: clip;
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(24px, 5vw, 48px);
      align-items: center;
    }
    @media (max-width: 900px) {
      .hero__grid { grid-template-columns: 1fr; }
      .hero__media { order: -1; }
    }

    /* Copy */
    .hero__pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: #fff;
      padding: 6px 10px;
      color: #000;
      border-radius: 999px;
    }

    #hero-title {
      font-size: clamp(32px, 4.6vw + 10px, 56px);
      line-height: 1.05;
      margin: 14px 0 10px;
      letter-spacing: .2px;
    }

    .hero__lead {
      color: #fff;
      font-size: clamp(15px, 1.1vw + 10px, 18px);
      max-width: 60ch;
      margin: 8px 0 2px;
    }

    .hero__cta {
      margin-top: 20px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn {
      --pad: 12px 18px;
      text-align: center;
      align-items: center;
      gap: 8px;
      padding: var(--pad);
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      font-size: 14px;
      transition: transform .06s ease, filter .2s ease, background-color .2s ease, border-color .2s ease;
      min-width: 100px;
    }
    .btn--primary {
      background: var(--accent);
      color: var(--accent-contrast);
      box-shadow: inset 0 0 0 1px #f0c20066;
    }
    .btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
    .btn--ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid #2f323c;
    }
    .btn--ghost:hover { border-color: #3b3f4a; transform: translateY(-1px); }
    .btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

    /* Media */
    .hero__image {
      margin: 0;
    }
    .hero__image img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      object-position: center;
    }
.hero__fulwid{
    grid-column: 1 / -1;
}
    .hero__highlight {
      display: inline-block;
      color: var(--accent);
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
      margin: 14px 0 6px;
    }

    .hero__desc {
      color: #fff;
      margin: 8px 0 0;
      font-size: clamp(15px, 1.1vw + 9px, 17px);
    }
    @media (prefers-reduced-motion: reduce) {
      .btn { transition: none; }
    }
/* Active link state */
.nav__list a.active {
  color: var(--accent);
  opacity: 1;
}
.nav__list a.active:hover {
  background: #151821;
}
/* ---- Section base ------------------------------------------------------ */
.section__header{margin-bottom:22px}
.section__title{
  font-size:clamp(24px,2.4vw + 8px,32px);
  line-height:1.2;
}

/* ---- Services ---------------------------------------------------------- */
.services{padding:clamp(42px,7vw,72px) 0}

.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,2.6vw,24px);
}
@media (max-width:1024px){ .svc-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:720px){ .svc-grid{grid-template-columns:1fr} }

.svc-card{
  background:#1A1A1A;
  border-radius:14px;
  padding:20px 18px;
  display:flex;
  flex-direction:column;
  min-height:260px;
}

.svc-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.svc-num{
  display:inline-grid;
  place-items:center;
}
.svc-title{
  font-size:18px;
  line-height:1.25;
  margin:0;
}

.svc-body{margin-top:6px}

.svc-list{
  padding-left:0;
  list-style:none;
}
@media (max-width:520px){ .svc-list{grid-template-columns:1fr} }

.svc-list li{
  position:relative;
  padding-left:26px;
  color:var(--text);
  margin-bottom: 25px;
}
.svc-list li::before{
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -0.1em;
  width: 15px;
  height: 5px;
  border-left: 2px solid #FFE100;
  border-bottom: 2px solid #FFE100;
  transform: rotate(-45deg);
}
.svc-list li:last-child{
    margin-bottom: 0;
}
.svc-list .svc-meta{
  grid-column:1 / -1;
  margin-top:6px;
  color:#c9c9cf;
  font-weight:700;
  letter-spacing:.02em;
}
.svc-list .svc-meta::before{ background:var(--accent); }

.section__footer{
  text-align:center;
  margin-top:clamp(18px,3.5vw,28px);
  display:flex;
  gap:14px;
  flex-direction:column;
  align-items:center;
}
.services__note{
  margin:0 0 2px;
  color: var(--accent);
  font-size:13px;
}
.svc-lead p{margin: 0;}
/* ---- Graphic Films ----------------------------------------------------- */
.films{padding:clamp(42px,7vw,72px) 0}

.films-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:clamp(18px,3vw,28px);
  align-items:start;
}
@media (max-width: 980px){
  .films-grid{grid-template-columns:1fr}
}

.gf-card{
  border-radius:14px;
  padding:clamp(16px,2vw,20px) clamp(14px,2vw,18px);
     background: #1A1A1A;
}

.gf-lead{
  margin:4px 0 28px;
  color:var(--text);
  max-width:72ch;
}

.gf-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.gf-tag{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  font-size:13px;
  line-height:1;
  color:#cdd0d6;
  background:#1a1d23;
  border:1px solid #2b2f39;
  border-radius:999px;
  white-space:nowrap;
}
.gf-tag:hover{border-color:#363b47}

.gf-note{
  margin-top:12px;
  color:#bfc2c9;
  opacity:.9;
  font-size:13px;
  font-style:italic;
}

/* Price box */
.gf-card--price{padding:18px}
.gf-price__title{
  font-size:16px;
  margin:0 0 10px;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.gf-price__title small{
  color:#a7a7ad;
  font-weight:600;
}

.gf-price__list{
  list-style:none;
  padding:10px 0;
  margin:15px 0 0 0 ;
  display:grid;
  gap:8px;
  border-top: solid 1px #6C6C6C;
  border-bottom: solid 1px #6C6C6C;
}
.gf-price__list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
}
.gf-price__list li span{
  color:#cfd2d8;
}
.gf-price__list li strong{
  font-weight:800;
  color:var(--text);
}

.gf-price__note{
  margin:12px 2px 0;
  color:#c6c7cc;
  opacity:.95;
  font-size:12.5px;
  line-height:1.45;
}
.gf-card--catalog h2{
    margin-top: 0;
}
.gf-card--catalog ul{
    padding-left: 15px;
}
.gf-card--catalog ul li{
    margin-bottom: 15px;
}
.gf-card--catalog ul li:last-child{
    margin-bottom: 0;
}
/* ---- Car Wrap Films ---------------------------------------------------- */
.wrapfilms{padding:clamp(42px,7vw,72px) 0}

.wrap-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:clamp(18px,3vw,28px);
  align-items:start;
}
@media (max-width:980px){
  .wrap-grid{grid-template-columns:1fr}
}

.wf-card{
  padding:clamp(16px,2vw,20px) clamp(14px,2vw,18px);
}

.wf-lead{
  margin:4px 0 14px;
  color:var(--text);
  max-width:70ch;
}

.wf-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.wf-list li{
  position:relative;
  padding-left:18px;
  color:#e6e7ea;
}
.wf-list li::before{
  content:"";
  position:absolute;left:0;top:.72em;
  width:7px;height:7px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 2px #2b2f39;
}
.wf-list strong{font-weight:800}

.wf-note{
  margin-top:12px;
  color:#bfc2c9;
  opacity:.95;
  font-size:13px;
  font-style:italic;
}

/* Brand card */
.wf-card--brands{padding:18px}
.wf-brands__title{
  margin:0 0 10px;
  font-size:15px;
  color:#d7d9de;
  opacity:.95;
}
.wf-logos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  align-items:center;
  justify-items:center;
  margin:6px 0 10px;
}
@media (max-width:520px){
  .wf-logos{grid-template-columns:repeat(3,1fr)}
}
.wf-logo{
  display:flex;align-items:center;justify-content:center;
  min-height:72px;
  width:100%;
}
.wf-logo img{
  height:52px; width:auto;
}
.wf-brands__note{
  margin:6px 2px 0;
  color:#c6c7cc;
  font-size:12.5px;
  opacity:.95;
}

/* ---- How We Work (Flex) ----------------------------------------------- */
.flow-flex{ padding:clamp(42px,7vw,72px) 0; }

/* Rows (3 cards top, 2 cards bottom) */
.flow-row{
  --gap: clamp(28px, 4vw, 56px);       /* gap between cards */
  display:flex;
  gap: var(--gap);
  align-items: stretch;
  justify-content: center;             /* center-align */
  flex-wrap: nowrap;
  position: relative;
}
.flow-row + .flow-row{ margin-top: clamp(24px, 4vw, 40px); }
.flow-row--bottom{ justify-content: center; }

/* Card */
.step-card{
  position: relative;
  flex: 0 1 360px;                     /* base width (shrinkable) */
  max-width: 420px;
  min-width: 280px;
  min-height: 100px;
  padding: 18px 20px;
  border-radius: 32px;
  background: #1A1A1A;
}

/* Heading row (number + bold title) */
.step-kicker{
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.step-index{
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.step-kicker strong{
  font-size: 18px;
  line-height: 1.25;
}

/* Description */
.step-desc{
  margin: 0;
  color: var(--text);
  opacity: .95;
}

/* ▶▶▶ Connector arrows between cards */
.flow-row .step-card{
  --tri-c: var(--accent);          /* arrow color */
  --tri-w: 10px;                   /* single triangle width */
  --tri-h: 8px;                    /* single triangle height */
  --tri-gap: 10px;                 /* gap between triangles */
  --tri-step: calc(var(--tri-w) + var(--tri-gap));
}
.flow-row .step-card:not(:last-child)::after{
  content:"";
  position: absolute;
  top: 50%;
  /* center triangle in gap */
  left: calc(100% + (var(--gap) / 2) - (var(--tri-w) / 2));
  transform: translateY(-50%);
  width: var(--tri-w);
  height: var(--tri-h);
  background: var(--tri-c);
  clip-path: polygon(0 0, 100% 50%, 0 100%); /* right-pointing triangle */
  filter:
    drop-shadow(var(--tri-step) 0 0 var(--tri-c))
    drop-shadow(calc(var(--tri-step) * 2) 0 0 var(--tri-c));
  pointer-events: none;
}

/* Footnote */
.flow-footnote{
  margin-top: clamp(18px,3.5vw,28px);
color: var(--accent);
  font-size: 13px;
  text-align: center;
}

/* Responsive: stack vertically, hide arrows */
@media (max-width: 900px){
  .flow-row{
    --gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .flow-row .step-card:not(:last-child)::after{ display:none; }
}

/* ---- FAQ --------------------------------------------------------------- */
.faq{ padding:clamp(42px,7vw,72px) 0; }

.faq-accordion{
  display:grid;
  gap:10px;
  background-color: #1A1A1A;
    border-radius: 10px;
}

/* Base card */
.faq-item{
  overflow:hidden; /* clip content inside rounded corners */
        border-bottom: solid 1px #6C6C6C;
}
.faq-item:last-child{
    border-bottom: none;
}
.faq-summary{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  cursor:pointer;
  list-style:none;
  outline:none;
}
.faq-summary::-webkit-details-marker{ display:none; } /* hide default marker */

.faq-q{
  font-weight:700;
  font-size:16px;
  letter-spacing:.02em;
}

/* Plus/minus toggle */
.faq-toggle{
  margin-left:auto;
  position:relative;
  width:18px; height:18px;
  flex:0 0 18px;
}
.faq-toggle::before,
.faq-toggle::after{
  content:"";
  position:absolute; inset:0;
  margin:auto;
  width:18px; height:2px;
  background:var(--accent);
  border-radius:2px;
  transition:transform .22s ease, opacity .22s ease;
}
.faq-toggle::after{
  transform: rotate(90deg); /* vertical bar creates + */
}
.faq-item[open] .faq-toggle::after{
  transform: rotate(0deg) scaleX(0); /* remove bar to show minus */
  opacity:.6;
}

/* Open/close (CSS-only smooth animation) */
.faq-collapse{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-item[open] .faq-collapse{ grid-template-rows: 1fr; }
.faq-a{
  overflow:hidden;
  padding:0 18px 16px 18px;
  color:#cfd2d8;
  opacity:.95;
}

/* Hover/focus */
.faq-summary:hover{ background:#151821; }
.faq-summary:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  .faq-toggle::before, .faq-toggle::after,
  .faq-collapse{ transition: none; }
}

/* ---- Brands ------------------------------------------------------------ */
.brands{ padding: clamp(36px, 6vw, 64px) 0; }

.brand-grid{
  --gap: clamp(16px, 2.8vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 980px){
  .brand-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .brand-grid{ grid-template-columns: 1fr; }
}

/* Logo tile (subtle card style) */
.brand-tile{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 20px;
  gap: 10px;
}

/* Logo images: fit uniformly */
.brand-tile img{
  display: block;
  max-height: 65px;      /* max logo height (adjust if needed) */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.05);
  transition: filter .25s ease, transform .08s ease;
}
.brand-tile:hover img{
  filter: grayscale(0) brightness(1.2);
  transform: translateY(-1px);
}

/* Invert dark logos (add .brand-invert to li) */
.brand-invert img{
  filter: invert(1) grayscale(0.1) brightness(1.1);
}
.brand-invert:hover img{
  filter: invert(1) grayscale(0) brightness(1.25);
}

/* ---- Scroll Trigger Animations ---------------------------------------- */
/* Premium easing curve */
:root{
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Default state: hidden */
.reveal{
  opacity:0;
  transform: translateY(40px);
  filter: blur(4px);
  transition:
    opacity .8s var(--ease-out-expo),
    transform .8s var(--ease-out-expo),
    filter .8s var(--ease-out-expo);
  will-change: opacity, transform, filter;
}

/* Slide up */
.reveal--up{
  transform: translateY(48px);
}

/* Slide from right */
.reveal--right{
  transform: translateX(-48px);
}

/* Slide from left */
.reveal--left{
  transform: translateX(48px);
}

/* Scale up from small */
.reveal--scale{
  transform: scale(.92);
}

/* Fade only (no movement) */
.reveal--fade{
  transform: none;
  filter: blur(6px);
}

/* Delay modifiers (stagger) */
.reveal--delay-1{ transition-delay: .08s; }
.reveal--delay-2{ transition-delay: .16s; }
.reveal--delay-3{ transition-delay: .24s; }
.reveal--delay-4{ transition-delay: .32s; }
.reveal--delay-5{ transition-delay: .40s; }
.reveal--delay-xs{ transition-delay: .10s; }
.reveal--delay-sm{ transition-delay: .18s; }
.reveal--delay-md{ transition-delay: .26s; }
.reveal--delay-lg{ transition-delay: .34s; }

/* Visible state */
.reveal.is-inview{
  opacity:1;
  transform: translate(0,0) scale(1);
  filter: blur(0);
}

/* Section title underline animation */
.section__title{
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}
.section__title::after{
  content:"";
  position:absolute;
  bottom:0; left:0;
  width:0; height:2px;
  background:var(--accent);
  transition: width .6s var(--ease-out-expo) .3s;
}
.reveal.is-inview .section__title::after,
.section__title.is-inview::after{
  width:40px;
}

/* Reduced motion: instant reveal, no blur */
@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none;
    filter: none;
  }
  .section__title::after{
    transition: none;
  }
}

/* ---- Footer ------------------------------------------------------------ */
.footer{
  padding: clamp(32px, 6vw, 56px) 0 0;
  border-top: 1px solid #1d2027;
  background: #0b0c0f;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}
@media (max-width: 960px){
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .footer__grid{ grid-template-columns: 1fr; }
}

/* Brand column */
.footer__brand{
    display: flex;
    column-gap: 30px;
}
.brand--footer img{ height: 40px; width: auto; display:block; }
.footer__tagline{
  margin: 12px 0 10px;
  color: #cfd2d8;
  font-size: 10px;
}

/* Socials */
.socials{ display:flex; gap:10px; list-style:none; padding:0; margin: 10px 0 0; }
.social-link{
  display:grid; place-items:center;
  width:40px; height:40px; border-radius:10px;
  background:#151820; border:1px solid #2b2f39;
  color:#e8e8ea; transition: transform .08s ease, filter .25s ease, background-color .2s ease, border-color .2s ease;
}
.social-link:hover{ transform: translateY(-1px); border-color:#3b3f4a; filter: brightness(1.1); }
.social-link svg{ width:20px; height:20px; }

/* Columns */
.footer__title{
  margin: 4px 0 10px;
  font-size: 14px;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: #c6c7cc;
}
.footer__links{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer__links a{
  display:inline-block; color:#e8e8ea; opacity:.9; padding:6px 0;
}
.footer__links a:hover{ opacity:1; text-decoration: underline; }

.footer__address{ color:#cfd2d8; font-style: normal; }
.footer__address a{ text-decoration: underline; }
.footer__cta{ margin-top: 12px; }

/* Bottom line */
.footer__bottom{
  margin-top: clamp(18px, 3.6vw, 28px);
  border-top: 1px solid #1d2027;
  background: #0a0b0e;
}
.footer__bottom-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}
.footer__legal{ margin:0; color:#9ea2ab; font-size:13px; }
.footer__legal-links{
  list-style:none; padding:0; margin:0; display:flex; gap:14px;
}
.footer__legal-links a{ color:#c6c7cc; font-size:13px; }
.footer__legal-links a:hover{ color:#fff; text-decoration: underline; }

@media (max-width:640px){
  .footer__bottom-inner{ flex-direction:column; align-items:flex-start; gap:8px; }
  .gf-price__list li strong{text-align: end;}
      .step-card{flex: auto;}
  .wf-logo img{height: 30px;}
}
