/* ===== me&who — Light Mode v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

:root {
  --coral:    #FF4A24;
  --coral-2:  #FF7252;
  --coral-lt: #FFF1ED;
  --purple:   #6D41FF;
  --purple-lt:#F0ECFF;
  --amber:    #FFB020;
  --bg:       #FFFCFA;
  --surface:  #FFFFFF;
  --border:   #EDE0D9;
  --text:     #180E09;
  --muted:    #8A6E65;
  --light:    #C4AFA8;
  --shadow:   0 2px 20px rgba(22,10,4,.06);
  --shadow-md:0 8px 40px rgba(22,10,4,.10);
  --shadow-xl:0 20px 80px rgba(22,10,4,.14);
  --r:        18px;
  --r-lg:     26px;
  --fh:       "Outfit", sans-serif;
  --fb:       "Outfit", sans-serif;
  --fa:       "Playfair Display", serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{background:var(--bg);color:var(--text);font-family:var(--fb);line-height:1.6;overflow-x:hidden}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font-family:inherit}

/* ── NAV ───────────────────────────── */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(255,252,250,.82);
  border-bottom:1px solid transparent;
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  transition:border-color .3s,box-shadow .3s;
}
#nav.scrolled{border-color:var(--border);box-shadow:var(--shadow)}
.nav-inner{
  max-width:1160px;margin:0 auto;padding:0 28px;
  height:66px;display:flex;align-items:center;justify-content:space-between;
}
.logo{display:flex;align-items:center;gap:10px;font-family:var(--fh);font-weight:800;font-size:1.15rem;color:var(--text)}
.amp{
  font-family:var(--fa);
  font-style:italic;
  font-weight:700;
  font-size:1.2em;
  color:var(--coral);
  margin:0 1px;
  display:inline-block;
  transform:translateY(-0.02em);
}
.logo svg{flex-shrink:0}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{
  padding:8px 16px;font-size:.875rem;font-weight:500;color:var(--muted);
  border-radius:12px;transition:color .2s,background .2s;
}
.nav-links a:hover{color:var(--text);background:var(--coral-lt)}
.btn-nav{
  background:var(--coral) !important;color:#fff !important;
  padding:9px 22px !important;border-radius:12px !important;
  font-weight:600 !important;transition:transform .2s,box-shadow .2s !important;
}
.btn-nav:hover{transform:translateY(-2px) !important;box-shadow:0 6px 24px rgba(255,74,36,.35) !important}

/* ── HERO ──────────────────────────── */
.hero{
  min-height:100vh;display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;max-width:1160px;margin:0 auto;
  padding:110px 28px 80px;position:relative;
}
.hero::before{
  content:"";position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,74,36,.12) 0%,transparent 70%);
  top:-100px;right:-100px;pointer-events:none;
}
.hero::after{
  content:"";position:absolute;width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(109,65,255,.1) 0%,transparent 70%);
  bottom:-50px;left:-100px;pointer-events:none;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--coral-lt);color:var(--coral);
  padding:7px 15px;border-radius:100px;font-size:.78rem;font-weight:600;
  margin-bottom:24px;border:1px solid rgba(255,74,36,.2);letter-spacing:.02em;
}
.badge-pulse{width:6px;height:6px;border-radius:50%;background:var(--coral);animation:pulse 2s ease-in-out infinite}
.hero-title{
  font-family:var(--fh);font-size:clamp(2.8rem,5vw,4.2rem);
  font-weight:800;line-height:1.06;letter-spacing:-.035em;color:var(--text);
  margin-bottom:22px;
}
.hero-title em{font-style:normal;color:var(--coral)}
.hero-sub{font-size:1.05rem;color:var(--muted);line-height:1.75;margin-bottom:36px;max-width:480px}
.hero-form{
  display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px;
}
.hero-form input[type="email"]{
  flex:1;min-width:210px;padding:14px 20px;
  border:1.5px solid var(--border);border-radius:14px;
  background:var(--surface);font-size:.9rem;color:var(--text);outline:none;
  transition:border-color .2s,box-shadow .2s;
}
.hero-form input[type="email"]:focus{border-color:var(--coral);box-shadow:0 0 0 4px rgba(255,74,36,.1)}
.hero-form input[type="email"]::placeholder{color:var(--light)}
.btn-coral{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--coral);color:#fff;padding:14px 24px;
  border-radius:14px;font-size:.9rem;font-weight:600;border:none;cursor:pointer;
  transition:transform .2s,box-shadow .2s;white-space:nowrap;
}
.btn-coral:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(255,74,36,.38)}
.btn-coral svg{transition:transform .2s}
.btn-coral:hover svg{transform:translateX(3px)}
.form-note{font-size:.78rem;color:var(--light);margin-bottom:32px}
.hero-stats{
  display:flex;align-items:center;gap:28px;
  padding-top:28px;border-top:1px solid var(--border);
}
.stat{display:flex;flex-direction:column;gap:3px}
.stat-n{font-family:var(--fh);font-size:1.5rem;font-weight:800;color:var(--text)}
.stat-l{font-size:.73rem;color:var(--muted);font-weight:500;letter-spacing:.02em}
.stat-sep{width:1px;height:36px;background:var(--border)}

