:root {
    --blue: #07162d;
    --blue2: #0d2f68;
    --accent: #ffd21c;
    --text: #07162d;
    --muted: #667085;
    --light: #f5f7fb;
    --white: #fff;
    --border: #e6eaf2
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.45
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 7%;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    font-size: 14px
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover
}

.nav {
    display: flex;
    gap: 24px
}

.nav a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700
}

.menu-btn {
    display: none;
    background: 0;
    border: 0;
    font-size: 32px;
    color: var(--blue)
}

.hero {
    min-height: 720px;
    padding: 70px 7%;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 42px;
    align-items: center;
    background: radial-gradient(circle at 85% 20%, #164d96 0, #07162d 38%, #020b17 100%);
    color: #fff;
    overflow: hidden
}

.badge,
.mini-title {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 210, 28, .12);
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px
}

.hero h1 {
    font-size: 58px;
    line-height: 1.02;
    margin: 24px 0 18px;
    text-transform: uppercase;
    letter-spacing: -1.5px
}

.hero p {
    font-size: 22px;
    color: #dce6f8;
    max-width: 690px
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0
}

.hero-points div {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 16px;
    border-radius: 18px;
    font-weight: 700
}

.hero-points b {
    color: var(--accent);
    margin-right: 6px
}

.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 56px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px
}

.primary {
    background: var(--accent);
    color: #061326;
    box-shadow: 0 12px 28px rgba(255, 210, 28, .25)
}

.outline {
    border-color: rgba(255, 255, 255, .55);
    color: #fff
}

.whatsapp {
    border-color: #25d366;
    color: #061326;
    background: #fff
}

.full {
    width: 100%
}

.center {
    margin: 26px auto 0;
    display: flex;
    max-width: 360px
}

.hero-card {
    display: flex;
    justify-content: center
}

.chart-card {
    width: 100%;
    max-width: 420px;
    min-height: 440px;
    border-radius: 34px;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.chart-card:before {
    content: "";
    position: absolute;
    inset: 35px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0))
}

.chart-card span,
.chart-card strong,
.chart-card p,
.bars {
    position: relative
}

.chart-card span {
    font-weight: 800;
    color: #b9cdf0
}

.chart-card strong {
    font-size: 34px;
    text-transform: uppercase;
    color: var(--accent)
}

.bars {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin: 34px 0
}

.bars i {
    display: block;
    width: 25%;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(var(--accent), #1f65d6)
}

.bars i:nth-child(1) {
    height: 45%
}

.bars i:nth-child(2) {
    height: 68%
}

.bars i:nth-child(3) {
    height: 82%
}

.bars i:nth-child(4) {
    height: 100%
}

.section {
    padding: 78px 7%
}

.light {
    background: var(--light)
}

.section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 38px
}

.section-head .mini-title {
    color: #1f65d6;
    background: #eaf1ff
}

.section h2 {
    font-size: 42px;
    line-height: 1.08;
    margin: 18px 0 12px;
    text-transform: uppercase;
    letter-spacing: -.8px
}

.section-head p {
    font-size: 19px;
    color: var(--muted)
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(7, 22, 45, .06);
    font-size: 34px;
    transition: .25s
}

.card:hover {
    transform: translateY(-5px)
}

.card b {
    display: block;
    font-size: 18px;
    margin-top: 12px
}

.card p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 0
}

.note {
    max-width: 760px;
    margin: 28px auto 0;
    background: #fff7d6;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    font-weight: 700
}

.check-list {
    max-width: 940px;
    margin: auto
}

.check-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border)
}

.check-item span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf1ff;
    color: #1f65d6;
    font-weight: 900
}

.check-item h3 {
    margin: 0 0 6px;
    font-size: 25px;
    text-transform: uppercase
}

.check-item p {
    margin: 0;
    color: var(--muted);
    font-size: 18px
}

.blue-cta {
    max-width: 940px;
    margin: 38px auto 0;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between
}

.blue-cta p {
    font-size: 22px;
    margin: 0;
    max-width: 560px
}

.form-section {
    background: #fff
}

.form-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 38px;
    align-items: start;
    max-width: 1180px;
    margin: auto
}

.form-wrap h2 {
    font-size: 42px;
    text-transform: uppercase
}

.form-wrap p {
    font-size: 19px;
    color: var(--muted)
}

.features {
    display: grid;
    gap: 14px;
    margin-top: 26px;
    font-weight: 800
}

.features div {
    padding: 18px;
    border-radius: 18px;
    background: var(--light)
}

.lead-form {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
    display: grid;
    gap: 14px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: var(--text)
}

textarea {
    resize: vertical
}

