@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* =========================================================
   TOKENS — same family as client/style.css + dashboard/style.css
========================================================= */
:root{
  --ink:#141414;
  --ink-soft:#5C5C5C;
  --paper:#F7F7F7;
  --card:#FFFFFF;
  --line:rgba(20,20,20,0.09);

  --accent:#141414;
  --accent-soft:#3A3A3A;
  --accent-tint:#ECECEC;
  --accent-contrast:#FFFFFF;
  --ink-contrast:#FFFFFF;

  --radius:16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body.official{
  margin:0;
  overflow-x:hidden; /* fallback for older browsers */
  overflow-x:clip;   /* modern browsers: clips without creating a scroll
                        container (unlike hidden), so position:sticky on
                        the navbar keeps working while horizontal overflow
                        still gets trimmed */
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* =========================================================
   NAVBAR
========================================================= */
.navbar{
  position:sticky; top:0; z-index:80;
  background:rgba(247,247,247,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-container{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:28px; /* minimum breathing room between the logo and the links,
               even if there's no extra space left to distribute */
  padding:16px 24px;
  position:relative;
}
.logo{ flex-shrink:0; }
.logo{ margin:0; }
.logo a{ display:flex; align-items:center; }
.logo .main{
  font-family:'Inter', sans-serif;
  font-weight:800; font-size:20px;
  letter-spacing:-0.01em;
}

.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links ul.autres-pages{
  list-style:none; display:flex; gap:26px; margin:0; padding:0;
}
.nav-links ul.autres-pages > li > a{
  font-size:14px; font-weight:500; color:var(--ink-soft);
  position:relative; padding:4px 2px;
}
.nav-links ul.autres-pages > li > a::after{
  content:""; position:absolute; left:0; bottom:-4px;
  width:100%; height:2px; background:currentColor;
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav-links ul.autres-pages > li > a:hover{ color:var(--ink); }
.nav-links ul.autres-pages > li > a:hover::after{ transform:scaleX(1); }

.nav-cta{
  display:inline-flex; align-items:center;
  background:var(--ink); color:var(--ink-contrast);
  padding:10px 18px; border-radius:30px;
  font-size:13.5px; font-weight:600;
  transition:background .2s ease, transform .15s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--accent-soft); transform:translateY(-1px); }
.nav-cta:active{ transform:translateY(0) scale(0.97); }

.burger{ display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:90; }
.burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; }

.overlay{
  position:fixed; inset:0; background:rgba(20,20,20,0.35);
  opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:70;
}
.overlay.active{ opacity:1; pointer-events:auto; }

@media (max-width:860px){
  .burger{ display:flex; }
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:270px;
    background:var(--card); flex-direction:column; align-items:flex-start;
    padding:96px 28px 28px; gap:26px;
    box-shadow:-10px 0 30px rgba(0,0,0,0.1);
    /* Explicit z-index above .overlay (70): without this, .nav-links sits
       at the "auto" stacking layer, which always paints BELOW any sibling
       with a positive z-index regardless of DOM order — so the dimming
       overlay was rendering on top of the menu panel and swallowing taps
       meant for the links inside it. */
    z-index:75;
    clip-path: inset(0 0 0 100%);
    transition: clip-path .3s ease;
    pointer-events:none;
  }
  .nav-links.active{ clip-path: inset(0 0 0 0); pointer-events:auto; }
  .nav-links ul.autres-pages{ flex-direction:column; align-items:flex-start; gap:18px; }
  .nav-cta{ width:100%; text-align:center; }
}

/* =========================================================
   HERO
========================================================= */
.hero{
  padding:clamp(72px,12vw,120px) 24px clamp(64px,9vw,96px);
  background:var(--ink);
  color:var(--paper);
}
.hero-inner{
  max-width:760px; margin:0 auto; text-align:center;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(247,247,247,0.7);
  margin-bottom:22px;
}
.hero-title{
  font-family:'Inter', sans-serif;
  font-weight:700; font-size:clamp(34px,5.4vw,54px);
  line-height:1.12; letter-spacing:-0.02em;
  margin:0 0 22px;
}
.hero-title em{ font-style:italic; font-weight:500; color:rgba(247,247,247,0.85); }
.hero-lede{
  font-size:16.5px; color:rgba(247,247,247,0.72);
  max-width:520px; margin:0 auto 34px;
}
.hero-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.btn-primary{
  font-weight:600; font-size:14.5px;
  padding:14px 26px; border-radius:30px;
  background:var(--paper); color:var(--ink);
  display:inline-flex; align-items:center; gap:8px;
  transition:transform .15s ease, background .2s ease;
}
.btn-primary:hover{ transform:translateY(-1px); background:#fff; }
.btn-primary:active{ transform:translateY(0) scale(0.97); }

.btn-ghost{
  font-weight:600; font-size:14.5px;
  padding:14px 26px; border-radius:30px;
  border:1px solid rgba(247,247,247,0.3); color:var(--paper);
  transition:border-color .2s ease, transform .15s ease;
}
.btn-ghost:hover{ border-color:rgba(247,247,247,0.6); transform:translateY(-1px); }

/* =========================================================
   SECTION SHELL
========================================================= */
.section{ padding:clamp(64px,9vw,96px) 24px; scroll-margin-top:72px; }
.section-alt{ background:var(--card); }
.section-inner{ max-width:1080px; margin:0 auto; }

.section-eyebrow{
  display:block;
  font-size:12.5px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:10px;
}
.section-title{
  font-family:'Inter', sans-serif;
  font-weight:700; font-size:clamp(26px,3.6vw,38px);
  letter-spacing:-0.01em; margin:0 0 14px;
  max-width:640px;
}
.section-lede{
  font-size:15px; color:var(--ink-soft); max-width:520px; margin:0 0 40px;
}

/* =========================================================
   OFFER STRIP (homepage-only — the "understood in a minute" summary)
========================================================= */
.offer-strip{ padding:clamp(40px,6vw,64px) 24px; scroll-margin-top:72px; }
.offer-strip-inner{ max-width:1080px; margin:0 auto; }
.offer-grid{
  margin-top:22px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.offer-step{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:22px 20px;
}
.offer-num{
  width:30px; height:30px; border-radius:50%;
  background:var(--ink); color:var(--ink-contrast);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:13px; margin-bottom:14px;
}
.offer-step h3{ font-size:15.5px; font-weight:700; margin:0 0 6px; letter-spacing:-0.01em; }
.offer-step p{ font-size:13.5px; color:var(--ink-soft); margin:0; line-height:1.55; }
.offer-step-price{ font-weight:700; color:var(--ink); }
.offer-cta-link{
  display:inline-block; margin-top:10px;
  font-size:12.5px; font-weight:600; color:var(--ink);
  border-bottom:1px solid var(--ink);
}

.offer-price-strip{
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
.offer-price-strip p{ margin:0; font-size:14.5px; color:var(--ink-soft); }

@media (max-width:560px){
  .offer-price-strip{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:900px){ .offer-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .offer-grid{ grid-template-columns:1fr; } }

/* =========================================================
   EXPLORE SECTION (homepage-only — links out to the other 2 pages)
========================================================= */
.explore-section{ padding:clamp(48px,7vw,72px) 24px; background:var(--card); }
.explore-inner{ max-width:1080px; margin:0 auto; }
.explore-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.explore-card{
  display:block; padding:28px 26px;
  border:1px solid var(--line); border-radius:var(--radius);
  background:var(--paper);
  transition:border-color .2s ease, transform .2s ease;
}
.explore-card:hover{ border-color:var(--ink); transform:translateY(-2px); }
.explore-card-label{
  display:block; font-size:11.5px; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--ink-soft); margin-bottom:9px;
}
.explore-card h3{ font-size:19px; font-weight:700; margin:0 0 8px; letter-spacing:-0.01em; }
.explore-card p{ font-size:14px; color:var(--ink-soft); margin:0; line-height:1.55; }
.explore-card-arrow{ display:inline-block; margin-top:16px; font-weight:600; font-size:13.5px; }

@media (max-width:700px){ .explore-grid{ grid-template-columns:1fr; } }

/* =========================================================
   FEATURE CARDS
========================================================= */
.feature-grid{
  margin-top:36px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.feature-card{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:26px 22px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px rgba(20,20,20,0.07); }
.feature-index{
  display:block; font-size:12px; font-weight:700; letter-spacing:0.05em;
  color:var(--ink-soft); margin-bottom:14px;
}
.feature-card h3{ font-size:16px; font-weight:600; margin:0 0 8px; }
.feature-card p{ font-size:13.5px; color:var(--ink-soft); margin:0; line-height:1.55; }

@media (max-width:960px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .feature-grid{ grid-template-columns:1fr; } }

/* =========================================================
   SHOWCASE (screenshots)
========================================================= */
.showcase-list{ display:flex; flex-direction:column; gap:64px; margin-top:12px; }
.showcase-row{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; align-items:center;
}
.showcase-row.reverse .showcase-text{ order:2; }
.showcase-row.reverse .showcase-image{ order:1; }

.showcase-label{
  display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--ink-soft); margin-bottom:10px;
}
.showcase-text h3{ font-size:22px; font-weight:700; margin:0 0 10px; letter-spacing:-0.01em; }
.showcase-text p{ font-size:14.5px; color:var(--ink-soft); margin:0; max-width:340px; }

.showcase-image{
  aspect-ratio: 2880 / 1800; /* matches the real screenshot dimensions exactly —
    reserves the box up front so nothing shifts while the lazy images load in,
    same width/height attrs are set on each <img> in screenshots.php as the
    primary mechanism; this is the CSS-side backstop */
  border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 20px 44px rgba(20,20,20,0.08);
}
.showcase-image img{ width:100%; height:auto; display:block; }

@media (max-width:860px){
  .showcase-row, .showcase-row.reverse{ grid-template-columns:1fr; gap:20px; }
  .showcase-row.reverse .showcase-text, .showcase-row.reverse .showcase-image{ order:initial; }
  .showcase-text p{ max-width:100%; }
}

/* =========================================================
   EMAIL SHOWCASE
   Screenshots are dark-mode and all different aspect ratios.
   Fixed-height dark frame + object-fit:contain means every image
   centers and "floats" in the frame instead of being cropped or
   stretched — and the frame's own dark background blends into the
   screenshot's dark background rather than reading as letterboxing.
========================================================= */
.email-grid{
  margin-top:36px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.email-card{ display:flex; flex-direction:column; gap:12px; }
.email-frame{
  height:340px;
  background:#0D0D0D;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  padding:18px;
}
.email-frame img{
  max-width:100%; max-height:100%;
  width:auto; height:auto;
  border-radius:8px;
  box-shadow:0 12px 28px rgba(0,0,0,0.35);
}
.email-caption{
  font-size:13px; font-weight:600; color:var(--ink-soft);
  text-align:center;
}

@media (max-width:960px){
  .email-grid{ grid-template-columns:repeat(2,1fr); }
  .email-frame{ height:300px; }
}
@media (max-width:560px){
  .email-grid{ grid-template-columns:1fr; }
  .email-frame{ height:340px; }
}

/* =========================================================
   DEMO VIDEO (client clip + admin clip, same source video
   split via YouTube start/end embed params)
========================================================= */
.video-grid{
  margin-top:36px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
}
.video-card{ display:flex; flex-direction:column; gap:14px; position:relative; }
.video-frame{
  position:relative; padding-top:56.25%; /* 16:9 */
  border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 20px 44px rgba(20,20,20,0.08);
  background:#0D0D0D;
}
.video-frame iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
}
.video-copy h3{ font-size:17px; font-weight:700; margin:0; letter-spacing:-0.01em; }
.video-label{
  display:block; font-size:11.5px; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--ink-soft); margin-bottom:5px;
}

.video-highlight-badge{
  align-self:flex-start;
  background:var(--ink); color:var(--ink-contrast);
  font-size:11px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  padding:5px 13px; border-radius:20px;
}
.video-card-highlight .video-frame{
  border-color:var(--ink);
  box-shadow:0 22px 48px rgba(20,20,20,0.16);
}
.video-card-highlight .video-label{ color:var(--ink); font-weight:800; }

@media (max-width:860px){
  .video-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   SCROLL REVEAL
   Progressive enhancement only: .reveal is added by JS at
   runtime (see script at the bottom of index.php), so content
   is fully visible with JS disabled or on very old browsers.
   prefers-reduced-motion bails out before any class is added.
========================================================= */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s cubic-bezier(.16,.7,.24,1), transform .6s cubic-bezier(.16,.7,.24,1);
  transition-delay:var(--reveal-delay, 0ms);
  will-change:opacity, transform;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* =========================================================
   PRICING
========================================================= */
.pricing-badge{
  display:inline-block;
  background:var(--ink); color:var(--ink-contrast);
  font-size:11px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  padding:6px 14px; border-radius:20px;
  margin-bottom:22px;
}
.pricing-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px;
}
.pricing-card{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:28px 26px;
}
.pricing-card-highlight{ border-color:var(--ink); box-shadow:0 16px 32px rgba(20,20,20,0.06); }
.pricing-tier-label{
  display:block; font-size:12.5px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:14px;
}
.pricing-amount{ display:flex; align-items:baseline; gap:10px; }
.pricing-old{ font-size:16px; color:var(--ink-soft); text-decoration:line-through; }
.pricing-new{ font-size:34px; font-weight:800; letter-spacing:-0.01em; }
.pricing-new-sm{ font-size:26px; }
.pricing-period{ font-size:13px; font-weight:500; color:var(--ink-soft); }
.pricing-includes{
  list-style:none; margin:18px 0 0; padding:0;
  display:flex; flex-direction:column; gap:8px;
}
.pricing-includes li{
  font-size:13.5px; color:var(--ink-soft); line-height:1.5;
  padding-left:16px; position:relative;
}
.pricing-includes li::before{ content:"—"; position:absolute; left:0; }

.pricing-monthly{
  margin-top:24px;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:22px 26px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.pricing-monthly-text{
  margin:0; font-size:13.5px; color:var(--ink-soft); max-width:400px; line-height:1.55;
}
.pricing-standard-note{
  margin-top:20px; font-size:13px; color:var(--ink-soft); max-width:680px; line-height:1.6;
}
.pricing-ownership-note{
  margin-top:10px; font-size:13px; color:var(--ink-soft); max-width:680px; line-height:1.6;
}

@media (max-width:760px){
  .pricing-grid{ grid-template-columns:1fr; }
  .pricing-monthly{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   SETUP FEE EXPLAINER
========================================================= */
.setup-explain{
  margin-top:36px; padding-top:28px; border-top:1px solid var(--line);
  max-width:760px;
}
.setup-explain-title{ font-size:16.5px; font-weight:700; margin:0 0 10px; }
.setup-explain p{ font-size:14px; color:var(--ink-soft); line-height:1.7; margin:0; }

/* =========================================================
   COMPARISON TABLE
========================================================= */
/* =========================================================
   POUR QUI (fit / not-fit cards)
========================================================= */
.fit-grid{
  margin-top:36px;
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.fit-card{
  border-radius:var(--radius); padding:26px 26px 28px;
  border:1px solid var(--line);
}
.fit-yes{ background:var(--card); }
.fit-no{ background:var(--paper); }
.fit-label{
  display:block; font-size:13px; font-weight:700; margin-bottom:16px;
}
.fit-yes .fit-label{ color:var(--ink); }
.fit-no .fit-label{ color:var(--ink-soft); }
.fit-list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px; }
.fit-list li{
  font-size:14px; color:var(--ink-soft); line-height:1.55;
  padding-left:26px; position:relative;
}
.fit-yes .fit-list li::before{
  content:"✓"; position:absolute; left:0; top:0;
  font-weight:700; color:var(--ink);
}
.fit-no .fit-list li::before{
  content:"✕"; position:absolute; left:0; top:0;
  font-weight:700; color:var(--ink-soft);
}

@media (max-width:700px){ .fit-grid{ grid-template-columns:1fr; } }

/* =========================================================
   WHY GRID
========================================================= */
.why-grid{
  margin-top:36px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px 40px;
}
.why-item h3{ font-size:16.5px; font-weight:600; margin:0 0 8px; }
.why-item p{ font-size:14px; color:var(--ink-soft); margin:0; line-height:1.6; }
.why-note{
  margin-top:44px; padding-top:28px; border-top:1px solid var(--line);
  font-size:13.5px; color:var(--ink-soft); font-style:italic; max-width:620px;
}

@media (max-width:700px){ .why-grid{ grid-template-columns:1fr; } }

/* =========================================================
   HOW IT WORKS (real sequence — numbering is meaningful here)
========================================================= */
.steps-list{ display:flex; flex-direction:column; margin-top:36px; }
.step-row{
  display:flex; gap:24px; align-items:flex-start;
  padding:22px 0; border-bottom:1px solid var(--line);
}
.step-row:first-child{ padding-top:0; }
.step-row:last-child{ border-bottom:none; }
.step-num{
  flex-shrink:0; width:38px; height:38px; border-radius:50%;
  background:var(--ink); color:var(--ink-contrast);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14.5px;
}
.step-content h3{ font-size:16.5px; font-weight:600; margin:0 0 6px; }
.step-content p{ font-size:14px; color:var(--ink-soft); margin:0; }

/* =========================================================
   CALLOUT SECTIONS (referral + salon CTA)
========================================================= */
.callout-section{ padding:clamp(52px,7vw,76px) 24px; }
.callout-inner{
  max-width:1080px; margin:0 auto;
  background:var(--card); border:1px solid var(--line); border-radius:24px;
  padding:clamp(32px,5vw,48px);
  display:grid; grid-template-columns:1.4fr 0.6fr; gap:32px; align-items:center;
}
.callout-title{ font-size:clamp(22px,2.8vw,28px); font-weight:700; margin:0 0 10px; letter-spacing:-0.01em; }
.callout-text p{ font-size:14.5px; color:var(--ink-soft); margin:0; max-width:480px; }
.callout-text p strong{ color:var(--ink); }
.callout-action{ display:flex; justify-content:flex-end; }
.callout-action .btn-primary{ background:var(--ink); color:var(--ink-contrast); }
.callout-action .btn-primary:hover{ background:var(--accent-soft); }

.callout-action-stacked{
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.callout-action-stacked .btn-primary{ width:100%; justify-content:center; text-align:center; }
.callout-action-stacked .btn-secondary-stack{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--line);
}
.callout-action-stacked .btn-secondary-stack:hover{ background:var(--accent-tint); }

.callout-dark{ }
.callout-dark .callout-inner{ background:var(--ink); border-color:var(--ink); color:var(--paper); }
.callout-dark .section-eyebrow{ color:rgba(247,247,247,0.65); }
.callout-dark .callout-text p{ color:rgba(247,247,247,0.72); }
.btn-on-dark{ background:#D6D6D6; color:var(--ink); border:1px solid rgba(247,247,247,0.25); }
.btn-on-dark:hover{ background:#E8E8E8; }

@media (max-width:760px){
  .callout-inner{ grid-template-columns:1fr; text-align:left; }
  .callout-action{ justify-content:flex-start; }
  .callout-action-stacked{ align-items:stretch; }
}

/* =========================================================
   FAQ
========================================================= */
.faq-list{ margin-top:32px; display:flex; flex-direction:column; }
.faq-item{
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
.faq-item:first-child{ padding-top:0; }
.faq-item summary{
  cursor:pointer; list-style:none;
  font-size:15.5px; font-weight:600;
  display:flex; align-items:center; justify-content:space-between;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:20px; font-weight:400; color:var(--ink-soft);
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{
  font-size:14px; color:var(--ink-soft); margin:14px 0 0; line-height:1.6; max-width:640px;
}
.faq-item p strong, .setup-explain p strong{ color:var(--ink); font-weight:700; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background:var(--ink); color:rgba(247,247,247,0.75); }
.footer-container{
  max-width:1080px; margin:0 auto;
  padding:56px 24px 32px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px;
}
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:13.5px; color:rgba(247,247,247,0.68); transition:color .15s ease; }
.footer-col a:hover{ color:#fff; }
.footer-col-title{
  font-size:11.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(247,247,247,0.45); margin-bottom:4px;
}
.footer-logo{ font-weight:800; font-size:19px; color:#fff; letter-spacing:-0.01em; }
.footer-tagline{ font-size:13px; color:rgba(247,247,247,0.55); margin:2px 0 0; max-width:220px; }

.footer-bottom{
  border-top:1px solid rgba(247,247,247,0.12);
  padding:18px 24px; text-align:center;
  font-size:12px; color:rgba(247,247,247,0.4);
}

@media (max-width:760px){
  .footer-container{ grid-template-columns:1fr 1fr; }
}
@media (max-width:480px){
  .footer-container{ grid-template-columns:1fr; }
}