/* =============================================
   GOES — Design System (based on goesperu.com)
   ============================================= */
:root {
  --color-dark: #061D19;
  --color-dark-soft: #0D0E10;
  --color-accent: #6E9419;
  --color-accent-hover: #5a7a14;
  --color-orange: #FB8500;
  --color-orange-soft: rgba(251, 133, 0, 0.12);
  --color-body: #333535;
  --color-muted: #95999D;
  --color-light: #EDF2F7;
  --color-white: #ffffff;
  --color-smoke: #f5f5f3;
  --color-smoke-warm: #f8f7f4;
  --color-smoke-deep: #ececea;
  --color-border: #E0E2E3;

  --font: 'Outfit', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 70px;
  --shadow: 0 8px 40px rgba(6, 29, 25, 0.08);
  --shadow-hover: 0 20px 60px rgba(6, 29, 25, 0.14);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-body);
  background-color: var(--color-smoke-warm);
  background-image:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(6, 29, 25, 0.045) 0%, transparent 58%),
    radial-gradient(ellipse 75% 50% at 95% 15%, rgba(6, 29, 25, 0.035) 0%, transparent 52%),
    radial-gradient(ellipse 65% 45% at 50% 105%, rgba(6, 29, 25, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 55%, rgba(110, 148, 25, 0.025) 0%, transparent 60%),
    linear-gradient(175deg, #fbfbf9 0%, var(--color-smoke-warm) 38%, var(--color-smoke) 68%, var(--color-smoke-deep) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body > * {
  position: relative;
  z-index: 1;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-label--light { color: var(--color-orange); }

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-dark-soft);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc { margin: 0 auto; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font);
  cursor: pointer;
  border: none;
}

.btn-primary span:first-child {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.btn-primary__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: rotate(-45deg);
  transition: transform var(--transition), margin var(--transition);
}

.btn-primary:hover span:first-child { background: #e07700; }
.btn-primary:hover .btn-primary__arrow {
  transform: rotate(0deg);
  margin-left: 4px;
}

.btn-primary--light span:first-child { background: var(--color-white); color: var(--color-dark); }
.btn-primary--light .btn-primary__arrow { background: var(--color-white); color: var(--color-dark); }

.btn-primary--compact span:first-child {
  padding: 12px 20px;
  font-size: 12px;
}

.btn-primary--compact .btn-primary__arrow {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(6, 29, 25, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-mark {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.06em;
}

.header__logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  gap: 36px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

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

.header__nav a:hover,
.header__nav a.active { color: var(--color-white); }

.header__nav a:hover::after,
.header__nav a.active::after { width: 100%; }

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all var(--transition);
}

.header__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.header__cta { flex-shrink: 0; }

.header__cta span:first-child {
  padding: 14px 22px;
  font-size: 13px;
}

.header__cta .btn-primary__arrow {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 29, 25, 0.72) 0%,
    rgba(6, 29, 25, 0.45) 70%,
    transparent 100%
  );
  pointer-events: none;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 25% 1fr;
  min-height: 100vh;
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  background: transparent;
}

.hero__logo {
  width: min(200px, 88%);
  height: auto;
  object-fit: contain;
  background: transparent;
}

.hero__text {
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 64px 100px 56px;
}

.hero__text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 29, 25, 0.25) 0%,
    rgba(6, 29, 25, 0.55) 40%,
    rgba(6, 29, 25, 0.72) 100%
  );
  pointer-events: none;
}

.hero__text-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: left;
}

.hero .reveal {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero__title {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--color-accent);
  display: inline;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Services Section ---- */
.services {
  padding: 100px 0 80px;
  background: transparent;
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 35% at 15% 40%, rgba(6, 29, 25, 0.03) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 85% 70%, rgba(6, 29, 25, 0.025) 0%, transparent 60%);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 29, 25, 0.08), transparent);
  z-index: 1;
}

.services > .container,
.services__panels-full {
  position: relative;
  z-index: 1;
}

/* Category nav tabs */
.services__nav {
  display: flex;
  gap: 10px;
  margin-bottom: 56px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.services__nav::-webkit-scrollbar { display: none; }

.services__nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid rgba(6, 29, 25, 0.07);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(6, 29, 25, 0.04);
}

.services__nav-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
}

.services__nav-btn:hover {
  border-color: rgba(110, 148, 25, 0.3);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 29, 25, 0.07);
}

.services__nav-btn.active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(6, 29, 25, 0.18);
}

.services__nav-btn.active .services__nav-num { color: var(--color-accent); }

/* ---- Service panels (full width, editorial layout) ---- */
.services__panels-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px 0 40px;
}

.service-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
  position: relative;
  min-height: min(520px, 70vh);
}

.service-panel--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-panel--reverse .service-panel__visual { order: 2; }
.service-panel--reverse .service-panel__body { order: 1; }

/* Visual — forma orgánica, no cuadrada */
.service-panel__visual {
  position: relative;
  height: min(520px, 52vw);
  min-height: 360px;
  overflow: hidden;
  border-radius: 0 180px 180px 0;
  box-shadow:
    0 20px 60px rgba(6, 29, 25, 0.1),
    0 4px 16px rgba(6, 29, 25, 0.06);
  clip-path: polygon(0 0, 100% 2%, 96% 100%, 0 98%);
}

.service-panel--reverse .service-panel__visual {
  border-radius: 180px 0 0 180px;
  clip-path: polygon(4% 2%, 100% 0, 100% 98%, 0 100%);
}

