/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Montserrat', sans-serif; font-weight: 300; background: #EDE8DF; color: #2C2416; overflow-x: hidden; max-width: 100%; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --cream: #EDE8DF;
  --cream-light: #F5EDE0;
  --charcoal: #1C1C1C;
  --charcoal-mid: #2A2A2A;
  --gold: #B8924A;
  --gold-light: #D4AA6A;
  --text-dark: #2C2416;
  --text-mid: #6B5C48;
  --text-muted: #9B8B7A;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
em { color: var(--gold); font-style: italic; }
p { font-size: 13px; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
strong { font-weight: 500; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s ease; white-space: nowrap;
}
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--cream); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 1px solid rgba(44,36,22,0.5); padding: 11px 24px; }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.section-cream { padding: 96px 48px; background: var(--cream); }
.section-beige { padding: 96px 48px; background: var(--cream-light); }

/* === SECTION TAGS & TITLES === */
.section-tag {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 14px;
}
.section-tag.light { color: var(--gold-light); }
.tag-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.tag-line.gold { background: var(--gold-light); }
.section-title { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 48px; text-align: center; }
.section-title.light { color: var(--cream); }
.section-header { margin-bottom: 4px; }
.section-sub { text-align: center; max-width: 480px; margin: -36px auto 48px; font-size: 13px; }
.gold-line { width: 48px; height: 1px; background: var(--gold); margin: 16px 0 28px; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0); }
}

/* === MOBILE NAV — DRAWER LATERAL === */
#mobileNavBackdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  cursor: pointer;
}
#mobileNavBackdrop.open { display: block; }

#mobileNavOverlay {
  position: fixed;
  top: 0; right: 0;
  width: 78%; max-width: 300px; height: 100%;
  background: var(--charcoal);
  z-index: 9999;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 40px 56px;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
}
#mobileNavOverlay.open { transform: translateX(0); }
#mobileNavOverlay ul { list-style: none; }
#mobileNavOverlay li { border-bottom: 0.5px solid rgba(255,255,255,0.07); }
#mobileNavOverlay li:first-child { border-top: 0.5px solid rgba(255,255,255,0.07); }
#mobileNavOverlay a {
  display: block; padding: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s, padding-left 0.25s;
}
#mobileNavOverlay a:hover { color: var(--gold); padding-left: 6px; }
#mobileNavOverlay .drawer-cta {
  display: inline-block; margin-top: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(184,146,74,0.55);
  padding: 13px 28px; border-radius: 40px;
  color: var(--gold); transition: all 0.3s;
}
#mobileNavOverlay .drawer-cta:hover { background: var(--gold); color: var(--charcoal); padding-left: 28px; }
@media (min-width: 769px) {
  #mobileNavOverlay, #mobileNavBackdrop { display: none !important; }
}

/* === NAVBAR === */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 10000;
  background: rgba(237,232,223,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(184,146,74,0.15);
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.3s ease;
}
#navbar.scrolled {
  background: rgba(237,232,223,0.98);
  box-shadow: 0 1px 28px rgba(44,36,22,0.1);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: padding 0.35s ease;
}
#navbar.scrolled .nav-inner { padding: 16px 48px; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400; letter-spacing: 0.3px;
  color: var(--text-dark); transition: color 0.3s ease;
}
.nav-logo em { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); font-weight: 400;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--cream) !important;
  padding: 10px 22px !important; border-radius: 40px;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 200;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; overflow: hidden; padding-top: 72px; }
.hero-img-wrap { position: relative; overflow: hidden; background: #C9A882; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; will-change: transform; }
.hero-content {
  background: var(--cream); display: flex; flex-direction: column;
  justify-content: center; padding: 56px 72px 80px;
}
.hero-tag { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards ease; }
.hero-tag-line { width: 36px; height: 1px; background: var(--gold); }
.hero-tag-text { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.hero-title { font-size: clamp(44px, 5.5vw, 68px); font-weight: 300; line-height: 1.02; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards ease; }
.hero-line { display: block; }
.hero-line.italic { font-style: italic; }
.hero-line.gold { color: var(--gold); }
.hero-desc { max-width: 420px; margin-bottom: 40px; font-size: 13px; line-height: 1.85; opacity: 0; animation: fadeUp 0.8s 0.7s forwards ease; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards ease; }
.hero-img-wrap { opacity: 0; animation: fadeIn 1.2s 0.1s forwards ease; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(28px); } }
@keyframes fadeIn { to { opacity: 1; } from { opacity: 0; } }

/* === STATS BAR === */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--charcoal); }
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden; cursor: default;
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(184,146,74,0.07); }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s ease;
}
.stat-item:hover::after { width: 60%; }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--gold-light); line-height: 1; }
.stat-plus { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold-light); }
.stat-label { display: block; margin-top: 8px; font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 300; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1060px; margin: 0 auto; }
.service-card {
  background: var(--cream-light); border: 0.5px solid rgba(184,146,74,0.18);
  border-radius: 3px; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(44,36,22,0.14); }
