/* ==========================================================================
   DOS EME — Landing page
   Tokens
   ========================================================================== */
:root {
  --navy: #0B1F36;
  --navy-soft: #14304F;
  --blue: #1674C8;
  --blue-dark: #0F5BA0;
  --white: #FFFFFF;
  --gray: #667085;
  --surface: #FFFFFF;
  --surface-2: #F4F6F8;
  --surface-3: #EBEEF1;
  --line: rgba(11, 31, 54, 0.10);
  --line-strong: rgba(11, 31, 54, 0.22);
  --line-on-navy: rgba(255, 255, 255, 0.16);

  --font-display: 'Inter', sans-serif;
  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-pad: clamp(40px, 5.6vw, 75px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --hex-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115'%3E%3Cpath d='M50 3 L95 29 L95 87 L50 113 L5 87 L5 29 Z' fill='none' stroke='rgb(11,31,54)' stroke-width='2' stroke-opacity='0.15'/%3E%3C/svg%3E");
  --hex-svg-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115'%3E%3Cpath d='M50 3 L95 29 L95 87 L50 113 L5 87 L5 29 Z' fill='none' stroke='rgb(255,255,255)' stroke-width='2' stroke-opacity='0.28'/%3E%3C/svg%3E");
  --hex-svg-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115'%3E%3Cpath d='M50 3 L95 29 L95 87 L50 113 L5 87 L5 29 Z' fill='none' stroke='rgb(22,116,200)' stroke-width='3'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  font-family: var(--font-head);
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: 0; line-height: 1.25; }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow-light { color: #7FB8EA; }

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray);
  max-width: 640px;
  margin-top: 18px;
  line-height: 1.6;
}
.lead-light { color: rgba(255,255,255,0.72); }
.contact-area { margin-top: 10px; font-size: 15px; }

.section { padding: var(--section-pad) var(--pad); max-width: var(--container); margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost-light {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.btn-block { width: 100%; white-space: normal; text-align: center; }

/* ==========================================================================
   Placeholder photo component
   ========================================================================== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--line) 0, var(--line) 1px, transparent 1px, transparent 15px),
    var(--surface-2);
  border: 1px dashed var(--line-strong);
  overflow: hidden;
}
.ph-hex {
  width: 34px;
  height: 39px;
  background-image: var(--hex-svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.ph-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 16px;
}
.ph-label span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11.5px;
  margin-top: 6px;
  opacity: 0.85;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11,31,54,0.02);
}
.site-header.hide-nav {
  transform: translateY(-100%);
}
.header-inner {
  padding: 9px clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { flex-shrink: 0; }
.brand-logo { height: 60px; width: auto; }

.header-nav-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--gray);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--navy); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.btn-header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 8px var(--pad) 28px;
  border-top: 1px solid var(--line);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  padding: 10px 0;
}
.mobile-nav.open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 88vh;
  margin-bottom: var(--section-pad);
}
.hero-media {
  position: relative;
  min-height: 480px;
}
.hero-media .ph { border: none; border-radius: 0; }
.hero-media .ph-hex { width: 44px; height: 50px; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-corner-tl, .hero-corner-br {
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 2;
  pointer-events: none;
}
.hero-corner-tl { top: 22px; left: 22px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.hero-corner-br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px);
}
.hero-content h1 { margin-bottom: 4px; }
.hero-lead {
  max-width: 480px;
  margin-top: 18px;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-carousel {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.services-track {
  display: flex;
  width: max-content;
  list-style: none;
  gap: 32px;
  animation: services-scroll 46s linear infinite;
}
@keyframes services-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.service-item {
  flex-shrink: 0;
  width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.service-icon {
  width: 100px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hex-svg-blue);
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--blue);
}
.service-icon svg { width: 52px; height: 52px; stroke-linecap: round; stroke-linejoin: round; }
.service-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--navy);
}
@media (prefers-reduced-motion: reduce) {
  .services-track { animation: none; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: left;
}
.item-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.item-b { grid-column: 3 / 5; grid-row: 1 / 2; }
.item-c { grid-column: 3 / 4; grid-row: 2 / 3; }
.item-d { grid-column: 4 / 5; grid-row: 2 / 3; }

.gallery-item .ph { border-radius: 0; }
.gallery-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slider .gallery-img { opacity: 0; transition: opacity 1.2s var(--ease); }
.gallery-slider .gallery-img.active { opacity: 1; }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.25s var(--ease), inset 0.25s var(--ease);
}
.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  inset: 6px;
  border-color: var(--blue);
}
.gallery-meta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(255,255,255,0.88);
  padding: 6px 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery-item:hover .gallery-meta,
.gallery-item:focus-visible .gallery-meta {
  opacity: 1;
  transform: translateY(0);
}

.micro-cta {
  background: var(--navy);
  padding: var(--section-pad) var(--pad);
}
.micro-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.micro-cta p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 28px);
  color: var(--white);
}

/* ==========================================================================
   Process
   ========================================================================== */
.section-process { background: var(--surface-2); max-width: none; padding-left: var(--pad); padding-right: var(--pad); }
.section-process .section-head, .process-list { max-width: var(--container); margin-left: auto; margin-right: auto; }
.section-process h2 { max-width: 760px; }

.process-list {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.step-marker {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-icon {
  display: inline-flex;
  color: var(--blue);
}
.step-icon svg { width: 34px; height: 34px; }
.step-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { color: var(--gray); font-size: 15px; max-width: 560px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.section-testimonials { background: var(--surface-2); max-width: none; padding-left: var(--pad); padding-right: var(--pad); }
.section-testimonials .section-head, .testimonial-grid { max-width: var(--container); margin-left: auto; margin-right: auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(11,31,54,0.10);
  border-color: var(--line-strong);
}
.testimonial-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.testimonial-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

.ph-testi { aspect-ratio: auto; height: 230px; flex: 0 0 auto; border-radius: 0; border-width: 0 0 1px 0; }
.testi-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonial-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testimonial-card blockquote {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--navy);
}
.testimonial-card blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 0.5;
  color: var(--blue);
  opacity: 0.32;
  margin-bottom: 8px;
}
.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-card figcaption strong { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--navy); }
.testimonial-card figcaption span { font-size: 12px; color: var(--gray); }

/* ==========================================================================
   Before / after
   ========================================================================== */
.ba-slider { position: relative; }
.ba-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  user-select: none;
}
.ba-side { position: absolute; inset: 0; }
.ba-side .ph { border-radius: 0; }
.ba-before .ph { padding-right: 50%; }
.ba-after .ph { padding-left: 50%; }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-tag {
  position: absolute;
  top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--navy);
  padding: 6px 12px;
  z-index: 4;
}
.ba-tag-before { left: 18px; }
.ba-tag-after { right: 18px; }

