:root {
  --black: #05070b;
  --black-soft: #0a0e15;
  --navy: #081426;
  --navy-light: #10213b;
  --blue: #1e5fe5;
  --blue-light: #4284ff;
  --gold: #c9a24d;
  --gold-light: #e4c675;
  --white: #ffffff;
  --text: #f4f6fb;
  --muted: #aeb8c8;
  --muted-dark: #667085;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(201, 162, 77, 0.45);
  --success: #1fc66d;
  --surface: #0d1521;
  --surface-light: #111d2d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-label-light {
  color: var(--gold-light);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  max-width: 650px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.72);
}

/* BOTONES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  transition:
    transform var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  color: var(--black);
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold)
  );
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.2);
}

.btn-gold:hover {
  box-shadow: 0 16px 38px rgba(201, 162, 77, 0.32);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 77, 0.08);
}

.btn-large {
  min-height: 56px;
  padding-inline: 30px;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  min-height: 84px;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 11, 0.58);
  backdrop-filter: blur(14px);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 11, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  min-height: 84px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 280px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  color: var(--white);
  font-size: 0.95rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 30px 14px;
  border: none;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 21px;
  left: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 20, 38, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.dropdown a {
  display: block;
  padding: 13px 14px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  transition:
    color var(--transition),
    background var(--transition),
    padding var(--transition);
}

.dropdown a:hover {
  padding-left: 19px;
  color: var(--gold-light);
  background: rgba(201, 162, 77, 0.08);
}

.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: var(--transition);
}

/* HERO PRINCIPAL */

.main-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  padding-top: 84px;
  background:
    url("https://www.voyagevirtuel.net/argentine/buenos-aires/bigphotos/buenos-aires-universidad-abogacia-963.jpg")
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 6, 11, 0.96) 0%,
      rgba(5, 12, 23, 0.87) 48%,
      rgba(5, 7, 11, 0.54) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 7, 11, 0.92) 0%,
      transparent 48%
    );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 90px;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  max-width: 790px;
  margin: 22px 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.hero-stats {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: rgba(5, 10, 18, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stat {
  padding: 28px;
}

.hero-stat + .hero-stat {
  border-top: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 1.7rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* SOBRE EL ESTUDIO */

.about-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(30, 95, 229, 0.08),
      transparent 32%
    ),
    var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.about-image {
  position: relative;
  padding: 0 22px 22px 0;
}

.about-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 540px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border: 2px solid var(--gold);
}

.about-content h2 {
  margin: 18px 0 25px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.about-content p {
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--gold-light);
  font-weight: 700;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(6px);
}

/* SERVICIOS */

.services-section {
  background: var(--black-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 45px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    var(--surface);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 95, 229, 0.1);
  filter: blur(10px);
}

.service-card-featured::before {
  background: rgba(201, 162, 77, 0.12);
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(255, 255, 255, 0.07);
  font-size: 4.5rem;
  font-weight: 800;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.08);
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.service-card p {
  max-width: 530px;
  min-height: 100px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.service-whatsapp {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-whatsapp:hover {
  text-decoration: underline;
}

/* HERO ACCIDENTES */

.accident-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 670px;
  background:
    url("https://images.unsplash.com/photo-1551830820-330a71b99659?auto=format&fit=crop&w=1920&q=85")
    center / cover no-repeat;
}

.accident-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 5, 10, 0.97),
      rgba(4, 12, 25, 0.82) 52%,
      rgba(4, 10, 18, 0.55)
    ),
    linear-gradient(
      0deg,
      rgba(5, 7, 11, 0.9),
      transparent
    );
}

.accident-hero-content {
  position: relative;
  z-index: 2;
}

.accident-hero-content h2 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.accident-hero-content h2 span {
  display: block;
  color: var(--gold-light);
}

.accident-hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

/* PROCESO */

.process-section {
  color: #172033;
  background: #f4f6fa;
}

.process-section .section-heading h2 {
  color: #111827;
}

.process-section .section-heading p {
  color: var(--muted-dark);
}

.process-section .section-label {
  color: #8c681e;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 77, 0.22),
    var(--gold),
    rgba(201, 162, 77, 0.22)
  );
}

.process-card {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  text-align: center;
}

.process-step {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border: 6px solid #f4f6fa;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 77, 0.24);
  font-weight: 800;
}

