/* Base tokens */

:root {
    --bg: #f9fcff;
    --card: #ffffff;
    --card-strong: #eef6fa;
    --line: rgba(0, 42, 60, 0.12);
    --text: #0c1f2b;
    --muted: #51606c;
    --primary-a: #00f2ff;
    --primary-b: #4fffa1;
    --primary: linear-gradient(120deg, var(--primary-a), var(--primary-b));
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --radius: 16px;
    --hero-image: url("../images/hero-banner.jpg");
}

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

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.bg-glow {
    display: none;
}

.glow-1 {
    background: none;
}

.glow-2 {
    background: none;
}

.bg-grid {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    color: #e9f6ff;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: inherit;
}

.brand-name {
    font-weight: 700;
}

.brand-tag {
    font-size: 12px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    font-weight: 600;
    color: inherit;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
}

.hero {
    position: relative;
    padding: 100px 0 70px;
    min-height: 78vh;
    overflow: hidden;
    background: var(--hero-image);
    background-size: cover;
    background-position: center;
    color: #e9f6ff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    color: #e9f6ff;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-banner {
    width: 100%;
}

.hero-banner h1 {
    font-size: clamp(30px, 5.4vw, 28px);
    margin: 6px 0 12px;
    letter-spacing: -0.6px;
    color: #ffffff;
}

.hero-breadcrumb {
    margin-bottom: 12px;
    color: #a6f0ff;
}

.hero-subtitle {
    color: #d8e9ef;
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0 16px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
}

.hero-banner .eyebrow {
    color: #8be8ff;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 8px;
}

.hero-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #e2f5fb;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.hero-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2fe0ff;
    font-size: 20px;
}

.cta-lg {
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
}

.pill.positive {
    background: rgba(79, 255, 161, 0.2);
    border: 1px solid rgba(79, 255, 161, 0.5);
}

.pill.neutral {
    background: rgba(0, 242, 255, 0.12);
    border: 1px solid rgba(0, 242, 255, 0.4);
    color: #dffbff;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
    background: #ffffff;
}

.section.alt {
    background: linear-gradient(180deg, #f5fafc, #ffffff);
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: clamp(26px, 4vw, 34px);
    margin: 10px 0;
}

.section-subtitle {
    color: var(--muted);
    margin: 0 auto;
    max-width: 640px;
    line-height: 1.6;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: #00242e;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 12px 28px rgba(3, 33, 46, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 180, 200, 0.35);
}

.benefit h3 {
    margin: 12px 0 8px;
}

.benefit p {
    margin: 0;
    color: #4d6673;
    line-height: 1.5;
}

.benefit {
    text-align: center;
}

.benefit .icon-circle {
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 42, 60, 0.12);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 12px 28px rgba(3, 33, 46, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(3, 33, 46, 0.14);
    border-color: rgba(0, 180, 200, 0.35);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 180, 200, 0.08);
    border: 1px solid rgba(0, 180, 200, 0.18);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-card h3 {
    margin: 8px 0 10px;
    font-size: 22px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.compare-card {
    background: #ffffff;
    border: 1px solid rgba(0, 42, 60, 0.12);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(3, 33, 46, 0.08);
}

.compare-card.ghost {
    background: #f7fbff;
    border-color: rgba(0, 42, 60, 0.08);
}

.compare-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.compare-card ul {
    margin: 0;
    padding-left: 18px;
    color: #3e5866;
    line-height: 1.6;
}

.feature-card.center-feature {}

.feature-card.center-feature .feature-icon {
    margin: 0 auto 10px;
}

.feature-card.center-feature h3,
.feature-card.center-feature .eyebrow {
    text-align: center;
}

.feature-card ul {
    margin: 0 0 14px 0;
    padding-left: 18px;
    color: #3e5866;
    line-height: 1.6;
}

.feature-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 242, 255, 0.08);
    display: grid;
    place-items: center;
    color: #a6fff0;
    border: 1px solid rgba(0, 242, 255, 0.25);
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.icon-circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 242, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #0e2a2b;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 242, 255, 0.25);
}

.step-card h3 {
    margin: 14px 0 8px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 42, 60, 0.12);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(3, 33, 46, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #0c2735;
    cursor: pointer;
}

.faq-caret {
    color: #00b8e6;
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding: 0 16px 14px;
    color: #3e5866;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-caret {
    transform: rotate(180deg);
}

.slider {
    position: relative;
    max-width: 740px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(3, 33, 46, 0.1);
    animation: fadeIn 0.4s ease;
}

.testimonial.active {
    display: flex;
}

.testimonial p {
    color: #0d2a36;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(0, 180, 200, 0.22), rgba(79, 255, 161, 0.3));
    display: grid;
    place-items: center;
    color: #07424b;
    font-weight: 700;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.control {
    background: #eef6fa;
    border: 1px solid rgba(0, 42, 60, 0.12);
    color: #0c1f2b;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.control:hover {
    border-color: rgba(0, 180, 200, 0.4);
    transform: translateY(-2px);
}

.dots {
    display: flex;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 42, 60, 0.18);
    cursor: pointer;
}

