/* ============================================
   DOCTOR EYE HEALTH — Creator + Clinical Brand
   ============================================ */

:root {
  /* Brand */
  --navy: #0a3d62;
  --navy-deep: #062841;
  --navy-bright: #1c5b8a;
  --teal: #2e86ab;
  --teal-light: #c6e4ee;
  --coral: #f47c5e;
  --coral-deep: #d9573a;
  --gold: #e0b552;
  --success: #4a9d6e;

  /* Neutrals */
  --white: #ffffff;
  --paper: #fafaf7;
  --paper-2: #f0ede4;
  --paper-blue: #eef5f9;
  --ink: #14202d;
  --ink-2: #2f3e51;
  --ink-3: #5d6c80;
  --ink-4: #8d99a8;

  --line: rgba(20, 32, 45, 0.10);
  --line-mid: rgba(20, 32, 45, 0.18);
  --line-strong: rgba(20, 32, 45, 0.32);

  /* Typography */
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;

  --max-w: 1320px;
  --nav-h: 78px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 16px 40px -12px rgba(10, 61, 98, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 61, 98, 0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2.2rem); }
h4 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  display: inline-block;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ========== ANNOUNCEMENT BAR ========== */
.announce {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
  font-weight: 500;
}
.announce strong { color: var(--gold); }
.announce .sep { padding: 0 16px; opacity: .4; }
.announce a { color: var(--white); text-decoration: underline; }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}
.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: all .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--paper-blue);
  color: var(--navy);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.btn:hover { background: var(--navy); color: var(--white); }
