/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dark: #0f4a58;
  --teal-mid: #1a6b7c;
  --teal-light: #4aabb8;
  --teal-glow: rgba(74, 171, 184, 0.18);
  --bg: #0A0A0A;
  --bg-card: #0f0f0f;
  --bg-card-2: #141414;
  --bg-card-3: #1a1a1a;
  --text: #e8f0f2;
  --text-mid: #8aa4ae;
  --text-light: #4a6878;
  --white: #ffffff;
  --border: rgba(74, 171, 184, 0.18);
  --border-solid: #1c2e36;
  --gold: #c9a84c;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.7);
  --shadow-teal: 0 8px 32px rgba(74, 171, 184, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-primary.large { padding: 18px 44px; font-size: 1.05rem; }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--teal-light);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--teal-mid);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--teal-glow); border-color: var(--teal-light); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
  background: var(--teal-glow);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-main span { color: var(--teal-light); }
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); opacity: 1; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-mid); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(15, 74, 88, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(74, 171, 184, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 70% 90%, rgba(26, 107, 124, 0.1) 0%, transparent 50%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,171,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,171,184,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal-light);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.hero-badge-icon { color: var(--teal-light); font-size: 1rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg-card);
  padding: 48px 36px;
  transition: background 0.2s;
  position: relative;
}
.service-card:hover { background: var(--bg-card-2); }
.service-card.featured {
  background: linear-gradient(135deg, rgba(15,74,88,0.4), rgba(26,107,124,0.2));
}
.service-card.featured:hover {
  background: linear-gradient(135deg, rgba(15,74,88,0.55), rgba(26,107,124,0.35));
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--teal-glow);
  border: 1px solid var(--border);
  color: var(--teal-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 0.8rem;
}

.services-cta {
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.services-cta h3 { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.services-cta p { color: var(--text-mid); margin-bottom: 28px; }
.services-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-strip span {
  position: relative;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 600;
  padding-left: 22px;
}
.trust-strip span::before { content: '✓'; position: absolute; left: 0; color: var(--teal-light); font-weight: 700; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item {
  padding: 32px 0;
  border-top: 2px solid var(--border);
  transition: border-color 0.2s;
}
.why-item:hover { border-top-color: var(--teal-light); }
.why-number { font-size: 2.8rem; font-weight: 800; color: var(--border-solid); line-height: 1; margin-bottom: 16px; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-item p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ===== PROCESS ===== */
.process { background: var(--bg); }
.process-track {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.process-step:hover { border-color: var(--teal-mid); transform: translateX(4px); }
.process-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  color: var(--teal-mid);
  font-size: 1.2rem;
}
.step-number {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-content p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; }

/* ===== ABOUT SECTION (homepage) ===== */
.about-band { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-band-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 20px; }
.about-band-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.about-band-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: var(--bg-card-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: var(--teal-mid); }
.about-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.about-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ===== CONTACT / FORM ===== */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.25; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item a { color: var(--text-mid); text-decoration: none; font-size: 0.97rem; font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: var(--teal-light); }
.contact-item span.val { color: var(--text-mid); font-size: 0.97rem; }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border-solid);
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-card-3);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: #1a1a1a; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(74, 171, 184, 0.1);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a2f3a 50%, #0A0A0A 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(74,171,184,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74,171,184,0.06) 0%, transparent 50%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.35); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.footer-links h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal-light); margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-bottom p { color: var(--text-light); font-size: 0.83rem; }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: var(--text-light); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal-light); }
.footer-legal span { color: var(--border-solid); font-size: 0.75rem; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 140px 0 80px; min-height: 100vh; }
.legal-page h1 { font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.legal-date { color: var(--text-light); font-size: 0.88rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 36px 0 12px; }
.legal-page p { color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; font-size: 0.95rem; }
.legal-page ul { color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; padding-left: 24px; margin-bottom: 12px; }
.legal-page ul li { margin-bottom: 6px; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 140px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(15,74,88,0.25) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 20px; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; }

/* ===== BOOK PAGE ===== */
.book-section { background: var(--bg); padding: 120px 0 80px; }
.book-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.book-info { position: sticky; top: 100px; }
.book-info h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.book-info > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.book-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.book-detail-icon { font-size: 1.3rem; margin-top: 2px; }
.book-detail h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.book-detail p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.book-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.2; margin-bottom: 16px; }
.service-block-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.service-block-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-block-icon { font-size: 3.5rem; margin-bottom: 8px; }
.service-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-item:last-child { border-bottom: none; }
.sdi-icon { color: var(--teal-light); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.sdi-text h4 { font-size: 0.93rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sdi-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ===== SMS CONSENT ===== */
.sms-consent { margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--teal-mid); width: 16px; height: 16px; }
.checkbox-label span { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.checkbox-label a { color: var(--teal-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; }
.testimonial-text { color: var(--text-mid); font-size: 0.93rem; line-height: 1.75; flex: 1; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
}

@media (max-width: 960px) {
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 28px 24px; box-shadow: var(--shadow-lg); gap: 24px; border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-band-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-info { position: static; }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 110px 24px 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stat-item { padding: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .book-form { padding: 28px 24px; }
  .hero-badges { gap: 16px; }
  .about-band-visual { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
