/* ===== CCM ASOCIADOS - Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-mid: #1a3058;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #d8dde6;
  --gray-300: #b0b8c9;
  --gray-500: #6b7a94;
  --gray-700: #374151;
  --gray-900: #1a1a2e;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,22,40,.06);
  --shadow-md: 0 8px 30px rgba(10,22,40,.1);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.15);
  --shadow-gold: 0 8px 30px rgba(201,168,76,.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.2rem,2vw,1.5rem); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--gold);
}
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-500); max-width: 600px; line-height: 1.8;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; cursor: pointer; border: none;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,.35);
}
.btn--outline {
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold); color: var(--navy); transform: translateY(-3px);
}
.btn--white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn svg { width: 18px; height: 18px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 24px 0; transition: all .4s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
  background: rgba(10,22,40,.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0; box-shadow: 0 4px 40px rgba(0,0,0,.2);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: -.5px; display: flex; align-items: center; }
.navbar__logo span { color: var(--gold); }
.navbar__logo-img { height: 42px; width: auto; object-fit: contain; transition: all .3s ease; }
.navbar.scrolled .navbar__logo-img { height: 36px; }
.footer__brand .navbar__logo-img { height: 48px; width: auto; margin-bottom: 4px; }
.navbar__links { display: flex; gap: 40px; align-items: center; }
.navbar__links a {
  color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500;
  position: relative; padding: 6px 0; letter-spacing: .3px;
  transition: color .3s ease;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .3s cubic-bezier(.4,0,.2,1); border-radius: 2px;
}
.navbar__links a:hover, .navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__cta {
  padding: 12px 28px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border-radius: 50px; font-weight: 700; font-size: .85rem;
  margin-left: 16px; letter-spacing: .3px; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201,168,76,.3);
  transition: all .3s ease;
}
.navbar__cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 25px rgba(201,168,76,.45); }
.navbar__cta::after { display: none !important; }
.navbar__toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; }
.navbar__toggle span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.9) 0%, rgba(10,22,40,.4) 100%);
}
.hero__content {
  position: relative; z-index: 2; max-width: 700px;
  padding-top: 80px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3); border-radius: 50px;
  font-size: .8rem; font-weight: 600; color: var(--gold);
  margin-bottom: 24px; letter-spacing: 1px;
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  line-height: 1.8; margin-bottom: 36px; max-width: 550px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 48px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-number {
  font-family: var(--font-heading); font-size: 2.4rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.hero__stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card__img {
  width: 100%; height: 220px; object-fit: cover;
}
.service-card__body { padding: 32px; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: .95rem; line-height: 1.7; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: .9rem; margin-top: 20px;
}
.service-card__link:hover { gap: 12px; }

/* ===== INCLUDES / WHAT YOU GET ===== */
.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }
.include-item {
  display: flex; gap: 16px; padding: 24px; background: rgba(255,255,255,.05);
  border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.include-item:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.2); transform: translateX(4px); }
