* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy: #2c3e50;
    --navy-mid: #3b566e;
    --cyan: #00ccff;
    --cyan-dim: #00b7eb;
    --cyan-pale: #e0f8ff;
    --light: #ecf0f1;
    --mid: #34495e;
    --white: #ffffff;
    --radius: 14px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--navy);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 48px;
}

/* ── TOOLBAR ── */
.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.97);
    /*backdrop-filter: blur(8px);*/
    z-index: 1000;
    height: 49px;
}

.toolbar-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.toolbar-container a {
    color: #d1e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.toolbar-container a:hover {
    color: var(--cyan);
    background: rgba(0, 204, 255, 0.1);
}

/* ── CONTAINER ── */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── SECTION LABEL ── */
.section-label {
    display: inline-block;
    background: rgba(0, 204, 255, 0.15);
    color: var(--cyan-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 204, 255, 0.25);
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 40%, #1a7fa8 80%, #009fc2 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--cyan);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -120px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -80px;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 10%;
    opacity: 0.05;
}

.hero-content {
    max-width: 100%;
    padding: 32px 20px;
    animation: fadeUp 0.9s ease-out both;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 204, 255, 0.18);
    border: 1px solid rgba(0, 204, 255, 0.35);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ecf0f1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero h1 .highlight {
    color: var(--cyan);
}

.hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #c8e0ec;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
    color: var(--navy);
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 204, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 204, 255, 0.5);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8e0ec;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 224, 236, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.cta-secondary:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(200, 224, 236, 0.8);
    font-weight: 400;
}

.proof-item i {
    color: var(--cyan);
    font-size: 0.85rem;
}

/* ── PROBLEM ── */
.problem-section {
    padding: 64px 20px;
    background: var(--white);
    text-align: center;
}

.problem-label {
    display: inline-block;
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.problem-section h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.problem-card {
    background: #e8f4f8;
    border: 1px solid #e8edf0;
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon i {
    color: #c0392b;
    font-size: 1rem;
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--mid);
    line-height: 1.6;
}

.problem-conclusion {
    font-size: 1rem;
    color: var(--mid);
    font-weight: 500;
    padding: 20px;
    background: var(--cyan-pale);
    border-radius: var(--radius);
    border-left: 4px solid var(--cyan);
    text-align: left;
}

/* ── VISION ── */
.vision-section {
    padding: 64px 20px;
    background: var(--light);
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vision-text {
    text-align: left;
}

.vision-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.vision-text p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
}

.vision-text strong {
    color: var(--navy);
    font-weight: 700;
}

.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    transition: background 0.2s;
}

.cta-inline:hover {
    background: var(--navy-mid);
}

.vision-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.stat-card {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid var(--cyan);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--cyan-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.stat-icon i {
    color: var(--cyan-dim);
    font-size: 1.1rem;
}

.stat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.5;
}

/* ── FOR WHOM ── */
.forwhom-section {
    padding: 64px 20px;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 50%, #1a7fa8 100%);
    text-align: center;
}

.forwhom-section h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.forwhom-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.forwhom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.forwhom-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 14px 16px;
    text-align: left;
    transition: background 0.2s;
}

.forwhom-item:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.2);
}

.forwhom-item i {
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.forwhom-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.forwhom-obs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ── HOW IT WORKS ── */
.how-section {
    padding: 64px 20px;
    background: var(--white);
    text-align: center;
}

.how-section h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 36px;
    line-height: 1.2;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background: #e8f4f8;
    border-radius: var(--radius);
    border: 1px solid #eaecef;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    opacity: 0.9;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

.step-divider {
    display: flex;
    justify-content: center;
    color: #cdd3d8;
    padding: 6px 0;
    font-size: 0.85rem;
}

/* ── POWER ── */
.power-section {
    padding: 64px 20px;
    background: var(--light);
    text-align: center;
}

.power-section h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.2;
}

.power-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.power-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    text-align: left;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}

.power-card:hover {
    border-color: var(--cyan);
}

.power-card i {
    font-size: 1.5rem;
    color: var(--cyan-dim);
    margin-bottom: 12px;
    display: block;
}

.power-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.power-card p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

/* ── FLYER (encarte) ── */
.flyer-section {
    padding: 64px 20px;
    background: var(--navy);
}

.flyer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.flyer-text {
    text-align: left;
}

