@font-face {
  font-family: 'Biome';
  src: url('BiomeW01-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Updated */
:root {
  --brand: #0f5fa8;
  --brand-dark: #073b68;
  --brand-soft: #e9f4ff;
  --ink: #172033;
  --muted: #5b6678;
  --line: #dce5ef;
  --paper: #ffffff;
  --surface: #f6f9fc;
  --accent: #f4b740;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(15, 50, 84, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Biome', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

img {
  max-width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 14px clamp(18px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 95, 168, 0.12);
  box-shadow: 0 6px 20px rgba(15, 50, 84, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.logo-text {
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar ul li a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 96px clamp(20px, 7vw, 96px);
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5, 34, 58, 0.88), rgba(5, 34, 58, 0.58), rgba(5, 34, 58, 0.25)), url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 660px;
  margin-bottom: 30px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #172033;
  box-shadow: 0 12px 28px rgba(244, 183, 64, 0.26);
}

.btn-secondary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
}

.btn-outline {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--brand);
}

.content {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0;
}

.content h1,
.content h2 {
  color: var(--brand-dark);
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
  font-weight: 800;
}

.content p {
  font-size: 17px;
  color: var(--muted);
}

.intro-section {
  text-align: center;
}

.section-intro {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.trust-strip {
  width: min(1120px, calc(100% - 40px));
  margin: -52px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--brand-dark);
  font-size: 17px;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.services-grid,
.refined-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(15, 50, 84, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 95, 168, 0.35);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--brand-dark);
  margin-bottom: 10px;
  font-size: 21px;
}

.card p {
  color: var(--muted);
  text-align: left;
  font-size: 16px;
}

.feature-band,
.newsletter-cta,
.contact-hero,
.about-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 64px 0;
}

.feature-copy h2,
.newsletter-cta h2,
.contact-hero h1,
.about-hero h1 {
  color: var(--brand-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.feature-copy p,
.newsletter-cta p,
.contact-hero p,
.about-hero p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}

.feature-image img,
.split-img img,
.about-photo img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  margin-bottom: 56px;
}

.split.reverse .split-text {
  order: 2;
}

.split.reverse .split-img {
  order: 1;
}

.split-text h3 {
  color: var(--brand-dark);
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.split-text p {
  color: var(--muted);
  text-align: left;
  font-size: 17px;
}

.review-box {
  width: min(980px, calc(100% - 40px));
  margin: 10px auto 76px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.review-quote {
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
  margin-bottom: 16px;
}

.review-name {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.review-image img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.28);
}

.newsletter-cta {
  grid-template-columns: 1fr auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  margin-bottom: 72px;
}

.about-hero,
.contact-hero {
  padding-top: 86px;
}

.about-hero {
  grid-template-columns: 1fr 360px;
}

.credential-grid,
.value-grid,
.contact-grid,
.social-grid {
  display: grid;
  gap: 20px;
}

.credential-grid,
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.credential-card,
.value-card,
.contact-card,
.social-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 50, 84, 0.06);
}

.credential-card h3,
.value-card h3,
.contact-card h3 {
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 20px;
}

.credential-card p,
.value-card p,
.contact-card p {
  color: var(--muted);
  text-align: left;
}

.contact-hero {
  grid-template-columns: 1fr 420px;
}

.contact-panel {
  background: var(--brand-dark);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 28px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-socials {
  padding-top: 20px;
  text-align: center;
}

.social-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.social-card {
  text-decoration: none;
  color: var(--ink);
  text-align: left;
  display: block;
  border-top: 4px solid var(--brand);
}

.social-card span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
}

.social-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.social-card.whatsapp { border-top-color: var(--whatsapp); }
.social-card.youtube { border-top-color: #ff0000; }
.social-card.linkedin { border-top-color: #0077b5; }
.social-card.facebook { border-top-color: #1877f2; }
.social-card.instagram { border-top-color: #dd2a7b; }
.social-card.x { border-top-color: #000000; }

.newsletter-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 20px;
  background: var(--surface);
}

.newsletter-card {
  width: min(760px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.newsletter-card h1 {
  color: var(--brand-dark);
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 10px;
}

.newsletter-card p {
  color: var(--muted);
  text-align: center;
  margin-bottom: 22px;
}

.newsletter-card iframe {
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: 8px;
}

footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 26px 10px;
  font-size: 14px;
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #172033;
  color: #fff;
  border: 2px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
}

.whatsapp-prompt {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 240px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-wrapper.show-prompt .whatsapp-prompt {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar ul {
    justify-content: flex-start;
  }

  .hero {
    min-height: 560px;
    padding-top: 78px;
  }

  .trust-strip,
  .services-grid,
  .refined-grid,
  .credential-grid,
  .value-grid,
  .contact-grid,
  .social-grid,
  .feature-band,
  .newsletter-cta,
  .about-hero,
  .contact-hero,
  .split,
  .review-box {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .split.reverse .split-text,
  .split.reverse .split-img {
    order: initial;
  }

  .newsletter-cta {
    align-items: start;
  }

  .review-image img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 560px) {
  .logo-text {
    font-size: 14px;
    white-space: normal;
  }

  .navbar ul li a {
    padding: 7px 9px;
    font-size: 14px;
  }

  .hero {
    min-height: 620px;
    padding: 72px 20px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .content,
  .feature-band,
  .newsletter-cta,
  .about-hero,
  .contact-hero,
  .trust-strip,
  .review-box {
    width: calc(100% - 28px);
  }

  .card,
  .newsletter-cta,
  .review-box,
  .contact-panel,
  .newsletter-card {
    padding: 22px;
  }

  .whatsapp-prompt {
    display: none;
  }

  .about-hero img {
  max-width: 220px;
  height: auto;
  object-fit: contain;

  }

.about-photo img {
    width: auto;
    max-width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
  }

.about-photo img {
    box-shadow: none;
}