.service-img-wrap { position: relative; height: 200px; overflow: hidden; background: #D4C9B8; }
.service-img-wrap img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-img-wrap img[src*="blanqueamiento"] { transform: rotate(90deg) scale(1.4); object-position: center; }
.service-card:hover .service-img-wrap img[src*="blanqueamiento"] { transform: rotate(90deg) scale(1.5); }
.service-img-placeholder { background: linear-gradient(135deg, #C9B89A, #D4C9B8); }
.service-overlay {
  position: absolute; inset: 0; background: rgba(28,28,28,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover .service-overlay { opacity: 1; }
.overlay-btn {
  color: #fff; border: 1px solid var(--gold); padding: 10px 26px;
  border-radius: 40px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.3s ease; font-family: 'Montserrat', sans-serif;
}
.overlay-btn:hover { background: var(--gold); color: var(--cream); }
.service-body { padding: 22px 24px 26px; }
.service-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--text-dark); }
.service-body p { font-size: 12px; line-height: 1.7; }

/* === ABOUT === */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.about-img-col { position: relative; overflow: hidden; background: #2C1810; }
.about-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-content-col {
  padding: 88px 72px; background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
}
.about-content-col .section-tag { justify-content: flex-start; }
.about-content-col .section-title { text-align: left; margin-bottom: 0; }
.about-content-col p { color: rgba(255,255,255,0.52); font-size: 13px; margin-bottom: 14px; }
.about-feats { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 36px; }
.about-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.58); font-weight: 300; line-height: 1.6; }
.feat-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }

/* === TEAM === */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1060px; margin: 0 auto; }
.team-card { background: var(--cream-light); border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(44,36,22,0.12); }
.team-img-wrap { position: relative; height: 280px; overflow: hidden; background: #C9A882; }
.team-img-wrap img { height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset: 0; background: rgba(28,28,28,0.78);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px; opacity: 0; transition: opacity 0.35s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-body { padding: 16px 18px 20px; border-top: 2px solid var(--gold); }
.team-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; margin-bottom: 5px; color: var(--text-dark); }
.team-role { font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); font-weight: 400; }

