/* ===========================================================
   Dra. Cintia Autalán — Estudio Jurídico
   Paleta: azul petróleo, dorado suave, bordó, gris claro, blanco
   =========================================================== */

:root {
  --petrol: #103c46;       /* azul petróleo */
  --petrol-dark: #0b2c34;
  --petrol-light: #1c5663;
  --gold: #c4a253;         /* dorado suave */
  --gold-soft: #d8c089;
  --bordo: #7a2e3b;        /* bordó institucional */
  --ink: #1d2326;
  --gray: #5c6a70;
  --gray-light: #f4f6f6;
  --gray-mid: #e6eaea;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 60, 70, 0.12);
  --shadow-soft: 0 8px 24px rgba(16, 60, 70, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 90%; max-width: var(--max); margin: 0 auto; }

.section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-soft); }

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--petrol);
  letter-spacing: 0.2px;
}
.section__title--light { color: var(--white); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__lead { color: var(--gray); font-size: 1.08rem; margin-top: 14px; }
.section__lead--light { color: rgba(255, 255, 255, 0.78); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn__icon { width: 20px; height: 20px; }
.btn--gold { background: var(--gold); color: var(--petrol-dark); box-shadow: 0 12px 26px rgba(196, 162, 83, 0.4); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.btn--outline:hover { background: var(--white); color: var(--petrol); border-color: var(--white); }
.btn--dark { background: var(--petrol); color: var(--white); }
.btn--dark:hover { background: var(--petrol-dark); box-shadow: var(--shadow-soft); }
.btn--block { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(16, 60, 70, 0.08);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--petrol-dark);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 12px;
  letter-spacing: 1px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; color: var(--white); transition: color 0.3s ease; }
.brand__text strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand__text small { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.scrolled .brand__text { color: var(--petrol); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.scrolled .nav__link { color: var(--ink); }
.nav__link:hover { color: var(--gold); }
.nav__link--cta {
  background: var(--gold);
  color: var(--petrol-dark) !important;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--gold-soft); color: var(--petrol-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.scrolled .nav-toggle span { background: var(--petrol); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 162, 83, 0.18), transparent 45%),
    linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 55%, var(--petrol-light) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 75%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid rgba(196, 162, 83, 0.4);
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero__tags-hint {
  font-size: 0.86rem;
  color: var(--gold-soft);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.hero__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-btn {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.tag-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--petrol-dark);
  transform: translateY(-2px);
}

/* Enlace "Por qué consultar" en las tarjetas */
.card__more {
  margin-top: 18px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  cursor: pointer;
  transition: gap 0.2s ease, color 0.2s ease;
}
.card__more:hover { color: var(--bordo); letter-spacing: 0.3px; }

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  /* La imagen se muestra si existe assets/justicia.jpg; si no, queda el degradé de fondo */
  background:
    url("assets/justicia.jpg") center / cover no-repeat,
    linear-gradient(160deg, var(--petrol) 0%, var(--petrol-light) 100%);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}
.about__photo-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about__badge {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--gold);
  color: var(--petrol-dark);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about__badge strong { font-family: var(--serif); font-size: 1.4rem; }
.about__badge span { font-size: 0.8rem; }

.about__text p { color: var(--gray); font-size: 1.08rem; margin: 20px 0 26px; }
.about__list { margin-bottom: 32px; display: grid; gap: 12px; }
.about__list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 500;
}
.about__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(196, 162, 83, 0.18);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== AREAS ===== */
.areas { background: var(--gray-light); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-mid);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--petrol), var(--petrol-light));
  border-radius: 14px;
  margin-bottom: 22px;
}
.card__icon svg { width: 28px; height: 28px; color: var(--gold-soft); }
.card__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 12px;
}
.card p { color: var(--gray); font-size: 0.96rem; }

/* ===== PROCESS ===== */
.process {
  background:
    radial-gradient(circle at 15% 30%, rgba(196,162,83,0.15), transparent 40%),
    linear-gradient(135deg, var(--petrol-dark), var(--petrol));
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.step:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-6px); }
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.step__title { color: var(--white); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }

