/* ============================================================
   Peregrin Software — Main Stylesheet
   Bold & Colorful Design System
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --grad-start:  #F97316;
  --grad-mid:    #EC4899;
  --grad-end:    #9333EA;
  --grad-accent: #FBBF24;
  --grad-cyan:   #0891B2;

  --gradient-primary: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  --gradient-warm:    linear-gradient(135deg, var(--grad-accent), var(--grad-start));
  --gradient-cool:    linear-gradient(135deg, var(--grad-cyan), var(--grad-end));

  --bg-dark:       #0A0A14;
  --bg-dark-2:     #12121F;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --bg-light:      #F8F8FF;

  --text-white:  #F1F5F9;
  --text-muted:  #94A3B8;
  --text-dark:   #1E1B4B;

  --border:      rgba(255,255,255,0.10);
  --border-glow: rgba(249,115,22,0.45);

  --shadow-glow: 0 0 40px rgba(236,72,153,0.28);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-btn:  0 4px 20px rgba(236,72,153,0.50);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --nav-height: 84px;
  --nav-bg: rgba(10,10,20,0.85);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: color 0.2s; }
ul  { list-style: none; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--space-lg) 0; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 700; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
  border: none; letter-spacing: 0.02em;
}
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(236,72,153,0.65); color: #fff; }
.btn-outline { background: transparent; color: var(--text-white); border: 2px solid var(--border-glow); }
.btn-outline:hover { background: var(--bg-card-hover); border-color: var(--grad-mid); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: rgba(10,10,20,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.navbar { display: flex; align-items: center; height: var(--nav-height); gap: 2rem; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 62px; width: auto; display: block; }

.footer-logo-link { display: inline-block; margin-bottom: 1rem; }
.footer-logo-img  { height: 52px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-white); background: var(--bg-card); }
.nav-link.active { color: #FB923C; }

.caret { font-size: 0.55rem; opacity: 0.7; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 180px;
  background: var(--bg-dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.5rem;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden;
  transition: all 0.2s ease;
  backdrop-filter: blur(20px);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link { display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--text-muted); transition: all 0.15s; }
.dropdown-link:hover { color: var(--text-white); background: var(--bg-card-hover); }
.dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 0.25rem 0; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 0; }
.hamburger span { display: block; height: 2px; background: var(--text-white); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; backdrop-filter: blur(4px); }
.nav-overlay.visible { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-height); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--bg-dark); z-index: 0; }
.hero-bg::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 70%); top: -100px; left: -100px; border-radius: 50%; animation: float 8s ease-in-out infinite; }
.hero-bg::after  { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(147,51,234,0.22) 0%, transparent 70%); bottom: -50px; right: -50px; border-radius: 50%; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--bg-card); border: 1px solid var(--border-glow); border-radius: var(--radius-xl); font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.badge-dot { width: 8px; height: 8px; background: var(--gradient-primary); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }

.hero h1 { margin-bottom: 1.5rem; }
.hero p  { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-image { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 45%; z-index: 1; pointer-events: none; }
.hero-image-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; gap: 0.75rem; }
.hero-image-placeholder .ph-icon { font-size: 3rem; opacity: 0.3; }

.stats-bar { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: 2rem; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: var(--space-md); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ============================================================
   APP CARDS
   ============================================================ */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

.app-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
.app-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s; z-index: 0; }
.app-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.app-card:hover::before { opacity: 0.05; }
.app-card > * { position: relative; z-index: 1; }

.app-icon-wrap { width: 80px; height: 80px; border-radius: 18px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 0.7rem; color: rgba(255,255,255,0.7); overflow: hidden; }
.app-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.app-icon-placeholder { text-align: center; padding: 0.5rem; line-height: 1.3; }

.app-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grad-mid); margin-bottom: 0.4rem; }
.app-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.app-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

