/* ============================================================
   GoSendil — Hauptstylesheet
   gosendil.com
   ============================================================ */

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

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --primary:       #5B4EE8;
  --primary-light: #7B6FF5;
  --primary-dark:  #3D32C4;
  --primary-bg:    #F4F2FF;
  --accent:        #00C9A7;
  --accent-light:  #E6FAF7;
  --white:         #FFFFFF;
  --bg:            #F9F8FF;
  --dark:          #1A183A;
  --text:          #2E2C50;
  --muted:         #7E7BA0;
  --border:        #E8E4FF;
  --card-shadow:   0 2px 24px rgba(91,78,232,0.08);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    0.25s ease;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(36px, 5.5vw, 64px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }
h4 { font-size: 18px; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(91,78,232,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,78,232,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(91,78,232,0.06);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-cta { margin-left: 8px; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  display: block;
}

.mobile-menu a:hover { background: var(--primary-bg); color: var(--primary); }
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ── Coming Soon Banner ─────────────────────────────────── */
.coming-soon-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, #9B7AFF 100%);
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.coming-soon-bar strong { font-weight: 700; }
.coming-soon-bar a { text-decoration: underline; margin-left: 8px; opacity: 0.9; }
.coming-soon-bar a:hover { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(91,78,232,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  border: 1px solid rgba(91,78,232,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 { margin-bottom: 24px; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero p.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Feature Cards ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
  border-color: rgba(91,78,232,0.2);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-icon-wrap i { font-size: 26px; color: var(--primary); line-height: 1; }

.feature-card h4 { margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── Feature Row (Big) ──────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row:last-child { margin-bottom: 0; }

.feature-row-visual {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #EEF0FF 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-row h2 { margin-bottom: 16px; }
.feature-row .feature-row-desc { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.feature-row .feature-row-list { margin-bottom: 32px; }
.feature-row .feature-row-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-row .feature-row-list li:last-child { border-bottom: none; }
.feature-row .feature-row-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
  border: 2px solid var(--accent);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Cards 3-col ────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.card-icon i { font-size: 30px; color: var(--primary); line-height: 1; }
.card h4 { margin-bottom: 12px; color: var(--dark); }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CTA Band ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #9B7AFF 100%);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { font-size: 17px; opacity: 0.85; max-width: 480px; margin: 0 auto 36px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Waitlist Form ──────────────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.waitlist-form input[type="email"]:focus { border-color: var(--primary); }
.waitlist-form input[type="email"]::placeholder { color: var(--muted); }

.waitlist-form-white input[type="email"] {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
}
.waitlist-form-white input[type="email"]::placeholder { color: rgba(255,255,255,0.6); }

/* ── Compare Table ──────────────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table thead th {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  background: var(--bg);
}
.compare-table thead th.col-highlight {
  background: var(--primary-bg);
  color: var(--primary);
}
.compare-table td.col-highlight { background: rgba(244,242,255,0.5); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .ico-yes { color: var(--accent); font-size: 18px; }
.compare-table .ico-no { color: #D0CEEB; font-size: 18px; }
.compare-table .ico-partial { color: #F5A623; font-size: 16px; font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── Status Badge ───────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF8EC;
  border: 1px solid #FFD580;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #B87A00;
}

.status-badge .dot-orange {
  width: 8px; height: 8px;
  background: #F5A623;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: 148px;
  padding-bottom: 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
  transition: color var(--transition);
  gap: 20px;
}
.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Form ───────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,78,232,0.08);
}

.form-group textarea { min-height: 140px; resize: vertical; }

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

/* ── Timeline ───────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px;
  left: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.timeline-item.active::before {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,78,232,0.15);
}
.timeline-item.done::before {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.timeline-item.active .timeline-label { color: var(--primary); }
.timeline-item.done .timeline-label { color: var(--accent); }

.timeline-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Team ───────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px 32px;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }

.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.team-avatar i { font-size: 40px; color: white; }

.team-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── Toast ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--dark);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Photos ─────────────────────────────────────────────── */
.photo-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--border);
  position: relative;
}

.photo-visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-visual:hover img {
  transform: scale(1.03);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.photo-strip-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 220px;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

.photo-banner {
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  position: relative;
  margin: 64px 0;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,78,232,0.7) 0%, rgba(0,201,167,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.photo-banner-overlay h2 { color: white; margin-bottom: 12px; }
.photo-banner-overlay p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 500px; }

.photo-credit {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { height: 180px; }
  .photo-banner { height: 260px; }
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Helpers ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  h1 { font-size: clamp(28px, 8vw, 44px); }
  h2 { font-size: clamp(22px, 6vw, 34px); }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-2col { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-band { padding: 48px 24px; }
  .hero { padding-top: 140px; }
}