.dots button.active {
    background: var(--primary);
}

.cta {
    background: linear-gradient(120deg, rgba(0, 180, 200, 0.08), rgba(255, 255, 255, 0.9));
    border-top: 1px solid rgba(0, 42, 60, 0.08);
    border-bottom: 1px solid rgba(0, 42, 60, 0.08);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.cta p {
    color: var(--muted);
    margin: 12px 0 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer {
    border-top: 1px solid rgba(0, 42, 60, 0.08);
    padding: 40px 0;
    background: #071c26;
    color: #e7f5ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    gap: 10px;
}

.footer-heading {
    margin: 0 0 8px;
    font-weight: 700;
    color: #c9eaff;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #d6e8f2;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #4fffa1;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-copy-row {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 6px;
}

.footer-copy {
    color: #9fb7c3;
    margin: 0;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #e7f5ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(79, 255, 161, 0.5);
    color: #4fffa1;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b23b, #19e167);
    color: #f9fffb;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    z-index: 25;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    color: #052126;
    box-shadow: 0 12px 30px rgba(0, 242, 255, 0.2);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}

.btn.small {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
}

.btn.prominent {
    border-color: transparent;
    background: linear-gradient(120deg, #05e7ff, #41f79f);
    color: #0f2a31;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 242, 255, 0.22);
}

.btn.prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 242, 255, 0.28);
}

.nav-cta {
    background: linear-gradient(120deg, #05e7ff, #41f79f);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 12px 24px rgba(0, 242, 255, 0.22);
    padding: 10px 18px;
}

.nav-cta:hover {
    box-shadow: 0 14px 30px rgba(0, 242, 255, 0.28);
}

.mobile-menu-panel {
    display: none;
}

.btn.primary {
    background: var(--primary);
}

.btn.outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    box-shadow: none;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #06202c;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.navbar.solid {
    background: linear-gradient(120deg, #0c2735, #0a3042);
    border-bottom: 1px solid rgba(0, 42, 60, 0.18);
    box-shadow: 0 12px 22px rgba(2, 30, 45, 0.24);
    backdrop-filter: blur(10px);
    color: #f5fbff;
}

.navbar .nav-links a,
.navbar .brand-name,
.navbar .brand-tag {
    color: inherit;
}

.navbar .brand-tag {
    color: #d3edf7;
}

.navbar .nav-cta {
    color: #0f2a31 !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 242, 255, 0.28);
}

.btn.outline:hover {
    border-color: rgba(255, 255, 255, 0.85);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0a3242;
    border: 1px solid rgba(0, 180, 200, 0.4);
    box-shadow: 0 10px 20px rgba(3, 33, 46, 0.12);
}

.cta-secondary:hover {
    border-color: rgba(0, 180, 200, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(3, 33, 46, 0.16);
}

.btn.ghost:hover {
    border-color: rgba(0, 242, 255, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open .whatsapp-float {
        display: none;
    }
    .nav-links,
    .nav-actions {
        display: none;
    }
    .mobile-menu-panel {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: #0c2735;
        border-radius: 0;
        padding: 18px 20px 24px;
        box-shadow: none;
        display: none;
        z-index: 22;
        overflow-y: auto;
        border: 0;
    }
    body.menu-open .mobile-menu-panel {
        display: block;
    }
    .mobile-menu-panel .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 12px 0 16px;
    }
    .mobile-menu-panel .mobile-nav a {
        color: #e9f6ff;
        font-size: 17px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        padding: 6px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mobile-menu-panel .mobile-nav a:last-child {
        border-bottom: 0;
    }
    .mobile-menu-panel .mobile-cta {
        width: 100%;
        box-shadow: 0 10px 20px rgba(5, 231, 255, 0.18);
        font-size: 15px;
        border-radius: 14px;
        padding: 12px 14px;
        margin-top: 16px;
    }
    .menu-toggle {
        display: flex;
    }
    .hero {
        padding: 80px 0 64px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 16px;
    }
    .cta-inner {
        grid-template-columns: 1fr;
    }
    .footer-extra {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 76px 0 56px;
    }
    .hero-banner h1 {
        font-size: clamp(26px, 7vw, 34px);
        margin-bottom: 10px;
    }
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .hero-points {
        gap: 6px;
    }
    .hero-actions {
        width: 100%;
    }
    .hero-actions .btn {
        flex: 1;
        justify-content: center;
    }
    .nav-inner {
        padding: 16px 0;
    }
}

@media (max-width: 960px) {
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 12px;
    }
    .mobile-brand .brand-logo {
        height: 42px;
    }
    .mobile-brand .brand-name {
        font-weight: 700;
        color: #e9f6ff;
        margin-left: 8px;
    }
    .mobile-close {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #ffffff;
        font-size: 24px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        cursor: pointer;
    }
    .mobile-close:hover {
        border-color: #00f2ff;
    }
    .mobile-caret {
        color: #bdefff;
        font-size: 16px;
    }
    .mobile-separator {
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin: 10px 0 14px;
    }
}