:root {
  --bg-primary: #071018;
  --bg-secondary: #0b1622;
  --bg-card: #101c2b;
  --bg-card-hover: #152536;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(244, 196, 48, 0.35);

  --text-primary: #f5f1e8;
  --text-secondary: #b8c0cc;
  --text-muted: #7d8896;

  --accent: #f4c430;
  --accent-light: #ffe27a;
  --accent-glow: rgba(244, 196, 48, 0.38);
  --accent-dark: #c49a12;

  --brand: #1e6bff;
  --brand-dark: #1554d4;
  --brand-glow: rgba(30, 107, 255, 0.4);

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --cyan: #4fd4c6;

  --gradient-accent: linear-gradient(135deg, #f4c430 0%, #ffe27a 100%);
  --gradient-brand: linear-gradient(135deg, #1e6bff 0%, #4aa0ff 100%);

  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 60px rgba(30, 107, 255, 0.18);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);

  --header-height: 72px;
  --top-bar-height: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button, input, select {
  font-family: inherit;
  color: inherit;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.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;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #06101c 0%, #0d1e36 50%, #06101c 100%);
  border-bottom: 1px solid rgba(30, 107, 255, 0.28);
  height: var(--top-bar-height);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar__pulse {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.top-bar__text { color: #c9d7ee; }

.top-bar__call {
  color: var(--text-primary);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(30, 107, 255, 0.28);
  transition: var(--transition);
}

.top-bar__call:hover {
  background: var(--brand);
  color: #fff;
}

.header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(7, 16, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  z-index: 10;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.nav__logo-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 20;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background: none;
}

.btn--sm { padding: 8px 14px; font-size: 0.82rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; border-radius: var(--radius-lg); }

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px var(--brand-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--brand-glow);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--top-bar-height) + 28px);
  padding-bottom: 72px;
  overflow: hidden;
}

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

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 107, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 107, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.hero__glow--1 {
  width: 560px;
  height: 560px;
  background: rgba(30, 107, 255, 0.18);
  top: -8%;
  right: -8%;
  animation: float 8s ease-in-out infinite;
}

.hero__glow--2 {
  width: 380px;
  height: 380px;
  background: rgba(244, 196, 48, 0.1);
  bottom: 8%;
  left: -6%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(30, 107, 255, 0.12);
  border: 1px solid rgba(30, 107, 255, 0.35);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c5d8ff;
  margin-bottom: 22px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero__subtitle strong {
  color: var(--accent-light);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.stat { text-align: center; }

.stat__number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__panel {
  background: linear-gradient(180deg, rgba(16, 28, 43, 0.95), rgba(11, 22, 34, 0.98));
  border: 1px solid rgba(30, 107, 255, 0.28);
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-glow);
}

.hero__panel-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 10px;
}

.hero__panel-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.quote-form {
  display: grid;
  gap: 10px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  background: rgba(7, 16, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.quote-form input::placeholder,
.quote-form select {
  color: var(--text-muted);
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.18);
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-form__submit { width: 100%; margin-top: 4px; }

.hero__panel-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
}

.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg { color: var(--accent); flex-shrink: 0; }

.section { padding: 96px 0; }
.section--dark { background: var(--bg-secondary); }

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

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, var(--bg-card) 100%);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--accent);
  color: #16120a;
  border-radius: 100px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 107, 255, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  color: var(--accent);
}

.service-card__icon svg { width: 30px; height: 30px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card__link:hover { color: var(--accent-light); }

.process__timeline {
  max-width: 700px;
  margin: 0 auto 44px;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-step__content h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 8px;
  padding-top: 12px;
}

.process-step__content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-step__content a {
  color: var(--accent);
  font-weight: 600;
}

.process-step__content a:hover { text-decoration: underline; }

.process__cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.why__text {
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 18px 0 28px;
}

.why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-weight: 500;
}

.why__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.why__photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.why__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why__photo figcaption {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.gallery__item--wide {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item--wide img { min-height: 460px; }

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(transparent, rgba(7, 16, 24, 0.92));
  font-size: 0.9rem;
  font-weight: 600;
}

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-tag {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.area-tag:hover {
  border-color: var(--border-accent);
  color: var(--accent-light);
  background: rgba(244, 196, 48, 0.08);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.testimonial__stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq__list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item:hover,
.faq-item[open] { border-color: var(--border-accent); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  margin-left: 16px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-light); }

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(30, 107, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: -40%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 14px;
}

.contact__desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.contact__phone-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 24px;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__site {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact__site a { color: var(--accent); font-weight: 600; }

.contact__photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer__links li { margin-bottom: 8px; }

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover { color: var(--accent); }

.footer__contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer__contact a {
  color: var(--accent);
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer__bottom a { color: var(--accent); font-weight: 600; }

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(7, 16, 24, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  gap: 8px;
}

.sticky-cta__call,
.sticky-cta__whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
}

.sticky-cta__call {
  background: var(--gradient-brand);
  color: #fff;
}

.sticky-cta__whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__layout,
  .why__grid,
  .contact__layout { grid-template-columns: 1fr; }
  .hero__panel { max-width: 480px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item--wide { grid-row: auto; }
  .gallery__item--wide img,
  .why__photo img,
  .contact__photo img { height: 280px; min-height: 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(7, 16, 24, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 5;
  }

  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.15rem; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; padding-bottom: 88px; }
  .hero__panel { max-width: none; }
  .hero__stats {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .stat__divider { width: 60px; height: 1px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .quote-form__row { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__card { padding: 28px 18px; }
  .contact__buttons { flex-direction: column; }
  .contact__buttons .btn,
  .process__cta .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer { padding-bottom: 92px; }
  .sticky-cta.visible { display: flex; }
  .section { padding: 64px 0; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.05rem; }
  .btn--lg { padding: 14px 20px; font-size: 0.9rem; }
}
