/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #0F62D4;
  --brand-dk: #0A4BA8;
  --accent:   #00B87C;
  --dark:     #071D3B;
  --mid:      #0E2D5E;
  --muted:    #5C7A9A;
  --light:    #EBF3FC;
  --white:    #FFFFFF;
  --radius:   14px;
  --shadow:   0 8px 32px rgba(15,98,212,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Typography helpers ────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(15,98,212,.1);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }

.accent { color: var(--brand); }

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  font-size: .95rem;
  transition: opacity .2s;
}
.btn-ghost:hover { opacity: .75; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brand); color: var(--white); }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
}
.nav-logo span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

/* ── Hero (Landing) ────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 88vh;
  padding: 80px 40px 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-content { flex: 1; }
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; gap: 20px; align-items: center; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.7rem; font-weight: 900; color: var(--brand); }
.stat span   { font-size: .82rem; color: var(--muted); }

.hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 500px;
}

/* ── Services ──────────────────────────────────────────── */
.services {
  background: var(--light);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: .92rem; color: var(--muted); }

/* ── Results Banner ────────────────────────────────────── */
.results-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,98,212,.88), rgba(0,184,124,.80));
}
.banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 60px 24px;
}
.banner-content h2  { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.banner-content p   { font-size: 1.05rem; opacity: .9; max-width: 500px; margin-bottom: 28px; }

/* ── Pricing ───────────────────────────────────────────── */
.pricing { padding: 100px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  border: 2px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--brand);
  background: var(--dark);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
}

.plan-name  { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 8px; }
.plan-price { font-size: 2.6rem; font-weight: 900; margin-bottom: 4px; }
.plan-price span { font-size: 1rem; font-weight: 500; opacity: .7; }
.plan-desc  { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,.6); }

.plan-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: .9rem; }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,.85); }

.pricing-note { text-align: center; margin-top: 36px; color: var(--muted); font-size: .92rem; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials { background: var(--light); padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testimonial-card p      { font-size: .95rem; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.testimonial-card strong { font-size: .85rem; }

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* ── Contact ───────────────────────────────────────────── */
.contact { background: var(--dark); padding: 100px 0; color: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .badge { background: rgba(255,255,255,.1); color: #7BC8FF; }
.contact-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.contact-text p  { color: rgba(255,255,255,.65); margin-bottom: 8px; }
.contact-email   { font-size: .95rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form select option { background: var(--dark); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--brand); }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.07); padding: 32px 0; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer p           { color: rgba(255,255,255,.4); font-size: .85rem; }
.footer .nav-logo   { color: var(--white); }
.footer-links       { display: flex; gap: 24px; }
.footer-links a     { font-size: .85rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ── About Hero ────────────────────────────────────────── */
.about-hero { padding: 80px 0 60px; }

.about-hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-hero-text { flex: 1; }
.about-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero-text p { color: var(--muted); margin-bottom: 12px; max-width: 480px; }

.about-hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 420px;
}

/* ── Values ────────────────────────────────────────────── */
.values { background: var(--light); padding: 100px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: .9rem; color: var(--muted); }

/* ── Team ──────────────────────────────────────────────── */
.team { padding: 100px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.team-card img { height: 240px; object-fit: cover; object-position: top; }

.team-info { padding: 24px; }
.team-info h3   { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.team-info span { display: block; font-size: .82rem; color: var(--brand); font-weight: 700; margin-bottom: 10px; }
.team-info p    { font-size: .88rem; color: var(--muted); }

/* ── Timeline / Milestones ─────────────────────────────── */
.milestones { background: var(--light); padding: 100px 0; }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  margin-bottom: 48px;
  align-items: start;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 3px var(--brand);
}

.timeline-year {
  font-size: .85rem;
  font-weight: 800;
  color: var(--brand);
  padding-top: 2px;
}

.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.timeline-content p  { font-size: .9rem; color: var(--muted); }

/* ── Culture images ────────────────────────────────────── */
.culture { padding: 80px 0; overflow: hidden; }

.culture-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
  max-height: 320px;
}

.culture-images img { height: 320px; border-radius: 10px; }

.culture-text {
  text-align: center;
}
.culture-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.culture-text p  { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }

/* ── About CTA ─────────────────────────────────────────── */
.about-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}
.about-cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.about-cta-inner p  { opacity: .8; margin-bottom: 32px; font-size: 1.05rem; }
.about-cta .btn-primary { background: var(--white); color: var(--brand); }
.about-cta .btn-primary:hover { background: var(--light); }
.about-cta .btn-ghost { color: var(--white); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links li:nth-child(-n+3) { display: none; }

  .hero, .about-hero-inner { flex-direction: column; padding: 40px 20px 48px; }
  .hero-image, .about-hero-image { max-height: 260px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .culture-images { grid-template-columns: 1fr; }
  .culture-images img { height: 200px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .pricing-card.featured { transform: none; }
}