.include-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,168,76,.15); display: flex;
  align-items: center; justify-content: center;
}
.include-item__icon svg { width: 22px; height: 22px; fill: var(--gold); }
.include-item h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.include-item p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ===== PROCESS / STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 50px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step { text-align: center; position: relative; }
.process-step__number {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
  color: var(--navy); margin: 0 auto 24px; position: relative; z-index: 2;
  box-shadow: var(--shadow-gold);
}
.process-step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.process-step p { font-size: .9rem; color: var(--gray-500); }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.benefit-card {
  padding: 40px 32px; background: var(--white);
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.benefit-card__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.benefit-card__icon svg { width: 32px; height: 32px; fill: var(--gold); }
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { color: var(--gray-500); font-size: .93rem; }

/* ===== COMPARISON ===== */
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.comparison__col {
  padding: 40px; border-radius: var(--radius-lg); position: relative;
}
.comparison__col--without {
  background: var(--gray-50); border: 2px solid var(--gray-200);
}
.comparison__col--with {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); border: 2px solid var(--gold);
}
.comparison__col--with h3 { color: var(--gold); }
.comparison__tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.comparison__col--without .comparison__tag { background: var(--gray-200); color: var(--gray-700); }
.comparison__col--with .comparison__tag { background: var(--gold); color: var(--navy); }
.comparison__list { margin-top: 20px; }
.comparison__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: .93rem;
}
.comparison__list li svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.comparison__col--without .comparison__list li svg { fill: #e74c3c; }
.comparison__col--with .comparison__list li svg { fill: var(--gold); }
.comparison__col--with .comparison__list li { color: rgba(255,255,255,.8); }

/* ===== ABOUT / DIFFERENTIATOR ===== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split__img {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.about-split__img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-split__img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  transform: translate(12px, 12px); z-index: -1;
}
.about-split__content h2 { margin-bottom: 20px; }
.about-split__content p { margin-bottom: 16px; }
.about-split__list { margin: 24px 0; }
.about-split__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; font-weight: 500;
}
.about-split__list li svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 550px; margin: 0 auto 32px; }
.cta-banner .btn { margin: 0 8px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: .95rem; transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex; gap: 16px; padding: 20px;
  background: var(--gray-50); border-radius: var(--radius-md);
}
.contact-info__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 22px; height: 22px; fill: var(--gold); }
.contact-info__item h4 { font-family: var(--font-body); font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info__item p { font-size: .9rem; color: var(--gray-500); }
.contact-info__item a { color: var(--gold); font-weight: 500; }
.contact-info__item a:hover { color: var(--gold-dark); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 80px 0 0; color: rgba(255,255,255,.6); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer__brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__bottom {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); }
.footer__social svg { width: 18px; height: 18px; fill: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-float__pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25d366; animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.4);opacity:0} }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 160px 0 80px; background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, var(--white));
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.6); font-size: 1.1rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(.85); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }
.stagger-6 { transition-delay: .6s; }

/* Hero entrance animations */
.hero__badge { animation: slideDown .8s cubic-bezier(.16,1,.3,1) .3s both; }
.hero__title { animation: slideUp 1s cubic-bezier(.16,1,.3,1) .5s both; }
.hero__subtitle { animation: slideUp 1s cubic-bezier(.16,1,.3,1) .7s both; }
.hero__actions { animation: slideUp 1s cubic-bezier(.16,1,.3,1) .9s both; }
.hero__stats { animation: fadeIn 1.2s ease 1.2s both; }

@keyframes slideDown { from { opacity:0; transform:translateY(-30px) } to { opacity:1; transform:translateY(0) } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }

/* Button shimmer effect */
.btn--primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: none;
}
.btn--primary:hover::before { left: 100%; transition: left .6s ease; }

/* Floating animation for WhatsApp */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.whatsapp-float { animation: float 3s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; transform: scale(1.15); }

/* Gold glow pulse on hover for cards */
.service-card { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(201,168,76,.15); }
.service-card__img { transition: transform .6s cubic-bezier(.16,1,.3,1); }
.service-card:hover .service-card__img { transform: scale(1.05); }

.benefit-card { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease; }
.benefit-card:hover .benefit-card__icon { transform: scale(1.1) rotate(5deg); }
.benefit-card__icon { transition: transform .4s cubic-bezier(.16,1,.3,1); }

/* Process step hover */
.process-step__number { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease; }
.process-step:hover .process-step__number { transform: scale(1.1); box-shadow: 0 12px 40px rgba(201,168,76,.4); }

/* Smooth parallax-like section dividers */
.section { position: relative; }
.section--gray::before {
  content: ''; position: absolute; top: -40px; left: 0; right: 0; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gray-50));
  pointer-events: none;
}

/* CTA WhatsApp inline button */
.wa-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; background: #25d366; color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,.35);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-transform: none; font-family: var(--font-body);
  position: relative; overflow: hidden;
}
.wa-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 35px rgba(37,211,102,.45); background: #20c05c; }
.wa-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.wa-cta:hover::before { left: 100%; transition: left .6s ease; }
.wa-cta svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }

/* Counter animation */
@keyframes countPulse { 0%{transform:scale(1)} 50%{transform:scale(1.05)} 100%{transform:scale(1)} }
.hero__stat-number { animation: countPulse 3s ease-in-out infinite; }

/* Section label line animation */
.section-label::before { transition: width .6s ease; width: 0; }
.visible .section-label::before, .section-label { }
.fade-up.visible .section-label::before { width: 30px; }
@media(max-width:1024px) {
  .services-grid, .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .section { padding: 70px 0; }
  .navbar__links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10,22,40,.98); flex-direction: column; align-items: center; justify-content: center; gap: 24px; backdrop-filter: blur(20px); }
  .navbar__links.active { display: flex; }
  .navbar__toggle { display: flex; z-index: 1001; }
  .navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .navbar__toggle.active span:nth-child(2) { opacity: 0; }
  .navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .services-grid, .benefits-grid, .includes-grid, .comparison, .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