.flyer-text h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.flyer-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.flyer-text strong {
    color: var(--cyan);
    font-weight: 700;
}

.flyer-visual {
    flex-shrink: 0;
}

.flyer-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(0, 204, 255, 0.35);
    border-radius: var(--radius);
    color: var(--white);
    padding: 20px;
}

.flyer-demo i {
    font-size: 2.5rem;
    color: var(--cyan);
    opacity: 0.8;
}

.flyer-demo span {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.flyer-demo small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.3;
}

/* ── SOCIAL PROOF ── */
.proof-section {
    padding: 48px 20px;
    background: var(--cyan-pale);
    text-align: center;
}

.proof-banner {
    max-width: 600px;
    margin: 0 auto;
}

.proof-banner > i {
    font-size: 2rem;
    color: var(--cyan);
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

.proof-banner blockquote {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 16px;
}

.proof-banner cite {
    font-size: 0.85rem;
    color: var(--mid);
    font-style: normal;
    font-weight: 600;
    opacity: 0.7;
}

/* ── RESIDENT ── */
.resident-section {
    padding: 64px 20px;
    background: var(--light);
}

.resident-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.resident-text h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
}

.resident-text p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.resident-text .cta-secondary {
    color: var(--navy);
    border-color: rgba(44, 62, 80, 0.3);
    font-weight: 600;
}

.resident-text .cta-secondary:hover {
    color: var(--cyan-dim);
    border-color: var(--cyan-dim);
}

.resident-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.resident-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: 0 1px 6px rgba(44, 62, 80, 0.07);
}

.resident-item i {
    color: var(--cyan-dim);
    font-size: 1rem;
}

/* ── FAQ ── */
.faq-section {
    padding: 64px 20px;
    background: var(--white);
}

.faq-section h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 28px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #e8f4f8;
    border: 1px solid #eaecef;
    border-radius: var(--radius);
    padding: 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.faq-question i {
    color: var(--cyan-dim);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.faq-item p {
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
    padding-left: 26px;
}

/* ── CONNECT CTA ── */
.connect-section {
    padding: 64px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a7fa8 100%);
    text-align: center;
}

.connect-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.connect-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.connect-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 400px;
}

.connect-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    transition: background 0.2s, transform 0.2s;
}

.connect-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.connect-link i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.connect-link.whatsapp i { color: #25D366; }
.connect-link.instagram i { color: #f58529; }
.connect-link.email i { color: var(--cyan); }

.link-title {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.link-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    display: block;
}

/* ── FOOTER ── */
footer {
    background: #1a2838;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px 16px;
    font-size: 0.82rem;
    font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE 768px+ ── */
@media (min-width: 768px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-ctas { flex-direction: row; justify-content: center; }

    .problem-grid { grid-template-columns: repeat(3, 1fr); }

    .vision-stats { grid-template-columns: repeat(3, 1fr); }

    .forwhom-grid { grid-template-columns: repeat(4, 1fr); }

    .power-grid { grid-template-columns: repeat(2, 1fr); }

    .flyer-inner { flex-direction: row; align-items: center; gap: 48px; }
    .flyer-text { flex: 1; }

    .connect-links { flex-direction: row; justify-content: center; max-width: none; }
    .connect-link { flex: 1; min-width: 160px; max-width: 220px; }

    .problem-section h2,
    .vision-text h2,
    .forwhom-section h2,
    .how-section h2,
    .power-section h2,
    .flyer-text h2,
    .resident-text h2,
    .faq-section h2,
    .connect-text h2 {
        font-size: 2.2rem;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.92rem; }
    .cta-primary { padding: 13px 26px; font-size: 0.97rem; }

    .problem-section h2,
    .vision-text h2,
    .forwhom-section h2,
    .how-section h2,
    .power-section h2,
    .flyer-text h2,
    .resident-text h2,
    .faq-section h2,
    .connect-text h2 {
        font-size: 1.65rem;
    }

    .forwhom-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE 320px ── */
@media (max-width: 320px) {
    .toolbar-container { gap: 16px; }
    .toolbar-container a { font-size: 0.9rem; width: 28px; height: 28px; }
    .hero h1 { font-size: 1.75rem; }
    .resident-highlights { grid-template-columns: 1fr; }
    .forwhom-grid { grid-template-columns: 1fr 1fr; }
}