/* ===== WHY ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--gray-light);
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.why__item:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-soft); border-color: var(--gray-mid); }
.why__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(196, 162, 83, 0.14);
  border-radius: 50%;
}
.why__item h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--petrol); margin-bottom: 10px; }
.why__item p { color: var(--gray); font-size: 0.95rem; }

/* ===== CONTACT ===== */
.contact { background: var(--gray-light); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__lead { color: var(--gray); font-size: 1.08rem; margin: 16px 0 32px; }
.contact__details { display: grid; gap: 20px; margin-bottom: 32px; }
.contact__details li { display: flex; align-items: center; gap: 16px; }
.contact__ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 12px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}
.contact__details small { display: block; font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.contact__details a, .contact__details span { color: var(--petrol); font-weight: 600; }
.contact__details a:hover { color: var(--gold); }

.contact__socials { display: flex; gap: 14px; }
.social {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--petrol);
  color: var(--white);
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.social svg { width: 22px; height: 22px; }
.social:hover { background: var(--gold); color: var(--petrol-dark); transform: translateY(-4px); }

.contact__form {
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--petrol); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--gray-light);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; }
.form__note { font-size: 0.82rem; color: var(--gray); text-align: center; margin-top: 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--petrol-dark); color: rgba(255, 255, 255, 0.8); padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand strong { font-family: var(--serif); color: var(--white); font-size: 1.15rem; display: block; }
.footer__brand p { font-size: 0.88rem; margin-top: 4px; }
.footer__matricula { color: var(--gold-soft); font-weight: 500; }
.footer__nav, .footer__socials { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__socials a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer__nav a:hover, .footer__socials a:hover { color: var(--gold); }
.footer__bottom { text-align: center; padding: 22px 0; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }
.footer__legal { margin-top: 8px; display: flex; gap: 10px; justify-content: center; align-items: center; }
.footer__legal a { color: rgba(255, 255, 255, 0.65); transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: var(--white); position: relative; z-index: 2; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.2s infinite;
  z-index: 1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--petrol);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 500;
  z-index: 200;
  transition: transform 0.4s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.open { visibility: visible; opacity: 1; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 44, 52, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 40px 38px;
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal.open .modal__dialog { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border: none;
  background: var(--gray-light);
  color: var(--petrol);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal__close:hover { background: var(--bordo); color: var(--white); }
.modal__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--petrol);
  line-height: 1.15;
  margin-bottom: 14px;
}
.modal__intro { color: var(--gray); font-size: 1.02rem; margin-bottom: 22px; }
.modal__box {
  background: var(--gray-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.modal__box strong { display: block; color: var(--petrol); font-size: 1.02rem; margin-bottom: 6px; }
.modal__box p { color: var(--gray); font-size: 0.96rem; }
.modal__examples-label { font-weight: 600; color: var(--petrol); font-size: 0.92rem; margin-bottom: 12px; }
.modal__list { display: grid; gap: 10px; margin-bottom: 28px; }
.modal__list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.95rem;
}
.modal__list li::before {
  content: "›";
  position: absolute; left: 6px; top: -1px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}
.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.modal__actions .btn { flex: 1; min-width: 180px; }

/* ===== PÁGINAS INTERNAS (legal / 404) ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page__hero {
  background: linear-gradient(135deg, var(--petrol-dark), var(--petrol));
  padding: 130px 0 60px;
  text-align: center;
}
.page__hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 600;
}
.page__hero p { color: rgba(255,255,255,0.75); margin-top: 10px; }
.page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
.page__back:hover { color: var(--white); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0 90px;
  flex: 1;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--petrol);
  margin: 34px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--gray); font-size: 1rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 8px; }
.legal__updated { font-size: 0.86rem; color: var(--gray); font-style: italic; margin-top: 40px; }
.legal a { color: var(--bordo); font-weight: 600; }
.legal a:hover { color: var(--gold); }

.error-page {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--petrol-dark), var(--petrol));
}
.error-page__code {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 9rem);
  color: var(--gold);
  line-height: 1;
}
.error-page h1 { font-family: var(--serif); color: var(--white); font-size: 1.8rem; margin: 10px 0 14px; }
.error-page p { color: rgba(255,255,255,0.78); margin-bottom: 30px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 70px; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--petrol);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }
  .nav.open { right: 0; }
  .nav__link { color: var(--white); font-size: 1.1rem; width: 100%; }
  .scrolled .nav__link { color: var(--white); }
  .nav__link--cta { margin-left: 0; margin-top: 10px; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.active span { background: var(--white); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 92vh; }
  .hero__actions .btn { flex: 1; }
  .areas__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .about__badge { right: 10px; }
}
