/* =====================================================
   TIMELYSTAFF — style.css
   ===================================================== */

/* RESET & ROOT */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --teal:   #03989e;
  --teal2:  #027c84;
  --teal3:  #03b1a7;
  --gold:   #ffc857;
  --goldd:  #b8870b;
  --gray:   #f4f4f4;
  --gray2:  #e8e8e8;
  --text:   #1a1a1a;
  --mid:    #5a5a5a;
  --light:  #909090;
  --white:  #fff;
  --bdr:    rgba(0, 0, 0, .07);
  --navy:   #0a1628;
  --navy2:  #163870;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

/* =====================================================
   INTRO SPLASH — matches exact screenshot style
   ===================================================== */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#intro.out { opacity: 0; visibility: hidden; pointer-events: none; }

/* Logo icon fades up */
.intro-mark {
  opacity: 0;
  animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) .1s forwards;
}

/* "TimelyStaff" bold teal wordmark — exact match of screenshot */
.intro-wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) .5s forwards;
}

/* Thin teal divider line below wordmark */
.intro-divider {
  width: 80px; height: 1.5px;
  background: var(--teal);
  margin: 16px auto 14px;
  opacity: 0;
  animation: fadeIn .5s ease .9s forwards;
}

/* Tagline — small grey text */
.intro-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--light);
  font-weight: 400;
  letter-spacing: .04em;
  opacity: 0;
  animation: fadeIn .5s ease 1.1s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* =====================================================
   PAGE SYSTEM
   ===================================================== */
.page { display: none; min-height: 100vh; }
.page.active { display: block; animation: pageIn .4s cubic-bezier(.16,1,.3,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   NAV
   ===================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; display: flex; align-items: center;
  transition: background .4s, box-shadow .4s;
  overflow: visible;
}
nav.solid {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bdr);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 32px); width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; min-width: 0;
}

/* Logo */
.nav-logo {
  cursor: pointer; display: flex; align-items: center;
  gap: 6px; flex-shrink: 1; min-width: 0; text-decoration: none;
}
.nav-logo img.logo-icon { height: 28px; width: auto; flex-shrink: 0; }
.nav-logo img.logo-name { height: 18px; width: auto; min-width: 0; }

/* Right side: home link + audience buttons */
.nav-right-group {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; min-width: 0;
}

/* "Accueil/Home" plain text link */
.nav-home-link {
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  cursor: pointer; transition: color .2s;
  white-space: nowrap; padding: 0 4px;
  background: none; border: none;
  font-family: 'Inter', sans-serif;
}
.nav-home-link:hover { color: var(--teal); }

/* Audience toggle buttons — swap colour on active page */
.btn-nav-own, .btn-nav-pro {
  font-size: 12.5px; font-weight: 600; padding: 8px 16px;
  border-radius: 8px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
  border: 1.5px solid transparent;
  flex-shrink: 0;
}

/* Contact button — always visible on all screens */
.btn-nav-contact {
  font-size: 12.5px; font-weight: 600; padding: 8px 16px;
  border-radius: 8px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--bdr);
  flex-shrink: 0; text-decoration: none;
  background: #fff; color: var(--mid);
  display: inline-flex; align-items: center;
}
.btn-nav-contact:hover { border-color: var(--teal); color: var(--teal); }

