/* ===== ORANGE CELL - CSS COMPLETO ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #ffffff; background: #1A1A2E; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ===== VARIABLES ===== */
:root {
  --orange-brand: #FF6B00;
  --orange-dark: #E05500;
  --orange-light: #FFF3E0;
  --dark-primary: #1A1A2E;
  --dark-secondary: #16213E;
  --dark-card: #2D2D44;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --star: #FFB800;
  --white: #ffffff;
  --font-display: 'Montserrat', sans-serif;
}

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: var(--font-display); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 700px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s ease; background: transparent; }
.navbar.scrolled { background: rgba(26,26,46,0.98) !important; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar-logo img { height: 48px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 28px; }
.navbar-menu a.nav-link { font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 600; letter-spacing: 0.025em; transition: color 0.3s; }
.navbar-menu a.nav-link:hover { color: var(--orange-brand); }
.navbar-cta { background: var(--orange-brand); color: var(--white); padding: 12px 24px; border-radius: 12px; font-size: 1rem; font-weight: 700; transition: all 0.3s; display: inline-block; }
.navbar-cta:hover { background: var(--orange-dark); box-shadow: 0 4px 15px rgba(255,107,0,0.3); }
.mobile-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }
.mobile-menu { display: none; background: rgba(26,26,46,0.98); border-top: 1px solid rgba(255,255,255,0.1); padding: 0 20px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: rgba(255,255,255,0.8); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--orange-brand); }
.mobile-menu .mobile-cta { margin-top: 16px; display: block; text-align: center; background: var(--orange-brand); color: var(--white); padding: 14px; border-radius: 12px; font-weight: 700; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #1A1A2E 100%); }
.hero-glow-1 { position: absolute; top: 80px; right: 40px; width: 288px; height: 288px; background: rgba(255,107,0,0.3); border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.hero-glow-2 { position: absolute; bottom: 80px; left: 40px; width: 384px; height: 384px; background: rgba(255,107,0,0.2); border-radius: 50%; filter: blur(120px); opacity: 0.2; }
.hero-content { position: relative; z-index: 10; padding: 128px 0 80px; }
.hero-badge { display: inline-block; background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3); border-radius: 9999px; padding: 6px 16px; margin-bottom: 24px; }
.hero-badge span { color: var(--orange-brand); font-size: 0.875rem; font-weight: 600; }
.hero h1 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--orange-brand); }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 640px; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-features span { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--whatsapp); color: var(--white); padding: 16px 32px; border-radius: 12px; font-size: 1.125rem; font-weight: 700; transition: all 0.3s; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 4px 20px rgba(37,211,102,0.5); transform: scale(1.02); }
.btn-whatsapp svg { width: 24px; height: 24px; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid rgba(255,255,255,0.3); color: var(--white); padding: 16px 32px; border-radius: 12px; font-size: 1.125rem; font-weight: 600; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--orange-brand); background: rgba(255,255,255,0.05); }
.btn-white { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--white); color: var(--orange-brand); padding: 20px 40px; border-radius: 12px; font-size: 1.25rem; font-weight: 700; transition: all 0.3s; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-white:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.3); transform: scale(1.02); }
.btn-white svg { width: 28px; height: 28px; }