.process-icon {
  margin-bottom: 15px;
  font-size: 2.3rem;
}

.process-card h3 {
  color: #121a2a;
  font-size: 1.08rem;
}

.process-card p {
  color: var(--muted-dark);
  font-size: 0.94rem;
}

/* BENEFICIOS */

.benefits-section {
  position: relative;
  padding: 110px 0;
  background:
    url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?auto=format&fit=crop&w=1920&q=80")
    center / cover no-repeat;
}

.benefits-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 17, 34, 0.93);
}

.benefits-content {
  position: relative;
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  min-height: 320px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(9px);
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.07);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-size: 1.7rem;
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.08rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
}

.benefits-strip {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.strip-message {
  display: flex;
  align-items: center;
  gap: 15px;
}

.strip-message div {
  display: flex;
  flex-direction: column;
}

.strip-message strong {
  color: var(--white);
}

.strip-message span:not(.strip-icon) {
  color: var(--gold-light);
}

.strip-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 800;
}

.strip-item {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.9rem;
}

.strip-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

/* FORMULARIO */

.claim-section {
  color: #121a2a;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 162, 77, 0.09),
      transparent 35%
    ),
    #eef2f7;
}

.claim-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 75px;
}

.claim-information h2 {
  max-width: 580px;
  margin: 18px 0 22px;
  color: #111827;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.claim-information > p {
  color: var(--muted-dark);
}

.claim-feature-list {
  display: grid;
  gap: 23px;
  margin-top: 38px;
}

.claim-feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.claim-feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  color: #8c681e;
  background: rgba(201, 162, 77, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
}

.claim-feature h3 {
  margin-bottom: 6px;
  color: #111827;
  font-size: 1.05rem;
}

.claim-feature p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.claim-form {
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
}

.form-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.form-header-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  color: #8c681e;
  background: rgba(201, 162, 77, 0.16);
}

.form-header h3 {
  margin-bottom: 4px;
  color: #111827;
  font-size: 1.45rem;
}

.form-header p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: #172033;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9dfe9;
  border-radius: 8px;
  outline: none;
  color: #172033;
  background: #f8f9fc;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-field input,
.form-field select {
  min-height: 49px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border: none;
}

.form-privacy {
  margin: 15px 0 0;
  color: #778195;
  font-size: 0.76rem;
  text-align: center;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--line-gold);
  background: #04070c;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1.3fr;
  gap: 50px;
  padding-top: 75px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 300px;
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer-column h3,
.footer-map h3 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column ul {
  display: grid;
  gap: 13px;
}

.footer-column li,
.footer-column a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-map iframe {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  filter: grayscale(0.5) invert(0.86) hue-rotate(180deg);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--gold-light);
  font-weight: 700;
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
}

/* ANIMACIONES */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
  }

  .hero-stat + .hero-stat {
    border-top: none;
    border-left: 1px solid var(--line);
  }

  .about-layout,
  .claim-layout {
    gap: 50px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item:nth-child(3) {
    border-left: none;
  }

  .footer-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(5, 7, 11, 0.97);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 11, 0.99);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.45s ease,
      opacity var(--transition),
      visibility var(--transition),
      padding var(--transition);
  }

  .main-nav.is-open {
    max-height: 650px;
    padding-top: 15px;
    padding-bottom: 25px;
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    display: none;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      max-height 0.35s ease,
      padding 0.35s ease;
  }

  .nav-item.dropdown-open .dropdown {
    max-height: 180px;
    padding: 7px;
    transform: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 15px;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-hero {
    min-height: auto;
    padding: 170px 0 100px;
  }

  .hero-layout {
    gap: 45px;
  }

  .about-layout,
  .claim-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 600px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 25px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .header-container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .brand-text strong {
    max-width: 210px;
    font-size: 0.78rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero-content h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat + .hero-stat {
    border-top: 1px solid var(--line);
    border-left: none;
  }

  .about-image img {
    min-height: 400px;
  }

  .service-card {
    min-height: auto;
    padding: 32px 25px;
  }

  .service-card p {
    min-height: auto;
  }

  .service-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .accident-hero {
    min-height: 650px;
  }

  .accident-hero-content h2 {
    font-size: 3rem;
  }

  .process-grid,
  .benefits-grid,
  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .strip-item {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .claim-form {
    padding: 27px 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom-layout {
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 17px;
    bottom: 17px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}