.float-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 15px 22px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .35)
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .7s
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .header {
        padding: 12px 18px
    }

    .menu-btn {
        display: block
    }

    .nav {
        position: absolute;
        top: 79px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border)
    }

    .nav.open {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 42px 20px 58px;
        min-height: auto
    }

    .hero h1 {
        font-size: 40px
    }

    .hero p {
        font-size: 18px
    }

    .hero-points {
        grid-template-columns: 1fr
    }

    .buttons .btn {
        width: 100%
    }

    .chart-card {
        min-height: 280px
    }

    .section {
        padding: 54px 20px
    }

    .section h2,
    .form-wrap h2 {
        font-size: 31px
    }

    .grid {
        grid-template-columns: 1fr 1fr
    }

    .blue-cta {
        display: grid;
        text-align: center
    }

    .form-wrap {
        grid-template-columns: 1fr
    }

    .float-wa {
        left: 18px;
        text-align: center
    }
}

@media(max-width:560px) {
    .brand span {
        font-size: 12px
    }

    .brand img {
        width: 46px;
        height: 46px
    }

    .hero h1 {
        font-size: 34px
    }

    .grid {
        grid-template-columns: 1fr
    }

    .check-item {
        grid-template-columns: 54px 1fr;
        gap: 14px
    }

    .check-item span {
        width: 46px;
        height: 46px
    }

    .check-item h3 {
        font-size: 20px
    }

    .check-item p {
        font-size: 16px
    }

    .btn {
        font-size: 14px
    }

    .float-wa {
        bottom: 12px
    }

    .section:last-of-type {
        padding-bottom: 88px
    }
}

.yellow-text {
    color: #ffd21f;
}

.blue-text {
    color: #2563eb;
}.pain-icon {
    width: 48px;
    height: 48px;
    color: #1e40af;
    margin-bottom: 14px;
    stroke-width: 2;
}
.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: #2563eb;
    stroke-width: 2.2;
}
.result-icon {
    width: 44px;
    height: 44px;
    color: #2563eb;
    stroke-width: 2.2;
    margin-bottom: 14px;
}
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.feature {
    background: #f5f7fb;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
}

.feature svg {
    width: 34px;
    height: 34px;
    stroke: #2563eb;
    margin-bottom: 10px;
}

.feature span {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
.questions-section{
    margin-top:40px;
    padding:20px;
}

.questions-content{
    background:linear-gradient(135deg,#07162d,#0d2f68);
    border-radius:24px;
    overflow:hidden;
    color:#fff;
}

.questions-left{
    padding:30px 25px;
}

.questions-left h2{
    font-size:34px;
    margin-bottom:15px;
    color:#fff;
}

.questions-left p{
    font-size:18px;
    line-height:1.5;
    color:#fff;
}

.questions-left p span{
    color:#ffd21c;
    font-weight:700;
}

.questions-btn{
    display:block;
    margin-top:20px;
    background:#25D366;
    color:#fff;
    text-align:center;
    padding:16px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
}

.questions-left ul{
    margin-top:25px;
    padding-left:20px;
}

.questions-left li{
    margin-bottom:12px;
    color:#fff;
}

.questions-right img{
    width:100%;
    display:block;
}

@media(min-width:768px){
    .questions-content{
        display:flex;
        align-items:center;
    }

    .questions-left,
    .questions-right{
        width:50%;
    }
}
.questions-section{
    margin-top:40px;
    padding:20px;
}

.questions-content{
    background:linear-gradient(135deg,#07162d,#0d2f68);
    border-radius:24px;
    overflow:hidden;
    color:#fff;
    display:flex;
    flex-direction:column;
}

.questions-left{
    padding:30px 25px;
}

.questions-right{
    overflow:hidden;
}

.questions-right img{
    width:100%;
    max-width:380px;
    margin:0 auto;
    display:block;
}

.questions-btn{
    display:block;
    margin-top:20px;
    background:#25D366;
    color:#fff;
    text-align:center;
    padding:16px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
}

.questions-left p span{
    color:#ffd21c;
    font-weight:700;
}

@media(min-width:992px){

    .questions-content{
        flex-direction:row;
        align-items:center;
    }

    .questions-left,
    .questions-right{
        width:50%;
    }

}
.input-group{
    position:relative;
    margin-bottom:16px;
}

.input-group svg{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    color:#8a94a6;
    z-index:2;
}

.input-group input,
.input-group select{
    width:100%;
    padding:18px 18px 18px 50px;
}

.textarea-group svg{
    top:22px;
    transform:none;
}

.textarea-group textarea{
    width:100%;
    padding:18px 18px 18px 50px;
}
.questions-location{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:25px;
    color:#ffffff;
    font-size:14px;
    line-height:1.5;
}

.questions-location svg{
    width:20px;
    height:20px;
    flex-shrink:0;
    color:#ffffff;
    margin-top:2px;
}
.location-card{
    background:#f5f7fb;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:18px;
    margin:20px 20px 0;
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#07162d;
    font-size:14px;
    line-height:1.5;
}

.location-card svg{
    width:20px;
    height:20px;
    color:#2563eb;
    flex-shrink:0;
    margin-top:2px;
}