/* ===== WHATSAPP SVG ICON ===== */
.wa-icon { fill: currentColor; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-lg { padding: 112px 0; }
.bg-primary { background: var(--dark-primary); }
.bg-secondary { background: var(--dark-secondary); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-header h2 .highlight { color: var(--orange-brand); }
.section-header p { color: rgba(255,255,255,0.6); font-size: 1.125rem; max-width: 560px; margin: 0 auto; }

/* ===== BRANDS MARQUEE ===== */
.brands-bar { background: var(--dark-secondary); padding: 24px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.brands-bar p { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 16px; }
.marquee-wrapper { overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { display: inline-block; padding: 0 32px; font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,0.25); white-space: nowrap; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; background: var(--dark-secondary); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.service-card:hover { box-shadow: 0 8px 25px rgba(255,107,0,0.1); transform: translateY(-4px); border-color: rgba(255,107,0,0.3); }
.service-card.featured { border-color: rgba(255,107,0,0.4); box-shadow: 0 0 0 1px rgba(255,107,0,0.2); }
.service-badge { position: absolute; top: -12px; right: 20px; background: var(--orange-brand); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 9999px; }
.service-icon { font-size: 2.25rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; transition: color 0.3s; }
.service-card:hover h3 { color: var(--orange-brand); }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; }
.service-time { font-size: 0.75rem; color: rgba(255,107,0,0.8); font-weight: 500; }
.service-cta { font-size: 0.875rem; font-weight: 600; color: var(--orange-brand); transition: color 0.3s; }
.service-cta:hover { color: var(--orange-dark); }

/* ===== DIFFERENTIALS ===== */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: var(--dark-primary); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.diff-card:hover { border-color: rgba(255,107,0,0.3); box-shadow: 0 4px 15px rgba(255,107,0,0.1); }
.diff-card .icon { font-size: 1.75rem; margin-bottom: 12px; }
.diff-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.diff-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.step { text-align: center; }
.step-icon { width: 64px; height: 64px; background: rgba(255,107,0,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 1px solid rgba(255,107,0,0.3); font-size: 1.75rem; }
.step-num { color: var(--orange-brand); font-weight: 700; font-size: 0.875rem; margin-bottom: 8px; }
.step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark-primary); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(255,107,0,0.2); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,107,0,0.2); display: flex; align-items: center; justify-content: center; color: var(--orange-brand); font-weight: 700; font-size: 1.125rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-stars { font-size: 0.75rem; }
.testimonial-text { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 12px; }
.testimonial-service { font-size: 0.75rem; color: rgba(255,107,0,0.6); font-weight: 500; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--dark-secondary); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px; text-align: left; font-weight: 600; font-size: 0.9375rem; transition: background 0.2s; }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange-brand); transition: transform 0.3s; }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 20px; }
.faq-answer.open { max-height: 500px; padding: 0 20px 20px; }
.faq-answer p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ===== LOCATION ===== */
.location-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; }
.map-container { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--dark-primary); aspect-ratio: 16/9; }
.map-container iframe { width: 100%; height: 100%; border: 0; min-height: 300px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card { background: var(--dark-primary); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,255,255,0.05); }
.contact-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 16px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item .icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-item .label { font-size: 0.875rem; font-weight: 600; }
.contact-item .value { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.contact-item a.value { color: var(--orange-brand); }
.contact-item a.value:hover { text-decoration: underline; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #FF6B00 0%, #FF8C33 100%); text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-primary); padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; }
.footer h4 { font-weight: 700; font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange-brand); }
.footer-contact li { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-dev-link { color: rgba(255,255,255,0.3); font-size: 0.75rem; transition: color 0.3s; }
.footer-dev-link:hover { color: var(--orange-brand); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa { position: fixed; bottom: 20px; right: 20px; z-index: 9999; width: 64px; height: 64px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; animation: pulse-whatsapp 2s ease-in-out infinite; }
.floating-wa:hover { background: var(--whatsapp-dark); }
.floating-wa svg { width: 32px; height: 32px; fill: var(--white); }
.floating-wa .tooltip { position: absolute; top: -40px; right: 0; background: var(--dark-primary); color: var(--white); font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; opacity: 0; transition: opacity 0.3s; white-space: nowrap; box-shadow: 0 4px 10px rgba(0,0,0,0.3); pointer-events: none; }
.floating-wa:hover .tooltip { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse-whatsapp { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes countdown-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ===== LANDING PAGE SPECIFIC ===== */
.landing-header { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.landing-header-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.landing-header img { height: 40px; width: auto; }
.landing-header-info { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.landing-header-info .sep { color: rgba(255,255,255,0.2); }

.landing-hero { padding: 48px 0 80px; background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #1A1A2E 100%); text-align: center; }
.landing-hero .urgency-badge { display: inline-block; background: rgba(220,38,38,0.2); border: 1px solid rgba(239,68,68,0.4); border-radius: 9999px; padding: 6px 16px; margin-bottom: 24px; animation: countdown-pulse 1s ease-in-out infinite; }
.landing-hero .urgency-badge span { color: #f87171; font-size: 0.875rem; font-weight: 700; }
.landing-hero h1 { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.landing-hero h1 .highlight { color: var(--orange-brand); }
.landing-hero .sub { color: rgba(255,255,255,0.6); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 32px; }
.landing-big-cta { display: block; width: 100%; max-width: 500px; margin: 0 auto 16px; background: var(--whatsapp); color: var(--white); padding: 20px 32px; border-radius: 12px; font-size: 1.25rem; font-weight: 700; text-align: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(37,211,102,0.3); animation: countdown-pulse 1s ease-in-out infinite; }
.landing-big-cta:hover { background: var(--whatsapp-dark); box-shadow: 0 4px 20px rgba(37,211,102,0.5); transform: scale(1.02); }
.landing-big-cta .inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.landing-big-cta svg { width: 28px; height: 28px; }
.landing-note { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-bottom: 40px; }
.countdown-label { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 12px; }

/* Countdown */
.countdown { display: flex; gap: 12px; justify-content: center; align-items: flex-start; }
.countdown-sep { color: var(--orange-brand); font-size: 1.75rem; font-weight: 700; margin-top: 8px; }
.countdown-box { display: flex; flex-direction: column; align-items: center; }
.countdown-box .num { background: var(--dark-primary); border: 1px solid rgba(255,107,0,0.3); border-radius: 12px; padding: 8px 16px; min-width: 60px; text-align: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--orange-brand); }
.countdown-box .lbl { color: rgba(255,255,255,0.5); font-size: 0.625rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Social proof */
.social-proof { padding: 24px 0; background: var(--dark-secondary); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.social-proof-grid { max-width: 700px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.social-proof-item .num { color: var(--orange-brand); font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.social-proof-item .txt { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* Landing services */
.landing-services { display: flex; flex-direction: column; gap: 12px; }
.landing-service { display: flex; align-items: center; gap: 16px; background: var(--dark-secondary); border-radius: 12px; padding: 16px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.landing-service:hover { border-color: rgba(255,107,0,0.3); }
.landing-service .s-icon { font-size: 1.5rem; flex-shrink: 0; }
.landing-service .s-info { flex: 1; }
.landing-service .s-name { font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.landing-service .s-tag { font-size: 0.625rem; font-weight: 700; background: rgba(255,107,0,0.2); color: var(--orange-brand); padding: 2px 8px; border-radius: 9999px; }
.landing-service .s-detail { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.landing-service .arrow { width: 20px; height: 20px; color: rgba(255,107,0,0.5); flex-shrink: 0; }

/* Landing why us */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.why-item { display: flex; align-items: center; gap: 12px; background: var(--dark-primary); border-radius: 12px; padding: 16px; border: 1px solid rgba(255,255,255,0.05); }
.why-item .icon { font-size: 1.25rem; }
.why-item .text { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* Landing testimonials */
.landing-testimonials { display: flex; flex-direction: column; gap: 16px; }
.landing-testimonial { background: var(--dark-secondary); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.landing-testimonial .t-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.landing-testimonial .t-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,107,0,0.2); display: flex; align-items: center; justify-content: center; color: var(--orange-brand); font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.landing-testimonial .t-name { font-weight: 600; font-size: 0.875rem; }
.landing-testimonial .t-stars { font-size: 0.75rem; }
.landing-testimonial .t-verified { margin-left: auto; color: #4ade80; font-size: 0.625rem; font-weight: 500; }
.landing-testimonial .t-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* Landing footer */
.landing-footer { padding: 24px 0; background: var(--dark-primary); border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.landing-footer p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* Landing CTA final */
.landing-cta-final { padding: 64px 0 80px; background: linear-gradient(135deg, #FF6B00 0%, #FF8C33 100%); text-align: center; }
.landing-cta-final h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.landing-cta-final p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; }
.landing-cta-final .big-btn { display: block; width: 100%; max-width: 500px; margin: 0 auto; background: var(--white); color: var(--orange-brand); padding: 20px; border-radius: 12px; font-size: 1.25rem; font-weight: 700; transition: all 0.3s; box-shadow: 0 8px 25px rgba(0,0,0,0.2); animation: countdown-pulse 1s ease-in-out infinite; }
.landing-cta-final .big-btn:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.3); transform: scale(1.02); }
.landing-cta-final .big-btn .inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.landing-cta-final .big-btn svg { width: 28px; height: 28px; }
.landing-cta-final .limited { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .diff-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .hero-content { padding: 100px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-features { gap: 16px; }
  .section-header h2 { font-size: 2rem; }
  .services-grid, .diff-grid, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-section h2 { font-size: 2rem; }
  .landing-hero h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .social-proof-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .social-proof-item .num { font-size: 1.25rem; }
  .countdown-box .num { font-size: 1.5rem; padding: 6px 12px; min-width: 50px; }
}