.btn.coral {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.btn.coral:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(244, 124, 94, 0.45);
}
.btn.navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn.navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn.ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn.ghost:hover { background: var(--white); color: var(--navy); }
.btn.yt {
  background: #ff0000;
  border-color: #ff0000;
  color: var(--white);
}
.btn.yt:hover { background: #cc0000; border-color: #cc0000; }
.btn.sm { padding: 10px 18px; font-size: .85rem; }
.btn.lg { padding: 18px 36px; font-size: 1.1rem; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.mobile-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
}
.mobile-toggle svg { width: 20px; height: 20px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(135deg, var(--paper-blue) 0%, var(--paper) 80%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 124, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.hero-content { animation: fadeUp 1s var(--ease) both; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--coral);
  color: var(--coral-deep);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 30px;
}
.hero h1 { margin-bottom: 24px; line-height: 1; }
.hero h1 .coral { color: var(--coral); }
.hero h1 .underline {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
}
.hero-lead {
  font-size: 1.22rem;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust .stat {
  display: flex;
  flex-direction: column;
}
.hero-trust .num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-trust .label {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-portrait {
  position: relative;
  text-align: center;
}
.hero-portrait img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.hero-portrait .badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 14px;
  font-family: var(--display);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.hero-portrait .badge .num {
  font-size: 1.7rem;
  display: block;
  line-height: 1;
}
.hero-portrait .badge .lbl {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 2px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-bar .label {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.trust-bar .logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-bar .logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink-3);
  opacity: .8;
}

/* ========== SECTIONS ========== */
section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  font-size: 1.15rem;
  color: var(--ink-2);
}

/* ========== TOPIC GRID ========== */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.topic-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: var(--shadow);
}
.topic-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--paper-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.topic-icon svg { width: 28px; height: 28px; }
.topic-icon.coral { background: rgba(244, 124, 94, 0.12); color: var(--coral-deep); }
.topic-icon.gold { background: rgba(224, 181, 82, 0.15); color: #a87f1e; }
.topic-icon.teal { background: rgba(46, 134, 171, 0.12); color: var(--teal); }
.topic-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.topic-card p {
  font-size: .98rem;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 18px;
}
.topic-card a.read-more {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topic-card a.read-more::after {
  content: '→';
  transition: transform .2s;
}
.topic-card a.read-more:hover::after { transform: translateX(4px); }

/* ========== VIDEO GRID ========== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background .2s;
}
.video-card:hover .play { background: rgba(0, 0, 0, 0.4); }
.video-thumb .play svg {
  width: 70px;
  height: 70px;
  color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.video-thumb .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--white);
  font-family: var(--mono);
  font-size: .8rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.video-info {
  padding: 22px;
}
.video-info .cat {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.video-info h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.video-info .meta {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-3);
}

/* ========== STATS BAND ========== */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.stats-band h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-item .label {
  font-family: var(--sans);
  font-size: .88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  letter-spacing: .04em;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: linear-gradient(135deg, var(--paper-blue), var(--paper));
}
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.newsletter-card h2 { margin-bottom: 14px; }
.newsletter-card p { font-size: 1.1rem; margin-bottom: 30px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  border: 1.5px solid var(--line-mid);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--coral); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.newsletter-form button:hover { background: var(--coral-deep); }
.newsletter-card .small {
  font-size: .85rem;
  color: var(--ink-3);
  margin-top: 16px;
}

/* ========== PRESS / AS-SEEN-IN ========== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.press-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all .2s var(--ease);
}
.press-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.press-card .source {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.press-card .title {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--paper-blue), var(--paper));
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-3);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb .sep { padding: 0 10px; opacity: .5; }
.page-header h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.page-header p {
  font-size: 1.18rem;
  max-width: 720px;
  color: var(--ink-2);
}

/* ========== FORMS ========== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-label {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  display: block;
  letter-spacing: .02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line-mid);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--coral);
}
.form-textarea { min-height: 130px; resize: vertical; font-family: var(--sans); }
.form-card h3 { margin-bottom: 10px; font-size: 1.6rem; }
.form-card p.sub { color: var(--ink-3); margin-bottom: 26px; font-size: .96rem; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all .2s var(--ease);
}
.faq-item:hover { border-color: var(--line-mid); }
.faq-q {
  padding: 22px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-q .plus {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  color: var(--ink-2);
  font-size: .98rem;
  transition: all .3s var(--ease);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  padding: 0 28px 22px;
  max-height: 600px;
}

/* ========== ARTICLE ========== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 32px;
}
.article h2 {
  font-size: 1.9rem;
  margin: 50px 0 18px;
}
.article h3 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}
.article p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.article ul, .article ol {
  margin: 18px 0 22px 26px;
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.75;
}
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 4px solid var(--coral);
  padding: 12px 24px;
  margin: 28px 0;
  background: var(--paper-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink-2);
}
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--ink-3);
  font-size: .92rem;
  flex-wrap: wrap;
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.disclaimer {
  background: var(--paper-blue);
  border-left: 4px solid var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius);
  margin: 30px 0;
  font-size: .9rem;
  color: var(--ink-2);
}
.disclaimer strong { color: var(--navy); }

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--white);
  padding: 80px 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 124, 94, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== TWO-COLUMN ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); }
.two-col.reverse > :first-child { order: 2; }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand .brand-mark { background: var(--coral); }
.footer-tag {
  color: rgba(255,255,255,0.65);
  font-size: .95rem;
  margin-bottom: 22px;
  line-height: 1.65;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  transition: all .2s var(--ease);
}
.socials a:hover { background: var(--coral); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

footer h5 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; }
footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: .94rem;
  transition: color .2s;
}
footer ul a:hover { color: var(--coral); }

.footer-newsletter h5 { margin-bottom: 8px; }
.footer-newsletter p {
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-newsletter form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: .9rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { outline: none; }
.footer-newsletter button {
  padding: 0 18px;
  background: var(--coral);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
}
.footer-newsletter button:hover { background: var(--coral-deep); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}
.footer-base a { color: rgba(255,255,255,0.65); }
.footer-base a:hover { color: var(--coral); }

/* ========== UTILITY ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateX(420px);
  transition: transform .4s var(--ease);
  z-index: 200;
  max-width: 340px;
}
.toast.show { transform: translateX(0); }
.toast .title {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.toast .msg { color: var(--ink-3); font-size: .9rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .mobile-toggle { display: inline-flex; }
  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-portrait { order: -1; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-card { padding: 40px 24px; }
  section { padding: 70px 0; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-item .num { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; }
}
