@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #0891b2;
  --primary-light: #06b6d4;
  --accent: #22d3ee;
  --bg: #f0fbff;
  --card: #ffffff;
  --text: #0c1a2e;
  --muted: #6b7280;
  --shadow: 0 4px 24px rgba(8,145,178,0.12);
  --shadow-lg: 0 8px 40px rgba(8,145,178,0.22);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,145,178,0.10);
  box-shadow: 0 2px 16px rgba(8,145,178,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.brand img { height: 48px; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a { padding: 0.45rem 0.75rem; border-radius: 8px; font-weight: 600; font-size: 0.92rem; color: var(--muted); transition: all 0.2s; }
.main-nav a:hover { color: var(--primary); background: rgba(8,145,178,0.08); }
.main-nav .btn.login { background: var(--primary); color: #fff; padding: 0.5rem 1.1rem; border-radius: 10px; margin-left: 0.5rem; }
.main-nav .btn.login:hover { background: var(--primary-light); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--primary); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #020f1a;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: linear-gradient(120deg,rgba(2,15,26,0.78) 40%,rgba(8,145,178,0.25)), url('../assets/banner1.jpg'); }
.hero-slide:nth-child(2) { background-image: linear-gradient(120deg,rgba(2,15,26,0.78) 40%,rgba(8,145,178,0.25)), url('../assets/banner-6.jpg'); }
.hero-slide:nth-child(3) { background-image: linear-gradient(120deg,rgba(2,15,26,0.78) 40%,rgba(8,145,178,0.25)), url('../assets/banner7.png'); }
.hero-slide:nth-child(4) { background-image: linear-gradient(120deg,rgba(2,15,26,0.78) 40%,rgba(8,145,178,0.25)), url('../assets/banner8.png'); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(8,145,178,0.25),transparent 60%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 5rem 0 4rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,211,238,0.15); border: 1px solid rgba(34,211,238,0.4);
  color: #22d3ee; padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}
.hero-inner h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; color: #fff; line-height: 1.05;
  letter-spacing: -2px;
}
.hero-inner h1 span { color: var(--accent); display: block; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-top: 1.25rem; max-width: 420px; line-height: 1.6; font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.chip {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 0.35rem 0.9rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
}
.hero-dots { display: flex; gap: 0.5rem; margin-top: 2.5rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { width: 28px; background: var(--accent); box-shadow: 0 0 8px rgba(34,211,238,0.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.4rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.25s; text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg,#0891b2,#06b6d4); color: #fff; box-shadow: 0 4px 16px rgba(8,145,178,0.35); }
.btn-primary:hover { background: linear-gradient(135deg,#06b6d4,#22d3ee); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(8,145,178,0.45); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-ghost { background: var(--card); color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ── STATS ── */
.stats { background: linear-gradient(135deg,#0891b2,#06b6d4); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: #fff; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-top: 0.2rem; }

/* ── SECTION TITLES ── */
.section { padding: 5rem 0; }
.section-tag { display: inline-block; background: rgba(8,145,178,0.1); color: var(--primary); padding: 0.3rem 0.9rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); line-height: 1.2; }
.section-sub { color: var(--muted); margin-top: 0.5rem; font-size: 1rem; }
.section-head { margin-bottom: 2.5rem; }

/* ── SERVICES ── */
.services-slider { padding: 0.5rem; margin: 0 -0.5rem; }
.service-card {
  background: var(--card); border-radius: var(--radius);
  padding: 2rem 1.25rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(8,145,178,0.08);
  transition: all 0.3s; text-decoration: none; color: var(--text);
  display: block; height: auto;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(8,145,178,0.3); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(8,145,178,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.1) rotate(10deg); }
.service-card h3 { font-size: 1rem; font-weight: 800; }
.service-card p { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem; line-height: 1.5; }

.services-slider .swiper-button-next,
.services-slider .swiper-button-prev {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--primary);
  transition: all 0.2s;
}
.services-slider .swiper-button-next:hover,
.services-slider .swiper-button-prev:hover {
  background: var(--primary);
  color: #fff;
}
.services-slider .swiper-button-next::after,
.services-slider .swiper-button-prev::after {
  font-size: 1.1rem; font-weight: 900;
}
/* ── WHY US ── */
.why-section { background: linear-gradient(135deg,#020f1a,#0891b2); padding: 5rem 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; }
.why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.75rem 1.5rem; color: #fff; }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 0.4rem; line-height: 1.5; }

/* ── PLANS ── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; }
.plan {
  background: var(--card); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-ribbon { height: 5px; border-radius: 5px; margin-bottom: 1.25rem; }
.plan.green .plan-ribbon { background: linear-gradient(90deg,#1db954,#0b6e4f); }
.plan.blue .plan-ribbon { background: linear-gradient(90deg,#3b82f6,#2563eb); }
.plan.orange .plan-ribbon { background: linear-gradient(90deg,#fb923c,#f97316); }
.plan.purple .plan-ribbon { background: linear-gradient(90deg,#a78bfa,#7c3aed); }
.plan.teal .plan-ribbon { background: linear-gradient(90deg,#06b6d4,#0891b2); }
.plan.green:hover { border-color: #1db954; }
.plan.blue:hover { border-color: #3b82f6; }
.plan.orange:hover { border-color: #fb923c; }
.plan.purple:hover { border-color: #a78bfa; }
.plan.teal:hover { border-color: #06b6d4; }
.plan h3 { font-size: 1.1rem; font-weight: 800; }
.plan .price-large { font-size: 2.2rem; font-weight: 900; color: var(--primary); margin: 0.5rem 0 0; }
.plan .price-meta { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-features { list-style: none; margin: 1.25rem 0; }
.plan-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--muted); padding-left: 1.5rem; position: relative; border-bottom: 1px dashed rgba(0,0,0,0.05); }
.plan-features li:last-child { border: none; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-light); font-weight: 700; }
.plan .note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.plan .btn { width: 100%; justify-content: center; }
.plans-cta { text-align: center; margin-top: 2.5rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.testi-card { background: var(--card); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.75rem; }
.testi-text { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1rem; }
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-loc { font-size: 0.8rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg,#0891b2,#0e7490); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; font-size: 1rem; }
.cta-banner .cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ── FOOTER ── */
.site-footer { background: #020f1a; color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--accent); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s; }
.social-link:hover { background: var(--primary); }

/* ── FLOATING WHATSAPP GIRL ── */
.wa-float-wrap { position:fixed; bottom:1.5rem; right:1.5rem; z-index:999; display:flex; flex-direction:column; align-items:flex-end; gap:0.75rem; }
.wa-float-btn { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,#25d366,#128c7e); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.5); animation:waPulse 2.5s infinite; position:relative; transition:transform 0.2s; }
.wa-float-btn:hover { transform:scale(1.1); }
.wa-girl-avatar { font-size:2rem; line-height:1; }
.wa-online-dot { position:absolute; bottom:3px; right:3px; width:14px; height:14px; background:#25d366; border:2.5px solid #fff; border-radius:50%; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.8),0 0 0 8px rgba(37,211,102,0.1)} }
.wa-bubble { background:#fff; border-radius:16px 16px 0 16px; padding:1.25rem; box-shadow:0 8px 32px rgba(0,0,0,0.15); width:280px; display:none; animation:bubbleIn 0.3s ease; }
.wa-bubble.show { display:block; }
@keyframes bubbleIn { from{opacity:0;transform:scale(0.85) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
.wa-bubble-close { text-align:right; font-size:0.85rem; color:#aaa; cursor:pointer; margin-bottom:0.5rem; font-weight:700; }
.wa-bubble-close:hover { color:#333; }
.wa-bubble-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,#25d366,#128c7e); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:0.75rem; }
.wa-bubble-name { font-weight:800; font-size:0.92rem; color:#0d1f17; margin-bottom:0.2rem; }
.wa-bubble-msg { font-size:0.85rem; color:#6b7280; line-height:1.5; margin-bottom:1rem; }
.wa-bubble-btn { display:flex; align-items:center; gap:0.5rem; background:#25d366; color:#fff; padding:0.65rem 1rem; border-radius:10px; font-weight:700; font-size:0.88rem; text-decoration:none; transition:background 0.2s; justify-content:center; }
.wa-bubble-btn:hover { background:#1ebe5d; }

/* ── FLOATING WHATSAPP (other pages) ── */
.wa-float { position:fixed; bottom:1.5rem; right:1.5rem; z-index:999; width:56px; height:56px; border-radius:50%; background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.45); animation:pulse 2s infinite; text-decoration:none; }
@keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.7)} }

/* ── FORMS ── */
.form-wrap { background: var(--card); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  border: 1.5px solid #e5e7eb; font-size: 0.95rem; font-family: inherit;
  background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,110,79,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg,#020f1a,#0891b2); padding: 4rem 0; color: #fff; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; font-size: 1rem; }

/* ── TERMS BOX ── */
.terms-box { background: var(--card); padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 2rem; border-left: 4px solid var(--accent); }
.terms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.terms-grid h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.terms-grid p { font-size: 0.88rem; color: var(--muted); }

/* ── FAQ ── */
.faq-item { background: var(--card); border-radius: var(--radius); margin-bottom: 0.75rem; box-shadow: var(--shadow); overflow: hidden; }
.faq-q { padding: 1.25rem 1.5rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 1.5rem; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-thumb { height: 200px; background: linear-gradient(135deg,#0891b2,#22d3ee); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 1.5rem; }
.blog-tag { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body h3 { font-size: 1.1rem; font-weight: 700; margin-top: 0.4rem; line-height: 1.4; }
.blog-body p { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 68px; right: 12px; background: var(--card); flex-direction: column; padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: none; min-width: 200px; }
  .main-nav.open { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  #mobile-bottom-nav {
    position: fixed;
    inset: auto 0 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.55rem 0.75rem 0.75rem;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -10px 35px rgba(15, 23, 42, 0.08);
    z-index: 10000;
  }
  .mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.55rem 0.35rem;
    color: #0f172a;
    font-size: 0.78rem;
    text-decoration: none;
    border-radius: 16px;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  }
  .mobile-nav-link:hover,
  .mobile-nav-link:focus {
    background: rgba(11, 110, 79, 0.1);
    color: #0b6e4f;
    transform: translateY(-1px);
  }
  .mobile-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(11, 110, 79, 0.08);
    color: #0b6e4f;
  }
  .mobile-nav-link span:last-child {
    line-height: 1.1;
    font-size: 0.72rem;
    font-weight: 700;
  }
  .mobile-nav-book {
    background: #0b6e4f;
    color: #fff;
  }
  .mobile-nav-book .mobile-nav-icon {
    background: #fff;
    color: #0b6e4f;
  }
  .mobile-nav-link.mobile-nav-book:hover,
  .mobile-nav-link.mobile-nav-book:focus {
    background: #0a5c42;
    color: #fff;
  }
  .mobile-nav-link.mobile-nav-book:hover .mobile-nav-icon,
  .mobile-nav-link.mobile-nav-book:focus .mobile-nav-icon {
    background: #fff;
    color: #0b6e4f;
  }
  .form-row { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding: 2.5rem 0 2rem; }
  .hero-inner h1 { font-size: 2.2rem; letter-spacing: -1px; line-height: 1.1; }
  .hero-sub { font-size: 0.92rem; margin-top: 0.75rem; max-width: 100%; }
  .hero-badge { font-size: 0.72rem; padding: 0.28rem 0.7rem; margin-bottom: 0.75rem; }
  .hero-cta { flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 0.8rem 1rem; font-size: 0.9rem; }
  .hero-dots { margin-top: 1.5rem; }
  .hero-slide { background-position: center top; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 2.5rem 0; }
}
