/* BDVempresa Financiero v3 — executive navy/gold */
:root {
  --navy: #0A1628;
  --navy-mid: #152238;
  --navy-soft: #1E3A5F;
  --gold: #D4A853;
  --gold-light: #E8C872;
  --gold-dark: #9A7B2F;
  --blue: #3B82F6;
  --blue-soft: #DBEAFE;
  --pearl: #F4F6FA;
  --white: #FFFFFF;
  --slate: #64748B;
  --slate-dark: #334155;
  --border: #E2E8F0;
  --success: #059669;
  --error: #DC2626;
  --shadow-sm: 0 4px 20px rgba(10,22,40,.06);
  --shadow-md: 0 12px 40px rgba(10,22,40,.12);
  --shadow-lg: 0 24px 60px rgba(10,22,40,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--gold-dark); }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(900px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* Trust */
.trust-bar {
  background: var(--navy);
  color: #94A3B8;
  font-size: .76rem;
  text-align: center;
  padding: 9px 16px;
}
.trust-bar strong { color: var(--gold-light); }
.trust-bar a { color: #93C5FD; text-decoration: none; margin: 0 6px; }
.trust-bar a:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link svg, .logo-link img { height: 52px; width: auto; }

.nav-toggle {
  display: none; background: var(--navy); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 10px 16px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: .85rem;
}
.main-nav ul { display: flex; list-style: none; gap: 8px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none; font-weight: 500; font-size: .88rem;
  color: var(--slate-dark); padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.main-nav a:hover { color: var(--navy); background: var(--pearl); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm); font-family: var(--font-body);
  font-weight: 600; font-size: .9rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: all .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212,168,83,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,83,.45); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); color: #fff; }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--pearl); color: var(--navy); }
.btn-lg { padding: 16px 32px; font-size: .95rem; }

/* Hero cinematic */
.hero-cine {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero-cine-bg {
  position: absolute; inset: 0;
}
.hero-cine-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .45;
}
.hero-cine-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.95) 0%, rgba(10,22,40,.7) 45%, rgba(10,22,40,.25) 100%);
}
.hero-cine-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
  align-items: center; padding: 80px 0;
}
.hero-cine-content { color: #fff; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold-light); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--gold);
}
.hero-cine-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12; margin-bottom: 22px; font-weight: 700;
}
.hero-cine-content h1 span { color: var(--gold-light); font-style: italic; }
.hero-cine-content > p {
  font-size: 1.08rem; color: #CBD5E1; max-width: 520px; margin-bottom: 32px; line-height: 1.75;
}
.hero-cine-content > p strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong {
  display: block; font-size: 1.75rem; font-weight: 700;
  color: var(--gold-light); font-family: var(--font-display);
}
.hero-stat span { font-size: .78rem; color: #94A3B8; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  position: relative; display: grid; gap: 16px;
}
.hero-visual-main {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 3px solid rgba(212,168,83,.3);
}
.hero-visual-main img { width: 100%; height: 280px; object-fit: cover; }
.hero-visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-visual-sm {
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-md); border: 2px solid rgba(255,255,255,.1);
}
.hero-visual-sm img { width: 100%; height: 120px; object-fit: cover; }

/* BCV */
.bcv-strip {
  background: var(--navy-mid); color: #94A3B8;
  text-align: center; padding: 11px; font-size: .82rem;
}
.bcv-strip strong { color: var(--gold-light); }

/* Sections */
.section { padding: 88px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--navy); color: #CBD5E1; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--gold-light); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2; color: var(--navy); margin-bottom: 14px;
}
.section-dark .section-head h2 { color: #fff; }
.section-head p { color: var(--slate); font-size: 1.02rem; }
.section-dark .section-head p { color: #94A3B8; }

/* Services bento */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bento-card img { width: 100%; height: 200px; object-fit: cover; }
.bento-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bento-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.bento-body p { font-size: .88rem; color: var(--slate); flex: 1; margin-bottom: 16px; }
.bento-price {
  font-size: 1.25rem; font-weight: 700; color: var(--gold-dark);
  padding-top: 14px; border-top: 1px solid var(--border);
}
.bento-price small { display: block; font-size: .75rem; font-weight: 400; color: var(--slate); margin-top: 2px; }
.bento-a { grid-column: span 4; }
.bento-b { grid-column: span 4; }
.bento-c { grid-column: span 4; }
.bento-feature {
  grid-column: span 6; display: grid; grid-template-columns: 1fr 1fr;
}
.bento-feature img { height: 100%; min-height: 260px; }
.bento-feature .bento-body { justify-content: center; padding: 32px; }

/* Process */
.process-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); position: relative;
}
.process-card::after {
  content: ''; position: absolute; top: 50%; right: -14px;
  width: 28px; height: 2px; background: var(--gold);
  display: none;
}
.process-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue-soft), #EFF6FF);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.process-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.process-card p { font-size: .85rem; color: var(--slate); }