/* === TECHNOLOGY === */
.technology { display: grid; grid-template-columns: 1fr 1fr; background: var(--charcoal); min-height: 560px; }
.tech-img-col { display: flex; align-items: center; justify-content: center; padding: 60px; background: var(--charcoal-mid); overflow: hidden; }
.tech-img { width: 100%; max-height: 440px; object-fit: contain; filter: brightness(0.95); transition: transform 0.6s ease; }
.tech-img-col:hover .tech-img { transform: scale(1.02); }
.tech-content-col { padding: 88px 72px; display: flex; flex-direction: column; justify-content: center; }
.tech-content-col .section-tag { justify-content: flex-start; }
.tech-content-col .section-title { text-align: left; margin-bottom: 0; }
.tech-content-col > p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 4px; }
.tech-features { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 32px; }
.tech-feat { display: flex; gap: 14px; align-items: flex-start; }
.tech-feat strong { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.88); margin-bottom: 4px; }
.tech-feat p { font-size: 12px; color: rgba(255,255,255,0.42); margin: 0; line-height: 1.6; }
.tech-feat .feat-dot { margin-top: 6px; }
.brands-strip { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.brand-logo { max-height: 40px; width: auto; max-width: 130px; object-fit: contain; opacity: 0.6; filter: brightness(1.1) saturate(0.3); }
.brand-badge {
  display: inline-flex; align-items: center; padding: 8px 18px;
  border: 0.5px solid rgba(184,146,74,0.25); border-radius: 4px;
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 400; white-space: nowrap;
}

/* === PRODUCTS === */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
.product-card { background: var(--cream-light); border-radius: 3px; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(44,36,22,0.14); }
.product-img-wrap { height: 300px; overflow: hidden; background: #D4C9B8; }
.product-img-wrap img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-body { padding: 28px 28px 32px; }
.product-tag { display: inline-block; background: var(--gold); color: var(--cream); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; font-weight: 500; }
.product-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.product-body p { font-size: 12px; margin-bottom: 22px; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1060px; margin: 0 auto; }
.testi-card {
  background: var(--cream); border: 0.5px solid rgba(184,146,74,0.18);
  border-radius: 3px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(44,36,22,0.09); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; font-weight: 300; line-height: 1.72;
  color: var(--text-dark); margin-bottom: 28px;
}
.testi-sep { width: 32px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.testi-author { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark); }
.testi-service { font-size: 11px; color: var(--gold); margin-top: 5px; font-weight: 300; }

/* === CTA === */
.cta-section { background: var(--charcoal); padding: 110px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,74,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; max-width: 680px; margin: 0 auto; }
.cta-section .section-tag { color: var(--gold-light); }
.cta-section .tag-line { background: var(--gold-light); }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 5vw, 52px); font-weight: 300; color: var(--cream); line-height: 1.2; margin: 16px 0 20px; }
.cta-section > .cta-content > p { color: rgba(255,255,255,0.42); font-size: 13px; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.cta-info { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.3px; }

/* === FOOTER === */
footer { background: #111; padding: 72px 48px 0; }
.footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); font-weight: 300; margin-bottom: 12px; }
.footer-logo em { color: var(--gold); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.9; margin-bottom: 20px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.3); transition: color 0.3s ease; }
.footer-social a:hover { color: var(--gold); }
.footer-links-col h4 { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 400; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.3s ease; }
.footer-links-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { max-width: 1060px; margin: 0 auto; padding: 22px 0; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.16); text-align: center; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-img-wrap { height: 60vw; min-height: 300px; }
  .hero-content { padding: 48px 48px 56px; }
  .about, .technology { grid-template-columns: 1fr; }
  .about-img-col { height: 55vw; min-height: 300px; }
  .about-content-col, .tech-content-col { padding: 56px 48px; }
  .tech-img-col { height: 50vw; min-height: 280px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  /* ── NAV MOBILE ── */
  .nav-inner { padding: 18px 20px; }
  #navbar.scrolled .nav-inner { padding: 14px 20px; }
  .nav-toggle { display: flex; z-index: 10000; position: relative; }
  .nav-toggle span { background: var(--text-dark); }
  .nav-toggle.open span { background: #fff !important; }
  /* Ocultar el nav-links original en móvil — se usa el overlay externo */
  .nav-links { display: none !important; }

  /* Nav toggle encima del backdrop y del drawer */
  .nav-toggle { position: relative; z-index: 10001; }

  /* ── HERO ── */
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-img-wrap { height: 72vw; min-height: 240px; order: 1; }
  .hero-content { order: 2; padding: 40px 24px 52px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-desc { font-size: 12px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { justify-content: center; width: 100%; }

  /* ── STATS ── */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 36px; }

  /* ── SECTIONS ── */
  .section-cream, .section-beige { padding: 64px 20px; }
  .container { padding: 0 20px; }

  /* ── ABOUT + TECH (apilados) ── */
  .about { grid-template-columns: 1fr; }
  .about-img-col { height: 64vw; min-height: 260px; }
  .about-content-col { padding: 44px 24px 48px; }
  .about-feats { gap: 10px; }
  .about-content-col .section-title { font-size: clamp(26px, 7vw, 36px); }
  .tech { grid-template-columns: 1fr; }
  .tech-img-col { height: 56vw; min-height: 240px; }
  .tech-content-col { padding: 44px 24px; }
  .brands-strip { flex-wrap: wrap; gap: 8px; }
  .brand-badge { font-size: 9px; padding: 6px 14px; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-img-wrap { height: 160px; }

  /* ── TEAM ── */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-img-wrap { height: 44vw; }
  .team-body { padding: 12px 14px 16px; }
  .team-body h3 { font-size: 14px; line-height: 1.3; }
  .team-role { font-size: 8px; letter-spacing: 1px; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── CTA ── */
  .cta-section { padding: 72px 20px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-info { flex-direction: column; gap: 8px; }

  /* ── FOOTER ── */
  footer { padding: 48px 20px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-img-wrap { height: 80vw; }
  .hero-content { padding: 36px 20px 48px; }
  .hero-title { font-size: clamp(32px, 10vw, 46px); }

  /* Services 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .service-img-wrap { height: 52vw; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  /* Team 2 col */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-img-wrap { height: 44vw; }
  .team-body h3 { font-size: 13px; word-break: break-word; }

  /* General */
  .section-cream, .section-beige { padding: 52px 16px; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(22px, 7vw, 32px); }
  .btn { font-size: 9px; padding: 13px 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
}
