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

:root {
  --ink: hsl(225, 20%, 8%);
  --ink-light: hsl(225, 9%, 32%);
  --gold: hsl(45, 54%, 54%);
  --gold-light: hsl(45, 71%, 79%);
  --gold-pale: hsl(42, 43%, 95%);
  --cream: hsl(40, 20%, 97%);
  --white: hsl(0, 0%, 100%);
  --border: rgba(15, 17, 23, 0.08);
  --border-gold: rgba(201, 168, 76, 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 12px rgba(15, 17, 23, 0.03);
  --shadow-md: 0 12px 36px rgba(15, 17, 23, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 17, 23, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.76;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.logo span { color: var(--gold); }
.logo:hover { opacity: 0.85; }

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.logo-link:hover {
  opacity: 0.85;
}
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav ul { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--ink-light);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  position: relative;
}
nav ul a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition-smooth);
}
nav ul a:not(.btn-nav):hover { color: var(--gold); }
nav ul a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth) !important;
}
.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 76px;
}

.hero-left {
  padding: 8% 5% 8% 8%;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}

.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--ink-light);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: none; cursor: pointer;
  padding: 1.1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  transition: var(--transition-smooth);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  cursor: pointer;
  padding: 1.1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(201, 168, 76, 0.03);
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 3rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: var(--ink-light);
  margin-top: 0.4rem; letter-spacing: 0.05em; font-weight: 500;
  text-transform: uppercase;
}

.hero-right {
  background: var(--ink);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}

.hero-right-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.04) 40px);
}

/* ── SERVICIOS ── */
.section { padding: 7rem 8%; }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--ink); margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem; color: var(--ink-light); max-width: 560px;
  line-height: 1.8; margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.3);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 1.35rem; color: var(--gold);
  background: var(--cream);
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 1rem; color: var(--ink);
}

.service-desc {
  font-size: 0.9rem; color: var(--ink-light); line-height: 1.75;
}

/* ── PROCESO ── */
.section-dark {
  background: var(--ink);
  padding: 7rem 8%;
}
.section-dark .section-intro { color: rgba(255,255,255,0.5); }
.section-dark h2 { color: var(--white); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.step {
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.3);
}
.step.active {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  background: var(--ink);
  font-weight: 700;
  transition: var(--transition-smooth);
}
.step.active .step-num {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.35);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 0.6rem; font-weight: 700;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}
.step.active .step-desc {
  color: rgba(255,255,255,0.85);
}

.step-progress-container {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.step.loading .step-progress-container {
  opacity: 1;
}
.step-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}

/* ── POR QUÉ ELEGIRNOS ── */
.why {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-left {
  padding: 7rem 5% 7rem 8%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-right {
  padding: 7rem 8% 7rem 5%;
  background: var(--gold-pale);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-content: center;
}

.why-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.3);
}
.why-item:hover::after {
  transform: scaleX(1);
}

.why-check {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gold);
  border-radius: 6px; margin-top: 2px;
  background: var(--cream);
  transition: var(--transition-smooth);
}
.why-item:hover .why-check {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.1) rotate(5deg);
}

.why-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.35rem;
}

.why-item-desc { font-size: 0.9rem; color: var(--ink-light); line-height: 1.7; }

/* ── TESTIMONIOS ── */
.testimonials { padding: 7rem 8%; background: var(--cream); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}

.testimony {
  background: var(--white);
  padding: 2.5rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimony:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.3);
}

.testimony-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimony-text {
  font-size: 0.9rem; color: var(--ink-light);
  line-height: 1.8; margin-bottom: 2rem;
  font-style: italic;
  position: relative; z-index: 2;
}

.testimony-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  margin-top: auto;
}

.testimony-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--ink-light));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.95rem;
  border: 1.5px solid var(--gold-light);
  flex-shrink: 0;
}

.testimony-info {
  display: flex;
  flex-direction: column;
}

.testimony-author { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.testimony-role { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.1rem; }

.testimony-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: #2a6e3f;
  font-weight: 600;
  margin-top: 0.3rem;
  background: rgba(42, 110, 63, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  align-self: flex-start;
}

.testimony-reply {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
}
.testimony-reply-author {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testimony-reply p {
  margin: 0;
}

/* ── CONTACTO ── */
.contact { padding: 7rem 8%; background: var(--ink); }
.contact h2 { color: var(--white); }
.contact .section-intro { color: rgba(255,255,255,0.45); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 4rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; justify-content: center; }

.contact-item { display: flex; gap: 1.2rem; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--gold); border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}
.contact-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; font-weight: 600; }
.contact-value { font-size: 0.95rem; color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; }

input, select, textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.95rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
select { cursor: pointer; }
select option { background: var(--ink); }
textarea { resize: none; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: #080a0f;
  padding: 3rem 8%;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 700;
}
.footer-logo span { color: var(--gold); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); letter-spacing: 0.03em; }

.footer-links { display: flex; gap: 2.2rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; letter-spacing: 0.05em; transition: var(--transition-smooth); font-weight: 500; }
.footer-links a:hover { color: var(--gold); }

/* ── EQUIPO ── */
.team-panel {
  position: relative; z-index: 2;
  width: 100%; padding: 4rem 3rem;
  display: flex; flex-direction: column;
  justify-content: center; height: 100%;
}
.team-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.team-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--ink);
  height: 280px;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-member:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
  transform: translateY(-5px);
}
.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  z-index: 1;
}
.team-member:hover .team-photo {
  transform: scale(1.08);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 10, 15, 0.95) 0%,
    rgba(8, 10, 15, 0.6) 50%,
    rgba(8, 10, 15, 0.1) 100%
  );
  z-index: 2;
  transition: var(--transition-smooth);
}
.team-member:hover .team-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 10, 15, 0.98) 0%,
    rgba(8, 10, 15, 0.7) 60%,
    rgba(8, 10, 15, 0.2) 100%
  );
}
.team-info {
  position: relative;
  z-index: 3;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  pointer-events: none;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
  margin-top: 0.2rem;
}

/* ── MODALES ── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 17, 23, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 1.5rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}
.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.8rem;
  color: var(--ink-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
}
.modal-body {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.75;
}
.modal-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}
.modal-body p {
  margin-bottom: 1rem;
}
body.modal-open {
  overflow: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.7s ease both; }
h1 { animation: fadeUp 0.7s 0.12s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.22s ease both; }
.hero-actions { animation: fadeUp 0.7s 0.32s ease both; }
.hero-stats { animation: fadeUp 0.7s 0.42s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav ul { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
  }
  .hero-left { padding: 12% 6% 8%; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .why { grid-template-columns: 1fr; }
  .why-left, .why-right { padding: 4rem 6%; }
  .why-right { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  
  .team-panel {
    padding: 3rem 1.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .team-member {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .team-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
