/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #1C1C1C;
    --navy-light: #2A2A2A;
    --navy-mid: #333333;
    --accent: #a10203;
    --accent-hover: #7a0102;
    --accent-light: #fce4e4;
    --teal: #a10203;
    --teal-light: #fce4e4;
    --blue: #555555;
    --blue-light: #F5F5F5;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-400: #9E9E9E;
    --gray-600: #555555;
    --gray-800: #1C1C1C;
    --gray-900: #1C1C1C;
    --font: 'Montserrat', -apple-system, sans-serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ========== NAV ========== */
nav.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}
nav.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
    font-family: var(--font); font-weight: 800; font-size: 22px;
    color: var(--navy); display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo span { color: var(--accent); }
.nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 24px; white-space: nowrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links ul.nav { list-style: none; display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; }
.nav-links ul.nav li { margin: 0; padding: 0; }
.nav-links ul.nav li a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
.nav-links ul.nav li a:hover { color: var(--navy); }
.nav-login {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 500; color: var(--navy) !important;
    border: 1px solid var(--gray-200); padding: 8px 18px;
    border-radius: 10px; transition: all 0.2s;
}
.nav-login:hover { border-color: var(--accent); color: var(--accent) !important; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: white !important; padding: 10px 24px;
    border-radius: 10px; font-size: 14px; font-weight: 600;
    font-family: var(--font); transition: all 0.2s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(161,2,3,0.3); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--gray-800); margin: 5px 0; transition: 0.3s; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: white; padding: 16px 32px;
    border-radius: 12px; font-size: 16px; font-weight: 700;
    font-family: var(--font); transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(161,2,3,0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--navy); padding: 16px 32px;
    border-radius: 12px; font-size: 16px; font-weight: 600;
    font-family: var(--font); border: 2px solid var(--gray-200); transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--gray-50); }

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
    font-family: var(--font);
}
.section-title { font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--gray-600); max-width: 560px; margin-bottom: 60px; }