/* Default: Owners = teal filled, Pros = grey outline */
.btn-nav-own {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.btn-nav-own:hover { background: var(--teal2); border-color: var(--teal2); }

.btn-nav-pro {
  background: var(--gray); color: var(--text); border-color: var(--gray2);
}
.btn-nav-pro:hover { background: var(--gray2); }

/* When on pros page: flip the colours */
body.on-pros .btn-nav-pro {
  background: var(--gold); color: #7a5500; border-color: var(--gold);
}
body.on-pros .btn-nav-pro:hover { background: #ffd166; border-color: #ffd166; }
body.on-pros .btn-nav-own {
  background: var(--gray); color: var(--text); border-color: var(--gray2);
}
body.on-pros .btn-nav-own:hover { background: var(--gray2); }

/* When on home page: both grey */
body.on-home .btn-nav-own {
  background: var(--gray); color: var(--text); border-color: var(--gray2);
}
body.on-home .btn-nav-pro {
  background: var(--gray); color: var(--text); border-color: var(--gray2);
}

/* Language toggle — LEFT */
.lang-btn {
  display: flex; align-items: center; gap: 3px;
  background: #fff; border: 1.5px solid var(--gray2); border-radius: 20px;
  padding: 5px 12px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  transition: border-color .2s; flex-shrink: 0;
}
.lang-btn:hover { border-color: var(--teal); }
.lang-sep { color: var(--gray2); margin: 0 1px; font-weight: 400; }
.lang-fr-label { color: var(--teal); transition: color .2s; }
.lang-en-label { color: var(--light); transition: color .2s; }
body.lang-en .lang-fr-label { color: var(--light); }
body.lang-en .lang-en-label { color: var(--teal); }

/* =====================================================
   COOKIE BANNER (Loi 25)
   ===================================================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: #1a1a1a; color: rgba(255,255,255,.75);
  padding: clamp(12px,2vw,15px) clamp(14px,4vw,28px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; font-size: 12.5px; line-height: 1.5; flex-wrap: wrap;
  transform: translateY(100%);
  animation: slideUp .5s 3s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
#cookie-banner.hidden { display: none; }
.cookie-text a { color: var(--teal); cursor: pointer; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 14px;
  border-radius: 7px; border: none; cursor: pointer;
}
.cookie-decline {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.65);
  font-size: 12px; font-weight: 600; padding: 7px 14px;
  border-radius: 7px; border: none; cursor: pointer;
}

/* =====================================================
   SHARED SECTION UTILITIES
   ===================================================== */
.section { padding: clamp(64px,8vw,96px) clamp(14px,4vw,32px); }
.section.bg { background: var(--gray); }
.container { max-width: 1140px; margin: 0 auto; }
.container-sm { max-width: 900px; margin: 0 auto; }
.text-center { text-align: center; }

.chip {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 14px;
}
.chip-teal { color: var(--teal); background: rgba(3,152,158,.07); border: 1px solid rgba(3,152,158,.15); }
.chip-gold { color: var(--goldd); background: rgba(255,200,87,.1); border: 1px solid rgba(255,200,87,.25); }

h2.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px,4.5vw,50px); font-weight: 400;
  line-height: 1.1; letter-spacing: -.025em; color: var(--text); margin-bottom: 13px;
}
h2.section-title em.tl { font-style: italic; color: var(--teal); }
h2.section-title em.gd { font-style: italic; color: var(--goldd); }

.section-sub {
  font-size: clamp(13px,1.8vw,15.5px); color: var(--mid); line-height: 1.7;
  max-width: 480px; margin-bottom: 38px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: clamp(12.5px,1.8vw,14px); font-weight: 700;
  padding: 11px 22px; border-radius: 10px;
  transition: all .22s; cursor: pointer; border: none; text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(3,152,158,.3); }
.btn-gold { background: var(--gold); color: #7a5500; }
.btn-gold:hover { background: #ffd166; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,200,87,.4); }
.btn-outline { background: #fff; color: var(--text); border: 1.5px solid var(--bdr); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-group { display: flex; gap: 9px; flex-wrap: wrap; }

/* Store button icons */
.btn svg { flex-shrink: 0; }

/* =====================================================
   HERO — LANDING PAGE
   ===================================================== */
.hero-landing {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(80px,14vh,120px) clamp(14px,4vw,32px) clamp(60px,9vh,80px);
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(3,152,158,.07) 0%, transparent 65%);
}
h1.hero-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(34px,8vw,88px); font-weight: 400;
  line-height: 1.05; letter-spacing: -.03em; color: var(--text);
  max-width: 880px; margin: 0 auto 18px;
}
h1.hero-title em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: clamp(14px,2.2vw,18px); color: var(--mid);
  max-width: 540px; margin: 0 auto 44px; line-height: 1.7;
}

/* Audience cards */
.audience-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 720px; width: 100%; position: relative; z-index: 1;
}
.aud-card {
  background: #fff; border: 1.5px solid var(--bdr); border-radius: 20px;
  padding: clamp(18px,3vw,30px) clamp(16px,2.5vw,26px);
  cursor: pointer; text-align: left;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.aud-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; }