.app-store-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #000; border-radius: var(--radius-sm); color: #fff; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; }
.app-store-badge:hover { background: #1a1a1a; color: #fff; }
.app-store-badge .badge-logo { font-size: 1.1rem; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; transition: all 0.3s; }
.feature-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.fi-purple { background: rgba(147,51,234,0.15); }
.fi-pink   { background: rgba(236,72,153,0.15); }
.fi-orange { background: rgba(249,115,22,0.18); }
.fi-cyan   { background: rgba(8,145,178,0.15); }
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { text-align: center; padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0.08; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.policy-wrap { max-width: 800px; margin: 0 auto; padding: var(--space-lg) 1.5rem; padding-top: calc(var(--nav-height) + var(--space-lg)); }
.policy-wrap h1 { margin-bottom: 0.5rem; }
.policy-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 { font-size: 1.3rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.policy-section p, .policy-section li { color: var(--text-muted); line-height: 1.8; }
.policy-section ul { padding-left: 1.5rem; list-style: disc; }
.policy-section ul li { margin-bottom: 0.4rem; }
.policy-section a { color: #A78BFA; }
.policy-section a:hover { text-decoration: underline; }

/* ============================================================
   SUPPORT FORM
   ============================================================ */
.support-wrap { padding-top: calc(var(--nav-height) + var(--space-lg)); padding-bottom: var(--space-lg); }
.support-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.support-info h2 { margin-bottom: 1rem; }
.support-info p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.support-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.support-contact-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.support-contact-text { font-size: 0.875rem; color: var(--text-muted); }
.support-contact-text strong { display: block; color: var(--text-white); margin-bottom: 0.1rem; }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-white); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-white); font-family: inherit; font-size: 0.95rem; transition: all 0.2s; appearance: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--grad-mid); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(168,85,247,0.15); }
.form-group select option { background: var(--bg-dark-2); color: var(--text-white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; font-size: 1rem; justify-content: center; padding: 1rem; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.alert-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ============================================================
   ABOUT / PAGE HERO
   ============================================================ */
.page-hero { padding-top: calc(var(--nav-height) + var(--space-lg)); padding-bottom: var(--space-lg); text-align: center; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0.06; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mission-image { aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; gap: 0.75rem; }
.mission-image .ph-icon { font-size: 3rem; opacity: 0.3; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient-primary); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h4 { margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--grad-mid); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-glow); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; background: var(--bg-card); user-select: none; gap: 1rem; }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon { font-size: 1.4rem; color: var(--grad-mid); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.5rem; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 500px; padding: 1rem 1.5rem 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-dark-2); border-top: 1px solid var(--border); padding: var(--space-lg) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); font-weight: 700; transition: all 0.2s; }
.social-link:hover { border-color: var(--border-glow); color: var(--text-white); background: var(--bg-card-hover); }
.footer-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-white); margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 0.5rem; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-white); }

/* ============================================================
   UTILITY
   ============================================================ */
.page-content { padding-top: var(--nav-height); }
.mt-md { margin-top: var(--space-md); }

.gradient-border { position: relative; border-radius: var(--radius-lg); background: var(--bg-dark-2); padding: 2rem; }
.gradient-border::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--gradient-primary); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-mission { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .nav-logo-img { height: 50px; }

  .nav-menu { position: fixed; top: var(--nav-height); right: -100%; width: min(320px, 85vw); height: calc(100vh - var(--nav-height)); background: var(--bg-dark-2); border-left: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 0; padding: 1.5rem 1rem; overflow-y: auto; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 999; }
  .nav-menu.open { right: 0; }
  .nav-link { padding: 0.85rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .has-dropdown .dropdown-menu { position: static !important; transform: none !important; opacity: 1 !important; visibility: visible !important; box-shadow: none !important; background: #1e1e35 !important; padding: 0.25rem 0 0.5rem 0 !important; margin: 0.25rem 0 0.5rem 1rem !important; border: none !important; border-left: 2px solid #F97316 !important; border-radius: 0 !important; display: none; }
  .has-dropdown.open .dropdown-menu { display: block !important; }
  .has-dropdown .dropdown-menu .dropdown-link { color: #F1F5F9 !important; font-size: 0.95rem !important; padding: 0.65rem 1rem !important; display: block !important; }
  .has-dropdown .dropdown-menu .dropdown-link:hover,
  .has-dropdown .dropdown-menu .dropdown-link:active { color: #FB923C !important; background: rgba(255,255,255,0.07) !important; }
  .has-dropdown .dropdown-menu .dropdown-divider { border-color: rgba(255,255,255,0.1) !important; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats-bar { gap: 1.5rem; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 1.5rem; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 3rem) 0 3rem; }
}
