:root{
  --bg:#f5f8fc;
  --surface:#ffffff;
  --surface-soft:#eef4fb;
  --text:#112338;
  --muted:#5f7186;
  --primary:#0b4ea2;
  --primary-dark:#083a79;
  --line:#d9e3ef;
  --shadow:0 18px 45px rgba(15,44,84,.10);
  --shadow-soft:0 10px 30px rgba(15,44,84,.08);
  --radius:22px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,227,239,.7);
  transition:all .28s ease;
}

.site-header.scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 14px 34px rgba(14,32,51,.10);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  transition:min-height .28s ease;
}

.site-header.scrolled .nav-wrap{
  min-height:72px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  transition:all .28s ease;
}

.site-header.scrolled .brand-logo{
  width:48px;
  height:48px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-top{
  font-size:1rem;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.04em;
}

.brand-bottom{
  font-size:.82rem;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:520px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:20px;
}

.main-nav a{
  font-weight:600;
  color:#304457;
  position:relative;
  transition:color .22s ease, transform .22s ease;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:width .22s ease;
}

.main-nav a:hover{
  color:var(--primary);
}

.main-nav a:hover::after{
  width:100%;
}

.nav-btn{
  padding:11px 16px;
  border-radius:999px;
  background:var(--primary);
  color:#fff !important;
  box-shadow:var(--shadow-soft);
}

.nav-btn::after{
  display:none;
}

.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  font-size:1.7rem;
  cursor:pointer;
}

/* HERO */
.hero{
  padding:140px 0 120px;
  text-align:center;
  background:
    radial-gradient(circle at top left, rgba(19,92,190,.14), transparent 35%),
    radial-gradient(circle at right center, rgba(11,78,162,.10), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.hero-center{
  max-width:1100px;
  margin:auto;
}

.hero-title{
  font-size:clamp(2.8rem,6vw,5.2rem);
  font-weight:900;
  letter-spacing:-0.04em;
  line-height:1.05;
  margin:0 0 25px;
  text-transform:uppercase;
}

.hero-subtitle{
  font-size:1.4rem;
  max-width:820px;
  margin:0 auto 18px;
  color:#334155;
  font-weight:600;
}

.hero-description{
  max-width:720px;
  margin:0 auto 40px;
  color:var(--muted);
  font-size:1.05rem;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:55px;
}

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  background:var(--primary);
  color:white;
  box-shadow:var(--shadow-soft);
  border:1px solid transparent;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(11,78,162,.22);
}

.btn-secondary{
  border:1px solid var(--primary);
  color:var(--primary);
  background:#fff;
}

.btn-secondary:hover{
  background:var(--primary);
  color:#fff;
}

.btn-full{
  width:100%;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:20px;
}

.stat{
  background:white;
  border-radius:16px;
  padding:22px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(217,227,239,.7);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stat:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,44,84,.13);
  border-color:rgba(11,78,162,.15);
}

.stat-number{
  font-size:2rem;
  font-weight:800;
  color:var(--primary);
  display:block;
  margin-bottom:5px;
}

.stat-text{
  font-size:.95rem;
  color:var(--muted);
  font-weight:600;
}

/* SECCIONES */
.section{
  padding:108px 0;
}

.section-alt{
  background:linear-gradient(180deg,#f7f9fc,#eef3f9);
}

.section-heading{
  max-width:760px;
  margin:0 auto 34px;
}

.section-heading.centered{
  text-align:center;
}

.section-kicker{
  display:inline-block;
  color:var(--primary);
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:.78rem;
  margin-bottom:10px;
}

.section-heading h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 3vw, 2.7rem);
  line-height:1.15;
}

.section-heading p{
  margin:0;
  color:var(--muted);
}

/* LOGOS */
.section-logos{
  background:#fff;
  padding-top:86px;
  padding-bottom:86px;
}

.logo-marquee{
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
  padding:22px 0;
}

.logo-fade{
  position:absolute;
  top:0;
  bottom:0;
  width:90px;
  z-index:2;
  pointer-events:none;
}