.aud-card.owner::before { background: linear-gradient(145deg, rgba(3,152,158,.04), transparent 60%); }
.aud-card.pro::before   { background: linear-gradient(145deg, rgba(255,200,87,.05), transparent 60%); }
.aud-card:hover { transform: translateY(-6px); }
.aud-card.owner:hover { border-color: rgba(3,152,158,.4); box-shadow: 0 20px 56px rgba(3,152,158,.12); }
.aud-card.pro:hover   { border-color: rgba(255,200,87,.5); box-shadow: 0 20px 56px rgba(255,200,87,.13); }
.aud-card:hover::before { opacity: 1; }
.aud-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.aud-icon.teal { background: rgba(3,152,158,.09); }
.aud-icon.gold { background: rgba(255,200,87,.12); }
.aud-card h3 { font-size: clamp(14px,2.5vw,17px); font-weight: 700; color: var(--text); margin-bottom: 6px; }
.aud-card p { font-size: clamp(12px,1.6vw,13px); color: var(--light); line-height: 1.55; margin-bottom: 14px; }
.aud-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.aud-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 5px;
}
.aud-tag.teal { background: rgba(3,152,158,.1); color: var(--teal); }
.aud-tag.gold { background: rgba(255,200,87,.15); color: var(--goldd); }
.aud-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 9px;
  transition: all .22s; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.aud-cta.teal { background: var(--teal); color: #fff; }
.aud-cta.teal:hover { background: var(--teal2); }
.aud-cta.gold { background: var(--gold); color: #7a5500; }
.aud-cta.gold:hover { background: #ffd166; }

/* =====================================================
   LOGOS BANNER
   ===================================================== */
.logos-band {
  padding: clamp(48px,6vw,64px) clamp(14px,4vw,32px);
  background: var(--gray);
  border-top: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2);
}
.logos-band .container { text-align: center; max-width: 860px; }
.logos-label {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 24px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px,5vw,56px); flex-wrap: wrap;
}
.logo-partner {
  height: clamp(48px,7vw,72px); width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: .5; transition: all .3s;
}
.logo-partner:hover { filter: grayscale(0%); opacity: 1; }

/* =====================================================
   STATS (with count-up animation)
   ===================================================== */
.stats-section { padding: clamp(52px,7vw,76px) clamp(14px,4vw,32px); }
.stats-grid {
  max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-block { text-align: center; padding: 16px 10px; border-right: 1px solid var(--gray2); }
.stat-block:last-child { border-right: none; }
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px,5vw,50px); font-weight: 400; color: var(--text);
  line-height: 1; letter-spacing: -.03em; margin-bottom: 5px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.stat-number.counted { opacity: 1; transform: translateY(0); }
.stat-number b { color: var(--teal); font-weight: 400; }
.stat-label {
  font-size: clamp(11px,1.5vw,13px); color: var(--light); font-weight: 500;
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1) .15s, transform .8s cubic-bezier(.16,1,.3,1) .15s;
}
.stat-label.counted { opacity: 1; transform: translateY(0); }

/* =====================================================
   HOW IT WORKS STEPS
   ===================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.step-card {
  background: #fff; border: 1px solid var(--gray2); border-radius: 15px;
  padding: clamp(18px,3vw,26px) clamp(14px,2.5vw,20px);
  transition: box-shadow .3s, transform .3s;
}
.step-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.07); transform: translateY(-3px); }
.step-num {
  font-family: 'Instrument Serif', serif; font-size: 44px; font-weight: 400;
  color: rgba(3,152,158,.13); line-height: 1; margin-bottom: 12px;
}
.step-card h4 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.step-card p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* =====================================================
   PLATFORM CARDS
   ===================================================== */
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.platform-card {
  background: #fff; border: 1px solid var(--bdr); border-radius: 18px;
  padding: clamp(18px,3vw,26px); position: relative; overflow: hidden;
  transition: all .38s cubic-bezier(.16,1,.3,1);
}
.platform-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0);
  transition: transform .35s cubic-bezier(.16,1,.3,1); transform-origin: left;
}
.platform-card:hover { border-color: rgba(3,152,158,.25); box-shadow: 0 14px 38px rgba(3,152,158,.09); transform: translateY(-5px); }
.platform-card:hover::after { transform: scaleX(1); }
.platform-card.featured { border-color: rgba(3,152,158,.28); }
.feat-badge {
  position: absolute; top: 15px; right: 15px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--teal); color: #fff; padding: 3px 9px; border-radius: 20px;
}
.platform-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(3,152,158,.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 13px;
}
.platform-icon.gold-bg { background: rgba(255,200,87,.1); }
.platform-for { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.platform-for.gold { color: var(--goldd); }
.platform-card h4 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.platform-card p { font-size: 12.5px; color: var(--mid); line-height: 1.6; margin-bottom: 15px; }
.store-btns { display: flex; flex-direction: column; gap: 7px; }
.store-btn {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--text);
  background: var(--gray); border: 1px solid var(--gray2);
  padding: 8px 12px; border-radius: 7px; transition: all .2s; text-decoration: none;
}
.store-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.store-btn svg { flex-shrink: 0; }

