/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a1628;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #0f1f3d;
  --navy-mid: #162040;
  --teal: #22d3ee;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.highlight { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-primary:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: rgba(34,211,238,0.1); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { color: var(--teal); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-subtitle-large { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.section-body { font-size: 1rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled { background: rgba(10,22,40,0.98); box-shadow: var(--shadow); }
.nav-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 36px; height: 36px; object-fit: contain; }
.logo-text { font-weight: 700; font-size: 1.1rem; color: var(--white); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 6px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: 8px; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 180px;
  background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem;
  color: var(--text-muted); transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 80px;
  max-width: var(--max-width); margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-eyebrow { color: var(--teal); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 16px; }
.hero-body { font-size: 1rem; color: var(--text-muted); margin-bottom: 12px; }
.hero-tagline { font-size: 1rem; color: var(--teal); font-style: italic; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  padding: 8px 16px; background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2);
  border-radius: 100px; font-size: 0.85rem; color: var(--teal); font-weight: 500;
}
.hero-image { flex: 1; max-width: 500px; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* ===== PAIN POINTS ===== */
.pain-points { background: var(--navy-light); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.pain-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition);
}
.pain-card:hover { border-color: rgba(34,211,238,0.3); transform: translateY(-4px); }
.pain-number { font-size: 2.5rem; font-weight: 800; color: rgba(34,211,238,0.15); display: block; margin-bottom: 12px; }
.pain-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.pain-card p { color: var(--text-muted); font-size: 0.95rem; }
.pain-cta { text-align: center; }
.pain-cta p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; }
.pain-cta strong { color: var(--white); }

/* ===== MODELS ===== */
.models-section { background: var(--navy); }
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 24px; }
.model-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; position: relative;
  transition: all var(--transition);
}
.model-card:hover { border-color: rgba(34,211,238,0.3); transform: translateY(-4px); }
.model-flagship {
  background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(6,182,212,0.04));
  border-color: rgba(34,211,238,0.3);
}
.flagship-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy); padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
}
.model-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.model-tagline { color: var(--teal); font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; }
.model-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.model-best { font-size: 0.9rem !important; }
.model-card .btn { margin-top: 8px; }
.models-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; }

/* ===== STATS ===== */
.stats-section { background: var(--navy-light); }
.stats-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); text-align: center; margin-bottom: 8px; }
.stats-subtitle { color: var(--teal); text-align: center; font-size: 1rem; font-weight: 500; margin-bottom: 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.stat-value { font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }
.stat-sub { color: var(--gray-400); font-size: 0.8rem; margin-top: 4px; }
.stat-highlight { padding: 24px; }
.stat-compare { display: flex; align-items: center; justify-content: space-around; margin-bottom: 16px; }
.stat-label-sm { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.stat-cost { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.stat-green { color: var(--teal) !important; }
.stat-vs { color: var(--text-muted); font-size: 0.8rem; }
.stat-saving { font-size: 2rem; font-weight: 800; color: var(--teal); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }
.testimonial-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.testimonial-featured { border-color: rgba(34,211,238,0.25); background: rgba(34,211,238,0.04); }
.testimonial-card blockquote { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.testimonial-author span { color: var(--teal); font-size: 0.85rem; }
.testimonials-cta { text-align: center; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  text-align: center;
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 20px; }
.final-cta p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; }

/* ===== FOOTER ===== */
.footer { background: #060e1c; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition);
}
.social-links a:hover { color: var(--teal); border-color: rgba(34,211,238,0.3); background: rgba(34,211,238,0.08); }
.footer-links h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--gray-600); font-size: 0.85rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 24px 80px;
  max-width: var(--max-width); margin: 0 auto;
  text-align: center;
}
.page-hero-eyebrow { color: var(--teal); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 32px; }

/* ===== SERVICES PAGE ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.why-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.tier-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
}
.tier-card.popular { border-color: rgba(34,211,238,0.4); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy); padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.tier-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.tier-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.tier-features { margin-bottom: 24px; }
.tier-features li { color: var(--text-muted); font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.tier-features li::before { content: "✓ "; color: var(--teal); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-step { text-align: center; padding: 32px 24px; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(34,211,238,0.1);
  border: 2px solid rgba(34,211,238,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--teal); margin: 0 auto 16px;
}
.process-step h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TEAM PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.team-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(34,211,238,0.1);
  border: 2px solid rgba(34,211,238,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px; color: var(--teal);
}
.team-card h3 { color: var(--white); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.team-role { color: var(--teal); font-size: 0.85rem; margin-bottom: 16px; }
.team-card blockquote { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; }

/* ===== FAQ PAGE ===== */
.faq-categories { display: flex; flex-direction: column; gap: 48px; }
.faq-category h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--teal); margin-bottom: 24px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: rgba(255,255,255,0.03); border: none; padding: 20px 24px;
  text-align: left; color: var(--white); font-size: 1rem; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.06); }
.faq-question.open { color: var(--teal); }
.faq-icon { font-size: 1.2rem; transition: transform var(--transition); color: var(--teal); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: 0.95rem;
  font-family: inherit; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; }
.contact-icon { color: var(--teal); font-size: 1.2rem; margin-top: 2px; }
.contact-detail h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== CAREERS PAGE ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.benefit-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pricing-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; position: relative;
}
.pricing-card.featured { border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.04); }
.pricing-name { color: var(--teal); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.pricing-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li { color: var(--text-muted); font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--teal); flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 20px; }
.about-story-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-image { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 24px; gap: 8px;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.03); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