/* Pricing */
.pricing-panel {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.pricing-table th {
  background: var(--navy); color: #fff; text-align: left;
  padding: 16px 22px; font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.pricing-table td { padding: 16px 22px; border-bottom: 1px solid var(--border); }
.pricing-table tr:hover td { background: var(--pearl); }
.pricing-table .price { font-weight: 700; color: var(--gold-dark); white-space: nowrap; font-size: 1rem; }

/* About split */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-images .img-large { grid-column: span 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-images .img-large img { height: 280px; width: 100%; object-fit: cover; }
.about-images .img-small { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-images .img-small img { height: 160px; width: 100%; object-fit: cover; }
.feature-list { list-style: none; margin-top: 28px; }
.feature-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border); font-size: .92rem; color: var(--slate-dark);
}
.feature-list li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; margin-top: 8px;
}

/* Premium form section */
.contact-section {
  background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}
.contact-layout {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start;
}
.contact-visual {
  position: sticky; top: 100px;
}
.contact-visual-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 24px;
}
.contact-visual-img img { width: 100%; height: 320px; object-fit: cover; }
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-md);
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 20px; color: var(--gold-light); }
.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 18px; font-size: .9rem;
}
.contact-info-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-info-item a { color: #93C5FD; text-decoration: none; }
.contact-info-item a:hover { color: var(--gold-light); }

.form-premium {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.form-premium::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
}
.form-premium h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--navy); margin-bottom: 6px;
}
.form-premium .form-subtitle { color: var(--slate); font-size: .9rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

.field-group { position: relative; }
.field-group label {
  display: block; font-weight: 600; font-size: .82rem;
  color: var(--slate-dark); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .04em;
}
.field-group label .req { color: var(--error); }
.field-wrap {
  position: relative; display: flex; align-items: center;
}
.field-wrap svg.field-icon {
  position: absolute; left: 14px; width: 18px; height: 18px;
  color: var(--slate); pointer-events: none;
}
.field-group input, .field-group select, .field-group textarea {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--pearl); color: var(--navy);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field-group textarea { padding-left: 16px; min-height: 130px; resize: vertical; }
.field-group select { padding-left: 16px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12); background: var(--white);
}
.field-group input.is-invalid, .field-group select.is-invalid, .field-group textarea.is-invalid {
  border-color: var(--error); box-shadow: 0 0 0 4px rgba(220,38,38,.1);
}
.field-hint { font-size: .75rem; color: var(--slate); margin-top: 6px; }
.field-error { display: none; font-size: .75rem; color: var(--error); margin-top: 6px; }
.field-error.visible { display: block; }

.form-check-premium {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--pearl); border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-top: 4px;
}
.form-check-premium input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
.form-check-premium label { font-size: .85rem; color: var(--slate-dark); line-height: 1.5; }
.form-check-premium a { color: var(--blue); }

