@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --blue: #0F2A44;
  --blue-dark: #081C33;
  --gold: #C8A96A;
  --gold-soft: #E5D2A0;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --text: #1A1A1A;
  --muted: #5F6A7D;
  --line: rgba(15, 42, 68, 0.12);
  --shadow: 0 24px 70px rgba(8, 28, 51, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px clamp(24px, 4vw, 76px);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 14px 36px rgba(8, 28, 51, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: fit-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: min(360px, 42vw);
  object-fit: contain;
  transition: height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: 58px;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 42, 68, 0.95), rgba(15, 42, 68, 0.75), rgba(15, 42, 68, 0.35)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.52fr);
  align-items: end;
  gap: 58px;
  padding-top: 138px;
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 840px;
  font-size: clamp(46px, 5.5vw, 74px);
}

.hero-subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 32px rgba(200, 169, 106, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(200, 169, 106, 0.34);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(15, 42, 68, 0.2);
  background: var(--white);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(200, 169, 106, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 28, 51, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.panel-label {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-panel p {
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.84);
}

.panel-steps {
  display: grid;
  gap: 14px;
}

.panel-steps span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.panel-steps strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}

.section {
  padding: 96px 0;
}

.section-muted,
.trust-section,
.cta-section {
  background: var(--gray-bg);
}

.split-heading,
.business-grid,
.cta-grid,
.differentiators-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.split-heading {
  align-items: end;
  margin-bottom: 34px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-heading h2,
.business-grid h2,
.cta-copy h2,
.differentiators h2 {
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 50px);
}

.section-heading p,
.split-heading p,
.business-copy p,
.cta-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.mini-card-grid,
.cards-grid,
.features-grid {
  display: grid;
  gap: 18px;
}

.mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.mini-card,
.service-card,
.step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 28, 51, 0.06);
}

.mini-card {
  padding: 26px;
}

.mini-card span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.mini-card h3,
.service-card h3,
.step h3 {
  color: var(--blue-dark);
}

.mini-card h3 {
  margin-top: 16px;
  font-size: 21px;
}

.mini-card p,
.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 106, 0.62);
  box-shadow: var(--shadow);
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 169, 106, 0.42);
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.08);
}

.service-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

.service-icon i {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.service-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 14px;
}

.step {
  min-height: 170px;
  padding: 24px;
  background: linear-gradient(180deg, var(--white), #FAFBFC);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--blue-dark);
  border: 1px solid rgba(200, 169, 106, 0.48);
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.12);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.step h3 {
  margin-top: 20px;
  font-size: 19px;
}

.differentiators {
  background: var(--white);
}

.featured-quote {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--blue);
  border-left: 3px solid var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
}

.features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 18px 20px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-bg);
  font-weight: 800;
}

.feature span {
  flex: 0 0 auto;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 169, 106, 0.13);
}

.business-block {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 28, 51, 0.96), rgba(15, 42, 68, 0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1700&q=82") center/cover;
}

.business-grid {
  align-items: center;
}

.business-grid h2,
.business-copy p {
  color: var(--white);
}

.business-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-section {
  padding: 96px 0;
}

.cta-actions {
  margin-top: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 42, 68, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.95fr;
  gap: clamp(56px, 9vw, 150px);
  padding: 72px 0 62px;
  align-items: start;
}

.site-footer p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.55;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer a,
.site-footer span {
  display: block;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  margin-top: 7px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  margin: 0;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-contact-item span {
  display: inline;
  color: #E94B93;
}

.footer-cta {
  margin-top: 40px !important;
  min-width: 330px;
  justify-content: center;
  padding: 17px 25px;
  color: var(--blue-dark) !important;
  background: linear-gradient(135deg, #E5D2A0, #C8A96A);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(200, 169, 106, 0.24);
  font-weight: 800;
  text-align: center;
}

.footer-cta:hover {
  color: var(--blue-dark) !important;
  transform: translateY(-2px) !important;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 24px 20px 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  color: var(--white);
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  padding: 160px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 28, 51, 0.96), rgba(15, 42, 68, 0.88)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1700&q=82") center/cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 66px);
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 28px;
}

.content-panel,
.side-card,
.related-card,
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 28, 51, 0.06);
}

.content-panel {
  padding: 32px;
}

.content-panel h2,
.side-card h2 {
  color: var(--blue-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.content-panel p,
.content-panel li,
.side-card p,
.related-card p,
.blog-card p {
  color: var(--muted);
}

.content-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.side-card {
  position: sticky;
  top: 110px;
  padding: 26px;
}

.side-card .btn {
  width: 100%;
  margin-top: 18px;
}

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

.related-card,
.blog-card {
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.related-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 169, 106, 0.56);
  box-shadow: var(--shadow);
}

.related-card h3,
.blog-card h3 {
  color: var(--blue-dark);
  font-size: 21px;
}

.related-card a,
.blog-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.final-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .brand-logo {
    height: 62px;
    max-width: min(300px, 38vw);
  }

  .site-header.is-scrolled .brand-logo {
    height: 54px;
  }

  .hero-grid,
  .split-heading,
  .business-grid,
  .cta-grid,
  .differentiators-grid,
  .content-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    max-width: 58vw;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    height: 52px;
    max-width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(to bottom, rgba(15, 42, 68, 0.94), rgba(15, 42, 68, 0.86), rgba(15, 42, 68, 0.72)),
      url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1200&q=82") center/cover;
  }

  .hero-grid {
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions,
  .btn {
    width: 100%;
  }

  .mini-card-grid,
  .cards-grid,
  .features-grid,
  .footer-grid,
  .related-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    padding: 68px 0;
  }

  .business-block {
    padding: 64px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .page-hero {
    padding-top: 126px;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    height: 48px;
  }

  .site-nav {
    inset: 66px 14px auto 14px;
  }

  h1 {
    font-size: 34px;
  }

  .section-heading h2,
  .split-heading h2,
  .business-grid h2,
  .cta-copy h2,
  .differentiators h2 {
    font-size: 30px;
  }

  .hero-panel,
  .service-card,
  .mini-card,
  .step {
    padding: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .trust-line {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
  }
}
