@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ORIGINAL PALETTE (revert if needed):
  --navy:       #08111E;
  --blue-dark:  #0C2D57;
  --blue:       #1558A0;
  --blue-mid:   #84affd;
  --blue-light: #AED6F1;
  --blue-pale:  #D6EAF8;
  --off-white:  #F5F8FC;
  --gray-light: #EBF2F9;
  --text:       #1C2B3A;
  --text-muted: #56677A;
  --border:     rgba(21, 88, 160, 0.14);
*/

:root {
  --navy:       #141E30;
  --blue-dark:  #1E3A5F;
  --blue:       #3B6FD4;
  --blue-mid:   #84affd;
  --blue-light: #B8CFFE;
  --blue-pale:  #E4EEFF;
  --off-white:  #F4F7FF;
  --gray-light: #EAF0FF;
  --white:      #FFFFFF;
  --text:       #1A2540;
  --text-muted: #5A6B8A;
  --border:     rgba(59, 111, 212, 0.14);
  --shadow-sm:  0 2px 8px rgba(20,30,48,0.07);
  --shadow-md:  0 6px 24px rgba(20,30,48,0.11);
  --shadow-lg:  0 12px 48px rgba(20,30,48,0.16);
  --radius:     8px;
  --radius-lg:  16px;
  --max-w:      1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; font-size: 1rem; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { color: var(--text-muted); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-off { background: var(--off-white); }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1rem;
}
.section-header { max-width: 620px; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header.centered { text-align: center; margin: 0 auto 3.5rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(174,214,241,0.08);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue-mid); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72); font-size: 0.92rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.6rem; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.22s; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,88,160,0.38); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-dark) 60%, #0E3A6E 100%);
  display: flex; align-items: center;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,111,191,0.18) 0%, transparent 65%);
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(174,214,241,0.1); border: 1px solid rgba(174,214,241,0.25);
  color: var(--blue-light); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 1.8rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; max-width: 700px; }
.hero h1 span { color: var(--blue-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.card h3 { margin-bottom: 0.75rem; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--blue); padding: 3rem 0; }
.stats-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--blue-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.why-item h4 { margin-bottom: 0.25rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy) 100%);
  padding: 80px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  background: #84affd; border-color: #84affd;
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured p,
.pricing-card.featured .pricing-features li { color: var(--navy); }
.pricing-card.featured .pricing-features li::before { color: var(--navy); }
.pricing-badge {
  display: inline-block; background: rgba(255,255,255,0.2);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card > p { font-size: 0.92rem; margin-bottom: 1.75rem; }
.pricing-price { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; margin-top: 0.25rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(20,30,48,0.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; color: var(--text-muted); }
.pricing-features li::before { content: '✓'; font-weight: 700; color: var(--blue); flex-shrink: 0; margin-top: 0.05rem; }
.pricing-card.featured .btn-outline-white { border-color: var(--navy); color: var(--navy); }
.pricing-card.featured .pricing-badge { background: rgba(20,30,48,0.15); color: var(--navy); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.review-stars { color: #F4C430; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--blue);
}
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.reviewer-role { font-size: 0.82rem; color: var(--text-muted); }
.rating-summary {
  text-align: center; background: var(--blue); color: var(--white);
  border-radius: var(--radius-lg); padding: 3rem 2rem; margin-bottom: 3rem;
}
.rating-big { font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 800; line-height: 1; }
.rating-stars-big { font-size: 1.6rem; letter-spacing: 4px; color: #F4C430; margin: 0.5rem 0; }
.rating-count { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-info-item h4 { margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.93rem; }
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-family: 'Montserrat', sans-serif; }
input, textarea, select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,88,160,0.12);
}
textarea { resize: vertical; min-height: 140px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-block {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg); padding: 3rem;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.about-img-text { text-align: center; color: var(--white); }
.about-img-text .big { font-family: 'Montserrat', sans-serif; font-size: 4rem; font-weight: 800; opacity: 0.3; display: block; }
.about-img-text span:last-child { font-size: 1rem; opacity: 0.6; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--white); padding: 1.75rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.value-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-pale); line-height: 1; margin-bottom: 0.75rem; }
.value-card h4 { margin-bottom: 0.5rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-top: 1rem; max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3, .services-grid, .pricing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .services-grid, .pricing-grid, .reviews-grid, .values-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 2rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(174,214,241,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-right { display: none; }
  .hero-stats { gap: 2rem; justify-content: center; }
  .hero-inner { text-align: center; }
  .hero h1, .hero p { text-align: center; }
  .hero-cta { justify-content: center; }
  .stats-bar-inner { justify-content: center; }
  .section-header { text-align: center; }
  .why-list { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand, .footer-col { text-align: center; }
  .footer-links { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { text-align: center; }
}
