@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0f1a2e;
  --navy-light: #162240;
  --navy-card: #1a2a45;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --gray-dark: #64748b;
  --border: rgba(245, 158, 11, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

img, svg { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: all 0.3s;
}
.header.scrolled { padding: 10px 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--white);
}
.logo svg { width: 32px; height: 32px; }
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: var(--gray-light); font-size: 0.9rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold); }
.nav a:hover { color: var(--white); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 50%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.1); color: var(--gold);
  padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(245,158,11,0.2);
}
.hero h1 {
  font-size: 3.5rem; font-weight: 900; line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.15rem; color: var(--gray); margin-bottom: 32px;
  max-width: 540px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
  border: none; font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: var(--navy-card); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border);
  width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.hero-card-info h4 { font-size: 0.95rem; }
.hero-card-info p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.hero-card-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.hero-card-text { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.hero-card-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,0.1); color: var(--gold); padding: 6px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }

/* Sections */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.1); color: var(--gold);
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.section h2 {
  font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section h2 em { font-style: normal; color: var(--gold); }
.section > .container > .section-header p,
.section > .section-header p { color: var(--gray); font-size: 1.05rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card {
  background: var(--navy-card); border-radius: 16px; padding: 32px 24px;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.4s; position: relative;
}
.process-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 12px 40px rgba(245,158,11,0.1); }
.process-step {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
  margin: 0 auto 20px;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--navy-card); border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--border); transition: all 0.4s;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 16px;
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-value { font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { color: var(--gray); font-size: 0.95rem; font-weight: 500; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--navy-card); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--gray-light); font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
}
.testimonial-name { font-size: 0.9rem; font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--navy-card); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border); position: relative; transition: all 0.4s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.pricing-card.featured {
  border-color: var(--gold); transform: scale(1.03);
  background: linear-gradient(180deg, var(--navy-card), rgba(245,158,11,0.05));
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-name { font-size: 1rem; color: var(--gray); margin-bottom: 8px; font-weight: 500; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin: 16px 0 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 0.9rem; color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-bg { background: var(--navy-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--navy-card); border-radius: 12px; margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(245,158,11,0.3); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--white);
  text-align: left;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--gray); line-height: 1.7; font-size: 0.95rem; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 100%);
  text-align: center; padding: 80px 0;
  position: relative;
}
.cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.cta p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

/* Keywords */
.keywords {
  background: var(--navy-light); padding: 32px 0;
  border-top: 1px solid var(--border);
}
.keywords-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.keyword-tag {
  padding: 6px 16px; border-radius: 100px;
  background: rgba(245,158,11,0.08); color: var(--gray-light);
  font-size: 0.8rem; font-weight: 500; border: 1px solid rgba(245,158,11,0.1);
  transition: all 0.3s;
}
.keyword-tag:hover { background: rgba(245,158,11,0.15); color: var(--gold); border-color: var(--gold); }

/* Footer */
.footer {
  background: #0a1322; padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 300px; margin-top: 12px; }
.footer h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; color: var(--white); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--gray); font-size: 0.88rem; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray-dark); font-size: 0.85rem; }
.footer-sister { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-sister a { color: var(--gray-dark); font-size: 0.82rem; }
.footer-sister a:hover { color: var(--gold); }

/* Animation classes */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale { opacity: 0; transform: scale(0.9); transition: all 0.6s ease; }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Page header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 100%);
  text-align: center; position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 12px; }
.page-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* About page */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content h2 { font-size: 1.6rem; font-weight: 700; margin: 40px 0 16px; color: var(--gold); }
.about-content p { color: var(--gray-light); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-mission {
  background: var(--navy-card); border-radius: 16px; padding: 40px;
  border: 1px solid var(--border); margin: 40px 0;
  text-align: center;
}
.about-mission blockquote { font-size: 1.15rem; color: var(--white); font-style: italic; line-height: 1.7; }
.about-mission cite { display: block; margin-top: 16px; color: var(--gold); font-style: normal; font-weight: 600; }
.about-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card {
  text-align: center; background: var(--navy-card); border-radius: 16px;
  padding: 32px 24px; border: 1px solid var(--border);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem; font-weight: 800; color: var(--navy);
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { color: var(--gray); font-size: 0.85rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-detail h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--gray); font-size: 0.9rem; }

.contact-form { background: var(--navy-card); border-radius: 16px; padding: 36px; border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.2rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-light); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--navy); border: 1px solid var(--border);
  color: var(--white); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Animations for numbers */
@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,26,46,0.98); padding: 24px; border-bottom: 1px solid var(--border); gap: 20px; }
  .mobile-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero .btn { width: 100%; justify-content: center; }
  .section h2 { font-size: 1.8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-value { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-team { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header h1 { font-size: 2rem; }
}
