:root {
  --navy: #07162f;
  --navy-2: #0c2145;
  --blue: #0f2cff;
  --green: #4f7e55;
  --cream: #f6f3ec;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #0a1831;
  --muted: #667085;
  --line: rgba(10, 24, 49, .12);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(7, 22, 47, .15);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Manrope", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(251, 250, 247, .88);
  border-bottom: 1px solid rgba(7, 22, 47, .08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark { width: 78px; height: auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 600;
}
.brand-copy small {
  color: var(--green);
  letter-spacing: .18em;
  font-size: 9px;
  margin-top: 5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
  color: #26334a;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px;
  background: var(--green);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 17px; height: 1.5px; background: var(--ink); }
.mobile-menu {
  display: none;
  padding: 18px 20px 28px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu a { display: block; padding: 13px 0; font-weight: 600; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 44px; padding: 0 18px; font-size: 13px; }
.button-dark { background: var(--navy); color: #fff; }
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 35px rgba(15, 44, 255, .24);
}
.button-light { background: #fff; color: var(--navy); }
.button.block { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero {
  min-height: 900px;
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248,247,242,.97) 0%, rgba(248,247,242,.92) 42%, rgba(248,247,242,.18) 72%, rgba(248,247,242,.08) 100%),
    url("assets/managed-property-boquete.webp") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  width: 800px; height: 800px;
  right: -250px; top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,44,255,.08), rgba(15,44,255,0) 66%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
  gap: 70px;
  align-items: center;
}
.eyebrow, .section-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(54px, 6.7vw, 94px);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 24px 0 30px;
  max-width: 880px;
}
.hero h1 em { font-style: italic; color: var(--navy-2); }
.hero-lead {
  font-size: 19px;
  max-width: 670px;
  color: #34425b;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(7,22,47,.15);
  gap: 18px;
}
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 20px; }
.hero-proof span { color: #68748a; font-size: 12px; margin-top: 3px; }

.hero-card {
  background: rgba(7, 22, 47, .92);
  color: #fff;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-kicker {
  color: #a9b8ce;
  letter-spacing: .15em;
  font-weight: 700;
  font-size: 11px;
}
.hero-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
  margin: 18px 0;
}
.hero-card p { color: #c8d2e1; font-size: 14px; }
.clean-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 28px;
}
.clean-list li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  position: relative;
  font-size: 14px;
}
.clean-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: #7eb184;
}
.hero-card small {
  display: block;
  color: #8291a8;
  text-align: center;
  margin-top: 12px;
  font-size: 10px;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.trust-grid > span {
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #657188;
}
.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.trust-pills span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.section { padding: 120px 0; }
.split-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 90px;
}
.split-intro h2, .section-heading h2, .about-copy h2, .analysis-copy h2, .faq-grid h2, .final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 18px 0 0;
}
.intro-copy {
  font-size: 18px;
  color: #49566c;
}
.intro-copy p:first-child { margin-top: 4px; }

