/* ═══════════════════════════════════════════════
   GoDoc – Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --primary:   #2563eb;
  --primary-light: #eff6ff;
  --accent:    #f59e0b;
  --accent-light: #fffbeb;
  --bg:        #f6f9ff;
  --bg-card:   #ffffff;
  --text:      #111827;
  --muted:     #6b7280;
  --shadow-soft: 8px 8px 22px rgba(0,0,0,0.07), -4px -4px 14px rgba(255,255,255,0.92);
  --shadow-hover: 12px 12px 30px rgba(0,0,0,0.11), -6px -6px 20px rgba(255,255,255,1);
  --radius: 1.5rem;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

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

/* ── Keyframes ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-20px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.max-w-3xl   { max-width: 800px; margin-inline: auto; }

/* ── Grids ── */
.grid { display: grid; gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #1d4ed8; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-a {
  top: 4rem; left: 2rem;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
  opacity: 0.2;
  animation: floatA 8s ease-in-out infinite;
}
.orb-b {
  bottom: 3rem; right: 3rem;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  opacity: 0.15;
  animation: floatB 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  animation: fadeSlideUp 0.85s 0.12s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  animation: fadeSlideUp 0.85s 0.25s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeSlideUp 0.85s 0.38s ease both;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

.btn-accent {
  background: var(--accent);
  color: #111;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn-accent:hover { background: #d97706; transform: translateY(-2px); }

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 5rem 0; }

.usp-section   { background: var(--bg); }
.steps-section { background: linear-gradient(135deg,#eef2ff 0%,#f6f9ff 100%); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
}
.section-sub {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
}

/* ═══════════════ SOFT CARDS ═══════════════ */
.soft-card {
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  transition: all 0.35s ease;
}
.soft-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.soft-card.highlighted {
  box-shadow: var(--shadow-soft), inset 0 0 0 2px rgba(37,99,235,0.3);
}
.soft-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.soft-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 1.35rem; height: 1.35rem; }
.icon-primary { background: var(--primary-light); color: var(--primary); }
.icon-accent  { background: var(--accent-light);  color: var(--accent); }

/* ═══════════════ STEP NUMBER ═══════════════ */
.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 6px 22px rgba(37,99,235,0.35);
}

/* ═══════════════ TWO-COL ═══════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.two-col-text { display: flex; flex-direction: column; gap: 1rem; }
.two-col-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
}
.two-col-text p { color: var(--muted); line-height: 1.7; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.info-row  { display: flex; align-items: center; gap: 1rem; }
.info-label { font-weight: 600; font-size: 0.95rem; }
.info-value { color: var(--muted); font-size: 0.88rem; }

/* ═══════════════ PRICING ═══════════════ */
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.price-label {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.65;
}

/* ═══════════════ TEAM SLIDER ═══════════════ */
.team-slider-wrap { max-width: 520px; margin: 0 auto; }

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.team-card.fading { opacity: 0; transform: translateY(8px); }

.team-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.team-icon svg { width: 2.4rem; height: 2.4rem; color: var(--primary); stroke: var(--primary); }

.team-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.team-name { font-weight: 700; font-size: 1.05rem; }
.team-sub  { color: var(--muted); font-size: 0.88rem; margin-top: 0.25rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.2s;
}
.slider-btn:hover { transform: scale(1.12); }

.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.dot {
  height: 0.5rem;
  border-radius: 0.25rem;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 0.5rem;
}
.dot.active { width: 1.5rem; background: var(--primary); }

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(245,158,11,0.07));
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
}
.cta-inner p { font-size: 1.1rem; color: var(--muted); }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-top: 0.75rem; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.22s; }
.fade-in-up.delay-3 { transition-delay: 0.34s; }
.fade-in-up.delay-4 { transition-delay: 0.46s; }

/* Hero inline animations (always run) */
.fade-up         { animation: fadeSlideUp 0.85s ease both; }
.delay-0         { animation-delay: 0s; }
.delay-1         { animation-delay: 0.12s; }
.delay-2         { animation-delay: 0.25s; }
.delay-3         { animation-delay: 0.38s; }

