@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f3f4f5;
  --surface: #ffffff;
  --text: #2b3033;
  --muted: #6b7378;
  --brand: #3cc7c3;
  --brand-dark: #2ba6a2;
  --brand-2: #2ba6a2;
  --dark: #23282b;
  --dark-soft: #2d3337;
  --border: #e4e7e8;
  --max: 1140px;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(35,40,43,.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0; pointer-events: none;
}
.site-header .container { pointer-events: auto; }
/* Light header (inner pages over light backgrounds) */
.header-light .nav-toggle { color: var(--text); }
@media (min-width: 641px) {
  .header-light .nav-links a { color: var(--muted); }
  .header-light .nav-links a:hover,
  .header-light .nav-links a.active { color: var(--text); }
}
.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0;
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
}
.brand { display: inline-flex; align-items: center; gap: 0; font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; }
.brand-logo { height: 21px; width: auto; display: block; }
.brand-shield { height: 34px; width: auto; display: block; margin-right: 9px; }
.site-footer .brand-shield { height: 30px; }
.site-header.transparent .brand-shield { filter: drop-shadow(0 2px 5px rgba(0,0,0,.4)); }
.site-footer .brand-logo { height: 19px; }
.site-footer .brand-shield { height: 30px; }
.site-header.transparent .brand-logo { filter: drop-shadow(0 1px 3px rgba(0,0,0,.45)); }
.brand .logo-mark { display: none; }
.brand .ad {
  background: linear-gradient(155deg, #9fb0b6 0%, #46535a 45%, #2c373b 62%, #7d8b91 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand .accent {
  background: linear-gradient(100deg, #6a7a80 0%, #4ab8b4 55%, #33cfca 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px; color: rgba(255,255,255,.8);
  font-weight: 500; font-size: .96rem; transition: .15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* Transparent header over dark hero (at top of page) */
.site-header.transparent { padding: 10px 0; }
.site-header.transparent .nav {
  background: transparent; box-shadow: none; border-color: transparent; padding: 0;
}
.site-header.transparent .brand .ad {
  background: linear-gradient(155deg, #eef3f5 0%, #b9c6cb 50%, #d8e1e4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-header.transparent .brand .accent {
  background: linear-gradient(100deg, #d6dee1 0%, #62d8d3 55%, #39d2cd 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-header.transparent .nav-links a { color: rgba(255,255,255,.8); }
.site-header.transparent .nav-links a:hover,
.site-header.transparent .nav-links a.active { color: #fff; }
.site-header.transparent .nav-toggle { color: #fff; }
@media (max-width: 640px) {
  .site-header.transparent .nav-links { background: var(--dark); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent; transition: .18s; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--dark); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.nav-links a.btn-primary {
  padding: 9px 18px; margin-left: 8px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; color: var(--dark);
  background: linear-gradient(135deg, #4fd3ce 0%, #34bdb8 100%);
  box-shadow: 0 4px 14px rgba(60,199,195,.32);
}
.nav-links a.btn-primary:hover {
  color: #fff; transform: translateY(-1px);
  background: linear-gradient(135deg, #34bdb8 0%, #2ba6a2 100%);
  box-shadow: 0 6px 18px rgba(43,166,162,.42);
}

/* Sections */
section { padding: 86px 0; }
.section-tag { display: none; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; line-height: 1.18; letter-spacing: -.02em; margin: 12px 0 16px; }
.section-intro { color: var(--muted); max-width: 640px; font-size: 1.06rem; }
.center { text-align: center; }
.center .section-intro { margin: 0 auto; }

/* Hero (dark, full-bleed) */
.hero {
  position: relative; overflow: hidden;
  min-height: 70vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 112px 0 0;
  background:
    linear-gradient(105deg, rgba(15,22,25,.94) 0%, rgba(15,22,25,.70) 44%, rgba(15,22,25,.20) 100%),
    radial-gradient(950px 580px at 90% 6%, rgba(60,199,195,.42), transparent 62%),
    radial-gradient(720px 540px at 8% 98%, rgba(43,166,162,.30), transparent 60%),
    linear-gradient(135deg, #0d1417 0%, #123029 52%, #0a3530 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero-inner { position: relative; max-width: var(--max); padding-bottom: 64px; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1 { max-width: 880px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.03; font-weight: 700; letter-spacing: -.035em; }
.hero h1 .grad {
  background: linear-gradient(120deg, #d7eeed 0%, #6fdedb 45%, #3cc7c3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { margin: 26px 0 36px; font-size: clamp(1.1rem, 2vw, 1.45rem); color: rgba(255,255,255,.78); max-width: 620px; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: var(--brand); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { border-color: var(--brand); color: var(--brand); }
.eyebrow {
  display: inline-block; padding: 6px 15px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 26px; font-weight: 500;
  width: fit-content;
}

/* Hero two-column layout + funnel */
.hero-grid { position: relative; flex: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; align-items: center; padding: 16px 0 52px; }
.hero-copy h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.05; font-weight: 700; letter-spacing: -.035em; max-width: none; }
.hero-copy p { margin: 22px 0 0; font-size: 1.12rem; color: rgba(255,255,255,.74); max-width: 520px; }
.hero-single { grid-template-columns: 1fr; }
.hero-single .hero-copy h1 { max-width: 900px; }
.hero-single .hero-copy p { max-width: 640px; }
.hero-single .hero-actions { margin-top: 32px; }

.funnel-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  padding: 28px; box-shadow: 0 26px 64px rgba(0,0,0,.42); color: #fff;
}
.funnel-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(60,199,195,0));
}
.funnel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.funnel-head::before {
  content: ""; flex: none; width: 76px; height: 15px;
  background: url("Black%20Version.png") no-repeat left center / contain;
}
.hero-funnel .funnel-head::before { background-image: url("White%20Version.png"); }
.funnel-label { display: none; }
.funnel-dots { display: flex; gap: 6px; }
.funnel-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); display: block; transition: .25s; }
.funnel-dots i.active { background: var(--brand); width: 20px; border-radius: 4px; }

.funnel-q { font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 18px; }
.funnel-opts { display: grid; gap: 12px; }
.funnel-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left;
  width: 100%; cursor: pointer; color: #fff;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 13px;
  padding: 15px 18px; transition: .18s; font-family: inherit;
}
.funnel-opt:hover { background: rgba(60,199,195,.16); border-color: var(--brand); transform: translateY(-2px); }
.funnel-opt .o-text { flex: 1; }
.funnel-opt .o-title { font-weight: 600; font-size: 1.02rem; display: block; }
.funnel-opt .o-sub { font-size: .85rem; color: rgba(255,255,255,.62); margin-top: 2px; display: block; }
.funnel-opt .o-arrow { color: var(--brand); font-size: 1.1rem; flex-shrink: 0; opacity: .65; transition: .18s; }
.funnel-opt:hover .o-arrow { opacity: 1; transform: translateX(3px); }
.funnel-opt .o-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(60,199,195,.16); color: var(--brand); display: grid; place-items: center;
}
.funnel-opt .o-ico svg { width: 21px; height: 21px; }

/* Niche chips */
.funnel-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.funnel-chip {
  cursor: pointer; color: #fff; font-family: inherit; font-size: .95rem; font-weight: 500;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 11px;
  padding: 13px 14px; text-align: left; transition: .16s;
}
.funnel-chip:hover { background: rgba(60,199,195,.16); border-color: var(--brand); transform: translateY(-2px); }

/* Result tags */
.funnel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.funnel-tag {
  font-size: .76rem; font-weight: 500; padding: 5px 11px; border-radius: 999px;
  background: rgba(60,199,195,.16); color: #9fe9e6; border: 1px solid rgba(60,199,195,.32);
}

.funnel-back { background: none; border: 0; color: rgba(255,255,255,.6); cursor: pointer; font-size: .86rem; margin-top: 18px; padding: 0; font-family: inherit; }
.funnel-back:hover { color: #fff; }

.funnel-result .r-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(60,199,195,.18); color: var(--brand); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.funnel-result h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.funnel-result p { color: rgba(255,255,255,.75); margin-bottom: 22px; }
.funnel-result .btn { width: 100%; justify-content: center; }
.funnel-fade { animation: gcFade .45s ease both; }
.funnel-out { opacity: 0; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease; }

/* Trusted-by bar */
.trusted { position: relative; }
.trusted-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 56px 0 16px; }
.trusted-label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); text-align: center; }
.trusted-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trusted-track { display: flex; align-items: center; width: max-content; animation: trustedScroll 32s linear infinite; }
.trusted-track span { color: rgba(255,255,255,.6); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; white-space: nowrap; margin-right: 64px; }
.trusted-track img { height: 22px; width: auto; display: block; margin-right: 64px; opacity: .6; filter: brightness(0) invert(1); }
.trusted-track .tl-google { height: 32px; }
.trusted-track .tl-everflow { height: 30px; }
.trusted-marquee:hover .trusted-track { animation-play-state: paused; }
@keyframes trustedScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trusted-track { animation: none; } }

/* Solutions accordion section */
.solutions-section { background: var(--bg-soft); }
.big-head { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 44px; max-width: 760px; }
.solutions-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; align-items: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.accordion { background: var(--bg-soft); display: flex; flex-direction: column; }
.acc-item { border-top: 1px solid var(--border); background: transparent; transition: background .4s ease, box-shadow .4s ease, border-radius .4s ease; }
.acc-item:first-child { border-top: 0; }
.acc-item.open { background: #fff; border-radius: var(--radius) 0 0 var(--radius); box-shadow: var(--shadow); border-top-color: transparent; }
.acc-head {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px 28px; color: var(--text);
}
.acc-head .acc-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.acc-head .acc-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
.acc-head .chev { transition: transform .2s; color: var(--muted); font-size: 1.1rem; flex-shrink: 0; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--brand-dark); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.4,0,.2,1); padding: 0 28px; }
.acc-item.open .acc-body { max-height: 280px; padding-bottom: 28px; }
.acc-body p { color: var(--muted); margin-bottom: 16px; }
.acc-body a { color: var(--brand-dark); font-weight: 600; border-bottom: 1px solid var(--brand); padding-bottom: 2px; }
.acc-body a:hover { color: var(--dark); }

.solutions-visual {
  position: relative; min-height: 480px; overflow: hidden;
  background:
    linear-gradient(150deg, rgba(42,51,56,.82), rgba(22,29,32,.88)),
    url("Faviocnb.png") no-repeat center / cover,
    linear-gradient(150deg, #2a3338, #161d20);
}
.solutions-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 70% 30%, rgba(60,199,195,.22), transparent 65%);
}
.glass-cards { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 22px; padding: 30px; }
.glass-card {
  flex: 1; max-width: 200px; min-height: 200px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: #fff; text-align: center; padding: 24px;
}
.glass-card .gc-icon { font-size: 2rem; color: var(--brand); line-height: 1; }
.glass-card .gc-label { font-weight: 600; font-size: 1.05rem; line-height: 1.25; }
@keyframes gcFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.glass-card { animation: gcFade .5s ease both; }
.glass-card:nth-child(2) { animation-delay: .12s; }

/* Grid cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: .2s;
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow); }

/* Two business units */
.units { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.unit-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, #e7f6f5 0%, #f4fbfb 100%);
  border: 1px solid rgba(60,199,195,.28);
  border-radius: var(--radius); padding: 38px; transition: .2s;
}
.unit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.unit-eyebrow {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark); font-weight: 600;
}
.unit-card h3 { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; margin: 0 0 12px; }
.unit-card > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; }
.unit-card .check-list { margin-bottom: 26px; }
.unit-link { margin-top: auto; font-weight: 600; color: var(--brand-dark); }
.unit-platforms { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.plat-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 13px; border-radius: 999px; font-size: .94rem; font-weight: 600;
  background: #fff; color: #1a2024; border: 1px solid rgba(255,255,255,.18);
}
.plat-logo { display: block; flex: none; }
.plat-chip-img { padding: 8px 16px; }
.plat-chip-img .plat-logo { height: 17px; width: auto; }
.unit-card:not(.unit-card-dark) .plat-chip { border-color: rgba(60,199,195,.3); box-shadow: 0 1px 4px rgba(20,40,40,.06); }
.unit-card-dark {
  background: linear-gradient(155deg, #2a3338 0%, #161d20 100%);
  border-color: rgba(255,255,255,.08); color: #fff;
}
.unit-card-dark .unit-eyebrow { color: #6fdedb; }
.unit-card-dark h3 { color: #fff; }
.unit-card-dark > p { color: rgba(255,255,255,.74); }
.unit-card-dark .check-list li { color: rgba(255,255,255,.85); }
.unit-card-dark .check-list li::before { color: #6fdedb; }
.unit-link-light { color: #6fdedb; }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px; margin-bottom: 16px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(60,199,195,.14); color: var(--brand-dark);
}
.card h3 { font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .98rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); }
.stat .num {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, #5f6e74 0%, #2ba6a2 55%, #3cc7c3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* CTA band */
.cta-band {
  position: relative; text-align: center; color: var(--text);
  padding: 8px 0 0;
}
.cta-funnel { max-width: 460px; margin: 26px auto 0; text-align: left; }
.cta-funnel .funnel-card {
  padding: 22px;
  background: linear-gradient(160deg, #1c2429 0%, #11181b 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(20,40,40,.16);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 700; letter-spacing: -.02em; }
.cta-band p { color: var(--muted); margin: 10px auto 0; max-width: 520px; }
.cta-band .btn-primary { background: var(--brand); color: var(--dark); }
.cta-band .btn-primary:hover { background: var(--brand-dark); color: #fff; }

/* Name meaning callout */
.name-meaning {
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(160deg, #e7f6f5 0%, #f4fbfb 100%);
  border: 1px solid rgba(60,199,195,.28); border-radius: var(--radius);
  padding: 36px 42px;
}
.name-meaning .nm-icon {
  width: 96px; height: 96px; border-radius: 22px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,.65); border: 1px solid rgba(60,199,195,.22);
}
.name-meaning .nm-icon img { width: 58px; height: auto; display: block; }
.name-meaning .nm-eyebrow { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-dark); font-weight: 600; margin-bottom: 10px; }
.name-meaning p { font-size: 1.08rem; line-height: 1.6; color: var(--text); margin: 0; }
.name-meaning em { font-style: italic; color: var(--brand-dark); font-weight: 600; }
.name-meaning strong { font-weight: 700; }
@media (max-width: 600px) {
  .name-meaning { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .name-meaning .nm-icon { margin: 0 auto; }
}

/* Success stories */
.cases { display: grid; gap: 26px; }
.case-card {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
}
.case-card.reverse .case-body { order: 2; }
.case-logo { height: 28px; width: auto; display: block; margin-bottom: 16px; }
.case-badge {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(60,199,195,.14); color: var(--brand-dark); margin-bottom: 16px;
}
.case-logo { height: 26px; }
.case-card h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 10px; }
.case-card .case-text { color: var(--muted); font-size: .98rem; margin-bottom: 16px; }
.case-quote { border-left: 3px solid var(--brand); padding-left: 14px; color: var(--text); font-style: italic; font-size: .96rem; }
.case-quote cite { display: block; font-style: normal; font-weight: 600; color: var(--muted); font-size: .86rem; margin-top: 6px; }
.case-metrics { display: grid; gap: 12px; }
.case-metric { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.case-metric .cm-num { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.02em; line-height: 1; }
.case-metric .cm-label { color: var(--muted); font-size: .86rem; margin-top: 5px; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.quote-card p { color: var(--text); margin-bottom: 20px; }
.q-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.q-avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #08312f; font-size: .85rem; background: linear-gradient(150deg, #6fdedb 0%, #3cc7c3 100%); }
.q-meta strong { display: block; font-size: .92rem; }
.q-meta span { color: var(--muted); font-size: .82rem; }

/* Founders */
.founder-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: center; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.founder-avatar {
  aspect-ratio: 1 / 1; margin: -32px -28px 22px; border-radius: 0;
  overflow: hidden; display: block;
  background: linear-gradient(150deg, #6fdedb 0%, #3cc7c3 100%);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; }
.founder-role { display: block; color: var(--brand-dark); font-weight: 600; font-size: .85rem; margin: 4px 0 14px; }
.founder-card p { color: var(--muted); font-size: .96rem; }
.founder-links { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.founder-links a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  color: var(--brand-dark); background: rgba(60,199,195,.12); border: 1px solid rgba(60,199,195,.26);
  transition: .2s;
}
.founder-links a:hover { background: var(--brand); color: #08312f; border-color: var(--brand); transform: translateY(-2px); }

/* Niche tags */
.niches { margin-top: 54px; text-align: center; }
.niches-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.niche-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.niche-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  color: var(--text); background: #fff;
  border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(20,40,40,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease; cursor: default;
}
.niche-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--brand); transition: transform .2s ease;
}
.niche-tag:hover { transform: translateY(-4px); border-color: var(--brand); color: var(--brand-dark); box-shadow: 0 14px 28px rgba(60,199,195,.22); }
.niche-tag:hover::before { transform: scale(1.4); }

/* Audience blocks */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.aud-block {
  position: relative; overflow: hidden;
  border-radius: 24px; padding: 48px 46px; display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.aud-block::after {
  content: ""; position: absolute; width: 360px; height: 360px; right: -90px; top: -120px;
  border-radius: 50%; pointer-events: none;
}
.aud-block > * { position: relative; z-index: 1; }
.aud-block:hover { transform: translateY(-5px); }
.aud-num {
  position: absolute; top: 30px; right: 38px; z-index: 1;
  font-size: 5.4rem; font-weight: 800; line-height: 1; letter-spacing: -.04em;
}
.aud-eyebrow {
  display: inline-block; align-self: flex-start;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.aud-block h3 { font-size: 2.05rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin: 0 0 14px; }
.aud-block .aud-sub { margin-bottom: 28px; font-size: 1.05rem; }
.aud-block .check-list { gap: 16px; margin-bottom: 34px; padding-top: 28px; }
.aud-block .check-list li { align-items: center; }
.aud-block .check-list li::before {
  content: "✓"; display: grid; place-items: center; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%; font-size: .72rem; font-weight: 700;
}
.aud-block .aud-cta { margin-top: auto; }

.aud-dark { background: linear-gradient(160deg, #34434a 0%, #232d31 100%); color: #fff; }
.aud-dark::after { background: radial-gradient(circle, rgba(60,199,195,.22), transparent 68%); }
.aud-dark .aud-num { color: rgba(111,222,219,.12); }
.aud-dark:hover { box-shadow: 0 30px 66px rgba(0,0,0,.34); }
.aud-dark .aud-eyebrow { background: rgba(60,199,195,.18); color: #6fdedb; }
.aud-dark .aud-icon { background: rgba(60,199,195,.16); color: #5fd6d1; }
.aud-dark .aud-sub { color: rgba(255,255,255,.68); }
.aud-dark .check-list { border-top: 1px solid rgba(255,255,255,.1); }
.aud-dark .check-list li { color: rgba(255,255,255,.85); }
.aud-dark .check-list li::before { background: rgba(60,199,195,.2); color: #6fdedb; }

.aud-brand { background: linear-gradient(160deg, #5fc3bf 0%, #3f9a96 100%); color: #fff; }
.aud-brand::after { background: radial-gradient(circle, rgba(255,255,255,.22), transparent 68%); }
.aud-brand .aud-num { color: rgba(255,255,255,.16); }
.aud-brand:hover { box-shadow: 0 30px 66px rgba(63,154,150,.45); }
.aud-brand .aud-eyebrow { background: rgba(255,255,255,.24); color: #fff; }
.aud-brand .aud-icon { background: rgba(255,255,255,.2); color: #fff; }
.aud-brand .aud-sub { color: rgba(255,255,255,.9); }
.aud-brand .check-list { border-top: 1px solid rgba(255,255,255,.3); }
.aud-brand .check-list li { color: #fff; }
.aud-brand .check-list li::before { background: rgba(255,255,255,.28); color: #fff; }
.aud-brand .btn-light { background: #fff; color: #2a6a67; }
.aud-brand .btn-light:hover { background: var(--dark); color: #fff; }

/* Lists */
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--brand-dark); font-weight: 700; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .visual {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  min-height: 320px; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--muted);
  font-size: 1.02rem; font-weight: 500;
}
.split .story-visual {
  place-items: start; align-content: center; gap: 0;
  padding: 44px; text-align: left; color: #fff;
  background: linear-gradient(155deg, #2a3338 0%, #11181b 100%);
  border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.story-visual > * { position: relative; z-index: 1; }
.story-visual .sv-eyebrow {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: #6fdedb; font-weight: 600; margin-bottom: 14px;
}
.story-visual h3 { font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em; margin: 0 0 12px; color: #fff; }
.story-visual > p { color: rgba(255,255,255,.75); font-size: 1.02rem; font-weight: 400; margin: 0 0 24px; max-width: 340px; }
.story-visual .unit-platforms { margin-bottom: 0; }

/* Services list page */
.service-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 28px;
  padding: 32px 0; border-top: 1px solid var(--border); align-items: start;
}
.service-row .num-big { font-size: 2.2rem; font-weight: 800; color: var(--border); letter-spacing: -.02em; }
.service-row h3 { font-weight: 700; font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -.01em; }
.service-row p { color: var(--muted); }

/* Forms */
.form { display: grid; gap: 18px; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--text); }
.field input, .field textarea, .field select {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .98rem; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(60,199,195,.16); }
.field input::placeholder, .field textarea::placeholder { color: #9aa1a5; }
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; justify-content: center; padding: 14px 22px; margin-top: 4px; }
.form-note { color: var(--brand-dark); font-weight: 600; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; align-items: stretch; }
.contact-info {
  display: grid; gap: 20px; align-content: start;
  background: linear-gradient(160deg, #2a3338 0%, #161d20 100%); color: #fff;
  border-radius: var(--radius); padding: 36px;
}
.contact-info .ci-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
.contact-info .item .k { color: #6fdedb; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact-info .item .v { font-size: 1.04rem; color: #fff; margin-top: 3px; }
.contact-info .item .v a { color: #fff; }
.contact-info .item .v a:hover { color: #6fdedb; }

/* Page hero (inner pages) */
.page-hero { padding: 124px 0 40px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.025em; }
.page-hero p { color: var(--muted); margin-top: 14px; max-width: 620px; font-size: 1.1rem; }
.page-hero.center { text-align: center; padding-bottom: 16px; }
.page-hero.center h1 { max-width: none; margin: 0 auto; font-size: clamp(1.9rem, 4.2vw, 2.6rem); }
.page-hero.center p { max-width: 680px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 32px; background: var(--bg-soft); }
.footer-funnel-band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border-radius: 24px; padding: 48px; color: var(--text);
  background: linear-gradient(160deg, #e7f6f5 0%, #f4fbfb 100%);
  border: 1px solid rgba(60,199,195,.28);
}
.footer-funnel-band .ffb-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; }
.footer-funnel-band .ffb-copy p { color: var(--muted); margin-top: 14px; max-width: 420px; }
.footer-funnel .funnel-card {
  background: #fff; color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 22px 54px rgba(20,40,40,.1);
}
.footer-funnel .funnel-label { color: var(--muted); }
.footer-funnel .funnel-dots i { background: rgba(20,40,40,.15); }
.footer-funnel .funnel-dots i.active { background: var(--brand); }
.footer-funnel .funnel-opt { background: var(--bg-soft); border-color: var(--border); color: var(--text); }
.footer-funnel .funnel-opt:hover { background: rgba(60,199,195,.12); border-color: var(--brand); }
.footer-funnel .funnel-opt .o-sub { color: var(--muted); }
.footer-funnel .funnel-chip { background: var(--bg-soft); border-color: var(--border); color: var(--text); }
.footer-funnel .funnel-chip:hover { background: rgba(60,199,195,.12); border-color: var(--brand); }
.footer-funnel .funnel-back { color: var(--muted); }
.footer-funnel .funnel-back:hover { color: var(--text); }
.footer-funnel .funnel-result p { color: var(--muted); }
.footer-funnel .funnel-tag { color: var(--brand-dark); }
.footer-funnel .funnel-result .btn { background: var(--brand); color: var(--dark); }
.footer-funnel .funnel-result .btn:hover { background: var(--brand-dark); color: #fff; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-top .about p { color: var(--muted); margin-top: 12px; max-width: 280px; font-size: .95rem; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--brand-dark); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; color: var(--muted); font-size: .88rem; flex-wrap: wrap; gap: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .acc-item.open { border-radius: var(--radius) var(--radius) 0 0; }
  .solutions-visual { min-height: 360px; }
  .audience { grid-template-columns: 1fr; }
  .units { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; gap: 28px; }
  .case-card.reverse .case-body { order: 0; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .footer-funnel-band { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 8px 0 44px; }
  .hero-copy p { max-width: none; }
}
@media (max-width: 640px) {
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(20,28,30,.97); border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,.4);
    padding: 12px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; text-align: center; }
  .nav-links a.btn-primary { margin-left: 0; margin-top: 4px; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 18px; }
  .cta-band { padding: 36px 24px; }
  .quotes { grid-template-columns: 1fr; }
  .case-card { padding: 30px 24px; }
  section { padding: 60px 0; }
  .big-head { margin-bottom: 28px; }
  .acc-head { padding: 20px; }
  .acc-head .acc-title { font-size: 1.25rem; }
  .acc-body { padding: 0 20px; }
  .acc-item.open .acc-body { padding-bottom: 22px; }
  .aud-block { padding: 34px 26px; }
  .aud-num { font-size: 4rem; top: 22px; right: 26px; }
  .trusted-inner { padding: 40px 0 12px; gap: 20px; }
  .footer-funnel-band { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .name-meaning { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav { padding: 0 16px; height: 58px; }
  .brand-logo { height: 19px; }
  .site-footer .brand-logo { height: 18px; }
  .hero { padding-top: 96px; }
  .hero p { font-size: 1.08rem; margin: 20px 0 30px; }
  .funnel-card { padding: 20px; }
  .page-hero { padding: 104px 0 24px; }
  .founder-card { padding: 26px 22px; }
  .founder-avatar { margin: -26px -22px 20px; }
  .name-meaning { padding: 24px 20px; }
  .section-title { font-size: 1.6rem; }
}
