:root {
    --bg: #f3fbff;
    --surface: #ffffff;
    --primary: #0ea3d8;
    --primary-dark: #0678a8;
    --aqua: #34c8da;
    --text: #12354b;
    --muted: #5b7688;
    --line: #d4e8f3;
    --success-bg: #e8f9ef;
    --success-text: #176a3d;
    --error-bg: #fdecec;
    --error-text: #8e1f1f;
    --shadow: 0 14px 32px rgba(11, 104, 150, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.2;
    margin: 0 0 0.9rem;
}

h1 {
    font-size: clamp(1.95rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
}

h3 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 18px;
}

main {
    min-height: 62vh;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 3.1rem 0;
}

.center-text {
    text-align: center;
}

.soft-bg {
    background: linear-gradient(150deg, #eefdff, #f8fdff);
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-block;
    background: #e6f6ff;
    color: var(--primary-dark);
    border: 1px solid #bbe2f7;
    border-radius: 999px;
    padding: 0.36rem 0.84rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--aqua));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    padding: 0.8rem 1.28rem;
    box-shadow: 0 8px 18px rgba(20, 128, 176, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 128, 176, 0.34);
    color: #fff;
}

.btn-sm {
    padding: 0.58rem 0.96rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1rem 1.56rem;
    font-size: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: var(--text);
}

.brand span {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.05rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.main-nav > a {
    color: var(--text);
    font-weight: 600;
    padding: 0.24rem 0.1rem;
}

.main-nav > a.active {
    color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #c9e2f0;
    background: #fff;
    padding: 0.55rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero {
    background: radial-gradient(circle at 84% 8%, #d7f2ff, transparent 55%), linear-gradient(160deg, #eff9ff, #f9fdff);
}

.hero-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.offer .price {
    font-size: 1.3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.offer .mrp {
    color: var(--muted);
}

.offer .launch {
    color: var(--primary-dark);
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    gap: 0.86rem;
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
}

.steps-grid {
    display: grid;
    gap: 0.86rem;
    grid-template-columns: 1fr;
    margin-top: 1.15rem;
}

.steps-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.steps-grid span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dff4ff;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.demo-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
}

.testimonial-list {
    display: grid;
    gap: 0.8rem;
}

.testimonial-list blockquote {
    margin: 0;
    padding: 0.85rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fdff;
}

.testimonial-list p {
    margin-bottom: 0.45rem;
}

.testimonial-list cite {
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 600;
    font-size: 0.92rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
    align-items: center;
}

.trust-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
}

.feature-hero {
    margin: 1rem auto 1.4rem;
    max-width: 720px;
}

.icon-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
}

.icon-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.icon-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #e7f8ff;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.contact-layout {
    display: grid;
    gap: 1.2rem;
    align-items: start;
}

.contact-page {
    background: radial-gradient(circle at 10% 5%, rgba(84, 193, 232, 0.14), transparent 45%),
        radial-gradient(circle at 95% 95%, rgba(63, 198, 218, 0.1), transparent 38%);
}

.contact-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.2rem;
}

.form-shell {
    background: linear-gradient(180deg, #ffffff, #fafdff);
    border: 1px solid #cbe5f3;
    border-radius: 22px;
    box-shadow: 0 20px 48px rgba(11, 104, 150, 0.16);
    padding: 1.4rem;
}

.form-shell h2 {
    margin-bottom: 0.25rem;
}

.muted {
    color: var(--muted);
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
}

.form-row {
    margin-bottom: 0.95rem;
}

.form-row label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #b7d8e8;
    background: #fff;
    padding: 0.82rem 0.92rem;
    color: var(--text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #7d97a8;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #57b7dd;
    box-shadow: 0 0 0 4px rgba(67, 177, 220, 0.2);
    outline: none;
}

.alert {
    border-radius: 12px;
    border: 1px solid;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.95rem;
}

.alert p {
    margin: 0;
}

.alert ul {
    margin: 0.45rem 0 0;
    padding-left: 1rem;
}

.alert-success {
    background: var(--success-bg);
    border-color: #bae7cb;
    color: var(--success-text);
}

.alert-error {
    background: var(--error-bg);
    border-color: #f4bdbd;
    color: var(--error-text);
}

.contact-cta {
    position: static;
}

.contact-submit {
    min-width: 190px;
}

.map-shell {
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid #b8e0f2;
    background: linear-gradient(180deg, #f4fcff 0%, #ffffff 72%);
    box-shadow: 0 20px 48px rgba(11, 104, 150, 0.14);
}

.map-shell h2 {
    margin-bottom: 0.3rem;
}

.map-frame-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #c6e2ef;
    background: #dff2fb;
}

.map-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.cta {
    background: linear-gradient(140deg, #0d95ca, #3bc5d9);
    color: #fff;
}

.cta h2 {
    color: #fff;
}

.site-footer {
    background: #0f2f45;
    color: #cfe8f5;
    margin-top: 2.5rem;
}

.footer-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
    padding: 2.4rem 0;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.45rem;
}

.site-footer a {
    color: #d6effb;
}

.site-footer a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #4f7890;
}

.social-links svg {
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid #284a60;
    padding: 0.9rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
    background: #1eb55e;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    box-shadow: 0 10px 24px rgba(20, 120, 78, 0.35);
}

.floating-whatsapp:hover {
    color: #fff;
}

@media (min-width: 680px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

@media (min-width: 980px) {
    .hero-grid {
        grid-template-columns: 1.06fr 0.94fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1.25fr 0.75fr;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-shell {
        position: sticky;
        top: 96px;
    }
}

@media (max-width: 979px) {
    .map-frame-wrap iframe {
        height: 300px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 1rem 4vw;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }
}
