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

:root {
    --navy: #1B2845;
    --navy-light: #243156;
    --navy-mid: #2E3D6B;
    --blue: #4A6CF7;
    --blue-light: #6B8AFF;
    --sky: #E8EDFB;
    --sky-light: #F3F5FC;
    --white: #FBFBFD;
    --text: #1B2845;
    --text-muted: #6B7490;
    --border: #DFE3EE;
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC04;
    --google-green: #34A853;
    --radius: 14px;
    --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .section-title { font-family: 'Plus Jakarta Sans', sans-serif; }

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(251, 251, 253, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
}

.nav-logo img { width: 36px; height: 36px; border-radius: 9px; }

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

.nav-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.btn-primary { color: #fff; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(27, 40, 69, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--sky-light); }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(74, 108, 247, 0.3);
}

.btn-sm { padding: 10px 22px; font-size: 0.84rem; }

/* HERO */
.hero {
    padding: 160px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(74, 108, 247, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--sky);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy-mid);
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge .stars { color: var(--google-yellow); letter-spacing: 1px; }

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--blue) 0%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.18rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 500;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-proof span { display: flex; align-items: center; gap: 7px; }

.hero-proof .icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

/* SHOWCASE */
.showcase {
    max-width: 960px;
    margin: 0 auto 130px;
    padding: 0 40px;
    animation: fadeUp 0.8s 0.5s ease both;
}

.showcase-window {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(27, 40, 69, 0.08), 0 24px 60px rgba(27, 40, 69, 0.15);
}

.showcase-toolbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 20px;
}

.showcase-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }

.showcase-body {
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.showcase-widget {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    min-width: 240px;
    color: #fff;
}

.showcase-widget .g-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.showcase-widget .g-logo span:nth-child(1) { color: var(--google-blue); }
.showcase-widget .g-logo span:nth-child(2) { color: var(--google-red); }
.showcase-widget .g-logo span:nth-child(3) { color: var(--google-yellow); }
.showcase-widget .g-logo span:nth-child(4) { color: var(--google-blue); }
.showcase-widget .g-logo span:nth-child(5) { color: var(--google-green); }
.showcase-widget .g-logo span:nth-child(6) { color: var(--google-red); }

.showcase-widget .widget-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.showcase-widget .widget-stars { font-size: 1.5rem; color: var(--google-yellow); letter-spacing: 2px; margin-bottom: 4px; }
.showcase-widget .widget-rating { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.showcase-popup {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 30px;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.showcase-popup h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.showcase-popup p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.showcase-popup .popup-btns { display: flex; gap: 8px; }

.popup-btn {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.popup-btn-yes { background: var(--blue); color: #fff; }
.popup-btn-no { background: var(--sky-light); color: var(--text-muted); }

/* FEATURES */
.features { max-width: 1100px; margin: 0 auto; padding: 0 40px 130px; }

.section-label {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 56px;
    max-width: 520px;
}

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

.feature-card {
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(27, 40, 69, 0.04), 0 12px 40px rgba(27, 40, 69, 0.07);
    transform: translateY(-3px);
}

.feature-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.fi-navy  { background: var(--sky); }
.fi-green { background: #E6F4EA; }
.fi-amber { background: #FEF7E0; }
.fi-red   { background: #FCE8E6; }
.fi-blue  { background: #E3ECFF; }
.fi-teal  { background: #E0F7F4; }

.feature-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; font-weight: 400; }

/* HOW IT WORKS */
.how { background: var(--sky-light); padding: 110px 40px; }
.how-inner { max-width: 920px; margin: 0 auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { position: relative; }

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.step h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(48px + 16px);
    right: -16px;
    height: 2px;
    background: var(--border);
}

/* REVIEWS */
.reviews { max-width: 1100px; margin: 0 auto; padding: 130px 40px; text-align: center; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; margin-top: 56px; }

.review-card {
    background: var(--sky-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(27, 40, 69, 0.06); }

.review-stars { color: var(--google-yellow); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; font-weight: 400; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

/* PRICING */
.pricing { background: var(--sky-light); padding: 110px 40px; }
.pricing-inner { max-width: 500px; margin: 0 auto; text-align: center; }

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: 0 1px 4px rgba(27,40,69,0.04), 0 12px 40px rgba(27,40,69,0.06);
    margin-top: 48px;
    border: 1px solid var(--border);
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--navy);
}

.pricing-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }

.pricing-list { list-style: none; text-align: left; margin-bottom: 36px; }

.pricing-list li {
    padding: 11px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--sky);
    font-weight: 400;
}
.pricing-list li:last-child { border-bottom: none; }

.pricing-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #E6F4EA;
    color: var(--google-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 16px; }

/* CTA */
.cta-final { max-width: 800px; margin: 0 auto; padding: 130px 40px; text-align: center; }

.cta-final .cta-logo { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 28px; display: block; }

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.cta-final p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

footer a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 24px; }

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav { padding: 12px 20px; }
    .nav-links a:not(.btn) { display: none; }
    .hero { padding: 140px 20px 80px; }
    .showcase { padding: 0 20px; margin-bottom: 80px; }
    .showcase-body { padding: 32px 20px; gap: 24px; }
    .features { padding: 0 20px 80px; }
    .features-grid { grid-template-columns: 1fr; }
    .how { padding: 80px 20px; }
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .step:not(:last-child)::after { display: none; }
    .reviews { padding: 80px 20px; }
    .review-grid { grid-template-columns: 1fr; }
    .pricing { padding: 80px 20px; }
    .cta-final { padding: 80px 20px; }
    footer { flex-direction: column; gap: 14px; text-align: center; padding: 28px 20px; }
}

@media (max-width: 600px) {
    .showcase-body { flex-direction: column; }
    .hero-proof { flex-direction: column; gap: 12px; }
}
