@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600;700;800&display=swap");

:root {
  --teal: #00b4d8;
  --charcoal: #231f20;
  --cream: #f7ecd7;
  --bg: #0d0f11;
  --panel: #14171a;
  --stroke: #23272b;
  --muted: #9aa1a8;
  --light: #e6f7fb;
  --maxw: 1200px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --heading: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: #eaeaea;
  font-family: var(--text);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: var(--heading);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: #eaeaea;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sprite {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  min-width: 0;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  background: #111315;
}

.section:nth-of-type(even),
.process,
.gallery,
.contact {
  background: #0e1012;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 16px 32px;
}

.brand {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand img {
  height: 112px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

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

.desktop-nav a {
  color: #f3f3f3;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal);
}

.whatsapp-mini,
.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-mini svg,
.email-btn svg {
  width: 16px;
  height: 16px;
}

.whatsapp-mini:hover,
.whatsapp-mini:focus-visible {
  background: rgba(37, 211, 102, 0.25);
  transform: scale(1.05);
}

.email-btn {
  border-color: rgba(0, 180, 216, 0.3);
  background: rgba(0, 180, 216, 0.15);
  color: var(--teal);
}

.email-btn:hover,
.email-btn:focus-visible {
  background: rgba(0, 180, 216, 0.25);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--teal);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 390px);
  height: 100vh;
  padding: 28px 20px 40px;
  background: var(--charcoal);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.14);
  color: var(--teal);
  cursor: pointer;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.mobile-panel nav a {
  width: 80%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.mobile-panel .mobile-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 28px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

.floating-contacts {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-50%);
}

.floating-contacts a {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: #1e1e1e;
  color: var(--teal);
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.floating-contacts a:hover {
  background: #2a2a2a;
  opacity: 1;
  transform: scale(1.1);
}

.floating-contacts svg {
  width: 28px;
  height: 28px;
}

.floating-contacts a::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  padding: 8px 10px;
  border-radius: 6px;
  background: #111315;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-contacts a:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.mobile-whatsapp {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 900;
  display: none;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  backdrop-filter: blur(4px);
}

.mobile-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.mobile-whatsapp svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  height: 90vh;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg,
.hero-overlay,
.hero-side-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 15, 17, 0.85) 0%, rgba(13, 15, 17, 0.75) 50%, rgba(0, 180, 216, 0.25) 100%);
}

.hero-side-overlay {
  z-index: 2;
  background: linear-gradient(to right, rgba(13, 15, 17, 0.9) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 5;
  flex: 1 1 auto;
  min-width: 0;
  max-width: var(--maxw);
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span,
.about-copy strong,
.info-box strong {
  color: var(--teal);
}

.hero-content p {
  width: 100%;
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--light);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ghost-cta,
.outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ghost-cta:hover,
.ghost-cta:focus-visible {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.outline-cta {
  padding: 14px 28px;
  border-color: var(--stroke);
  background: transparent;
  color: var(--light);
}

.outline-cta:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.trust-badge {
  display: block;
  max-width: 100%;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about {
  background: #111315;
}

.about-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(35, 31, 32, 0.4) 100%);
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.experience-badge strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
}

.about-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 42px);
}

.accent-lead {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
}

.about-copy > p:not(.accent-lead) {
  margin-bottom: 20px;
  color: var(--light);
  font-size: 16px;
  line-height: 1.7;
}

.quote-box,
.center-cta,
.info-box {
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.05);
}

.quote-box {
  margin: 8px 0 32px;
  padding: 32px;
}

.quote-box p {
  color: var(--light);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.quote-box strong {
  font-style: normal;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.highlight-row div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--panel);
}

.highlight-row svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.highlight-row span {
  color: var(--light);
  font-size: 15px;
  font-weight: 600;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.process::before,
.process::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.process::before {
  top: 10%;
  left: -5%;
}

.process::after {
  right: -5%;
  bottom: 10%;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.timeline-line {
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--stroke) 10%, var(--stroke) 90%, transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-icon {
  position: relative;
  display: grid;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  place-items: center;
  border: 3px solid var(--stroke);
  border-radius: 50%;
  background: var(--panel);
  color: var(--teal);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-icon:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.2);
  transform: scale(1.05);
}

.process-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.5;
}