.ba-location {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 4;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(255,255,255,0.88);
  padding: 6px 10px;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  z-index: 5;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-grip {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  background-image: var(--hex-svg-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 23px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 0 2px 10px rgba(11,31,54,0.28);
}
.ba-range { position: absolute; opacity: 0; pointer-events: none; }

.ba-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  box-shadow: 0 8px 20px rgba(11,31,54,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.ba-hint svg { color: var(--blue); flex-shrink: 0; }
.ba-hint.show { opacity: 1; transform: translate(-50%, 40px); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  padding: 0 4px 24px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.section-contact {
  max-width: none;
  background: var(--navy);
  padding: var(--section-pad) var(--pad);
  color: var(--white);
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section-contact h2 { color: var(--white); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 22px;
  border: 1.5px solid var(--line-on-navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.whatsapp-link:hover { border-color: #25D366; background: rgba(37,211,102,0.08); }
.whatsapp-link svg { color: #25D366; flex-shrink: 0; }

.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form[hidden] { display: none; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
}
.form-row .optional { color: var(--gray); font-weight: 400; }
.form-row input, .form-row select, .form-row textarea {
  border: 1.5px solid var(--line-strong);
  padding: 12px 14px;
  font-size: 15px;
  background: var(--white);
  color: var(--navy);
  border-radius: 2px;
  transition: border-color 0.2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--blue);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--gray); text-align: center; margin-top: -4px; }

.form-success {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  color: var(--navy);
}
.success-hex {
  display: inline-block;
  width: 40px;
  height: 46px;
  background-image: var(--hex-svg-blue);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}
.form-success h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.form-success p { color: var(--gray); margin-bottom: 26px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-soft); color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line-on-navy);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}
.footer-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--white); }
.footer-tag { font-size: 12.5px; margin-top: 2px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a {
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.footer-links a:hover, .footer-links a:focus-visible {
  color: #7FB8EA;
  text-decoration-color: #7FB8EA;
}
.footer-copy { font-size: 12.5px; opacity: 0.6; white-space: nowrap; }
.footer-copy a { text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
.footer-copy a:hover, .footer-copy a:focus-visible { color: #7FB8EA; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card:last-child { grid-column: 1 / 3; }
}

@media (max-width: 860px) {
  .main-nav, .btn-header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 52vh; }
  .hero-content { padding: 40px var(--pad); }
  .hero-lead { max-width: none; }

  .services-track { gap: 20px; }
  .service-item { width: 100px; }
  .service-icon { width: 78px; height: 90px; }
  .service-icon svg { width: 40px; height: 40px; }
  .service-label { font-size: 12.5px; }

  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .item-a, .item-b, .item-c, .item-d {
    grid-column: auto;
    grid-row: auto;
  }
  .item-a { grid-column: 1 / 3; grid-row: auto; height: 260px; }
  .item-d { grid-column: 1 / 3; grid-row: auto; }

  .testimonial-grid { grid-template-columns: minmax(0, 1fr); }
  .testimonial-card:last-child { grid-column: auto; }

  .ba-frame { aspect-ratio: auto; display: flex; flex-direction: column; gap: 12px; }
  .ba-side { position: relative; aspect-ratio: 16 / 10; }
  .ba-after { clip-path: none; }
  .ba-before .ph, .ba-after .ph { padding-left: 0; padding-right: 0; }
  .ba-handle, .ba-range { display: none; }

  .process-step { grid-template-columns: 1fr; gap: 14px; padding: 22px 24px; }
  .step-marker { gap: 12px; }
  .step-icon svg { width: 28px; height: 28px; }
  .step-n { font-size: 20px; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-brand { text-align: left; }
  .footer-links { justify-content: center; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .item-a, .item-b, .item-c, .item-d { grid-column: auto; height: auto; }
  .hero-ctas .btn { flex: 1; }
  .micro-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11,31,54,0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(11,31,54,0.34);
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal { padding-top: clamp(140px, 14vw, 180px); }
.legal-title { font-size: clamp(32px, 4.5vw, 48px); }
.legal-content { max-width: 700px; }
.legal-content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 44px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--blue-dark); }