.form-alert {
  display: none; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .88rem; margin-bottom: 20px;
}
.form-alert.error { display: block; background: #FEF2F2; color: var(--error); border: 1px solid #FECACA; }
.form-alert.success { display: block; background: #ECFDF5; color: var(--success); border: 1px solid #A7F3D0; }

.btn-submit {
  width: 100%; margin-top: 24px; padding: 18px;
  font-size: 1rem; letter-spacing: .02em;
}
.btn-submit svg { width: 20px; height: 20px; }

.map-embed {
  border-radius: var(--radius-sm); overflow: hidden;
  margin-top: 20px; border: 1px solid rgba(255,255,255,.1);
}
.map-embed iframe { width: 100%; height: 180px; border: 0; }

/* Disclaimer */
.ads-disclaimer {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1px solid #FDE68A; border-radius: var(--radius);
  padding: 24px 28px; font-size: .88rem; color: #78350F; line-height: 1.7;
}
.ads-disclaimer strong { color: #92400E; }

/* Footer */
.site-footer { background: var(--navy); color: #94A3B8; padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .88rem; margin-top: 16px; line-height: 1.7; max-width: 300px; }
.site-footer .logo-link svg text { fill: #F8FAFC; }
.site-footer .logo-link svg text:last-child { fill: #94A3B8; }
.footer-col h4 {
  color: var(--gold-light); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #CBD5E1; text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px; font-size: .78rem;
}
.footer-bottom a { color: #93C5FD; text-decoration: none; }

/* Cookie banner */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); color: #CBD5E1; padding: 22px;
  transform: translateY(100%); transition: transform .35s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,.25);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.cookie-inner p { font-size: .88rem; max-width: 620px; line-height: 1.6; }
.cookie-inner a { color: #93C5FD; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btns button {
  padding: 12px 22px; border-radius: var(--radius-sm); font-family: var(--font-body);
  font-weight: 600; font-size: .85rem; cursor: pointer; border: none; transition: all .2s;
}
#cookieEssential { background: transparent; color: #fff; border: 2px solid #475569; }
#cookieEssential:hover { border-color: #94A3B8; }
#cookieAccept { background: var(--gold); color: var(--navy); }
#cookieAccept:hover { background: var(--gold-light); }
body.cookie-visible { padding-bottom: 110px; }

/* Catalog */
.catalog-hero-v3 {
  background: var(--navy); color: #fff; padding: 72px 0;
  position: relative; overflow: hidden;
}
.catalog-hero-v3::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/hero-accent.webp') center/cover;
  opacity: .15;
}
.catalog-hero-v3 .container { position: relative; z-index: 1; text-align: center; }
.catalog-hero-v3 h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.catalog-hero-v3 p { color: #94A3B8; font-size: 1.05rem; }
.catalog-grid-v3 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px; padding: 72px 0;
}
.catalog-card-v3 {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .3s;
  display: flex; flex-direction: column;
}
.catalog-card-v3:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.catalog-card-v3 .card-img { position: relative; overflow: hidden; }
.catalog-card-v3 .card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.catalog-card-v3:hover .card-img img { transform: scale(1.05); }
.catalog-card-v3 .card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--gold-light);
  font-size: .7rem; font-weight: 700; padding: 6px 12px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .08em;
}
.catalog-card-v3 .card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.catalog-card-v3 h2 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.catalog-card-v3 p { font-size: .88rem; color: var(--slate); flex: 1; margin-bottom: 18px; }
.catalog-card-v3 .card-price {
  font-size: 1.4rem; font-weight: 700; color: var(--gold-dark);
  padding-top: 16px; border-top: 2px solid var(--pearl);
}
.catalog-card-v3 .card-price span { display: block; font-size: .76rem; font-weight: 400; color: var(--slate); margin-top: 4px; }

/* Legal */
.legal-page { padding: 56px 0 80px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 8px; color: var(--navy); }
.legal-meta { color: var(--slate); font-size: .88rem; margin-bottom: 36px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 32px 0 14px; color: var(--navy-mid); }
.legal-page p, .legal-page li { color: var(--slate); margin-bottom: 12px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .88rem; }
.legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.legal-page th { background: var(--navy); color: #fff; }
.legal-page code { background: var(--pearl); padding: 2px 8px; border-radius: 4px; font-size: .85em; }

/* Responsive */
@media (min-width: 961px) {
  .process-card:not(:last-child)::after { display: block; }
}
@media (max-width: 1024px) {
  .hero-cine-grid { grid-template-columns: 1fr; padding: 60px 0; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .services-bento { grid-template-columns: 1fr 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-feature { grid-column: span 1; }
  .bento-feature { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-visual { position: static; }
  .about-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px; display: none; box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a, .main-nav .btn { width: 100%; text-align: center; justify-content: center; }
  .site-header .header-inner { position: relative; }
  .hero-cine { min-height: auto; }
  .hero-stats { gap: 20px; }
  .services-bento { grid-template-columns: 1fr; }
  .process-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-premium { padding: 28px 22px; }
}
