/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a2744;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: #0b1f3c; }

/* ── Utility ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 8px;
  font-weight: 600; font-size: .9375rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #34d4a0; color: #0b1f3c; }
.btn-primary:hover { background: #2bc490; box-shadow: 0 8px 24px rgba(52,212,160,.35); }
.btn-outline { background: transparent; color: #0b1f3c; border: 2px solid rgba(11,31,60,.2); }
.btn-outline:hover { border-color: #34d4a0; color: #0b1f3c; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Tags ────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: #34d4a0;
  background: rgba(52,212,160,.1); border: 1px solid rgba(52,212,160,.25);
  padding: .35rem .875rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.0625rem; color: #4a5568; max-width: 600px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,250,252,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,31,60,.07);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(11,31,60,.08); }
.nav-inner { display: flex; align-items: center; gap: 1rem; height: 72px; }
.logo { display: flex; align-items: center; gap: .625rem; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.125rem; color: #0b1f3c; }
.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: .9375rem; font-weight: 500; color: #4a5568; transition: color .2s; }
.nav-links a:hover { color: #0b1f3c; }
.nav-cta { margin-left: .5rem; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #0b1f3c; border-radius: 2px; transition: transform .3s, opacity .3s; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: rgba(248,250,252,.98); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.mobile-nav a { font-size: 1.25rem; font-weight: 600; color: #0b1f3c; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding-top: 7rem; padding-bottom: 4rem;
  background: linear-gradient(160deg, #f8fafc 0%, #e8f5f0 50%, #f0faf6 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-card { background: #fff; border-radius: 20px; padding: 3rem; box-shadow: 0 8px 40px rgba(11,31,60,.07); border: 1px solid rgba(11,31,60,.05); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: #0b1f3c;
  background: rgba(52,212,160,.15); border: 1px solid rgba(52,212,160,.3);
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-headline { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 1.25rem; color: #0b1f3c; }
.hero-sub { font-size: 1.0625rem; color: #4a5568; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: .875rem; }
.trust-avatars { display: flex; }
.trust-avatar { border-radius: 50%; border: 2px solid #fff; margin-left: -8px; object-fit: cover; }
.trust-avatars img:first-child { margin-left: 0; }
.hero-trust span { font-size: .875rem; color: #64748b; }

.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(11,31,60,.12); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: .75rem;
  background: #fff; border-radius: 14px; padding: .875rem 1.125rem;
  box-shadow: 0 8px 32px rgba(11,31,60,.1); border: 1px solid rgba(11,31,60,.05);
  animation: float 4s ease-in-out infinite;
}
.float-card--top { top: 10%; left: -2rem; animation-delay: 0s; }
.float-card--mid { top: 48%; right: -1.5rem; animation-delay: 1.3s; }
.float-card--bottom { bottom: 8%; left: -1rem; animation-delay: 2.6s; }
.float-card-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(52,212,160,.12); border-radius: 10px; flex-shrink: 0; }
.float-card-number { display: block; font-size: 1.125rem; font-weight: 800; color: #0b1f3c; line-height: 1; }
.float-card-label { font-size: .75rem; color: #64748b; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Services ────────────────────────────────────── */
.services { background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: #f8fafc; border: 1px solid rgba(11,31,60,.06);
  border-radius: 16px; padding: 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,60,.08); border-color: rgba(52,212,160,.3); }