.stats-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat-card {
  padding: 34px 28px;
  min-height: 280px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.4);
}
.stat-card > span { color: var(--green); font-size: 12px; font-weight: 700; }
.stat-card h3 { margin: 70px 0 12px; font-size: 20px; }
.stat-card p { color: #637086; font-size: 14px; }

.dark-section {
  background: var(--navy);
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading.light p { color: #aab6ca; }
.section-heading > p { color: #69758a; font-size: 17px; }
.dark-section .section-label { color: #7eb184; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.service-card {
  padding: 30px;
  min-height: 280px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .25s ease;
}
.service-card:hover { background: rgba(255,255,255,.05); }
.service-num { color: #7eb184; font-size: 12px; font-weight: 700; }
.service-card h3 { margin: 72px 0 14px; font-size: 24px; }
.service-card p { color: #a9b6cb; font-size: 14px; }

.process-line {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 30px;
}
.process-line article {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 34px 28px 0 0;
}
.process-line article::before {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  top: -5px; left: 0;
}
.process-line span { color: #8994a7; font-size: 11px; font-weight: 700; }
.process-line h3 { font-size: 22px; margin: 35px 0 12px; }
.process-line p { color: #657188; font-size: 14px; max-width: 240px; }

.offer-section { background: var(--cream); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(7,22,47,.1);
  border-radius: 28px;
  padding: 40px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
}
.offer-card.signature {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.signature-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 800;
}
.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.offer-tag { color: var(--green); font-size: 11px; letter-spacing: .14em; font-weight: 800; }
.offer-rate { display: flex; flex-direction: column; text-align: right; }
.offer-rate strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.offer-rate span { font-size: 10px; color: #778399; margin-top: 4px; }
.signature .offer-rate span { color: #9fabc0; }
.offer-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
  max-width: 520px;
  margin: 50px 0 30px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.check-list li {
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 14px;
}
.signature .check-list li { border-color: rgba(255,255,255,.1); color: #c6d0df; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.offer-card .text-link { margin-top: auto; }
.signature .text-link { color: #fff; }
.offer-note { color: #778397; font-size: 11px; margin-top: 18px; }

.coverage-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}
.coverage-grid h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px,5vw,66px);
  line-height: 1.06;
  font-weight: 500;
  margin: 18px 0 25px;
}
.coverage-grid p { max-width: 580px; color: #647086; }
.locations { border-top: 1px solid var(--line); }
.locations div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.locations strong { font-size: 14px; }
.locations span { color: #6b778b; font-size: 13px; text-align: right; }
.coverage-visual {
  position: absolute;
  right: -30px; top: 5%;
  width: 48%;
  height: 90%;
  opacity: .06;
}
.map-shape {
  font-family: "Playfair Display", serif;
  font-size: clamp(110px, 16vw, 250px);
  transform: rotate(-9deg);
  color: var(--blue);
  user-select: none;
}

.about-section { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  min-height: 620px;
  position: relative;
}
.about-image {
  position: absolute;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.image-one {
  width: 70%;
  height: 76%;
  left: 0; top: 0;
  background-image: url("assets/managed-property-boquete.webp");
}
.image-two {
  width: 48%;
  height: 52%;
  right: 0; bottom: 0;
  border: 9px solid var(--paper);
  background-image: url("assets/managed-property-pool.webp");
}
.about-caption {
  position: absolute;
  left: 22px; bottom: 50px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.about-caption span { font-size: 12px; color: #b9c5d7; }
.about-copy p { color: #647086; font-size: 17px; }
.about-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-values span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 600;
}

.analysis-section {
  background: var(--navy);
  color: #fff;
}
.analysis-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 90px;
  align-items: start;
}
.light-label { color: #7eb184; }
.analysis-copy p { color: #aeb9cb; font-size: 17px; max-width: 520px; }
.analysis-points { margin-top: 48px; }
.analysis-points div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.analysis-points span { color: #7eb184; font-size: 11px; font-weight: 700; }
.analysis-points p { margin: 0; color: #e2e7ef; font-size: 14px; }

.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 100px rgba(0,0,0,.25);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 17px;
}
.lead-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 17px; }
.lead-form label > span { font-size: 11px; font-weight: 800; letter-spacing: .03em; color: #566277; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(7,22,47,.14);
  border-radius: 12px;
  background: #fbfbfa;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: rgba(15,44,255,.6);
  box-shadow: 0 0 0 4px rgba(15,44,255,.08);
}
.form-note { color: #8a95a7; font-size: 10px; text-align: center; }
.form-status { min-height: 20px; margin-top: 8px; text-align: center; font-size: 12px; font-weight: 700; color: var(--green); }

.faq-grid {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 90px;
}
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}
.faq-question > span:last-child {
  font-size: 24px;
  font-weight: 400;
  transition: transform .25s ease;
}
.faq-item.open .faq-question > span:last-child { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: #667287;
  font-size: 14px;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 24px; }

.final-cta {
  background: linear-gradient(135deg, #0d2b7f, #06152e 75%);
  color: #fff;
  padding: 90px 0;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr .5fr;
  gap: 90px;
  align-items: end;
}
.final-cta h2 { font-size: clamp(48px,6vw,76px); margin: 15px 0 0; }
.final-cta p { color: #bac6d7; margin: 0 0 25px; }

.footer {
  background: #050f22;
  color: #fff;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}
.footer .brand-copy strong { color: #fff; }
.footer-brand p { color: #8492aa; max-width: 360px; font-size: 13px; margin-top: 25px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 12px; color: #fff; margin-bottom: 5px; }
.footer-links a, .footer-links span { font-size: 12px; color: #8d99ad; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #6f7c92;
  font-size: 10px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 900;
  right: 20px; bottom: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #1e8f59;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  font-weight: 800;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal .7s ease forwards;
}
.delay-1 { animation-delay: .18s; }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.open { display: block; }
  .nav-actions .button-sm { display: none; }

  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 520px; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .coverage-grid, .about-grid, .analysis-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 62px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy small { font-size: 7px; }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero-media {
    background:
      linear-gradient(180deg, rgba(248,247,242,.94) 0%, rgba(248,247,242,.9) 55%, rgba(248,247,242,.62) 100%),
      url("assets/managed-property-boquete.webp") center/cover no-repeat;
  }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .hero-proof div { flex-direction: row; gap: 10px; align-items: baseline; }

  .trust-grid { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .trust-pills { justify-content: flex-start; }

  .section { padding: 82px 0; }
  .split-intro, .section-heading, .coverage-grid, .about-grid, .analysis-grid, .faq-grid, .final-cta-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .section-heading { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 220px; }
  .stat-card h3 { margin-top: 42px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .service-card h3 { margin-top: 48px; }

  .process-line { grid-template-columns: 1fr; gap: 0; }
  .process-line article { padding: 28px 0 35px; }
  .process-line p { max-width: none; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 28px; min-height: auto; }
  .offer-top { flex-direction: column; }
  .offer-rate { text-align: left; }

  .coverage-visual { display: none; }
  .locations div { flex-direction: column; gap: 4px; }
  .locations span { text-align: left; }

  .about-visual { min-height: 470px; }
  .lead-form { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Eden Getaways original logo — same design, reduced for more breathing room */
.brand-original {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.original-logo {
  display: block;
  width: 145px;
  max-width: min(145px, 24vw);
  height: auto;
  object-fit: contain;
}
.footer-original-logo .original-logo {
  width: 175px;
  max-width: 100%;
}
@media (max-width: 760px) {
  .original-logo {
    width: 118px;
    max-width: 40vw;
  }
  .footer-original-logo .original-logo {
    width: 145px;
  }
}

.hero-media {
  background-position: center 42%;
}
.image-one {
  background-position: center 55%;
}


/* Clean footer treatment for the original Eden Getaways logo */
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  line-height: 0;
}

.footer-logo-clean {
  display: block;
  width: 165px;
  height: auto;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand p {
  margin-top: 22px;
}

@media (max-width: 760px) {
  .footer-logo-card {
    padding: 12px 15px;
    border-radius: 14px;
  }

  .footer-logo-clean {
    width: 145px;
  }
}


/* --- SEO content pages & owner resource hub --- */
.seo-static-header{position:relative;background:#fff;border-bottom:1px solid rgba(7,22,47,.08)}
.seo-page{background:#fbfaf7;color:#07162f;min-height:70vh}
.breadcrumbs{padding:28px 0 10px;font-size:.82rem;color:#758095;display:flex;gap:9px;flex-wrap:wrap}.breadcrumbs a{color:#526178;text-decoration:none}.breadcrumbs a:hover{color:#07162f}
.seo-article-wrap,.seo-service-wrap{max-width:1120px}.seo-article-hero{max-width:850px;padding:58px 0 34px}.seo-article-hero h1,.seo-index-hero h1,.seo-service-hero h1{font-family:"Playfair Display",serif;font-weight:600;letter-spacing:-.035em;line-height:1.05;margin:14px 0 22px;font-size:clamp(2.5rem,6vw,4.8rem)}
.seo-lead{font-size:clamp(1.05rem,2vw,1.3rem);line-height:1.7;color:#516078;max-width:820px}.seo-meta{margin-top:24px;color:#79869a;font-size:.85rem}.seo-hero-image{width:100%;height:min(52vw,520px);object-fit:cover;border-radius:24px;display:block;margin-bottom:55px}
.seo-article{max-width:790px;margin:0 auto;font-size:1.05rem;line-height:1.82;color:#34445c}.seo-article .seo-intro{font-size:1.22rem;color:#172b48}.seo-article h2,.seo-service-content h2{font-family:"Playfair Display",serif;color:#07162f;font-size:clamp(1.65rem,3vw,2.25rem);margin:52px 0 14px;letter-spacing:-.02em}.seo-article a,.seo-service-content a{color:#2449a8;text-decoration:underline;text-underline-offset:3px}
.related-guides{max-width:980px;margin:80px auto 40px}.related-guides>h2{font-family:"Playfair Display",serif;font-size:2rem;margin-bottom:24px}.seo-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.seo-link-card,.seo-resource-card{background:#fff;border:1px solid rgba(7,22,47,.09);border-radius:18px;padding:26px;text-decoration:none;color:#07162f;transition:.22s ease}.seo-link-card:hover,.seo-resource-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(7,22,47,.08)}.seo-link-card span,.seo-resource-card strong{display:block;margin-top:18px;color:#4c7d58;font-weight:700}.seo-resource-card>span{font-size:.72rem;letter-spacing:.12em;color:#62728a;font-weight:700}.seo-resource-card h3,.seo-resource-card h2{font-family:"Playfair Display",serif;font-size:1.55rem;margin:13px 0 10px;line-height:1.2}.seo-resource-card p{color:#5b687b;line-height:1.62}
.seo-cta{margin:78px 0;background:#07162f;border-radius:28px;padding:clamp(32px,7vw,70px);color:#fff}.seo-cta>div{max-width:760px}.seo-cta h2{font-family:"Playfair Display",serif;font-size:clamp(2rem,4.5vw,3.5rem);line-height:1.05;margin:12px 0 18px}.seo-cta p{color:#c8d1df;line-height:1.7;max-width:660px;margin-bottom:26px}.seo-static-footer a{text-decoration:none}
.seo-index-hero{padding:40px 0 65px;background:linear-gradient(180deg,#f4f6f8,#fbfaf7)}.seo-index-hero p{max-width:760px;font-size:1.15rem;line-height:1.7;color:#5b687b}.blog-index-grid{grid-template-columns:repeat(2,1fr)}.blog-index-grid .seo-resource-card{padding:34px}.seo-resources-section{background:#f6f5f1}.seo-resources-more{margin-top:28px}
.seo-service-hero{padding:60px 0 50px;max-width:880px}.seo-service-hero .button{margin-top:26px}.seo-service-media{display:grid;grid-template-columns:1.35fr .65fr;gap:20px;background:#07162f;border-radius:24px;overflow:hidden;color:#fff}.seo-service-media img{width:100%;height:100%;min-height:380px;object-fit:cover}.seo-service-copy{padding:42px 34px;align-self:center}.seo-service-copy h2{font-family:"Playfair Display",serif;font-size:2rem;margin:0 0 16px}.seo-service-copy p{color:#cbd4e1;line-height:1.7}.seo-service-content{max-width:790px;margin:65px auto 0;font-size:1.05rem;line-height:1.82;color:#34445c}.seo-service-section{margin-bottom:44px}.seo-service-section h2{margin-top:0}
@media(max-width:850px){.seo-card-grid,.blog-index-grid{grid-template-columns:1fr}.seo-service-media{grid-template-columns:1fr}.seo-service-media img{min-height:260px}.seo-static-header .desktop-nav{display:none}.seo-static-header .nav-actions{display:flex}.seo-static-header .button-sm{font-size:.75rem;padding:11px 14px}.seo-article-hero,.seo-service-hero{padding-top:38px}.seo-hero-image{border-radius:14px;margin-bottom:38px}}