.process-icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.4);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p {
  max-width: 280px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-step em {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 6px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.center-cta {
  margin-top: 80px;
  padding: 32px;
  text-align: center;
}

.center-cta p {
  margin-bottom: 20px;
  color: var(--light);
  font-size: 18px;
  font-weight: 600;
}

.services {
  background: #111315;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 324px;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 32px 24px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: var(--panel);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.2);
  transform: translateY(-8px);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--teal);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

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

.service-card p {
  flex: 1;
  color: var(--light);
  font-size: 15px;
  line-height: 1.6;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}

.service-links > a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.service-links > a:first-child:hover {
  gap: 10px;
}

.service-links .whatsapp-mini {
  margin-left: auto;
}

.info-box {
  padding: 32px;
  text-align: center;
}

.info-box p {
  margin-bottom: 8px;
  color: var(--light);
}

.info-box small {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.gallery {
  background: #0e1012;
}

.comparison-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: var(--panel);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.comparison-card.switching {
  opacity: 0.35;
  transform: translateX(12px);
}

.comparison-image {
  position: relative;
}

.comparison-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(50, 50, 50, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.comparison-image .right-label {
  right: 16px;
  left: auto;
}

.comparison-image img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}

#beforeImage {
  filter: brightness(0.9) saturate(0.8);
}

.comparison-caption {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.comparison-caption h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.comparison-caption p {
  color: var(--muted);
  font-size: 15px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 180, 216, 0.3);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dots button.active {
  width: 32px;
  background: var(--teal);
}

.gallery-open-wrap {
  text-align: center;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-action:hover {
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
  transform: scale(1.05);
}

.primary-action svg {
  width: 24px;
  height: 24px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #00b4d8 0%, #0090b3 100%);
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::before {
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
}

.cta-banner::after {
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.cta-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
}

.cta-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.cta-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
}

.cta-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.cta-steps svg {
  width: 24px;
  height: 24px;
}

.white-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 18px 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--teal);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.white-cta:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: scale(1.08) translateY(-2px);
}

.white-cta svg {
  width: 24px;
  height: 24px;
}

.cta-content small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: italic;
}

.contact {
  background: #0e1012;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 12px;
}

.contact-intro > p {
  margin-top: 12px;
}

.contact-intro small,
.small-note {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-intro small {
  margin-top: 12px;
}

.button-row.center {
  justify-content: center;
  margin-top: 18px;
}

.map-wrap h3 {
  margin-bottom: 24px;
  text-align: center;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.small-note {
  margin-top: 16px;
  color: #a8a29e;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--stroke);
  background: #0b0c0e;
}

.footer .container {
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 120px;
  margin-bottom: 16px;
}

.footer p {
  max-width: 280px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  background: var(--teal);
  color: #fff;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links svg {
  width: 18px;
  height: 18px;
}

.contact-links a.green {
  color: #25d366;
  font-weight: 600;
}

.contact-links a.green:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--stroke);
  color: #666;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
}

.footer-bottom a {
  color: var(--teal);
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: #000;
}

.modal.open,
.lightbox.open {
  display: block;
}

.modal-scroll {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 80px 20px 40px;
}

.round-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10002;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.round-close:hover {
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.4);
  transform: scale(1.1);
}

.round-close svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.modal-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  text-align: center;
}

.modal-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal-heading p {
  color: var(--muted);
}

.full-gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.full-gallery-grid button {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid var(--stroke);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.full-gallery-grid button:hover {
  border-color: var(--teal);
  transform: scale(1.02);
}

.full-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-gallery-grid span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  backdrop-filter: blur(8px);
}

.lightbox {
  z-index: 10001;
  place-items: center;
  background: rgba(0, 0, 0, 0.98);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 10002;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav svg {
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.lightbox-caption {
  position: fixed;
  bottom: 40px;
  left: 50%;
  z-index: 10002;
  min-width: min(560px, calc(100vw - 32px));
  padding: 16px 32px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.lightbox-caption p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.lightbox-caption small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.legal-modal {
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
}

.legal-modal.open {
  display: grid;
  place-items: center;
}

.legal-dialog {
  position: relative;
  width: min(800px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.legal-dialog .round-close {
  position: sticky;
  top: 0;
  float: right;
  margin: -12px -12px 12px 12px;
}

.legal-content {
  clear: both;
  color: #eaeaea;
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--teal);
}

.legal-content h4 {
  margin: 16px 0 8px;
  color: var(--cream);
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content .muted {
  color: #a8a29e;
}

.legal-note {
  margin-top: 32px;
  padding: 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(0, 180, 216, 0.1);
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 10003;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 180, 216, 0.28);
  border-radius: 10px;
  background: rgba(13, 15, 17, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-copy {
  min-width: 0;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-family: var(--heading);
  font-size: 16px;
}

.cookie-copy p {
  color: var(--light);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions button {
  min-width: 116px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  transform: translateY(-1px);
}

.cookie-secondary {
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--light);
}

.cookie-primary {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    height: 72px;
    padding: 12px 24px;
  }

  .brand img {
    height: 96px;
  }

  .desktop-nav,
  .desktop-cta,
  .desktop-floating {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }

  .timeline-line {
    display: none;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .comparison-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .comparison-image img {
    height: 300px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .map-frame {
    height: 350px;
  }

  .footer .container {
    padding-bottom: 100px;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .modal-scroll {
    padding: 70px 16px 30px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-caption {
    bottom: 20px;
    padding: 12px 16px;
  }

  .cookie-consent {
    right: 16px;
    bottom: 92px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1 1 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav-inner {
    height: 64px;
    padding: 10px 20px;
  }

  .brand img {
    height: 88px;
  }

  .hero {
    padding-bottom: 40px;
  }

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

  .ghost-cta,
  .outline-cta,
  .hero-actions .whatsapp-mini,
  .button-row .whatsapp-mini,
  .button-row .email-btn {
    justify-content: center;
    width: 100%;
  }

  .about-grid {
    gap: 32px;
  }

  .experience-badge {
    right: 12px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .process-icon {
    width: 140px;
    height: 140px;
  }

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

  .service-links .whatsapp-mini {
    margin-left: 0;
  }

  .cta-steps {
    gap: 14px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cookie-actions {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .full-gallery-grid {
    gap: 10px;
  }

  .modal-scroll {
    padding: 60px 12px 20px;
  }

  .legal-dialog {
    padding: 24px 18px;
  }
}