.service-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(52,212,160,.1); border-radius: 14px; margin-bottom: 1.25rem; }
.service-title { font-size: 1.1875rem; margin-bottom: .625rem; }
.service-desc { font-size: .9375rem; color: #64748b; line-height: 1.65; }

/* ── About ───────────────────────────────────────── */
.about { background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-group { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(11,31,60,.1); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -1.5rem;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(11,31,60,.12); border: 4px solid #f8fafc;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-stat {
  position: absolute; top: -1.5rem; right: 2rem;
  background: #0b1f3c; color: #fff; border-radius: 16px;
  padding: 1.25rem 1.5rem; text-align: center;
  box-shadow: 0 12px 32px rgba(11,31,60,.2);
}
.about-stat-number { display: block; font-size: 2rem; font-weight: 800; color: #34d4a0; line-height: 1; }
.about-stat-label { font-size: .8125rem; color: rgba(255,255,255,.7); margin-top: .375rem; line-height: 1.4; }
.about-body { font-size: 1.0625rem; color: #4a5568; margin-bottom: 1.25rem; line-height: 1.75; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.about-feature { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; font-weight: 500; color: #1a2744; }

/* ── Approach ────────────────────────────────────── */
.approach { background: #0b1f3c; color: #fff; }
.approach .section-tag { background: rgba(52,212,160,.15); border-color: rgba(52,212,160,.3); }
.approach .section-title { color: #fff; }
.approach .section-desc { color: rgba(255,255,255,.6); }
.approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 2rem; position: relative;
  transition: background .25s, transform .25s;
}
.step-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.step-number { font-size: 3rem; font-weight: 800; color: rgba(52,212,160,.25); line-height: 1; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }
.step-title { font-size: 1.1875rem; color: #fff; margin-bottom: .625rem; }
.step-desc { font-size: .9375rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────── */
.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #f8fafc; border: 1px solid rgba(11,31,60,.06);
  border-radius: 16px; padding: 2rem; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,31,60,.07); }
.testimonial-quote { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 4rem; font-family: 'Playfair Display', serif; color: rgba(52,212,160,.2); line-height: 1; }
.testimonial-body { font-size: 1rem; color: #4a5568; line-height: 1.75; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar { border-radius: 50%; object-fit: cover; }
.testimonial-name { display: block; font-size: .9375rem; font-weight: 600; color: #0b1f3c; }
.testimonial-location { font-size: .8125rem; color: #94a3b8; }

/* ── CTA ─────────────────────────────────────────── */
.cta { background: linear-gradient(160deg, #e8f5f0 0%, #f0faf6 100%); }
.cta-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
  background: #0b1f3c; border-radius: 24px; padding: 4rem; overflow: hidden;
}
.cta-title { color: #fff; }
.cta-body { font-size: 1.0625rem; color: rgba(255,255,255,.65); margin-bottom: 2rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.cta-img img { width: 100%; height: 500px; object-fit: cover; }

/* ── Contact ─────────────────────────────────────── */
.contact { background: #f8fafc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-body { font-size: 1.0625rem; color: #4a5568; margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(52,212,160,.1); border-radius: 12px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .875rem; color: #0b1f3c; margin-bottom: .25rem; }
.contact-item p { font-size: .9375rem; color: #64748b; line-height: 1.5; }
.contact-item a { color: #34d4a0; transition: color .2s; }
.contact-item a:hover { color: #2bc490; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(11,31,60,.07); }
.contact-form-wrap { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(11,31,60,.06); border: 1px solid rgba(11,31,60,.05); }
.contact-form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: #1a2744; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-size: .9375rem; color: #1a2744;
  background: #f8fafc; transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #34d4a0; box-shadow: 0 0 0 3px rgba(52,212,160,.15);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-note { font-size: .8125rem; color: #94a3b8; margin-top: .75rem; text-align: center; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success h4 { font-size: 1.5rem; margin: 1rem 0 .5rem; color: #0b1f3c; }
.form-success p { color: #64748b; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: #0b1f3c; color: rgba(255,255,255,.6); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .9375rem; margin-top: 1rem; line-height: 1.65; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col strong { display: block; font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; color: #34d4a0; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .9375rem; color: rgba(255,255,255,.55); padding: .3rem 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .9375rem; line-height: 1.65; margin-bottom: .25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: #34d4a0; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-group { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .hero { padding-top: 6rem; }
  .hero-card { padding: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; }
  .about-stat { right: 1rem; }
  .about-features { grid-template-columns: 1fr; }
  .cta-card { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero-card { padding: 1.5rem; }
  .hero-headline { font-size: 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
