/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --transition: 0.25s ease;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(79,70,229,.25);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn--full { width: 100%; }

.section {
  padding: 5rem 0;
}

.bg-light { background: var(--bg-light); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  background: rgba(79,70,229,.1);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: var(--text);
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}

.nav__logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
  padding: .2rem .45rem;
  border-radius: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--primary);
  color: #fff !important;
  padding: .5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 60%);
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5rem;
}

.hero__badge {
  display: inline-block;
  background: rgba(79,70,229,.1);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(79,70,229,.2);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat__label {
  font-size: .82rem;
  color: var(--text-muted);
}

/* Code card */
.hero__visual {
  position: relative;
}

.code-card {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-card__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #1e293b;
  padding: .75rem 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot--red   { background: #ef4444; }
.dot--yellow{ background: #f59e0b; }
.dot--green { background: #10b981; }

.code-card__title {
  margin-left: .5rem;
  color: #64748b;
  font-size: .82rem;
  font-family: monospace;
}

.code-card__body {
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: .82rem;
  line-height: 1.8;
  overflow-x: auto;
  color: #e2e8f0;
}

.c-kw   { color: #c084fc; }
.c-fn   { color: #60a5fa; }
.c-id   { color: #34d399; }
.c-str  { color: #fbbf24; }
.c-cm   { color: #64748b; font-style: italic; }
.c-out  { color: #6ee7b7; }

.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.floating-badge--1 {
  bottom: -20px;
  left: -20px;
  animation-delay: 0s;
}

.floating-badge--2 {
  top: -15px;
  right: -15px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__wave {
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(79,70,229,.04), #fff);
  grid-column: span 1;
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card__list {
  color: var(--text-muted);
  font-size: .875rem;
}

.service-card__list li {
  padding: .25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.service-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== SPOTLIGHT ===== */
.spotlight {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 0;
}

.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spotlight .section__tag {
  background: rgba(255,255,255,.1);
  color: #a5b4fc;
}

.spotlight .section__title {
  color: #fff;
}

.spotlight__desc {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.spotlight__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit strong {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: .15rem;
}

.benefit p {
  color: #94a3b8;
  font-size: .9rem;
}

/* Excel mock */
.excel-mock {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.excel-mock__toolbar {
  background: #217346;
  color: #fff;
  padding: .6rem 1rem;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.excel-icon { font-size: 1rem; }

.excel-mock__grid {
  padding: .5rem;
}

.excel-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2px;
}

.excel-row > span {
  padding: .4rem .6rem;
  font-size: .82rem;
  border: 1px solid #d1d5db;
  background: #fff;
}

.excel-row--header > span {
  background: #217346;
  color: #fff;
  font-weight: 700;
  border-color: #166534;
}

.excel-row--sum > span {
  background: #dcfce7;
  border-color: #86efac;
  font-weight: 700;
}

.excel-total {
  background: #f0fdf4 !important;
  color: #166534;
  font-weight: 600 !important;
}

.excel-mock__status {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: .6rem 1rem;
  font-size: .78rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100%{ box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ===== PROCESS ===== */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
}

.step__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step__content h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.step__content p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step__connector {
  flex: 0 0 2rem;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin-top: -3rem;
  position: relative;
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.value__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value strong {
  display: block;
  font-weight: 700;
  margin-bottom: .15rem;
}

.value p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0 !important;
}

.tech-stack {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.tech-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
}

.tech-item:hover {
  border-color: var(--primary-light);
  background: rgba(79,70,229,.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial__text {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: .9rem;
}

.testimonial__author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.contact__item a {
  color: var(--primary);
  transition: color var(--transition);
}
.contact__item a:hover { color: var(--primary-dark); }

/* Form */
.contact__form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-error {
  font-size: .8rem;
  color: #ef4444;
  min-height: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer .nav__logo {
  color: #e2e8f0;
  margin-bottom: .75rem;
}

.footer__brand p {
  font-size: .88rem;
  line-height: 1.6;
}

.footer__links h4 {
  color: #e2e8f0;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a {
  font-size: .88rem;
  color: #64748b;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--primary-light); }

.footer__cta h4 {
  color: #e2e8f0;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.footer__cta p {
  font-size: .88rem;
  margin-bottom: 1rem;
}

.footer__bottom {
  border-top: 1px solid #1e293b;
  padding: 1.25rem 0;
}

.footer__bottom p {
  font-size: .82rem;
  color: #475569;
  text-align: center;
}

/* ===== MISIÓN & VISIÓN ===== */
.mv-section {
  background: #fff;
}

.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.mv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.mv-card--mision::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.mv-card--vision::before {
  background: linear-gradient(90deg, var(--accent), #6ee7b7);
}

.mv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mv-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mv-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(79,70,229,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-card__icon-wrap--accent {
  background: rgba(6,182,212,.1);
}

.mv-card__icon {
  font-size: 1.5rem;
}

.mv-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.mv-card__text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: .97rem;
}

.mv-card__pillars {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mv-card__pillars li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

.mv-card__pillars li span {
  font-size: 1rem;
}

/* Values strip */
.mv__values-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.mv-value-item {
  text-align: center;
  padding: .5rem 1rem;
}

.mv-value-item__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: .5rem;
}

.mv-value-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: var(--text);
}

.mv-value-item p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.mv-value-item__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
}

/* Responsive – Misión & Visión */
@media (max-width: 768px) {
  .mv__grid {
    grid-template-columns: 1fr;
  }
  .mv__values-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mv-value-item__divider {
    width: 60px;
    height: 1px;
    justify-self: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 99;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__menu li { width: 100%; text-align: center; }
  .nav__link {
    display: block;
    padding: .75rem 1.5rem;
    font-size: 1rem;
  }
  .nav__link--cta {
    margin: .5rem 1.5rem 0;
    display: block;
    text-align: center;
  }
  .nav__toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }
  .hero__visual { display: none; }

  .spotlight__inner,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__steps {
    flex-direction: column;
    align-items: center;
  }
  .step__connector {
    width: 2px;
    height: 2rem;
    margin: 0;
  }

  .hero__stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