/* =====================================================
   VIDEO SPLIT
   ===================================================== */
.video-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,6vw,60px); align-items: center;
  max-width: 1060px; margin: 0 auto;
}
.video-split.reverse { direction: rtl; }
.video-split.reverse > * { direction: ltr; }
.video-text h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px,4vw,40px); font-weight: 400;
  line-height: 1.15; letter-spacing: -.02em; color: var(--text); margin-bottom: 13px;
}
.video-text h3 em { font-style: italic; }
.video-text h3 em.tl { color: var(--teal); }
.video-text h3 em.gd { color: var(--goldd); }
.video-text p { font-size: clamp(13px,1.8vw,14.5px); color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.feature-rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.feature-row {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 13px; border: 1px solid var(--bdr); border-radius: 11px;
  background: #fff; transition: all .25s;
}
.feature-row:hover { border-color: rgba(3,152,158,.28); transform: translateX(4px); }
.feature-row-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(3,152,158,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-row-icon.gold-bg { background: rgba(255,200,87,.1); }
.feature-row h5 { font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.feature-row p { font-size: 11.5px; color: var(--mid); line-height: 1.5; }

/* Phone mockup */
.phone-container { display: flex; justify-content: center; }
.phone-mockup {
  width: clamp(160px, 20vw, 230px);
  background: #111; border-radius: 42px; padding: 9px;
  border: 2px solid rgba(255,255,255,.08);
  box-shadow: 0 32px 64px rgba(0,0,0,.2);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.phone-mockup:hover { transform: translateY(-7px) rotate(-1deg); }
.phone-mockup::before {
  content: ''; position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%); width: 60px; height: 5px;
  background: rgba(255,255,255,.12); border-radius: 3px; z-index: 2;
}
.phone-screen { border-radius: 34px; overflow: hidden; background: #000; }
.phone-screen video { width: 100%; display: block; border-radius: 34px; }

/* =====================================================
   WHY US / ADVANTAGES
   ===================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,6vw,72px); align-items: center;
}
.advantage-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.advantage-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 16px; border: 1px solid var(--bdr); border-radius: 12px;
  background: #fff; transition: all .28s;
}
.advantage-item:hover { border-color: rgba(3,152,158,.28); transform: translateX(5px); }
.advantage-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(3,152,158,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.advantage-item h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.advantage-item p { font-size: 12px; color: var(--mid); line-height: 1.55; }

/* Dashboard card */
.dashboard-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 20px; padding: clamp(18px,3vw,28px);
  overflow: hidden; position: relative;
}
.dashboard-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(3,152,158,.15); filter: blur(40px);
}
.dash-kpi {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px,5vw,52px); font-weight: 400;
  color: var(--teal); line-height: 1; margin-bottom: 3px;
}
.dash-kpi-label { font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.dash-rows {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; overflow: hidden;
}
.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 13px; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 12px;
}
.dash-row:last-child { border-bottom: none; }
.dash-location { color: rgba(255,255,255,.72); }
.dash-sub { font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
.dash-badge {
  font-size: 9.5px; font-weight: 700; padding: 3px 7px; border-radius: 5px; white-space: nowrap;
}
.badge-green  { background: rgba(3,152,158,.2);   color: #02d4dc; }
.badge-yellow { background: rgba(255,200,87,.15);  color: #ffc857; }
.badge-blue   { background: rgba(100,160,255,.15); color: #80b4ff; }

/* =====================================================
   PRO JOURNEY
   ===================================================== */
.journey-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,6vw,64px); align-items: start;
}
.journey-card {
  background: linear-gradient(145deg, #083b24, #1a6b45);
  border-radius: 20px; padding: clamp(18px,3vw,28px);
  overflow: hidden; position: relative;
}
.journey-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,200,87,.08); filter: blur(30px);
}
.journey-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 11px;
}
.journey-steps { display: flex; flex-direction: column; }
.journey-step {
  display: flex; gap: 11px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07); align-items: flex-start;
}
.journey-step:last-child { border-bottom: none; }
.journey-num {
  width: 25px; height: 25px; border-radius: 50%;
  background: rgba(255,200,87,.15); border: 1px solid rgba(255,200,87,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.journey-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.journey-desc { font-size: 11.5px; color: rgba(255,255,255,.42); line-height: 1.55; }

.benefits-list { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 13px 15px; border: 1px solid var(--bdr); border-radius: 12px;
  background: #fff; transition: all .25s;
}
.benefit-item:hover { border-color: rgba(255,200,87,.35); transform: translateX(5px); }
.benefit-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,200,87,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-item h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.benefit-item p { font-size: 12px; color: var(--mid); line-height: 1.55; }

/* =====================================================
   PAY SECTION
   ===================================================== */
.pay-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px,5vw,44px); align-items: center;
  max-width: 920px; margin: 0 auto;
}
.pay-checklist { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.pay-check { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--mid); font-weight: 500; }
.pay-check-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(3,152,158,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pay-card {
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  border-radius: 20px; padding: clamp(18px,3vw,28px);
  overflow: hidden; position: relative;
}
.pay-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(3,152,158,.15); filter: blur(35px);
}
.pay-kpi {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px,5vw,52px); font-weight: 400;
  color: var(--teal); line-height: 1; margin-bottom: 3px;
}
.pay-kpi-label { font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.pay-weeks { display: flex; gap: 5px; flex-wrap: wrap; }
.pay-week {
  font-size: 10.5px; font-weight: 600;
  background: rgba(3,152,158,.15); color: var(--teal);
  padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(3,152,158,.2);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 36px; }
.testi-card {
  background: #fff; border: 1px solid var(--bdr); border-radius: 16px;
  padding: clamp(16px,2.5vw,24px); transition: all .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.testi-stars { color: #f59e0b; font-size: 12.5px; letter-spacing: 2px; margin-bottom: 11px; }
.testi-quote { font-size: clamp(12.5px,1.8vw,13.5px); color: var(--mid); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 9px; }
.testi-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 12.5px; font-weight: 700; color: var(--text); }
.testi-where { font-size: 11px; color: var(--light); }

/* =====================================================
   TEAM
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.team-card {
  background: #fff; border: 1px solid var(--bdr); border-radius: 16px;
  overflow: hidden; transition: all .35s cubic-bezier(.16,1,.3,1);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.09); border-color: rgba(3,152,158,.2); }
.team-card.wide { grid-column: span 2; }
.team-top {
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  padding: 18px 20px 14px;
  display: flex; align-items: center; gap: 12px;
}
.team-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.team-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.team-role { font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--teal3); }
.team-body { padding: 13px 20px 17px; }
.team-body p { font-size: 12.5px; color: var(--mid); line-height: 1.68; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: clamp(56px,8vw,84px) clamp(14px,4vw,32px);
  background: #fff; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--bdr);
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.cta-section::before { width: 360px; height: 360px; background: rgba(3,152,158,.05); top: -100px; left: -80px; }
.cta-section::after  { width: 260px; height: 260px; background: rgba(3,152,158,.04); bottom: -70px; right: -60px; }
.cta-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px,5vw,54px); font-weight: 400; color: var(--text);
  line-height: 1.1; letter-spacing: -.025em;
  max-width: 560px; margin: 0 auto 12px; position: relative;
}
.cta-section h2 em.tl { font-style: italic; color: var(--teal); }
.cta-section h2 em.gd { font-style: italic; color: var(--goldd); }
.cta-section p {
  font-size: clamp(13px,1.8vw,15.5px); color: var(--mid);
  max-width: 400px; margin: 0 auto 26px; line-height: 1.7; position: relative;
}
.cta-buttons { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =====================================================
   HERO PAGE (owners / pros)
   ===================================================== */
.hero-page {
  min-height: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(80px,12vh,110px) clamp(14px,4vw,32px) clamp(28px,4vh,44px);
  text-align: center; position: relative; overflow: hidden;
}
.hero-page-bg-teal {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(3,152,158,.07) 0%, transparent 65%);
}
.hero-page-bg-gold {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(255,200,87,.08) 0%, transparent 65%);
}
h1.hero-page-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px,6.5vw,72px); font-weight: 400;
  line-height: 1.07; letter-spacing: -.03em; color: var(--text);
  max-width: 760px; margin: 0 auto 16px;
}
h1.hero-page-title em.tl { font-style: italic; color: var(--teal); }
h1.hero-page-title em.gd { font-style: italic; color: var(--goldd); }
.hero-page-sub {
  font-size: clamp(13px,2vw,17px); color: var(--mid);
  max-width: 480px; margin: 0 auto 28px; line-height: 1.7;
}
.hero-page-btns { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-bottom: 8px; }
.hero-page-note { font-size: 11.5px; color: var(--light); }
.pro-chips { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.pro-chip {
  font-size: clamp(10.5px,1.4vw,12px); font-weight: 600;
  padding: 5px 11px; border-radius: 18px;
  background: var(--gray); color: var(--mid); border: 1px solid var(--gray2);
}

/* =====================================================
   PRIVACY PAGE
   ===================================================== */
.privacy-page { padding: clamp(76px,10vh,96px) clamp(14px,4vw,32px) 72px; }
.privacy-inner { max-width: 720px; margin: 0 auto; }
.privacy-inner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px,4vw,42px); font-weight: 400; color: var(--text); margin-bottom: 7px;
}
.privacy-date { font-size: 12.5px; color: var(--light); margin-bottom: 32px; }
.privacy-section { margin-bottom: 24px; }
.privacy-section h3 { font-size: 15.5px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.privacy-section p { font-size: 13.5px; color: var(--mid); line-height: 1.75; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: #1a1a1a; padding: clamp(36px,6vw,48px) clamp(14px,4vw,32px) 24px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(20px,4vw,40px); padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 20px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo-wrap img { height: 20px; width: auto; }
.footer-desc { font-size: 12.5px; color: rgba(255,255,255,.36); line-height: 1.7; max-width: 200px; margin-bottom: 12px; }
.footer-contact { font-size: 12px; color: rgba(255,255,255,.28); margin-bottom: 5px; }
.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.2); margin-bottom: 11px;
}
.footer-col a {
  display: block; font-size: 12.5px; color: rgba(255,255,255,.4);
  margin-bottom: 7px; cursor: pointer; transition: color .2s; text-decoration: none;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.18); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.3); cursor: pointer; text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.in  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.91); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* =====================================================
   CONTACT FORM — OWNERS
   ===================================================== */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: clamp(28px,4vw,48px);
  box-shadow: 0 4px 32px rgba(0,0,0,.05);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--gray);
  border: 1.5px solid var(--gray2);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(3,152,158,.1);
  background: #fff;
}
.form-input::placeholder { color: var(--light); }

