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

:root {
  --navy: #0c2d4a;
  --navy-dark: #071a2c;
  --header-bg: #eef3f7;
  --nav-text: #4a6278;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --sky: #e8f1fb;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26, 58, 107, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 58, 107, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

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

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header--solid {
  background: rgba(238, 243, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

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

.header--solid .nav a {
  color: var(--nav-text);
}

.header--menu-open {
  background: rgba(238, 243, 247, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header--menu-open .brand {
  color: var(--navy);
}

.header--menu-open .nav-toggle span {
  background: var(--navy);
}

.header--menu-open .header-phone {
  background: var(--navy);
  color: var(--white);
}

.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "brand nav phone";
  align-items: center;
  gap: 1.5rem 2rem;
  width: min(1280px, calc(100% - 3rem));
  margin-inline: auto;
  padding: 1.35rem 0;
}

.brand {
  grid-area: brand;
  justify-self: start;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  text-transform: lowercase;
  transition: color 0.4s ease;
}

.header:not(.header--solid) .nav a {
  color: rgba(255, 255, 255, 0.78);
}

.header:not(.header--solid) .nav a:hover {
  color: var(--white);
}

.header:not(.header--solid) .nav-toggle span {
  background: var(--white);
}

.header:not(.header--solid) .header-phone {
  background: var(--white);
  color: var(--navy);
}

.header:not(.header--solid) .header-phone:hover {
  background: rgba(255, 255, 255, 0.92);
}

.header--solid .header-phone {
  background: var(--navy);
  color: var(--white);
}

.header-phone {
  grid-area: phone;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.2s;
}

.header-phone:hover {
  background: var(--navy-dark);
}

.nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  justify-self: center;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-text);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  grid-area: menu;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  justify-self: end;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header--solid .nav-toggle:hover {
  background: rgba(12, 45, 74, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s 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);
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroImageIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 44, 0.42) 0%, rgba(7, 26, 44, 0.24) 32%, rgba(7, 26, 44, 0.65) 68%, rgba(7, 26, 44, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 26, 44, 0.58) 0%, rgba(7, 26, 44, 0.3) 52%, rgba(7, 26, 44, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 9rem) 0 clamp(2.5rem, 6vh, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vh, 5rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-title-soft {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.hero-title-sub {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-lead {
  max-width: 42ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-icon {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.15rem;
}

.hero-eyebrow .material-symbols-outlined {
  font-size: 1rem;
}

.hero-stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s, gap 0.2s;
}

.hero-scroll:hover {
  color: var(--white);
  gap: 1rem;
}

.hero-scroll .material-symbols-outlined {
  font-size: 1.1rem;
  animation: heroBounce 2s ease-in-out infinite;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
}

@keyframes heroImageIn {
  from { transform: scale(1.14); }
  to { transform: scale(1.06); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-eyebrow,
  .hero-title-line,
  .hero-title-sub,
  .hero-lead,
  .hero-actions,
  .hero-footer,
  .hero-scroll .material-symbols-outlined {
    animation: none;
    transform: none;
  }

  .hero-image {
    transform: scale(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-ghost {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.btn-large {
  font-size: 1.15rem;
  padding: 1rem 2rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

/* Sections */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services */
.services {
  padding: 5rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  scroll-margin-top: 6rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon .material-symbols-outlined {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Work gallery */
.work-gallery {
  padding: 5rem 0;
  background: var(--white);
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.work-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 0;
}

.work-gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  font: inherit;
}

.work-gallery-trigger img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-gallery-trigger:hover img,
.work-gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

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

.work-gallery-item--feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.work-gallery-item--wide {
  grid-column: span 2;
}

.work-gallery-item--wide .work-gallery-trigger img {
  aspect-ratio: 2 / 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(7, 26, 44, 0.88);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  margin: 0;
  width: 100%;
  text-align: center;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: -0.25rem;
  right: -0.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox-close .material-symbols-outlined {
  font-size: 1.35rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lightbox-nav .material-symbols-outlined {
  font-size: 1.5rem;
}

.lightbox-prev {
  left: -1.25rem;
}

.lightbox-next {
  right: -1.25rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* Why */
.why {
  padding: 5rem 0;
  background: var(--sky);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.why-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonial */
.testimonial {
  padding: 4rem 0;
}

.testimonial blockquote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial footer {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

.cta h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
  flex-shrink: 0;
}

.cta .btn-primary:hover {
  background: var(--sky);
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-transform: lowercase;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 60px;
  height: 60px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  overflow: hidden;
  transition: width 0.25s ease, background 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  width: 210px;
  background: var(--whatsapp-hover);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .material-symbols-outlined {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.whatsapp-float-label {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease 0.05s;
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-footer {
    flex-wrap: wrap;
  }

  .hero-scroll {
    width: 100%;
    justify-content: flex-end;
  }

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

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

  .work-gallery-item--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-gallery-item--wide {
    grid-column: 1 / -1;
  }

  .work-gallery-item--wide img {
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 900px) {
  .header-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .header-phone {
    flex-shrink: 0;
    padding: 0.6rem 0.85rem;
    font-size: 0.7rem;
  }

  .header-phone .material-symbols-outlined {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 101;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 1rem 0.85rem;
    box-shadow: 0 16px 32px rgba(12, 45, 74, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .header .nav.open a,
  .header:not(.header--solid) .nav.open a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.8rem;
  }

  .header .nav.open a:hover {
    color: var(--blue);
  }

  .header .nav.open a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {

  .work-gallery-grid {
    grid-template-columns: 1fr;
  }

  .work-gallery-item--feature,
  .work-gallery-item--wide {
    grid-column: auto;
  }

  .work-gallery-item--wide .work-gallery-trigger img,
  .work-gallery-trigger img {
    aspect-ratio: 4 / 3;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-prev {
    left: 0.25rem;
  }

  .lightbox-next {
    right: 0.25rem;
  }

  .lightbox-close {
    top: 0.25rem;
    right: 0.25rem;
  }

  .hero-overlay {
    background:
      radial-gradient(120% 80% at 10% 35%, rgba(7, 26, 44, 0.78) 0%, rgba(7, 26, 44, 0.42) 48%, rgba(7, 26, 44, 0.12) 100%),
      linear-gradient(180deg, rgba(7, 26, 44, 0.68) 0%, rgba(7, 26, 44, 0.52) 38%, rgba(7, 26, 44, 0.76) 72%, rgba(7, 26, 44, 0.88) 100%);
  }

  .hero-image {
    object-position: 70% 22%;
  }

  .hero-content {
    width: calc(100% - 1.5rem);
    padding-top: 6.5rem;
    gap: 2rem;
  }

  .hero-eyebrow {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  }

  .hero-title-soft {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-title-sub,
  .hero-lead {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  }

  .hero-lead {
    color: rgba(255, 255, 255, 0.95);
    max-width: none;
  }

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

  .hero-stat-label {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-scroll {
    align-self: flex-end;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float:hover {
    width: 56px;
  }

  .whatsapp-float-label {
    display: none;
  }

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

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}