/* ═══ CYP Health Technologies – Main Stylesheet ═══ */

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

:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface2: #F4F3F8;
  --border: #E8E6F0;
  --accent: #6B5DE8;
  --accent2: #8E7FF5;
  --accent-soft: #EEF0FF;
  --text: #0E0D17;
  --text-mid: #4B4866;
  --text-muted: #9491AA;
  --teal: #3ECFB2;
  --teal-soft: #E6FAF6;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(107,93,232,0.08);
  --shadow-lg: 0 12px 48px rgba(107,93,232,0.13);
  --nav-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text-mid); font-weight: 400; }

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section   { padding: 96px 0; }

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(107,93,232,0.13); background: rgba(255,255,255,0.97); }
.nav-inner {
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.18rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 9px;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.92rem; font-weight: 500; padding: 7px 13px;
  border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent); background: var(--accent-soft); }
.nav-links .btn-nav {
  background: var(--accent); color: #fff; padding: 8px 18px; border-radius: 9px;
  font-weight: 600;
}
.nav-links .btn-nav:hover { background: #5647d4; color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background:none; border:none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; display:block; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: all 0.22s; border: none; outline: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #5647d4; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(107,93,232,0.28); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-ghost { background: var(--surface2); color: var(--text); }
.btn-ghost:hover { background: var(--border); }

/* ─── CHIPS / LABELS ─────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
}
.chip-accent { background: var(--accent-soft); color: var(--accent); }
.chip-teal   { background: var(--teal-soft); color: #1faa8e; }

/* ─── CARDS ──────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all 0.28s;
  box-shadow: var(--shadow);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #d4cefc; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.4rem;
}
.icon-purple { background: var(--accent-soft); }
.icon-teal   { background: var(--teal-soft); }
.icon-indigo { background: #EEF2FF; }
.icon-rose   { background: #FFF0F3; }

/* ─── SECTION LABELS ─────────────────────────── */
.section-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow-line    { width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow-text    { font-size: 0.82rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── DIVIDER ─────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── HERO ───────────────────────────────────── */
#home {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px;
  background: var(--bg); position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.18; }
.blob1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; }
.blob2 { width: 400px; height: 400px; background: var(--teal); bottom: -100px; left: -80px; }
.blob3 { width: 300px; height: 300px; background: #b5aaff; top: 40%; left: 40%; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge { margin-bottom: 24px; }
.hero-title { margin-bottom: 22px; }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 1.15rem; margin-bottom: 36px; max-width: 480px; line-height: 1.72; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dashboard Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.dash-card {
  background: #fff; border-radius: 22px; padding: 28px;
  box-shadow: 0 24px 80px rgba(107,93,232,0.18), 0 4px 16px rgba(0,0,0,0.06);
  width: 100%; max-width: 420px; border: 1px solid rgba(107,93,232,0.1);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dash-title  { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.dash-badge  { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; background: var(--teal-soft); color: #1faa8e; }
.dash-score-row { display: flex; gap: 12px; margin-bottom: 20px; }
.dash-score-box { flex: 1; border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.score-main { background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%); color: #fff; }
.score-alt  { background: var(--surface2); }
.dash-score-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; opacity: 0.75; text-transform: uppercase; }
.score-main .dash-score-label { color: rgba(255,255,255,0.8); }
.dash-score-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.9rem; }
.score-main .dash-score-val { color: #fff; }
.score-alt  .dash-score-val { color: var(--text); }
.dash-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.dash-bar-row { display: flex; align-items: center; gap: 10px; }
.dash-bar-label { font-size: 0.8rem; color: var(--text-mid); font-weight: 500; width: 70px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 7px; background: var(--surface2); border-radius: 4px; overflow: hidden; }
.dash-bar-fill  { height: 100%; border-radius: 4px; }
.bar-p { background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%); }
.bar-c { background: linear-gradient(90deg, var(--teal) 0%, #6ee7d0 100%); }
.bar-f { background: linear-gradient(90deg, #f5a623 0%, #f7c36a 100%); }
.dash-bar-pct { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); width: 32px; text-align: right; }
.dash-suggestion { background: var(--accent-soft); border-radius: 12px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.dash-sug-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.dash-sug-text { font-size: 0.83rem; color: var(--accent); font-weight: 500; line-height: 1.5; }

.floating-pill {
  position: absolute; background: #fff; border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.pill1 { top: -18px; left: -28px; animation: floatA 4s ease-in-out infinite; }
.pill2 { bottom: 30px; right: -20px; animation: floatB 4.5s ease-in-out infinite 0.5s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green  { background: #22c55e; }
.dot-purple { background: var(--accent); }

/* Highlights grid */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 72px; }

/* ─── LOGO STRIP ─────────────────────────────── */
.logo-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 28px 0; }
.logo-strip-inner { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; }
.logo-strip-img { height: 56px; width: auto; object-fit: contain; }
.logo-strip-divider { width: 1px; height: 40px; background: var(--border); }
.logo-strip-tagline { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.04em; }

/* ─── ABOUT ──────────────────────────────────── */
#about { background: var(--surface2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.stat-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.stat-val   { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); }
.pillar-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* ─── PLATFORM ───────────────────────────────── */
#platform { background: var(--bg); }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.platform-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: all 0.28s;
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 100%);
  opacity: 0; transition: opacity 0.28s;
}
.platform-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.platform-card:hover::before { opacity: 1; }
.platform-num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--border); line-height: 1; margin-bottom: 16px;
}

/* ─── PRODUCTS ───────────────────────────────── */
#products { background: var(--surface2); }
.products-inner { max-width: 860px; }
.product-card-main {
  background: linear-gradient(135deg, #1c1836 0%, #2d2560 100%);
  border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  margin-top: 48px; position: relative; overflow: hidden;
}
.product-card-main::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,93,232,0.35) 0%, transparent 70%);
}
.product-eyebrow { color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.product-name { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.product-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.product-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--accent); font-weight: 600; }
.btn-white:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.product-logo-area { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.product-icon-lg {
  width: 88px; height: 88px; border-radius: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.product-icon-lg img { width: 100%; height: 100%; object-fit: cover; }
.product-brand { font-family: 'Syne', sans-serif; font-weight: 800; color: #fff; font-size: 0.9rem; letter-spacing: 0.04em; }
.products-note {
  margin-top: 24px; padding: 18px 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-mid);
}

/* ─── COMBINED PRODUCT SECTION ───────────────── */
.combined-product-card {
  display: grid; grid-template-columns: 380px 1fr;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(28,24,54,0.18);
  border: 1px solid rgba(107,93,232,0.12);
  margin-top: 48px;
}
.combined-left {
  background: linear-gradient(155deg, #12102a 0%, #1e1a48 55%, #261f55 100%);
  padding: 44px 40px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; min-width: 0; box-sizing: border-box;
}
.combined-left::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,93,232,0.22) 0%, transparent 68%);
  pointer-events: none;
}
.combined-left::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,178,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.combined-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; position: relative; z-index: 1; }
.combined-logo-stacked { margin-bottom: 16px; position: relative; z-index: 1; }
.combined-product-name {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem;
  color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px;
  white-space: normal; word-break: break-word; overflow-wrap: anywhere;
  width: 100%; display: block; position: relative; z-index: 1;
}
.combined-product-tagline { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }
.combined-chip-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 24px; position: relative; z-index: 1; }
.chip-teal-dark { background: rgba(62,207,178,0.15); color: #4ddec4; border: 1px solid rgba(62,207,178,0.25); padding: 4px 11px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.chip-purple-dark { background: rgba(107,93,232,0.2); color: #b0a6f8; border: 1px solid rgba(107,93,232,0.3); padding: 4px 11px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.combined-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; position: relative; z-index: 1; }
.combined-cta .btn { justify-content: center; padding: 12px 20px; }
.combined-disclaimer { margin-top: 24px; font-size: 0.69rem; color: rgba(255,255,255,0.25); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; position: relative; z-index: 1; }
.combined-right { background: var(--surface2); padding: 48px 40px; display: flex; flex-direction: column; gap: 40px; }

/* Phone pair */
.combined-phones { display: flex; justify-content: center; align-items: flex-end; gap: 0; position: relative; height: 320px; }
.combined-phone { position: absolute; }
.combined-phone-back { right: calc(50% - 180px); bottom: 0; z-index: 1; transform: rotate(6deg) translateX(20px); opacity: 0.85; }
.combined-phone-front { right: calc(50% - 240px); bottom: 0; z-index: 2; transform: rotate(-4deg) translateX(-10px); }
.combined-phone .real-phone-frame { max-width: 160px; }
.combined-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.combined-feat { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: all 0.25s; }
.combined-feat:hover { box-shadow: var(--shadow); border-color: #d4cefc; transform: translateY(-2px); }
.combined-feat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.combined-feat h4 { font-size: 0.9rem; margin-bottom: 4px; }
.combined-feat p { font-size: 0.8rem; line-height: 1.5; }

/* ─── CHECKYOURPLATE ─────────────────────────── */
#checkyourplate { background: var(--bg); }
.cyp-hero {
  background: linear-gradient(135deg, #f5f3ff 0%, #eff8f5 100%);
  border-radius: 28px; padding: 64px; margin-bottom: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  border: 1px solid var(--border);
}
.cyp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cyp-feat { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.25s; }
.cyp-feat:hover { box-shadow: var(--shadow); border-color: #d4cefc; transform: translateY(-2px); }
.cyp-feat-icon { font-size: 1.5rem; margin-bottom: 12px; }
.cyp-feat h4 { font-size: 1rem; margin-bottom: 6px; }
.cyp-feat p { font-size: 0.875rem; }
.cyp-phone { background: #1c1836; border-radius: 36px; padding: 20px 16px; max-width: 220px; margin: 0 auto; box-shadow: 0 32px 80px rgba(28,24,54,0.38); }
.phone-screen { background: #fff; border-radius: 24px; overflow: hidden; }
.phone-topbar { background: var(--accent); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.phone-app-name { color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem; }
.phone-body { padding: 14px; }
.phone-meal-img { width: 100%; height: 90px; border-radius: 12px; margin-bottom: 12px; background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.phone-score-bar { background: var(--surface2); border-radius: 8px; padding: 8px 10px; margin-bottom: 8px; }
.phone-score-row { display: flex; justify-content: space-between; align-items: center; }
.phone-score-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.phone-score-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); }
.phone-mini-bar { height: 5px; background: var(--border); border-radius: 3px; margin-top: 5px; overflow: hidden; }
.phone-mini-fill { height: 100%; width: 78%; background: linear-gradient(90deg, var(--accent), var(--teal)); border-radius: 3px; }
.phone-tip { background: var(--accent-soft); border-radius: 8px; padding: 8px 10px; font-size: 0.7rem; color: var(--accent); font-weight: 500; line-height: 1.4; }
.disclaimer-box { margin-top: 48px; padding: 20px 24px; background: var(--surface2); border-left: 3px solid var(--teal); border-radius: 0 10px 10px 0; font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── REAL APP SCREENSHOTS ────────────────────── */
.real-phone-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.real-phone-frame {
  background: #1a1a2e; border-radius: 44px; padding: 10px 8px;
  box-shadow: 0 32px 80px rgba(28,24,54,0.42), 0 4px 20px rgba(107,93,232,0.2),
              inset 0 0 0 1px rgba(255,255,255,0.08);
  max-width: 280px; width: 100%;
}
.real-phone-img { width: 100%; border-radius: 36px; display: block; }
.cyp-phone-real .real-phone-frame { max-width: 240px; }

/* ─── CYP PRODUCT LOGO ───────────────────────── */
.cyp-logo-real { width: 80px; height: 80px; border-radius: 18px; object-fit: cover; display: block; box-shadow: 0 8px 28px rgba(0,0,0,0.45); }

/* ─── LOGO IMAGES ────────────────────────────── */
.nav-logo-img { height: 52px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.08)); transition: opacity 0.2s; }
.nav-logo-img:hover { opacity: 0.85; }
.footer-logo-img { height: 60px; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 14px; opacity: 0.95; }

/* ─── VISION ─────────────────────────────────── */
#vision { background: linear-gradient(160deg, #1c1836 0%, #0e1a2e 100%); color: #fff; }
#vision .section-eyebrow .eyebrow-line { background: var(--teal); }
#vision .eyebrow-text { color: var(--teal); }
.vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.vision-copy h2 { color: #fff; }
.vision-copy p { color: rgba(255,255,255,0.68); font-size: 1.08rem; line-height: 1.8; }
.vision-copy p + p { margin-top: 18px; }
.vision-pillars { display: flex; flex-direction: column; gap: 16px; }
.vision-pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
}
.vision-pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: rgba(107,93,232,0.25);
}
.vision-pillar h4 { color: #fff; margin-bottom: 4px; }
.vision-pillar p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ─── CONTACT ────────────────────────────────── */
#contact { background: var(--surface2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-types { display: flex; flex-direction: column; gap: 12px; }
.contact-type {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
}
.contact-type-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-type h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-type p { font-size: 0.85rem; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--bg); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(107,93,232,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,0.55); padding: 48px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.6; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.82rem; }

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(250,250,250,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-close { position: absolute; top: 22px; right: 22px; cursor: pointer; font-size: 1.4rem; color: var(--text-mid); background: none; border: none; }

/* ─── ANIMATIONS ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .vision-inner { grid-template-columns: 1fr; }
  .cyp-hero { grid-template-columns: 1fr; }
  .combined-product-card { grid-template-columns: 1fr; }
  .combined-phones { height: 260px; }
  .combined-phone .real-phone-frame { max-width: 130px; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .platform-grid { grid-template-columns: 1fr; }
  .cyp-features { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product-card-main { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .product-logo-area { flex-direction: row; }
  .combined-features { grid-template-columns: 1fr; }
  .combined-cta { flex-direction: row; flex-wrap: wrap; }
  .combined-phones { height: 220px; }
}
@media (max-width: 480px) {
  .cyp-features { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
