:root {
  --navy: #0b1f3a;
  --navy-2: #12345c;
  --gold: #c99a2e;
  --gold-light: #f5d88f;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --ink: #162033;
  --muted: #64748b;
  --line: #dce4ef;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 239, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  border: 2px solid var(--gold);
  background: linear-gradient(145deg, #fff7dc, #d7a944);
  border-radius: var(--radius);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 31, 58, 0.96), rgba(18, 52, 92, 0.9)),
    radial-gradient(circle at 85% 18%, rgba(201, 154, 46, 0.32), transparent 32%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -38% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(245, 216, 143, 0.28);
  transform: rotate(24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 88px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 830px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  margin: 22px 0 0;
  max-width: 670px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(201, 154, 46, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 480px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.metric-card {
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-card strong {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--navy);
}

.document-stack {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.doc-card {
  padding: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
}

.doc-card b,
.doc-card small {
  display: block;
}

.doc-card small {
  color: var(--muted);
}

.progress {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  background: #e9eef5;
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.section {
  padding: 88px 0;
}

.muted {
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.split h2,
.contact-panel h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.section-heading p,
.split p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.section-heading + .card-grid {
  margin-top: 42px;
}

.service-card,
.price-card,
.blog-card,
.team-grid article,
.story-card,
.mission-grid article,
.contact-info,
.lead-form {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
}

.service-card {
  padding: 24px;
}

.service-card span,
.blog-card span,
.team-grid span,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 4px 10px;
  color: var(--navy);
  background: #fff4cf;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
}

.service-card h3,
.blog-card h2,
.team-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p,
.blog-card p,
.team-grid p,
.price-card p,
.price-card li,
.prose p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefits div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefits b,
.benefits span {
  display: block;
}

.benefits b {
  color: var(--navy);
}

.benefits span {
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.testimonial-carousel {
  min-height: 230px;
}

.testimonial {
  display: none;
  padding: 36px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.testimonial.active {
  display: block;
}

.testimonial p {
  margin: 0 auto 22px;
  max-width: 760px;
  color: var(--navy);
  font-size: 1.35rem;
}

.testimonial b,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-item div {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open div {
  display: block;
}

.contact-panel,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  border-radius: var(--radius);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form.large {
  padding: 30px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.page-hero {
  padding: 98px 0;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(11, 31, 58, 0.96), rgba(18, 52, 92, 0.92)),
    linear-gradient(45deg, rgba(201, 154, 46, 0.22), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.price-card h2 {
  margin: 0;
  color: var(--navy);
}

.price-card strong {
  display: block;
  margin: 18px 0;
  color: var(--navy);
  font-size: 2.1rem;
}

.price-card ul {
  padding-left: 18px;
  min-height: 138px;
}

.badge {
  position: absolute;
  right: 20px;
  top: 20px;
}

.mission-grid,
.team-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mission-grid article,
.team-grid article,
.blog-card,
.story-card {
  padding: 28px;
}

.story-card {
  border-left: 5px solid var(--gold);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-row button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
}

.category-row .active {
  background: var(--navy);
  color: var(--white);
}

.blog-card a {
  color: var(--gold);
  font-weight: 850;
}

.contact-info {
  padding: 30px;
}

.contact-info h2 {
  margin-top: 0;
  color: var(--navy);
}

.contact-info p b,
.contact-info p a {
  display: block;
}

.contact-info p a {
  color: var(--navy);
  font-weight: 800;
}

.mini-cta {
  margin-top: 24px;
  padding: 22px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  color: var(--navy);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 34px;
  padding: 64px 0 42px;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.site-footer h3 {
  margin-top: 0;
  color: var(--gold-light);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.9);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom a {
  display: inline;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: #128c7e;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.35);
  border-radius: 999px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .contact-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .card-grid,
  .pricing-grid,
  .mission-grid,
  .team-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-grid,
  .section,
  .page-hero {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1.02rem;
  }

  .hero-panel {
    min-height: auto;
    padding: 18px;
  }

  .card-grid,
  .pricing-grid,
  .mission-grid,
  .team-grid,
  .blog-grid,
  .benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 100%;
    border-radius: var(--radius);
  }

  .contact-panel {
    padding: 22px;
  }

  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