.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}

/* Pharmacy / Dental toggle */
.form-toggle-group {
  display: flex;
  gap: 8px;
}
.form-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--gray2);
  background: var(--gray);
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}
.form-toggle.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.form-toggle:not(.active):hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Submit button */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 14px 32px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  transition: background .22s, transform .22s;
}
.form-submit-btn:hover {
  background: var(--teal2);
  transform: translateY(-2px);
}

/* Success message */
.form-success-msg {
  text-align: center;
  padding: clamp(24px,4vw,40px) clamp(20px,4vw,40px);
}
.form-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(3,152,158,.12);
  color: var(--teal);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(3,152,158,.25);
}
.form-success-msg h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px,3vw,28px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.form-success-msg p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Responsive form */
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: clamp(20px,4vw,28px); }
  .form-toggle-group { flex-direction: column; }
  .form-toggle { text-align: center; }
}


/* Captcha */
.captcha-group { margin-top: 4px; }
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-question {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--gray2);
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  white-space: nowrap;
  min-width: 90px;
  flex-shrink: 0;
}
.captcha-input {
  max-width: 120px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.captcha-error {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  font-weight: 600;
  margin-top: 6px;
}

/* =====================================================
   REVIEWS CAROUSEL
   ===================================================== */
.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-track:active { cursor: grabbing; }

.review-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: clamp(20px,3vw,28px);
  min-width: clamp(280px, 32vw, 360px);
  max-width: clamp(280px, 32vw, 360px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .3s, transform .3s;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
  transform: translateY(-4px);
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.owner-badge {
  background: rgba(3,152,158,.1);
  color: var(--teal);
  border: 1px solid rgba(3,152,158,.2);
}
.pro-badge {
  background: rgba(255,200,87,.12);
  color: var(--goldd);
  border: 1px solid rgba(255,200,87,.3);
}

.review-text {
  font-size: clamp(13px,1.8vw,14px);
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--gray2);
}
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-where { font-size: 11.5px; color: var(--light); margin-top: 1px; }

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all .2s;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.carousel-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover {
  background: #fff;
  border-color: var(--gray2);
  color: var(--text);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray2);
  cursor: pointer;
  transition: all .25s;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--teal);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .review-card {
    min-width: clamp(260px, 80vw, 300px);
    max-width: clamp(260px, 80vw, 300px);
  }
}
/* ─── TABLET (≤ 880px) ─── */
@media (max-width: 880px) {
  .audience-grid, .platform-grid, .video-split, .why-grid,
  .journey-grid, .pay-grid, .testi-grid, .team-grid,
  .footer-top, .steps-grid { grid-template-columns: 1fr; }
  .video-split.reverse { direction: ltr; }
  .team-card.wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3), .stat-block:nth-child(4) { border-top: 1px solid var(--gray2); }
  .stat-block:nth-child(4) { border-right: none; }
  .phone-mockup { width: clamp(160px, 38vw, 200px); }
  .nav-home-link { display: none; }
  .btn-nav-own, .btn-nav-pro { font-size: 11.5px; padding: 7px 13px; }
}