.logo-fade.left{
  left:0;
  background:linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.logo-fade.right{
  right:0;
  background:linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.logo-track{
  display:flex;
  align-items:center;
  gap:22px;
  width:max-content;
  animation:scrollLogos 34s linear infinite;
}

.logo-marquee:hover .logo-track{
  animation-play-state:paused;
}

.logo-item{
  width:400px;
  height:200px;
  background:transparent;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  flex:0 0 auto;
}

.logo-item img{
  max-width:100%;
  max-height:160px;
  object-fit:contain;
  filter:grayscale(100%) saturate(.9);
  opacity:.85;
  transition:filter .28s ease, opacity .28s ease, transform .28s ease;
}

.logo-item:hover img{
  filter:grayscale(0%) saturate(1.04);
  opacity:1;
  transform:scale(1.02);
}

/* CERTIFICADOS */
.cert-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.cert-copy p{
  color:var(--muted);
}

.feature-list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:12px;
}

.feature-list li{
  position:relative;
  padding-left:28px;
  font-weight:600;
}

.feature-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--primary);
  font-weight:800;
}

.validate-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.validate-card:hover{
  transform:translateY(-7px);
  box-shadow:0 22px 50px rgba(15,44,84,.14);
  border-color:rgba(11,78,162,.16);
}

.validate-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background:linear-gradient(135deg, rgba(11,78,162,.18), rgba(11,78,162,0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.validate-head{
  display:flex;
  gap:16px;
  align-items:center;
  margin-bottom:18px;
}

.validate-head h3{
  margin:0;
}

.validate-head p{
  margin:4px 0 0;
  color:var(--muted);
}

.seal{
  width:68px;
  height:68px;
  object-fit:contain;
  border-radius:16px;
}

.validate-form{
  display:grid;
  gap:12px;
}

label{
  display:block;
  font-size:.94rem;
  font-weight:700;
  margin-bottom:8px;
}

input,
textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:14px;
  font:inherit;
  color:var(--text);
  background:#fff;
  outline:none;
}

input:focus,
textarea:focus{
  border-color:rgba(11,78,162,.45);
  box-shadow:0 0 0 4px rgba(11,78,162,.08);
}

.validate-note{
  margin:14px 0 0;
  font-size:.92rem;
  color:var(--muted);
}

/* NOSOTROS */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.info-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.info-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 48px rgba(15,44,84,.13);
  border-color:rgba(11,78,162,.16);
}

.info-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}

.info-card p{
  margin:0;
  color:var(--muted);
}

/* METODOLOGÍA */
.method-intro-card{
  max-width:920px;
  margin:0 auto 28px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 26px;
  box-shadow:var(--shadow);
  text-align:center;
}

.method-intro-card p{
  margin:0;
  color:var(--muted);
}

.method-intro-card p + p{
  margin-top:10px;
}

.method-highlight{
  color:var(--primary-dark);
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  min-height:220px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.step-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 50px rgba(15,44,84,.14);
  border-color:rgba(11,78,162,.18);
}

.step-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  background:rgba(11,78,162,.10);
  color:var(--primary);
  font-weight:800;
  margin-bottom:16px;
}

.step-card h3{
  margin:0 0 10px;
  font-size:1.05rem;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.method-proof{
  max-width:920px;
  margin:28px auto 0;
  text-align:center;
}

.method-proof h3{
  margin:0 0 10px;
  font-size:1.25rem;
}

.method-proof p{
  margin:0;
  color:var(--muted);
}

/* ÁREAS */
.areas-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.area-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.area-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 48px rgba(15,44,84,.13);
  border-color:rgba(11,78,162,.16);
}

.area-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}

.area-card p{
  margin:0;
  color:var(--muted);
}

/* CONTACTO */
.contact-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.contact-copy p{
  color:var(--muted);
}

