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

:root {
    --primary:      #1b3a5e;
    --primary-dark: #0d2137;
    --accent:       #e8701a;
    --accent-dark:  #c45c12;
    --text:         #333;
    --text-light:   #666;
    --bg:           #f5f7fa;
    --white:        #ffffff;
    --border:       #e0e0e0;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:    0 10px 40px rgba(0,0,0,0.12);
    --radius:       12px;
    --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }

/* ── TOP BAR ── */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}
.top-bar a { color: #f9a96e; text-decoration: none; font-weight: 700; }

/* ── NAV ── */
.nav {
    background: var(--white);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px;
}
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: var(--primary); }
.logo-sub  { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; }
.nav-cta   { display: flex; align-items: center; gap: 16px; }
.nav-phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--primary); text-decoration: none;
    font-weight: 700; font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}
.nav-phone i { color: var(--accent); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.3s ease;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,112,26,0.4); }
.btn-white   { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-wa      { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #20b356; transform: translateY(-2px); }
.btn-lg      { padding: 16px 36px; font-size: 16px; }

/* ── HERO ── */
.hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,33,55,0.90) 0%, rgba(27,58,94,0.80) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 860px;
    padding: 60px 24px; margin: 0 auto;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,112,26,0.18); border: 1px solid rgba(232,112,26,0.5);
    color: #f9a96e; padding: 8px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 58px); font-weight: 900;
    color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 20px; color: rgba(255,255,255,0.55); font-size: 13px; }

/* ── STATS ── */
.stats { background: var(--white); padding: 52px 24px; box-shadow: var(--shadow); }
.container { max-width: 1100px; margin: 0 auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; text-align: center;
}
.stat-item { padding: 20px 16px; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: 14px; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; background: var(--border); margin: 20px 0; }

/* ── SECTIONS ── */
.section { padding: 84px 24px; }
.section-dark { background: var(--primary-dark); }
.section-gray { background: var(--bg); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--primary); line-height: 1.2; margin-bottom: 14px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 17px; color: var(--text-light); max-width: 580px; margin-bottom: 52px; line-height: 1.7; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.68); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(232,112,26,0.10); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--accent); margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; }
.benefit-card { text-align: center; padding: 32px 24px; }
.benefit-icon {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--accent); margin: 0 auto 20px;
}
.benefit-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.benefit-card p  { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 40px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.step-time {
    display: inline-block; background: rgba(232,112,26,0.10); color: var(--accent);
    font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 50px;
    margin-bottom: 18px; font-family: 'Montserrat', sans-serif;
}
.step-number {
    width: 56px; height: 56px; background: var(--accent); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900;
    margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stars { color: #f4b400; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
    flex-shrink: 0;
}
.review-name     { font-weight: 700; font-size: 14px; color: var(--primary); }
.review-location { font-size: 13px; color: var(--text-light); }

/* ── URGENCY BANNER ── */
.urgency {
    background: linear-gradient(135deg, #e8701a 0%, #c45c12 100%);
    color: var(--white); text-align: center; padding: 64px 24px;
}
.urgency h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; }
.urgency p  { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.urgency .btn { background: var(--white); color: var(--accent); font-size: 16px; padding: 16px 40px; }
.urgency .btn:hover { background: var(--bg); transform: translateY(-2px); }

/* ── FORM ── */
.form-section { background: var(--bg); padding: 84px 24px; }
.form-container {
    max-width: 760px; margin: 0 auto;
    background: var(--white); border-radius: 20px;
    padding: 52px 48px; box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; color: var(--primary); font-family: 'Montserrat', sans-serif; }
label span { color: var(--accent); }
input, select, textarea {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif; font-size: 15px;
    color: var(--text); background: var(--bg);
    transition: border-color 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); background: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.privacy-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-light); }
.privacy-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.privacy-row a { color: var(--accent); }
.btn-submit {
    width: 100%; padding: 18px; font-size: 16px;
    background: var(--accent); color: var(--white); border: none; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease; margin-top: 28px;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,112,26,0.4); }
.form-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.trust-item i { color: var(--accent); }
.success-msg { display: none; text-align: center; padding: 48px 20px; }
.success-msg i { font-size: 64px; color: #27ae60; margin-bottom: 20px; display: block; }
.success-msg h3 { font-size: 26px; color: var(--primary); margin-bottom: 12px; }
.success-msg p { color: var(--text-light); font-size: 16px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q {
    width: 100%; background: var(--white); border: none;
    padding: 20px 24px; text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 15px; color: var(--primary);
    transition: background 0.2s; gap: 16px;
}
.faq-q:hover { background: var(--bg); }
.faq-q.open  { background: var(--primary); color: var(--white); }
.faq-q i { font-size: 13px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 20px 24px; font-size: 15px; color: var(--text-light); line-height: 1.75; background: var(--bg); }

/* ── MAP + CONTACTS ── */
.map-wrapper { display: grid; grid-template-columns: 1fr 1fr; }
.map-info { background: var(--primary); padding: 64px 52px; color: var(--white); }
.map-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.c-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.10); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--accent); flex-shrink: 0;
}
.c-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.c-value { font-size: 16px; color: var(--white); font-weight: 500; }
.c-value a { color: var(--white); text-decoration: none; }
.c-value a:hover { color: var(--accent); }
.map-embed iframe { width: 100%; height: 100%; border: none; min-height: 480px; display: block; }

/* ── FOOTER ── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.55); padding: 36px 24px; text-align: center; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--white); margin-bottom: 6px; }
.footer-sub { font-size: 14px; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; opacity: 0.45; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 28px; text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5); z-index: 999;
    transition: all 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.65); }

/* ── MOBILE STICKY BAR ── */
.mob-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--primary-dark); padding: 12px 16px;
    z-index: 200; gap: 10px;
}
.mob-bar a {
    flex: 1; text-align: center; padding: 12px 8px;
    border-radius: 10px; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 13px; text-decoration: none;
}
.mb-phone  { background: var(--white); color: var(--primary); }
.mb-wa     { background: #25D366; color: var(--white); }
.mb-quote  { background: var(--accent); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .map-wrapper { grid-template-columns: 1fr; }
    .map-info    { padding: 48px 28px; }
    .stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .stat-divider:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
    .nav-cta .btn  { display: none; }
    .form-container { padding: 32px 20px; }
    .form-grid     { grid-template-columns: 1fr; }
    .mob-bar       { display: flex; }
    body           { padding-bottom: 76px; }
    .wa-float      { bottom: 88px; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
