/* ============================================
   SANWARIYA CAPITAL - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2548;
  --primary-light: #2a5aaa;
  --accent: #d4a017;
  --accent-light: #f0c040;
  --white: #ffffff;
  --light: #f4f7fc;
  --light2: #eaf0fb;
  --gray: #6b7280;
  --dark: #1a1a2e;
  --text: #333344;
  --border: #dde4f0;
  --success: #22c55e;
  --shadow: 0 4px 24px rgba(26, 60, 110, 0.12);
  --shadow-hover: 0 12px 40px rgba(26, 60, 110, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--primary-dark);
  color: #aabbd8;
  font-size: 12px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #aabbd8; }
.top-bar a:hover { color: var(--accent); }
.sebi-badge {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
}

/* ============ HEADER / NAVBAR ============ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,60,110,0.10);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: var(--light2); }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; min-width: 200px; box-shadow: var(--shadow); z-index: 100; padding: 8px 0; }
.nav-menu > li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 18px; font-size: 13.5px; color: var(--text); }
.dropdown a:hover { background: var(--light); color: var(--primary); }

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; background: var(--light2) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); display: block; }

/* ============ CONTAINER ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { display: flex; align-items: center; gap: 60px; padding: 80px 20px; position: relative; z-index: 1; }
.hero-text { flex: 1; color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 34px; max-width: 500px; }

.hero-form {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form p { color: rgba(255,255,255,0.9); font-size: 13.5px; font-weight: 500; }
.hero-input-row { display: flex; gap: 10px; }
.hero-input-row .prefix {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.hero-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}
.hero-input-row input::placeholder { color: rgba(255,255,255,0.55); }
.btn-gold {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  width: 100%;
}
.btn-gold:hover { background: var(--accent-light); transform: translateY(-1px); }
.hero-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.5); }

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px 28px;
  color: white;
  width: 100%;
  max-width: 340px;
}
.hero-card-title { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.hero-card-value { font-size: 32px; font-weight: 700; color: var(--accent); }
.hero-card-sub { font-size: 12px; color: var(--success); font-weight: 600; }

.hero-stats { display: flex; gap: 16px; }
.stat-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  text-align: center;
  flex: 1;
}
.stat-pill .num { font-size: 22px; font-weight: 700; color: var(--accent); }
.stat-pill .label { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ============ PROMO STRIP ============ */
.promo-strip {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 22px 0;
  text-align: center;
}
.promo-strip h3 { font-size: 22px; font-weight: 700; color: var(--dark); }
.promo-strip p { font-size: 15px; color: var(--dark); opacity: 0.8; }
.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: white;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  transition: all 0.2s;
}
.btn-dark:hover { background: var(--primary); }

/* ============ SECTION COMMONS ============ */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub { color: var(--gray); font-size: 16px; line-height: 1.7; max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============ WHY CHOOSE US ============ */
.why-us { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--light2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ============ ABOUT ============ */
.about-inner { display: flex; align-items: center; gap: 70px; }
.about-img {
  flex: 1;
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 14px;
  padding: 18px 22px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.about-badge .big { font-size: 32px; display: block; }
.about-badge .small { font-size: 12px; }
.about-text { flex: 1; }
.about-points { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
}
.about-point .dot {
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============ SERVICES ============ */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.svc-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--light2);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 14px;
}
.svc-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li { font-size: 13.5px; color: var(--gray); padding-left: 16px; position: relative; }
.service-card li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ============ PROCESS ============ */
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 18px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============ FAQ ============ */
.faq-inner { display: flex; gap: 60px; align-items: flex-start; margin-top: 50px; }
.faq-list { flex: 1.2; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--light); }
.faq-q .arrow { color: var(--accent); font-size: 18px; transition: transform 0.2s; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-a.open { max-height: 200px; }
.faq-a-inner { padding: 0 20px 18px; }
.faq-side { flex: 1; }
.faq-side-card {
  background: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
}
.faq-side-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.faq-side-card p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; }

/* ============ CONTACT ============ */
.contact-inner { display: flex; gap: 60px; margin-top: 50px; }
.contact-info { flex: 1; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--light2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--gray); }
.contact-form { flex: 1.3; background: var(--light); border-radius: 16px; padding: 36px 32px; }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 22px; }
.form-row { display: flex; gap: 16px; }
.form-group { margin-bottom: 16px; flex: 1; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============ FOOTER ============ */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); color: var(--dark); }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 20px; }

/* ============ ADVISORY POPUP ============ */
.advisory-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.advisory-box {
  background: white;
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
}
.advisory-box h3 {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}
.advisory-box p { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.advisory-agree {
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  transition: background 0.2s;
}
.advisory-agree:hover { background: var(--primary-dark); }

/* ============ WHATSAPP BTN ============ */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  font-size: 26px;
  transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.1); }

/* ============ PAGE HERO (Inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 70px 0;
  color: white;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--accent); }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: scale(1.03);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}
.price-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.price-tag { font-size: 42px; font-weight: 800; color: var(--primary); margin: 16px 0; }
.price-tag sup { font-size: 20px; }
.price-tag span { font-size: 15px; font-weight: 400; color: var(--gray); }
.price-card ul { text-align: left; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13.5px; color: var(--text); padding-left: 22px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.price-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; }
.testi-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--primary-dark); }
.author-city { font-size: 12px; color: var(--gray); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; gap: 40px; padding: 60px 20px; }
  .about-inner { flex-direction: column; }
  .faq-inner { flex-direction: column; }
  .contact-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 30px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow); padding: 16px; border-radius: 0 0 12px 12px; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
}