/* ─── MOBILE (≤ 640px) ─── */
@media (max-width: 640px) {
  nav { height: 54px; }
  /* Nav: shrink everything proportionally so all buttons always show */
  .nav-inner { padding: 0 10px; gap: 6px; }
  .nav-logo img.logo-name { display: none; }   /* hide wordmark, keep icon */
  .nav-logo img.logo-icon { height: 26px; }
  .lang-btn { padding: 4px 8px; font-size: 10px; letter-spacing: .03em; }
  .lang-sep { margin: 0; }
  .btn-nav-own, .btn-nav-pro { font-size: 11px; padding: 7px 11px; border-radius: 7px; }
  .btn-nav-contact { font-size: 11px; padding: 7px 11px; border-radius: 7px; }
  .nav-right-group { gap: 6px; }
  /* Hero adjustments */
  .hero-page { min-height: auto; padding: clamp(72px,12vh,96px) clamp(14px,4vw,24px) clamp(32px,5vh,44px); }
  .hero-landing { min-height: auto; padding: clamp(72px,12vh,96px) clamp(14px,4vw,24px) clamp(44px,7vh,60px); }
  /* Sections */
  .section { padding: clamp(48px,6vw,64px) clamp(14px,4vw,22px); }
  .logos-row { gap: 14px; }
  .logo-partner { height: clamp(40px,8vw,56px); }
  .testi-grid, .steps-grid, .platform-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  /* CTA buttons stack vertically */
  .hero-page-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-page-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 8px; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ─── SMALL MOBILE (≤ 400px) ─── */
@media (max-width: 400px) {
  .btn-nav-own, .btn-nav-pro, .btn-nav-contact { font-size: 10px; padding: 6px 8px; }
  .lang-btn { font-size: 9.5px; padding: 4px 7px; }
  h1.hero-title { font-size: clamp(26px, 9vw, 40px); }
  h1.hero-page-title { font-size: clamp(24px, 9vw, 36px); }
  .intro-wordmark { font-size: clamp(26px, 8vw, 40px); }
}
