:root {
  --navy: #102d3f;
  --navy-deep: #071d2a;
  --blue: #1976a3;
  --teal: #2f8b83;
  --ink: #16252d;
  --muted: #60717a;
  --paper: #f5f7f6;
  --white: #ffffff;
  --line: #d9e1e2;
  --coral: #d86f55;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle, rgba(226, 183, 91, 0.22), rgba(47, 139, 131, 0.14) 34%, rgba(25, 118, 163, 0.07) 52%, transparent 72%);
  mix-blend-mode: multiply;
  transition: opacity 180ms ease;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

.click-ripple {
  position: fixed;
  z-index: 60;
  width: 18px;
  height: 18px;
  left: var(--ripple-x);
  top: var(--ripple-y);
  border: 1px solid rgba(226, 183, 91, 0.9);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
  animation: click-ripple 650ms ease-out forwards;
  box-shadow: 0 0 26px rgba(226, 183, 91, 0.32);
}

@keyframes click-ripple {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.8);
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  padding: 8px 18px 8px 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: #128c7e;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(7, 29, 42, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #128c7e;
  background: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.whatsapp-float strong {
  font-size: 14px;
  font-weight: 800;
}

.whatsapp-float:hover {
  background: #0f7d71;
  box-shadow: 0 24px 55px rgba(7, 29, 42, 0.3);
  transform: translateY(-3px);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 rgba(16, 45, 63, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
}

.language-switch a {
  min-width: 30px;
  padding: 4px 7px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.language-switch a.active {
  color: var(--navy);
  background: var(--white);
}

.site-header.scrolled .language-switch a.active,
.main-nav.open .language-switch a.active {
  color: var(--white);
  background: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: currentColor;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  scale: 1.035;
  transition: transform 160ms linear;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 42, 0.92) 0%, rgba(7, 29, 42, 0.7) 42%, rgba(7, 29, 42, 0.12) 78%),
    linear-gradient(0deg, rgba(7, 29, 42, 0.48) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(670px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2));
  padding: 130px 0 110px;
  transition: transform 180ms linear;
  will-change: transform;
}

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

.hero .eyebrow {
  color: #8fd4cd;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(60px, 9vw, 120px);
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

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

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: #c85f47;
  box-shadow: 0 12px 30px rgba(216, 111, 85, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(7, 29, 42, 0.12);
}

.button-whatsapp {
  color: #ffffff;
  background: #128c7e;
  border-color: #128c7e;
}

.button-whatsapp:hover {
  background: #0f7d71;
  border-color: #0f7d71;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 30px;
  display: flex;
  gap: 18px;
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
}

.section {
  padding: 110px max(24px, calc((100vw - var(--max-width)) / 2));
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.promise {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 8vw;
  background: var(--paper);
}

.promise-copy {
  padding-top: 36px;
  color: var(--muted);
  font-size: 17px;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  text-align: center;
  color: var(--white);
  background: #090b0c;
}

.founder-brand {
  width: min(260px, 58vw);
  min-width: 0;
  max-width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

.founder-brand img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.founder-copy {
  max-width: 850px;
  width: 100%;
}

.founder .eyebrow {
  color: #d3aa4a;
}

.founder-copy h2 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.founder-copy h2 span {
  display: block;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #c7c9ca;
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(226, 183, 91, 0.2), rgba(47, 139, 131, 0.12) 24%, transparent 56%);
  transition: opacity 220ms ease;
}

.service-grid article:hover {
  z-index: 1;
  background: rgba(245, 250, 249, 0.92);
  box-shadow: 0 18px 40px rgba(16, 45, 63, 0.12);
}

.service-grid article:hover::after {
  opacity: 1;
}

.service-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.service-grid h3,
.offer h3 {
  margin: 50px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

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

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.situation-grid article {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.situation-grid article:hover {
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(16, 45, 63, 0.1);
  transform: translateY(-4px);
}

.situation-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.situation-grid h3 {
  margin: 46px 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.situation-grid p {
  margin: 0;
  color: var(--muted);
}

.web-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.6fr);
  gap: 10vw;
  align-items: center;
  background: var(--paper);
}

.digital-offer {
  background: #ffffff;
}

.digital-offer .web-offer-price {
  border-top-color: var(--coral);
}

.digital-offer .web-offer-price li::before {
  color: var(--coral);
}

.web-offer-copy > p:last-child {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.web-offer-price {
  padding: 34px;
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 45, 63, 0.1);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.web-offer-price:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(16, 45, 63, 0.16);
}

.web-offer-price > p {
  margin: 0;
  font-weight: 800;
}

.web-offer-price strong {
  margin-top: 12px;
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.web-offer-price > span,
.web-offer-price small {
  color: var(--muted);
}

.web-offer-price ul {
  padding: 22px 0 10px;
  margin: 22px 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.web-offer-price li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.web-offer-price li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.web-offer-price .button {
  width: 100%;
}

.web-offer-price small {
  margin-top: 14px;
  display: block;
  font-size: 11px;
}

.offers {
  color: var(--white);
  background: var(--navy);
}

.offers .eyebrow {
  color: #8fd4cd;
}

.offers .section-heading > p {
  color: #b8c6cd;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.offer {
  min-height: 570px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 250ms ease, background 250ms ease;
}

.offer:last-child {
  border-right: 0;
}

.offer-featured {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(143, 212, 205, 0.18), 0 24px 70px rgba(0, 0, 0, 0.16);
}

.offer:hover {
  transform: translateY(-6px);
}

.offer-label {
  margin: 0;
  color: #8fd4cd;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-featured .offer-label {
  color: var(--teal);
}

.offer h3 {
  margin-top: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.offer-description {
  min-height: 70px;
  color: #b8c6cd;
}

.offer-featured .offer-description {
  color: var(--muted);
}

.offer ul {
  padding: 22px 0 0;
  margin: 18px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.offer-featured ul {
  border-color: var(--line);
}

.offer li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.offer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8fd4cd;
}

.offer-featured li::before {
  color: var(--teal);
}

.offer a {
  margin-top: auto;
  font-weight: 800;
  text-underline-offset: 5px;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: 10vw;
  background: var(--paper);
}

.method-copy > p:last-child {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.method-steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-steps li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  border-bottom: 1px solid var(--line);
}

.method-steps li > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.method-steps strong {
  font-size: 19px;
}

.method-steps p {
  margin: 5px 0 0;
  color: var(--muted);
}

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

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-grid article {
  min-height: 250px;
  padding: 36px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.partner-grid article:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.partner-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.partner-grid h3 {
  margin: 5px 0 14px;
  font-size: 21px;
  line-height: 1.3;
}

.partner-grid p {
  margin: 0;
  color: var(--muted);
}

.partner-note {
  max-width: 920px;
  margin: 34px 0 0;
  padding: 22px 26px;
  color: var(--navy);
  background: var(--paper);
  border-left: 4px solid var(--teal);
  font-weight: 700;
}

.audience {
  text-align: center;
}

.audience h2 {
  max-width: 900px;
  margin: 0 auto;
}

.audience-list {
  max-width: 1000px;
  margin: 52px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.audience-list span {
  padding: 11px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
}


.testimonials {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(188, 144, 45, 0.16), transparent 34%),
    linear-gradient(135deg, #061318 0%, #0a2430 55%, #071d2a 100%);
}

.testimonials .section-heading {
  border-color: rgba(255, 255, 255, 0.18);
}

.testimonials .eyebrow {
  color: #d8b75b;
}

.testimonials .section-heading > p {
  color: #b8c6cd;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-grid article {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.testimonial-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 183, 91, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-grid p {
  margin: 0;
  color: #e8eef1;
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-grid strong {
  display: block;
  color: var(--white);
  font-size: 17px;
}

.testimonial-grid span {
  display: block;
  margin-top: 6px;
  color: #d8b75b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.local-seo {
  background: var(--paper);
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-links a {
  min-height: 205px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
}

.seo-links a:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.seo-links strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.2;
}

.seo-links span {
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 10vw;
  color: var(--white);
  background: var(--navy-deep);
}

.contact .eyebrow {
  color: #8fd4cd;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 28px;
  color: #b8c6cd;
  font-size: 17px;
}

.contact-details {
  margin-top: 48px;
  display: grid;
  gap: 8px;
}

.contact-details a {
  width: fit-content;
}

.contact-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-link {
  width: fit-content;
  margin-top: 30px;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.consent-row {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  font-weight: 500 !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.consent-row a {
  color: var(--blue);
}

.contact-form label {
  margin-bottom: 18px;
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(25, 118, 163, 0.25);
  border-color: var(--blue);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

footer {
  padding: 40px max(24px, calc((100vw - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  background: var(--white);
}

.legal-page,
.service-page {
  background: var(--paper);
}

.legal-content,
.service-content {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-content > a,
.service-content > a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.legal-content h1,
.service-content h1 {
  margin: 32px 0 30px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 74px);
}

.legal-content h2,
.service-content h2 {
  margin-top: 42px;
  color: var(--navy);
  font-family: "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.legal-content p,
.service-content p,
.service-content li {
  color: #40545e;
  font-size: 17px;
}

.service-content .service-lead {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 21px;
}

.service-content ul {
  padding-left: 22px;
}

.service-cta {
  margin-top: 50px;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
}

.service-cta h2 {
  margin-top: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.service-cta p {
  color: #c5d0d5;
}

.service-cta .button {
  margin-top: 10px;
}

.brand-footer {
  color: var(--navy);
}

.footer-legal a {
  color: inherit;
}

@media (max-width: 850px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 22px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 24px rgba(7, 29, 42, 0.12);
  }

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

  .nav-cta {
    width: fit-content;
  }

  .language-switch {
    width: fit-content;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 29, 42, 0.92), rgba(7, 29, 42, 0.5)),
      linear-gradient(0deg, rgba(7, 29, 42, 0.7), transparent);
  }

  .hero-content {
    padding-top: 115px;
  }

  .hero-next {
    left: 24px;
    right: auto;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .promise,
  .founder,
  .section-heading,
  .web-offer,
  .method,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-brand {
    max-width: 440px;
  }

  .promise-copy {
    padding-top: 0;
  }

  .service-grid,
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .testimonial-grid article {
    min-height: auto;
  }

  .seo-links {
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .offer:last-child {
    border-bottom: 0;
  }

  .offer-description {
    min-height: auto;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .service-grid article,
  .situation-grid article {
    min-height: auto;
  }

  .service-grid h3 {
    margin-top: 30px;
  }

  .offer,
  .contact-form {
    padding: 26px 22px;
  }

  .partner-grid article {
    min-height: auto;
    padding: 26px 22px;
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .testimonial-grid article {
    padding: 26px 22px;
  }

  .testimonial-grid p {
    font-size: 16px;
  }

  .partner-icon {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding-right: 14px;
  }

  .whatsapp-float span {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cursor-glow {
    display: none;
  }

  .hero-image,
  .hero-content,
  .button,
  .whatsapp-float,
  .service-grid article,
  .offer,
  .partner-grid article,
  .web-offer-price,
  .reveal-section {
    transition: none;
    transform: none !important;
  }

  .reveal-section {
    opacity: 1;
  }
}