/* Hero right — profile cards */
.hero-right{position:relative;height:500px}
.hero-orb-1{
  position:absolute;width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,74,36,.18) 0%,transparent 70%);
  top:30px;right:0;pointer-events:none;
}
.hero-orb-2{
  position:absolute;width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(109,65,255,.15) 0%,transparent 70%);
  bottom:60px;left:40px;pointer-events:none;
}
.pcard{
  position:absolute;background:var(--surface);border-radius:16px;
  box-shadow:var(--shadow-md);padding:16px 18px;
  display:flex;align-items:center;gap:12px;border:1px solid var(--border);
}
.pcard-1{top:50px;left:10px;width:250px;animation:fc1 4.5s ease-in-out infinite}
.pcard-2{top:200px;right:0;width:240px;animation:fc1 4.5s ease-in-out .8s infinite}
.pcard-3{bottom:80px;left:50px;width:260px;animation:fc1 4.5s ease-in-out 1.6s infinite}
@keyframes fc1{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.av{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:.72rem;font-weight:700;color:#fff;
}
.av-coral{background:linear-gradient(135deg,#FF7252,var(--coral))}
.av-purple{background:linear-gradient(135deg,#9B7BFF,var(--purple))}
.av-amber{background:linear-gradient(135deg,#FFD060,var(--amber))}
.pcard-info{flex:1;min-width:0}
.pcard-name{font-weight:600;font-size:.88rem;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pcard-role{font-size:.73rem;color:var(--muted);margin-top:1px}
.match-tag{
  flex-shrink:0;font-size:.7rem;font-weight:700;
  padding:5px 9px;border-radius:10px;
  display:flex;align-items:center;gap:4px;
}
.match-tag.coral{background:var(--coral-lt);color:var(--coral)}
.match-tag.purple{background:var(--purple-lt);color:var(--purple)}
.match-tag.amber{background:#FFF6E0;color:var(--amber)}
.connection-dots{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:200px;height:200px;opacity:.12;pointer-events:none;
}

/* ── SECTIONS ──────────────────────── */
.section{padding:100px 28px}
.section-tinted{background:var(--coral-lt);padding:100px 28px}
.section-purple{background:var(--purple-lt);padding:100px 28px}
.wrap{max-width:1160px;margin:0 auto}
.section-head{margin-bottom:56px}
.chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 14px;border-radius:100px;font-size:.72rem;
  font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:14px;
}
.chip-coral{background:var(--coral-lt);color:var(--coral);border:1px solid rgba(255,74,36,.15)}
.chip-purple{background:var(--purple-lt);color:var(--purple);border:1px solid rgba(109,65,255,.15)}
.chip-amber{background:#FFF6E0;color:var(--amber);border:1px solid rgba(255,176,32,.2)}
.sec-title{
  font-family:var(--fh);font-size:clamp(2rem,4vw,3rem);
  font-weight:800;line-height:1.1;letter-spacing:-.03em;color:var(--text);
}
.sec-title span{color:var(--coral)}
.sec-title .purple{color:var(--purple)}
.sec-sub{margin-top:14px;font-size:1rem;color:var(--muted);max-width:560px;line-height:1.7}

/* ── GRID 3 ─────────────────────────── */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{
  background:transparent;border-radius:var(--r);padding:30px 26px;
  border:none;box-shadow:none;
  transition:transform .3s;
}
.card:hover{transform:translateY(-5px);}
.card-icon{
  width:54px;height:54px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.icon-coral{background:var(--coral-lt)}
.icon-purple{background:var(--purple-lt)}
.icon-amber{background:#FFF6E0}
.card h3{font-family:var(--fh);font-size:1.15rem;font-weight:700;margin-bottom:10px;color:var(--text)}
.card h4{font-family:var(--fh);font-size:1rem;font-weight:700;margin-bottom:8px;color:var(--text)}
.card p{font-size:.875rem;color:var(--muted);line-height:1.7}

/* ── HOW IT WORKS ─────────────────── */
.steps-layout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.steps-list{display:flex;flex-direction:column;gap:0}
.step{display:flex;gap:20px;padding:28px 0;border-bottom:1px solid var(--border);cursor:default}
.step:last-child{border-bottom:none}
.step-n{
  width:44px;height:44px;border-radius:12px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--fh);font-size:.9rem;font-weight:800;
  background:var(--coral-lt);color:var(--coral);transition:background .3s,color .3s;
}
.step:hover .step-n{background:var(--coral);color:#fff}
.step-body h3{font-family:var(--fh);font-size:1.05rem;font-weight:700;margin-bottom:6px;color:var(--text)}
.step-body p{font-size:.875rem;color:var(--muted);line-height:1.65}
.steps-visual{
  background:var(--surface);border-radius:var(--r-lg);padding:32px;
  box-shadow:var(--shadow-md);border:1px solid var(--border);position:sticky;top:100px;
}
.steps-visual-title{font-family:var(--fh);font-size:.85rem;font-weight:700;color:var(--muted);margin-bottom:20px;text-transform:uppercase;letter-spacing:.08em}
.match-preview{display:flex;flex-direction:column;gap:12px}
.match-row{
  display:flex;align-items:center;gap:12px;
  padding:12px 14px;border-radius:14px;background:var(--bg);border:1px solid var(--border);
}
.match-row .av{width:38px;height:38px;font-size:.68rem}
.match-info{flex:1}
.match-name{font-weight:600;font-size:.83rem;color:var(--text)}
.match-skill{font-size:.72rem;color:var(--muted);margin-top:1px}
.match-pct{
  font-family:var(--fh);font-size:.9rem;font-weight:800;color:var(--coral);
}
.match-bar-wrap{margin-top:4px;height:4px;background:var(--border);border-radius:2px}
.match-bar{height:4px;border-radius:2px;background:var(--coral)}

/* ── FEATURES BENTO ───────────────── */
.bento{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:auto;gap:16px}
.bento-card{
  background:var(--surface);border-radius:var(--r);padding:28px;
  border:1px solid var(--border);box-shadow:var(--shadow);
  transition:transform .3s,box-shadow .3s;
}
.bento-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.bento-card.span2{grid-column:span 2}
.bento-card.tall{grid-row:span 2}
.bento-icon{
  width:48px;height:48px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.bento-card h4{font-family:var(--fh);font-size:1rem;font-weight:700;margin-bottom:6px;color:var(--text)}
.bento-card p{font-size:.83rem;color:var(--muted);line-height:1.65}
.bento-number{
  font-family:var(--fh);font-size:3.5rem;font-weight:800;line-height:1;
  letter-spacing:-.04em;color:var(--coral);opacity:.15;margin-bottom:8px;
}

/* ── CTA ──────────────────────────── */
.cta-section{
  background:var(--coral);color:#fff;padding:100px 28px;
  text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:"";position:absolute;width:700px;height:700px;border-radius:50%;
  background:rgba(255,255,255,.06);top:-300px;right:-200px;pointer-events:none;
}
.cta-section::after{
  content:"";position:absolute;width:500px;height:500px;border-radius:50%;
  background:rgba(0,0,0,.06);bottom:-200px;left:-100px;pointer-events:none;
}
.cta-inner{position:relative;z-index:1;max-width:580px;margin:0 auto}
.cta-section h2{
  font-family:var(--fh);font-size:clamp(2rem,4vw,3rem);
  font-weight:800;letter-spacing:-.035em;margin-bottom:16px;
}
.cta-section p{font-size:1rem;opacity:.85;margin-bottom:40px;line-height:1.7}
.cta-form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.cta-form input[type="email"]{
  flex:1;min-width:220px;padding:14px 20px;
  border-radius:14px;border:1.5px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.15);color:#fff;font-size:.9rem;outline:none;
  backdrop-filter:blur(6px);transition:border-color .2s;
}
.cta-form input[type="email"]::placeholder{color:rgba(255,255,255,.6)}
.cta-form input[type="email"]:focus{border-color:rgba(255,255,255,.7)}
.btn-white{
  background:#fff;color:var(--coral);padding:14px 26px;
  border-radius:14px;font-size:.9rem;font-weight:700;
  border:none;cursor:pointer;transition:transform .2s,box-shadow .2s;white-space:nowrap;
}
.btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,.15)}

/* ── FOOTER ────────────────────────── */
.footer{background:var(--surface);border-top:1px solid var(--border);padding:64px 28px 32px}
.footer-top{
  max-width:1160px;margin:0 auto;display:flex;gap:64px;
  flex-wrap:wrap;margin-bottom:48px;
}
.footer-brand{flex:0 0 280px}
.footer-brand .logo{margin-bottom:14px}
.footer-brand p{font-size:.875rem;color:var(--muted);line-height:1.65}
.footer-links{flex:1;display:flex;gap:48px;flex-wrap:wrap}
.fcol{display:flex;flex-direction:column;gap:0}
.fcol h5{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-bottom:16px}
.fcol a{font-size:.875rem;color:var(--muted);padding:5px 0;transition:color .2s}
.fcol a:hover{color:var(--text)}
.footer-bot{
  max-width:1160px;margin:0 auto;display:flex;
  justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:12px;padding-top:24px;border-top:1px solid var(--border);
}
.footer-bot p{font-size:.8rem;color:var(--light)}
.socials{display:flex;gap:8px}
.socials a{
  width:36px;height:36px;border-radius:10px;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--muted);
  transition:color .2s,border-color .2s,background .2s;
}
.socials a:hover{color:var(--coral);border-color:var(--coral);background:var(--coral-lt)}

/* ── ANIMATIONS ────────────────────── */
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.75)}}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-up{opacity:0;transform:translateY(22px);transition:opacity .5s ease calc(var(--d,0s)),transform .5s ease calc(var(--d,0s))}
.reveal-up.visible{opacity:1;transform:none}

/* ── HAMBURGER MENU ──────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  z-index: 210;
  transition: background .2s;
}
.hamburger:hover { background: var(--coral-lt); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CONSENT CHECKBOX ──────────────────── */
.consent-check {
  width: 100%;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
  text-align: left;
}
.consent-check a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: opacity .2s;
}
.consent-check a:hover {
  opacity: .7;
}
/* Light variant for the CTA section on coral bg */
.consent-check-light {
  color: rgba(255,255,255,.75);
  text-align: center;
}
.consent-check-light a {
  color: #fff;
  font-weight: 600;
}

/* ── RESPONSIVE ────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
  .hero-left { max-width: 600px; }
  .hero-right { height: 340px; max-width: 500px; margin: 0 auto; width: 100%; }
  .steps-layout { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span2 { grid-column: span 1; }
  .footer-brand { flex: 0 0 220px; }
  .hero::before { width: 400px; height: 400px; top: -60px; right: -60px; }
  .hero::after { width: 300px; height: 300px; }
}

/* Tablet portrait / small screens */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 205;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links a {
    display: block !important;
    font-size: 1.2rem;
    padding: 14px 28px;
    color: var(--text);
  }
  .btn-nav {
    margin-top: 12px;
    font-size: 1rem !important;
    padding: 14px 32px !important;
  }

  .hero { padding: 90px 20px 60px; gap: 32px; min-height: auto; }
  .hero-left { max-width: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .hero-sub { font-size: .95rem; margin-bottom: 28px; max-width: none; }
  .hero-badge { font-size: .72rem; padding: 6px 12px; margin-bottom: 18px; }
  .hero-right { height: 280px; max-width: 400px; }
  .pcard { padding: 12px 14px; border-radius: 12px; }
  .pcard-1 { width: 200px; top: 20px; left: 0; }
  .pcard-2 { width: 195px; top: 140px; right: 0; left: auto; }
  .pcard-3 { width: 210px; bottom: 0; left: 20px; }
  .pcard-name { font-size: .8rem; }
  .pcard-role { font-size: .68rem; }
  .av { width: 36px; height: 36px; }
  .match-tag { font-size: .64rem; padding: 4px 7px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-n { font-size: 1.2rem; }
  .hero-form { flex-direction: column; }
  .hero-form input:not([type="checkbox"]), .hero-form .btn-coral { width: 100%; min-width: 0; }

  .grid-3 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .section, .section-tinted, .section-purple { padding: 60px 20px; }
  .section-head { margin-bottom: 36px; }
  .sec-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .sec-sub { font-size: .9rem; max-width: none; }
  .card { padding: 24px 20px; }

  .steps-visual { display: none; }
  .step { padding: 20px 0; gap: 14px; }
  .step-n { width: 38px; height: 38px; font-size: .8rem; }

  .bento-card { padding: 22px; }
  .bento-number { font-size: 2.5rem; }

  .cta-section { padding: 60px 20px; }
  .cta-section h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .cta-section p { font-size: .9rem; margin-bottom: 28px; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-form input:not([type="checkbox"]), .btn-white { width: 100%; min-width: 0; }

  .footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
  .footer-links { gap: 24px; }
  .footer-bot { flex-direction: column; text-align: center; gap: 16px; }

  .hero::before, .hero::after { display: none; }
  .hero-orb-1 { width: 200px; height: 200px; }
  .hero-orb-2 { width: 160px; height: 160px; }
}

/* Small phones */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; height: 58px; }
  .logo { font-size: 1rem; gap: 7px; }
  .logo svg { width: 34px; height: 22px; }

  .hero { padding: 80px 16px 48px; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .hero-sub { font-size: .88rem; line-height: 1.65; }
  .hero-form input:not([type="checkbox"]) { padding: 13px 16px; font-size: .88rem; }
  .btn-coral { justify-content: center; padding: 13px 20px; }
  .form-note { font-size: .72rem; }
  .hero-right { height: 220px; max-width: 320px; }
  .pcard-1 { width: 170px; top: 10px; left: 0; }
  .pcard-2 { width: 165px; top: 120px; right: 0; left: auto; }
  .pcard-3 { width: 175px; bottom: 0; left: 10px; }
  .pcard-name { font-size: .76rem; }
  .pcard-role { font-size: .66rem; }
  .av { width: 32px; height: 32px; }
  .match-tag { font-size: .6rem; padding: 3px 6px; }

  .hero-stats { gap: 12px; padding-top: 20px; }
  .stat-sep { height: 28px; }
  .stat-n { font-size: 1.1rem; }
  .stat-l { font-size: .68rem; }

  .section, .section-tinted, .section-purple { padding: 48px 16px; }
  .section-head { margin-bottom: 28px; }
  .card { padding: 20px 16px; }
  .card h3 { font-size: 1.05rem; }
  .card p { font-size: .82rem; }
  .step { padding: 16px 0; }
  .step-n { width: 34px; height: 34px; font-size: .75rem; border-radius: 10px; }
  .step-body h3 { font-size: .95rem; }
  .step-body p { font-size: .82rem; }

  .bento-card { padding: 20px; }
  .bento-icon { width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px; }
  .bento-card h4 { font-size: .92rem; }
  .bento-card p { font-size: .8rem; }
  .bento-number { font-size: 2.2rem; }

  .cta-section { padding: 48px 16px; }
  .cta-form input:not([type="checkbox"]) { padding: 13px 16px; }
  .btn-white { padding: 13px 20px; text-align: center; }

  .footer { padding: 36px 16px 20px; }
  .footer-links { flex-direction: column; gap: 20px; }
  .fcol h5 { margin-bottom: 10px; }
  .footer-bot p { font-size: .75rem; }

  .consent-check { font-size: .72rem; }
}

/* Very small screens */
@media (max-width: 360px) {
  .hero { padding: 74px 14px 40px; }
  .hero-title { font-size: 1.6rem; }
  .hero-sub { font-size: .84rem; }
  .hero-right { height: 190px; max-width: 280px; }
  .pcard { padding: 8px 10px; gap: 6px; border-radius: 10px; }
  .pcard-1 { width: 150px; top: 5px; left: 0; }
  .pcard-2 { width: 145px; top: 100px; right: 0; left: auto; }
  .pcard-3 { width: 155px; bottom: 0; left: 5px; }
  .pcard-name { font-size: .7rem; }
  .pcard-role { font-size: .6rem; }
  .av { width: 28px; height: 28px; }
  .av svg { width: 14px; height: 14px; }
  .match-tag { font-size: .56rem; padding: 3px 5px; border-radius: 6px; }
  .hero-stats { gap: 10px; }
  .stat-n { font-size: 1rem; }
  .stat-l { font-size: .65rem; }
  .stat-sep { height: 22px; }
  .sec-title { font-size: 1.4rem; }
  .card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px; }
}