.service-panel__visual img,
.service-panel__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-panel.is-visible .service-panel__visual img,
.service-panel.is-visible .service-panel__visual video {
  transform: scale(1);
}

.service-panel__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 29, 25, 0.35) 0%,
    rgba(6, 29, 25, 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.service-panel--reverse .service-panel__visual-overlay {
  background: linear-gradient(
    -105deg,
    rgba(6, 29, 25, 0.35) 0%,
    rgba(6, 29, 25, 0.08) 45%,
    transparent 70%
  );
}

/* Cuerpo — tarjeta flotante glass */
.service-panel__body {
  display: flex;
  align-items: center;
  padding: 40px 48px 40px 0;
  position: relative;
  z-index: 2;
}

.service-panel--reverse .service-panel__body {
  justify-content: flex-end;
  padding: 40px 0 40px 48px;
}

.service-panel__card {
  position: relative;
  max-width: 480px;
  margin-left: -72px;
  padding: 44px 48px 44px 40px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px 24px 24px 4px;
  box-shadow:
    0 4px 20px rgba(6, 29, 25, 0.05),
    0 24px 64px rgba(6, 29, 25, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -12px 32px rgba(6, 29, 25, 0.02);
  opacity: 0;
  transform: translateX(-90px);
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-panel--reverse .service-panel__card {
  margin-left: 0;
  margin-right: -72px;
  border-left: 1px solid rgba(255, 255, 255, 0.85);
  border-right: 3px solid var(--color-accent);
  border-radius: 24px 4px 4px 24px;
  padding: 44px 40px 44px 48px;
  transform: translateX(90px);
  clip-path: inset(0 0 0 100%);
}

.service-panel.is-visible .service-panel__card {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}

.service-panel__index {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.service-panel__title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--color-dark-soft);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service-panel__content {
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.9;
  font-weight: 400;
}

.service-panel__content br + br {
  display: block;
  margin-top: 6px;
}

/* Service tree hierarchy */
.service-tree { display: flex; flex-direction: column; gap: 14px; }

.service-tree--nested {
  margin-top: 12px;
  margin-left: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--color-accent);
  gap: 10px;
}

.service-tree__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--color-dark-soft);
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
  cursor: default;
}

.service-tree__item:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.service-tree__item--branch {
  flex-direction: column;
  align-items: stretch;
}

.service-tree__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-tree__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: transparent;
  margin-top: 7px;
  transition: background var(--transition);
}

.service-tree__item:hover .service-tree__dot { background: var(--color-accent); }

.service-tree__dot--square {
  border-radius: 2px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border: none;
  margin-top: 8px;
}

/* Service cards grid (carousel-style from reference) */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card__img img {
  transform: scale(1.1) rotate(-4deg);
}

.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card:hover .service-card__img::after { opacity: 0.5; }

.service-card__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.4s;
  opacity: 0;
}

.service-card:hover .service-card__arrow {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  opacity: 1;
}

.service-card__content {
  padding: 24px 20px 28px;
  text-align: center;
  position: relative;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: -48px auto 16px;
  position: relative;
  z-index: 3;
  border: 4px solid var(--color-white);
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--color-accent);
  color: var(--color-white);
}

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark-soft);
  margin-bottom: 6px;
}

.service-card__count {
  font-size: 13px;
  color: var(--color-muted);
}

/* ---- Footer (contacto minimalista) ---- */
.footer {
  background: var(--color-dark);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__info {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.footer__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

.footer__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}

.footer__phone i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(110, 148, 25, 0.18);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

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

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .service-panel,
  .service-panel--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .service-panel--reverse .service-panel__visual,
  .service-panel--reverse .service-panel__body { order: unset; }

  .service-panel__visual {
    height: 320px;
    min-height: 280px;
    border-radius: 0 80px 80px 0;
    clip-path: none;
  }

  .service-panel--reverse .service-panel__visual {
    border-radius: 80px 0 0 80px;
  }

  .service-panel__body,
  .service-panel--reverse .service-panel__body {
    padding: 32px 24px 0;
    justify-content: center;
  }

  .service-panel__card,
  .service-panel--reverse .service-panel__card {
    margin: -48px 16px 0;
    max-width: none;
    transform: translateY(40px);
    clip-path: inset(100% 0 0 0);
  }

  .service-panel.is-visible .service-panel__card,
  .service-panel--reverse.is-visible .service-panel__card {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 900px) {
  .hero::after {
    width: 100%;
    height: 38%;
    bottom: auto;
    background: linear-gradient(
      180deg,
      rgba(6, 29, 25, 0.72) 0%,
      rgba(6, 29, 25, 0.35) 80%,
      transparent 100%
    );
  }

  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__brand {
    min-height: 38vh;
    padding: 100px 32px 32px;
  }

  .hero__logo {
    width: min(180px, 55%);
  }

  .hero__text {
    min-height: auto;
    padding: 32px 24px 80px;
  }

  .hero__text-inner {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }

  .header__right {
    display: flex;
    gap: 8px;
  }

  .header__social a {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .header__toggle { display: flex; }

  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--color-dark);
    padding: 32px;
    gap: 24px;
    z-index: 999;
  }

  .services { padding: 80px 0; }

  .service-panel__body { padding: 32px 20px; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__info { flex-direction: column; gap: 4px; }

  .footer__actions {
    width: 100%;
    justify-content: space-between;
  }
}