/* ── Nav active link ── */
.nav-links a.nav-active { color: var(--primary); font-weight: 600; }

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f6f9ff 60%, #fffbeb 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════ SERVICE CARDS ═══════════════ */
.service-block {
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.service-block:hover { box-shadow: var(--shadow-hover); border-color: rgba(37,99,235,0.25); transform: translateY(-3px); }
.service-block-icon { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.service-block-icon .card-icon { width: 5rem; height: 5rem; border-radius: 50%; }
.service-block-icon .card-icon svg { width: 2.5rem; height: 2.5rem; }
.service-block-icon h3 { font-size: 1.2rem; font-weight: 700; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.service-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.service-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.service-list li strong { color: var(--text); }
.service-list li.accent::before { background: var(--accent-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 70%; background-repeat: no-repeat; background-position: center; }
.package-card { border: 2px solid var(--primary); }
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.package-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.package-price-sub { font-size: 0.85rem; color: var(--muted); }

/* ═══════════════ COST CARDS ═══════════════ */
.cost-card-primary   { border: 2px solid var(--primary); }
.cost-card-secondary { border: 2px solid #e5e7eb; }
.cost-amount-primary { font-size: 3rem; font-weight: 800; color: var(--primary); }
.cost-amount-secondary { font-size: 3rem; font-weight: 800; color: var(--text); }
.cost-divider { border: none; border-top: 1px solid #e5e7eb; margin: 1.5rem 0; }
.cost-compare { background: linear-gradient(135deg, #eff6ff, #fffbeb); border: 2px solid #e5e7eb; }
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.compare-bad  { color: #dc2626; font-weight: 600; margin-bottom: 0.5rem; }
.compare-good { color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.compare-list li { font-size: 0.9rem; color: var(--muted); }

/* ── Dates ── */
.date-card { border: 2px solid #e5e7eb; }
.date-card.primary { border-color: var(--primary); }
.date-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid #f3f4f6; }
.date-row:last-child { border-bottom: none; }
.date-label { color: var(--muted); font-size: 0.93rem; }
.date-value { font-weight: 600; font-size: 0.93rem; }
.date-badge { border-radius: 0.75rem; padding: 0.75rem 1rem; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; }
.date-badge-primary { background: var(--primary-light); color: var(--primary); }
.date-badge-accent  { background: var(--accent-light);  color: #92400e; }

/* ── Timeline ── */
.timeline { display: flex; flex-direction: column; gap: 1rem; }
.timeline-item {
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.timeline-item:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }
.timeline-num {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.timeline-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-body .tl-when { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 0.4rem; }
.timeline-body p { color: var(--muted); font-size: 0.9rem; }

/* ── Notice card ── */
.notice-card {
  background: linear-gradient(135deg, #eff6ff, #fffbeb);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notice-card svg { flex-shrink: 0; width: 2rem; height: 2rem; color: var(--primary); stroke: var(--primary); margin-top: 0.1rem; }
.notice-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.notice-card p  { color: var(--muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 0.5rem; }

/* ═══════════════ STUDY PAGE ═══════════════ */
.study-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: 1.25rem; box-shadow: var(--shadow-soft); padding: 1.75rem; transition: all 0.3s; }
.study-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.study-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0.75rem 0 0.4rem; }
.study-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.program-card  { border: 2px solid var(--primary); border-radius: var(--radius); padding: 2rem; background: linear-gradient(145deg,#ffffff,#f2f6ff); box-shadow: var(--shadow-soft); }
.program-card.accent { border-color: var(--accent); }
.program-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.program-header h3 { font-size: 1.5rem; font-weight: 800; }
.program-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.program-detail svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; }
.program-detail .det-label { font-weight: 600; font-size: 0.93rem; }
.program-detail .det-value { color: var(--muted); font-size: 0.88rem; }
.program-divider { border: none; border-top: 1px solid #e5e7eb; margin: 1.25rem 0; }
.program-steps { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.program-steps li { font-size: 0.88rem; color: var(--muted); }
.costs-table { width: 100%; border-collapse: collapse; }
.costs-table td { padding: 0.6rem 0; font-size: 0.93rem; }
.costs-table td:last-child { text-align: right; font-weight: 600; }
.costs-table tr:not(:last-child) td { border-bottom: 1px solid #f3f4f6; }
.costs-table tr:last-child td { font-weight: 800; color: var(--primary); font-size: 1rem; border-top: 2px solid #e5e7eb; padding-top: 0.8rem; }

/* ═══════════════ FAQ ═══════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(37,99,235,0.2); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-trigger span { font-weight: 600; font-size: 1rem; line-height: 1.4; color: var(--text); }
.faq-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-content { max-height: 400px; padding: 0 1.5rem 1.4rem; }

/* ═══════════════ CONTACT FORM ═══════════════ */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.form-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 2.5rem; }
.form-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.75rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 0.9rem; border: none; border-radius: 0.875rem; background: var(--accent); color: #111; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
.form-submit:hover { background: #d97706; transform: translateY(-2px); }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: 1.25rem; box-shadow: var(--shadow-soft); padding: 1.75rem; }
.contact-info-card h3 { font-weight: 700; margin-bottom: 1.25rem; font-size: 1.1rem; }
.contact-info-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-info-row svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); stroke: var(--primary); }
.contact-info-row .ci-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-info-row .ci-value { color: var(--muted); font-size: 0.88rem; }
.contact-info-row .ci-value a { color: var(--primary); text-decoration: none; }
.contact-info-row .ci-value a:hover { text-decoration: underline; }
.booking-badge { background: linear-gradient(135deg, var(--primary-light), #fffbeb); border-radius: 1.25rem; padding: 1.5rem; }
.booking-badge h3 { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.booking-badge-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.booking-badge-list li { display: flex; gap: 0.5rem; font-size: 0.88rem; color: var(--muted); }
.booking-badge-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.testimonial-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 2rem; }
.testimonial-quote { font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-text { font-style: italic; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { border-top: 1px solid #e5e7eb; padding-top: 1rem; }
.testimonial-name { font-weight: 700; }
.testimonial-role { font-size: 0.88rem; color: var(--muted); }

/* ═══════════════ ABOUT PAGE ═══════════════ */
.story-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 2rem; text-align: center; border: 2px solid #e5e7eb; transition: all 0.35s; }
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); border-color: rgba(37,99,235,0.2); }
.value-icon { width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.value-icon svg { width: 2rem; height: 2rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.team-member-card { background: linear-gradient(145deg,#ffffff,#f2f6ff); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 2rem; text-align: center; transition: all 0.35s; }
.team-member-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.team-avatar { width: 7rem; height: 7rem; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), #fffbeb); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-avatar svg { width: 3.5rem; height: 3.5rem; color: var(--primary); stroke: var(--primary); }
.team-member-card h3 { font-weight: 700; font-size: 1.05rem; }
.team-member-card .team-role { color: var(--muted); font-size: 0.88rem; margin-bottom: 0.75rem; }
.team-member-card p  { color: var(--muted); font-size: 0.88rem; font-style: italic; line-height: 1.65; }
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.advantage-item { display: flex; gap: 1rem; align-items: flex-start; }
.advantage-item svg { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.advantage-item h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.advantage-item p  { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ═══════════════ LEGAL PAGES ═══════════════ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 2rem; }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--text); }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.prose a  { color: var(--primary); }
.prose a:hover { text-decoration: underline; }

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(6rem);
  background: #111827;
  color: white;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.toast.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 99;
  }

  .two-col          { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .md-break         { display: none; }
  .service-block    { grid-template-columns: 1fr; }
  .package-grid     { grid-template-columns: 1fr; }
  .compare-cols     { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .advantage-grid   { grid-template-columns: 1fr; }
}
