/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #FAFAF8; color: #0D1B2A; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }
.cyan { color: #00C2FF; }
.logo-cyan { color: #00C2FF; }

/* ── Containers ── */
.topbar-inner, .nav-inner, .hero-inner, .stats-inner,
.section-inner, .urgency-inner, .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Top Bar ── */
.topbar { background: #0D1B2A; padding: 8px 0; font-size: 12px; color: rgba(255,255,255,0.7); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-phone { color: #00C2FF; font-weight: 700; }
.dot-green { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #10B981; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hide-sm { display: none; }
@media(min-width:640px){ .hide-sm { display: inline; } }

/* ── Navbar ── */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid #E2E8F0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; border-radius: 8px; background: #0D1B2A; display: flex; align-items: center; justify-content: center; color: #00C2FF; font-family: 'Syne',sans-serif; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.logo-text { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 18px; color: #0D1B2A; white-space: nowrap; }
.nav-links { display: none; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: #4A5568; transition: color .2s; }
.nav-links a:hover { color: #00C2FF; }
.nav-ctas { display: flex; gap: 10px; }
.hamburger { display: flex; background: none; border: none; font-size: 22px; cursor: pointer; color: #0D1B2A; padding: 4px; }
@media(min-width:768px){
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ── Mobile Menu ── */
.mobile-menu { display: none; flex-direction: column; gap: 4px; background: white; padding: 16px 24px 24px; border-bottom: 1px solid #E2E8F0; position: sticky; top: 68px; z-index: 99; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-weight: 600; font-size: 15px; color: #0D1B2A; border-bottom: 1px solid #F0F0F0; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 22px; border-radius: 10px; font-weight: 700; font-size: 14px; cursor: pointer; border: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.btn-primary { background: #00C2FF; color: white; border-color: #00C2FF; }
.btn-primary:hover { background: #0099CC; border-color: #0099CC; }
.btn-outline { background: transparent; color: #0D1B2A; border-color: #0D1B2A; }
.btn-outline:hover { background: #0D1B2A; color: white; }
.btn-outline-white { background: transparent; color: white; border-color: white; }
.btn-outline-white:hover { background: white; color: #0D1B2A; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; padding: 16px; font-size: 16px; border-radius: 12px; }
.btn-amber { background: #F59E0B; color: white; border-color: #F59E0B; }
.btn-amber:hover { background: #D97706; border-color: #D97706; }
.btn-cyan { background: #00C2FF; color: white; border-color: #00C2FF; }
.btn-cyan:hover { background: #0099CC; border-color: #0099CC; }
.btn-green { background: #10B981; color: white; border-color: #10B981; }
.btn-green:hover { background: #059669; border-color: #059669; }
.btn-purple { background: #8B5CF6; color: white; border-color: #8B5CF6; }
.btn-purple:hover { background: #7C3AED; border-color: #7C3AED; }
.btn-white { background: white; color: #0D1B2A; border-color: white; }
.btn-white:hover { background: #f0f0f0; }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }

/* ── Hero ── */
.hero { background: #0D1B2A; padding: 60px 0 80px; }
.hero-inner { display: flex; flex-direction: column; gap: 48px; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,194,255,0.1); border: 1px solid rgba(0,194,255,0.3); color: #00C2FF; font-size: 11px; font-weight: 700; letter-spacing: .1em; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.hero-title { font-size: clamp(36px, 6vw, 68px); color: white; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-badges span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero-right { width: 100%; }
.quote-card { background: white; border-radius: 20px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.quote-card-tag { display: inline-block; background: #FEF3C7; color: #92400E; font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.quote-card-title { font-size: 26px; color: #0D1B2A; margin-bottom: 6px; }
.quote-card-sub { font-size: 13px; color: #4A5568; margin-bottom: 20px; }
@media(min-width:900px){
  .hero-inner { flex-direction: row; align-items: center; }
  .hero-left { flex: 1; }
  .hero-right { flex: 0 0 480px; }
}

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:500px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; color: #0D1B2A; letter-spacing: .08em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E2E8F0; border-radius: 10px;
  font-size: 14px; color: #0D1B2A; background: white; font-family: 'DM Sans',sans-serif;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #00C2FF; box-shadow: 0 0 0 3px rgba(0,194,255,0.12);
}
.form-group textarea { resize: none; }
.form-note { text-align: center; font-size: 12px; color: #A0AEC0; margin-top: 10px; }
.form-success { text-align: center; padding: 32px 16px; }
.success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 22px; color: #0D1B2A; margin-bottom: 8px; }
.form-success p { color: #4A5568; font-size: 14px; }
.form-success a { color: #00C2FF; font-weight: 700; }

/* ── Stats Bar ── */
.stats-bar { background: white; border-bottom: 1px solid #E2E8F0; padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
@media(min-width:640px){ .stats-inner { grid-template-columns: repeat(4,1fr); } }
.stat-num { font-family: 'Syne',sans-serif; font-size: 36px; font-weight: 800; color: #0D1B2A; }
.stat-label { font-size: 13px; color: #4A5568; margin-top: 4px; }

/* ── Section Shared ── */
.section-inner { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: #00C2FF; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: #0D1B2A; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: #4A5568; max-width: 600px; margin-bottom: 48px; }

/* ── Services ── */
.services-section { background: #F8F9FC; }
.services-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tab-btn { padding: 10px 20px; border-radius: 100px; border: 2px solid #E2E8F0; background: white; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; color: #4A5568; }
.tab-btn:hover, .tab-btn.active { background: #0D1B2A; color: white; border-color: #0D1B2A; }
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-panel-inner { display: flex; flex-direction: column; gap: 40px; background: white; border-radius: 20px; padding: 40px; border: 1px solid #E2E8F0; }
@media(min-width:768px){ .service-panel-inner { flex-direction: row; align-items: center; } }
.service-text { flex: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.service-text h3 { font-size: 28px; color: #0D1B2A; margin-bottom: 6px; }
.service-tagline { font-size: 13px; font-weight: 600; color: #4A5568; margin-bottom: 14px; }
.service-text p { color: #4A5568; margin-bottom: 20px; line-height: 1.7; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.feature-list li { font-size: 14px; font-weight: 500; color: #0D1B2A; }
.service-img-wrap { flex: 0 0 340px; border-radius: 16px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 280px; object-fit: cover; }

/* ── How It Works ── */
.how-section { background: white; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:640px){ .steps-grid { grid-template-columns: repeat(3,1fr); } }
.step-card { background: #F8F9FC; border-radius: 16px; padding: 32px; border: 1px solid #E2E8F0; }
.step-num { font-family: 'Syne',sans-serif; font-size: 48px; font-weight: 800; color: #00C2FF; opacity: 0.4; margin-bottom: 12px; }
.step-card h3 { font-size: 20px; color: #0D1B2A; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #4A5568; line-height: 1.7; }

/* ── Reviews ── */
.reviews-section { background: #F8F9FC; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px){ .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .reviews-grid { grid-template-columns: repeat(4,1fr); } }
.review-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid #E2E8F0; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: #4A5568; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { font-size: 13px; font-weight: 700; color: #0D1B2A; }

/* ── Urgency Banner ── */
.urgency-banner { background: linear-gradient(135deg, #0D1B2A 0%, #1a2f45 100%); padding: 28px 0; }
.urgency-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media(min-width:640px){ .urgency-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.urgency-text { color: white; }
.urgency-text strong { font-size: 18px; display: block; margin-bottom: 4px; }
.urgency-text span { font-size: 14px; color: rgba(255,255,255,0.7); }
.urgency-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-section { background: white; }
.faq-inner { display: flex; flex-direction: column; gap: 48px; }
@media(min-width:768px){ .faq-inner { flex-direction: row; gap: 64px; } }
.faq-list { flex: 1; }
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-size: 15px; font-weight: 600; color: #0D1B2A; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'DM Sans',sans-serif; }
.faq-q:hover { color: #00C2FF; }
.faq-arrow { font-size: 12px; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: 14px; color: #4A5568; line-height: 1.7; }
.faq-a.open { display: block; }

/* ── Contact ── */
.contact-section { background: #F8F9FC; }
.contact-inner { display: flex; flex-direction: column; gap: 48px; }
@media(min-width:900px){ .contact-inner { flex-direction: row; gap: 64px; align-items: flex-start; } }
.contact-left { flex: 1; }
.contact-left p { color: #4A5568; margin-bottom: 32px; font-size: 16px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,194,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-label { font-size: 12px; font-weight: 700; color: #4A5568; text-transform: uppercase; letter-spacing: .06em; }
.contact-item-value { font-size: 16px; font-weight: 700; color: #0D1B2A; }
.business-hours { background: white; border-radius: 14px; padding: 20px; border: 1px solid #E2E8F0; }
.hours-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 15px; font-weight: 700; color: #0D1B2A; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: #4A5568; padding: 6px 0; border-bottom: 1px solid #F0F0F0; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 700; color: #0D1B2A; }
.contact-right { flex: 0 0 480px; }
.quote-card-flat { background: white; border-radius: 20px; padding: 36px; border: 1px solid #E2E8F0; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.quote-card-flat h3 { font-size: 24px; color: #0D1B2A; margin-bottom: 6px; }
.quote-card-flat > p { font-size: 14px; color: #4A5568; margin-bottom: 24px; }

/* ── Footer ── */
.footer { background: #0D1B2A; color: white; padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:640px){ .footer-inner { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: #00C2FF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.35); }
@media(min-width:640px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ── Sticky Mobile Bar ── */
.sticky-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; }
@media(min-width:768px){ .sticky-bar { display: none; } }
.sticky-btn { flex: 1; padding: 16px; text-align: center; font-weight: 700; font-size: 15px; }
.sticky-call { background: #0D1B2A; color: white; }
.sticky-quote { background: #00C2FF; color: white; }

/* ── Navbar scroll effect ── */
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