/* ========== HERO ========== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(170deg, var(--gray-50) 0%, var(--white) 40%, var(--accent-light) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(161,2,3,0.06) 0%, transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light); color: #7a0102; padding: 6px 16px;
    border-radius: 100px; font-size: 13px; font-weight: 600;
    margin-bottom: 24px; font-family: var(--font);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero h1 { font-size: 52px; font-weight: 800; color: var(--navy); margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--gray-600); margin-bottom: 36px; max-width: 500px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 12px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
    width: 36px; height: 36px; border-radius: 50%; border: 3px solid white;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: white; margin-left: -10px;
    font-family: var(--font);
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 14px; color: var(--gray-600); }
.hero-trust-text strong { color: var(--navy); }

/* Hero Visual (Mockup) */
.hero-visual {
    position: relative; background: var(--gray-50); border-radius: 20px;
    padding: 32px; min-height: 420px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08); border: 1px solid var(--gray-200);
    animation: float 5s ease-in-out infinite;
}
.hero-visual.animate {
    animation: fadeUp 0.6s ease forwards, float 5s ease-in-out 0.6s infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.hero-visual::after { display: none; }
.mock-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); }
.mock-bar span:first-child { background: #FF5F57; }
.mock-bar span:nth-child(2) { background: #FFBD2E; }
.mock-bar span:nth-child(3) { background: #28CA41; }
.mock-cotizador { position: relative; z-index: 2; }
.mock-label { font-size: 11px; color: var(--gray-400); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font); }
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.mock-input {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 14px 16px; color: var(--navy); font-size: 14px;
}
.mock-input .label { font-size: 11px; color: var(--gray-400); margin-bottom: 4px; }
.mock-input .value { font-weight: 600; font-family: var(--font); }
.mock-results { margin-top: 20px; }
.mock-result {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; padding: 14px 18px; margin-bottom: 8px;
    transition: all 0.2s; cursor: pointer;
}
.mock-result:hover { border-color: var(--gray-400); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.mock-result.best { border-color: var(--accent); background: var(--accent-light); }
.mock-result-left { display: flex; align-items: center; gap: 12px; }
.mock-result-logo {
    width: 40px; height: 40px; border-radius: 8px; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; color: var(--navy); font-family: var(--font);
}
.mock-result-info { color: var(--navy); }
.mock-result-info .name { font-weight: 600; font-size: 14px; font-family: var(--font); }
.mock-result-info .time { font-size: 12px; color: var(--gray-400); }
.mock-result-price { text-align: right; }
.mock-result-price .price { font-size: 18px; font-weight: 800; color: var(--navy); font-family: var(--font); }
.mock-result-price .tag {
    font-size: 10px; background: var(--accent-light); color: var(--accent);
    padding: 2px 8px; border-radius: 100px; font-weight: 600;
}
.mock-result.best .mock-result-price .price { color: var(--accent); }

/* ========== LOGOS ========== */
.logos {
    padding: 60px 0; border-bottom: 1px solid var(--gray-100);
}
.logos-label { text-align: center; font-size: 13px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px; font-family: var(--font); }
.logos-grid {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.logos-grid span {
    font-family: var(--font); font-weight: 800; font-size: 18px;
    color: var(--gray-400); letter-spacing: -0.5px; transition: color 0.3s;
}
.logos-grid span:hover { color: var(--navy); transform: scale(1.1); }

/* ========== STEPS ========== */
.steps { padding: 100px 0 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
    padding: 36px 32px; border-radius: 16px; border: 1px solid var(--gray-200);
    background: var(--white); transition: all 0.3s; position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.step-num {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; font-family: var(--font);
    margin-bottom: 24px;
}
.step-card:nth-child(1) .step-num { background: #FFEBEE; color: #C41A1A; }
.step-card:nth-child(2) .step-num { background: #E3F2FD; color: #1A5BC4; }
.step-card:nth-child(3) .step-num { background: #F3E5F5; color: #4D148C; }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.step-connector {
    position: absolute; top: 50%; right: -32px; width: 32px; height: 2px;
    background: var(--gray-200);
}
.step-connector::after {
    content: ''; position: absolute; right: 0; top: -4px;
    border: 5px solid transparent; border-left-color: var(--gray-200);
}

/* ========== DASHBOARD PREVIEW ========== */
.dashboard-preview { padding: 100px 0; }
.dashboard-image {
    margin-top: 20px; border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 1px solid var(--gray-200);
    transform: perspective(1000px) rotateX(5deg) scale(0.95);
    opacity: 0; transition: all 0.8s ease-out;
}
.dashboard-image.animate {
    transform: perspective(1000px) rotateX(0) scale(1);
    opacity: 1;
}
.dashboard-image:hover { transform: perspective(1000px) translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.15); }
.dashboard-image img { width: 100%; display: block; }

/* ========== BENEFITS ========== */
.benefits { padding: 80px 0 30px; background: #F5F5F5; position: relative; overflow: hidden; }
.benefits::before { display: none; }
.benefits .section-title { color: var(--navy); }
.benefits .section-sub { color: var(--gray-600); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
    display: flex; gap: 16px; padding: 28px; border-radius: 14px;
    background: var(--white); border: 1px solid var(--gray-200);
    transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.benefit-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.benefit-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.benefit-item:nth-child(1) .benefit-icon { background: #FFF8E1; }
.benefit-item:nth-child(2) .benefit-icon { background: #FFEBEE; }
.benefit-item:nth-child(3) .benefit-icon { background: #E3F2FD; }
.benefit-item:nth-child(4) .benefit-icon { background: #F3E5F5; }
.benefit-item:nth-child(5) .benefit-icon { background: #EFEBE9; }
.benefit-item:nth-child(6) .benefit-icon { background: #FFF3E0; }
.benefit-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: var(--font); color: var(--navy); }
.benefit-text p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ========== STATS ========== */
.stats { padding: 60px 0; background: #F5F5F5; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-size: 48px; font-weight: 800; font-family: var(--font); color: var(--navy); }
.stat-num em { font-style: normal; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--gray-600); margin-top: 8px; font-weight: 500; }

/* ========== PROFILES ========== */
.profiles { padding: 100px 0; }
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.profile-card {
    border-radius: 16px; border: 1px solid var(--gray-200); padding: 36px 28px;
    transition: all 0.3s; background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.profile-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.profile-card.featured { border-color: var(--accent); background: var(--accent-light); box-shadow: 0 8px 32px rgba(161,2,3,0.12); transform: translateY(-4px); }
.profile-card .tag {
    display: inline-block; padding: 4px 12px; border-radius: 100px;
    font-size: 12px; font-weight: 600; margin-bottom: 20px; font-family: var(--font);
}
.profile-card:nth-child(1) .tag { background: #E3F2FD; color: #1A5BC4; }
.profile-card:nth-child(2) .tag { background: #FFEBEE; color: #C41A1A; }
.profile-card:nth-child(3) .tag { background: #F3E5F5; color: #4D148C; }
.profile-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.profile-card p { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }
.profile-features { list-style: none; }
.profile-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--gray-600); padding: 6px 0;
}
.profile-features li::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: #F5F5F5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white); border-radius: 16px; padding: 32px;
    border: 1px solid var(--gray-100); transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.testimonial-stars { margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-800); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 14px;
    font-weight: 700; color: white; font-family: var(--font);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: var(--font); }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* ========== FAQ ========== */
.faq { padding: 80px 0 60px; }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; cursor: pointer; font-family: var(--font);
    font-size: 16px; font-weight: 600; color: var(--navy);
    background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--accent); }
.faq-question .icon { font-size: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 0 24px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ========== BLOG PREVIEW (Home) ========== */
.blog-preview { padding: 60px 0; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ========== CTA FINAL ========== */
.final-cta {
    padding: 100px 0; background: var(--accent);
    position: relative; overflow: hidden;
}
.final-cta::before { display: none; }

/* Lead Section */
.lead-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lead-text { color: white; }
.lead-text h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 16px; }
.lead-text p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.lead-bullets { list-style: none; }
.lead-bullets li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 600; color: white;
    padding: 8px 0; font-family: var(--font);
}

/* Lead Form */
.lead-form-wrapper { position: relative; }
.lead-form {
    background: white; border-radius: 16px; padding: 36px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 12px; }
.form-field input, .form-field select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200);
    border-radius: 10px; font-size: 14px; font-family: var(--font-body);
    color: var(--navy); background: var(--white); transition: border-color 0.2s;
    -webkit-appearance: none; appearance: none;
}
.form-field input::placeholder { color: var(--gray-400); }
.form-field select { color: var(--gray-400); cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E9E9E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-field select:valid { color: var(--navy); }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(161,2,3,0.1); }
.lead-submit {
    width: 100%; justify-content: center; margin-top: 8px;
    font-size: 16px; padding: 16px 32px;
}
.lead-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
.form-error { margin-top: 12px; font-size: 13px; color: var(--accent); text-align: center; }
.form-privacy { margin-top: 16px; font-size: 12px; color: var(--gray-400); text-align: center; }
.form-privacy a { color: var(--gray-600); text-decoration: underline; }

/* Form Success */
.form-success {
    background: white; border-radius: 16px; padding: 48px 36px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15); text-align: center;
}
.form-success svg { margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 16px; color: var(--gray-600); margin-bottom: 24px; }
.form-reset-btn { display: none; margin: 0 auto; }

@media (max-width: 968px) {
    .lead-section { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer { padding: 60px 0 32px; background: #2D2D2D; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font); font-weight: 800; font-size: 20px; color: white; margin-bottom: 12px; }
.footer-brand .logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .logo span { color: var(--accent); }
.footer-slogan { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font); font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col ul.nav { list-style: none; margin: 0; padding: 0; }
.footer-col ul.nav li { margin: 0; padding: 0; }
.footer-col ul.nav li a { display: block; font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col ul.nav li a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); display: flex;
    align-items: center; justify-content: center;
    transition: background 0.2s; color: rgba(255,255,255,0.5);
}
.footer-socials a:hover { background: var(--accent); color: white; }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s;
    color: white;
}
.wa-float:hover { transform: scale(1.1); }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 99;
    width: 48px; height: 48px; border-radius: 50%;
    background: #2D2D2D; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.3s;
    opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent); }

/* ========== POST CARD ========== */
.post-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); background: var(--white); transition: all 0.3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.post-card-link { display: block; color: inherit; }
.post-card-image { aspect-ratio: 16/10; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card-image img { transform: scale(1.03); }
.post-card-content { padding: 24px; }
.post-card-tag {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px; font-family: var(--font);
}
.post-card-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.post-card-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.post-card-meta { font-size: 13px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }

/* ========== BLOG LISTING (index.hbs) ========== */
.blog-header { padding: 140px 0 60px; background: #F5F5F5; text-align: center; }
.blog-title { font-size: 44px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.blog-description { font-size: 18px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.blog-feed { padding: 60px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-pagination {
    display: flex; justify-content: center; align-items: center; gap: 24px;
    margin-top: 60px; font-family: var(--font);
}
.pagination-link {
    font-size: 14px; font-weight: 600; color: var(--accent);
    transition: color 0.2s;
}
.pagination-link:hover { color: var(--accent-hover); }
.pagination-info { font-size: 14px; color: var(--gray-400); }

/* ========== POST ARTICLE (post.hbs) ========== */
.post-header { padding: 140px 0 40px; background: #F5F5F5; }
.post-header-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.post-tag {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px; font-family: var(--font); transition: color 0.2s;
}
.post-tag:hover { color: var(--accent-hover); }
.post-title { font-size: 44px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.post-excerpt { font-size: 20px; color: var(--gray-600); line-height: 1.6; margin-bottom: 32px; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.post-author { display: flex; align-items: center; gap: 8px; }
.post-author-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); }
.post-author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.post-author-avatar-placeholder {
    width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 14px; font-weight: 700; font-family: var(--font);
}
.post-meta-info { font-size: 14px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }

.post-feature-image { padding: 40px 0; }
.post-feature-image .container { max-width: 900px; }
.post-feature-image img { border-radius: 16px; width: 100%; }
.post-feature-image figcaption { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 12px; }

/* Post Content Prose */
.post-content { padding: 0 0 60px; }
.post-content-inner {
    max-width: 900px; margin: 0 auto;
    font-size: 17px; line-height: 1.8; color: var(--gray-800);
}
.post-content-inner h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 48px 0 16px; }
.post-content-inner h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.post-content-inner h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 32px 0 8px; }
.post-content-inner p { margin-bottom: 24px; }
.post-content-inner a { color: var(--accent); font-weight: 500; border-bottom: 1px solid rgba(161,2,3,0.3); transition: border-color 0.2s; }
.post-content-inner a:hover { border-color: var(--accent); }
.post-content-inner blockquote {
    border-left: 4px solid var(--accent); padding: 16px 24px; margin: 32px 0;
    background: var(--gray-50); border-radius: 0 8px 8px 0;
    font-style: italic; color: var(--gray-600);
}
.post-content-inner blockquote p { margin-bottom: 0; }
.post-content-inner ul, .post-content-inner ol { margin: 0 0 24px 24px; }
.post-content-inner li { margin-bottom: 8px; }
.post-content-inner img { border-radius: 12px; margin: 32px 0; }
.post-content-inner figure { margin: 32px 0; }
.post-content-inner figcaption { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 8px; }
.post-content-inner pre {
    background: var(--navy); color: rgba(255,255,255,0.85); padding: 24px;
    border-radius: 12px; overflow-x: auto; margin: 32px 0;
    font-size: 14px; line-height: 1.6;
}
.post-content-inner code {
    background: var(--gray-100); padding: 2px 6px; border-radius: 4px;
    font-size: 0.9em; color: var(--accent);
}
.post-content-inner pre code { background: none; padding: 0; color: inherit; }
.post-content-inner hr { border: none; border-top: 1px solid var(--gray-200); margin: 48px 0; }
.post-content-inner table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.post-content-inner th, .post-content-inner td { padding: 12px 16px; border: 1px solid var(--gray-200); text-align: left; font-size: 15px; }
.post-content-inner th { background: var(--gray-50); font-weight: 600; color: var(--navy); }

/* Post CTA Box */
.post-cta-box { padding: 0 0 80px; }
.cta-box {
    max-width: 760px; margin: 0 auto; text-align: center;
    background: var(--accent-light); border: 2px solid var(--accent);
    border-radius: 16px; padding: 48px 32px;
}
.cta-box h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cta-box p { font-size: 16px; color: var(--gray-600); margin-bottom: 24px; }

/* Related Posts */
.related-posts { padding: 60px 0 100px; background: #F5F5F5; }
.related-posts .section-title { text-align: center; margin-bottom: 40px; }

/* ========== PAGE (page.hbs) ========== */
.page-header { padding: 140px 0 40px; background: #F5F5F5; text-align: center; }
.page-title { font-size: 44px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.page-excerpt { font-size: 18px; color: var(--gray-600); max-width: 600px; margin: 0 auto 32px; }
.page-feature-image { margin-top: 32px; }
.page-feature-image img { border-radius: 16px; width: 100%; }
.page-content { padding: 60px 0 100px; }

/* ========== MOBILE MENU ========== */
.nav-links.show {
    display: flex !important; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    gap: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .hero-visual { display: none; }
    .steps-grid, .benefits-grid, .profiles-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .step-connector { display: none; }
    .section-title { font-size: 32px; }
    .final-cta h2 { font-size: 32px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .post-title { font-size: 32px; }
    .blog-title { font-size: 32px; }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-num { font-size: 36px; }
    .hero { padding: 120px 0 60px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .post-title { font-size: 28px; }
    .post-content-inner { font-size: 16px; }
}

/* ========== GHOST CARD STYLES (kg-*) ========== */
.kg-gallery-container { display: flex; flex-direction: column; max-width: 100%; }
.kg-gallery-row { display: flex; gap: 8px; margin-bottom: 8px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.kg-bookmark-card { width: 100%; margin: 32px 0; }
.kg-bookmark-container {
    display: flex; border: 1px solid var(--gray-200); border-radius: 12px;
    overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s;
}
.kg-bookmark-container:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.kg-bookmark-content { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.kg-bookmark-title { font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.kg-bookmark-description { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); }
.kg-bookmark-icon { width: 20px; height: 20px; border-radius: 4px; }
.kg-bookmark-author { white-space: nowrap; }
.kg-bookmark-publisher { white-space: nowrap; }
.kg-bookmark-thumbnail { flex-shrink: 0; width: 200px; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 600px) {
    .kg-bookmark-container { flex-direction: column; }
    .kg-bookmark-thumbnail { width: 100%; height: 200px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