.contact-data{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.contact-data a{
  font-weight:700;
  color:var(--primary-dark);
}

.contact-form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.contact-form:hover{
  transform:translateY(-7px);
  box-shadow:0 22px 50px rgba(15,44,84,.14);
  border-color:rgba(11,78,162,.16);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

/* FOOTER */
.site-footer{
  background:#0e2033;
  color:#d8e2ef;
  padding-top:34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:30px;
  align-items:start;
}

.footer-brand{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.footer-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
}

.footer-brand p{
  margin:4px 0 0;
  color:#aebdd0;
}

.footer-col h4{
  margin:6px 0 14px;
  font-size:1rem;
  color:#ffffff;
}

.footer-links,
.footer-contact{
  display:grid;
  gap:10px;
}

.footer-links a,
.footer-contact a{
  color:#d8e2ef;
}

.footer-links a{
  position:relative;
  transition:transform .22s ease, color .22s ease;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:rgba(255,255,255,.92);
  transition:width .22s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#fff;
}

.footer-links a:hover{
  transform:translateX(4px);
}

.footer-links a:hover::after{
  width:100%;
}

.footer-bottom{
  margin-top:24px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.10);
}

.footer-bottom p{
  margin:0;
  color:#aebdd0;
  text-align:center;
  font-size:.92rem;
}

/* ANIMACIONES */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes scrollLogos{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width:1080px){
  .hero-stats,
  .info-grid,
  .areas-grid,
  .cert-wrap,
  .contact-wrap,
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cert-wrap,
  .contact-wrap{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:760px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:82px;
    right:16px;
    left:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }

  .main-nav.open{
    display:flex;
  }

  .brand-bottom{
    max-width:220px;
  }

  .hero{
    padding:110px 0 80px;
  }

  .hero-title{
    font-size:clamp(2.2rem, 12vw, 4rem);
  }

  .hero-subtitle{
    font-size:1.08rem;
  }

  .hero-stats,
  .info-grid,
  .areas-grid,
  .steps-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .logo-item{
    width:310px;
    height:155px;
  }

  .logo-item img{
    max-height:125px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   OPTIMIZACIÓN MÓVIL IPCI
========================= */

@media (max-width: 992px){
  .container{
    width:min(100% - 24px, 100%);
  }

  .brand-bottom{
    max-width:260px;
    white-space:normal;
    line-height:1.2;
  }

  .hero{
    padding:110px 0 80px;
  }

  .hero-title{
    font-size:clamp(2.2rem, 7vw, 3.8rem);
    line-height:1.02;
    letter-spacing:-0.03em;
  }

  .hero-subtitle{
    font-size:1.08rem;
    max-width:100%;
    padding:0 6px;
  }

  .hero-description{
    font-size:.98rem;
    max-width:100%;
    padding:0 6px;
    margin-bottom:28px;
  }

  .hero-buttons{
    gap:12px;
    margin-bottom:32px;
  }

  .btn-primary,
  .btn-secondary{
    padding:13px 20px;
    font-size:.95rem;
    width:auto;
  }

  .hero-stats{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .stat{
    padding:18px 14px;
    border-radius:14px;
  }

  .stat-number{
    font-size:1.55rem;
  }

  .stat-text{
    font-size:.86rem;
    line-height:1.35;
  }

  .section{
    padding:82px 0;
  }

  .section-heading{
    margin-bottom:24px;
  }

  .section-heading h2{
    font-size:clamp(1.55rem, 4vw, 2.1rem);
    line-height:1.18;
  }

  .section-heading p{
    font-size:.96rem;
  }

  .info-grid,
  .areas-grid,
  .steps-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .info-card,
  .area-card,
  .step-card{
    padding:20px 18px;
    border-radius:18px;
  }

  .step-card{
    min-height:auto;
  }

  .logo-marquee{
    padding:14px 0;
  }

  .logo-item{
    width:290px;
    height:135px;
    padding:8px 14px;
  }

  .logo-item img{
    max-height:90px;
  }

  .cert-wrap,
  .contact-wrap{
    grid-template-columns:1fr;
    gap:18px;
  }

  .validate-card,
  .contact-form{
    padding:20px 18px;
    border-radius:18px;
  }

  .validate-head{
    align-items:flex-start;
  }

  .seal{
    width:56px;
    height:56px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .footer-brand{
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .site-header{
    backdrop-filter:blur(10px);
  }

  .nav-wrap{
    min-height:74px;
    gap:10px;
  }

  .brand{
    gap:10px;
    max-width:calc(100% - 52px);
  }

  .brand-logo{
    width:46px;
    height:46px;
    border-radius:12px;
  }

  .brand-top{
    font-size:.95rem;
  }

  .brand-bottom{
    font-size:.72rem;
    max-width:190px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:12px;
    background:#ffffff;
    box-shadow:0 8px 20px rgba(15,44,84,.08);
    font-size:1.35rem;
    flex-shrink:0;
  }

  .main-nav{
    position:absolute;
    top:78px;
    right:12px;
    left:12px;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(217,227,239,.9);
    border-radius:18px;
    box-shadow:0 16px 40px rgba(15,44,84,.14);
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav a{
    padding:10px 12px;
    border-radius:12px;
    font-size:.96rem;
  }

  .main-nav a:hover{
    background:#f3f7fc;
  }

  .main-nav a::after{
    display:none;
  }

  .nav-btn{
    text-align:center;
    margin-top:4px;
  }

  .hero{
    padding:96px 0 68px;
  }

  .hero-title{
    font-size:clamp(1.95rem, 9vw, 3rem);
    line-height:1.03;
    margin-bottom:18px;
  }

  .hero-subtitle{
    font-size:.98rem;
    line-height:1.45;
    margin-bottom:14px;
  }

  .hero-description{
    font-size:.92rem;
    line-height:1.55;
    margin-bottom:24px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    margin-bottom:26px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    justify-content:center;
    padding:14px 16px;
    font-size:.95rem;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:12px;
  }

  .stat{
    padding:16px;
  }

  .stat-number{
    font-size:1.4rem;
    margin-bottom:4px;
  }

  .stat-text{
    font-size:.84rem;
  }

  .section{
    padding:72px 0;
  }

  .section-kicker{
    font-size:.72rem;
    margin-bottom:8px;
  }

  .section-heading h2{
    font-size:1.6rem;
  }

  .section-heading p{
    font-size:.92rem;
    line-height:1.55;
  }

  .info-grid,
  .areas-grid,
  .steps-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .info-card,
  .area-card,
  .step-card{
    padding:18px 16px;
  }

  .info-card h3,
  .area-card h3,
  .step-card h3{
    font-size:1rem;
  }

  .step-card span{
    width:38px;
    height:38px;
    border-radius:10px;
    margin-bottom:12px;
  }

  .method-intro-card{
    padding:18px 16px;
    border-radius:18px;
    margin-bottom:18px;
  }

  .method-proof{
    margin-top:20px;
  }

  .method-proof h3{
    font-size:1.05rem;
  }

  .logo-fade{
    width:34px;
  }

  .logo-track{
    gap:14px;
    animation:scrollLogos 24s linear infinite;
  }

  .logo-item{
    width:250px;
    height:120px;
    padding:6px 10px;
  }

  .logo-item img{
    max-height:75px;
  }

  .cert-copy,
  .contact-copy{
    text-align:left;
  }

  .feature-list{
    gap:10px;
    margin-top:16px;
  }

  .feature-list li{
    font-size:.93rem;
    padding-left:24px;
  }

  .validate-card,
  .contact-form{
    padding:18px 16px;
  }

  .validate-head{
    gap:12px;
  }

  .validate-head h3{
    font-size:1rem;
    line-height:1.3;
  }

  .validate-head p{
    font-size:.88rem;
    line-height:1.45;
  }

  .seal{
    width:50px;
    height:50px;
  }

  label{
    font-size:.88rem;
    margin-bottom:6px;
  }

  input,
  textarea{
    padding:13px 12px;
    border-radius:12px;
    font-size:.95rem;
  }

  .validate-note{
    font-size:.84rem;
    line-height:1.45;
  }

  .contact-data{
    gap:8px;
    margin-top:14px;
  }

  .contact-data a{
    font-size:.92rem;
    line-height:1.4;
    word-break:break-word;
  }

  .site-footer{
    padding-top:26px;
  }

  .footer-grid{
    gap:18px;
  }

  .footer-brand{
    gap:12px;
  }

  .footer-logo{
    width:48px;
    height:48px;
    border-radius:12px;
  }

  .footer-brand strong{
    font-size:.92rem;
    line-height:1.35;
    display:block;
  }

  .footer-brand p{
    font-size:.84rem;
    line-height:1.45;
  }

  .footer-col h4{
    font-size:.94rem;
    margin-bottom:10px;
  }

  .footer-links,
  .footer-contact{
    gap:8px;
  }

  .footer-links a,
  .footer-contact a{
    font-size:.9rem;
    line-height:1.45;
  }

  .footer-bottom{
    margin-top:18px;
    padding:14px 0 18px;
  }

  .footer-bottom p{
    font-size:.8rem;
    line-height:1.45;
  }
}

@media (max-width: 420px){
  .container{
    width:min(100% - 18px, 100%);
  }

  .hero{
    padding:90px 0 62px;
  }

  .hero-title{
    font-size:1.75rem;
  }

  .hero-subtitle{
    font-size:.92rem;
  }

  .hero-description{
    font-size:.88rem;
  }

  .logo-item{
    width:220px;
    height:110px;
  }

  .logo-item img{
    max-height:65px;
  }

  .stat-number{
    font-size:1.28rem;
  }

  .section-heading h2{
    font-size:1.42rem;
  }
}
