:root {
    --bg: #f7f7f9;
    --surface: #ffffff;
    --surface2: #f0f1f4;
    --border: #e5e7eb;
    --border2: #d1d5db;
    --navy: #061d51;
    --accent: #2563eb;
    --accent2: #1d4ed8;
    --accent-dim: rgba(37, 99, 235, 0.1);
    --text: #111827;
    --text2: #6b7280;
    --text3: #9ca3af;
    --red: #ef4444;
    --yellow: #f59e0b;
    --green: #10b981;
    --blue: #3b82f6;
    --radius: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff0;
    border-bottom: 1px solid #fff0;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}
.navbar.scrolled-hero {
    background: rgb(4 18 50 / 0.85);
    backdrop-filter: blur(16px);
}
.navbar.scrolled {
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgb(0 0 0 / 0.06);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    transition: height 0.3s ease;
}
.navbar.scrolled-hero .navbar-inner,
.navbar.scrolled .navbar-inner {
    height: 60px;
}
.nav-logo img {
    height: 24px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 13.5px;
    color: rgb(255 255 255 / 0.7);
    font-weight: 500;
    transition: color 0.15s;
    padding: 20px 0;
    border-bottom: 2px solid #fff0;
}
.nav-links a:hover {
    color: #fff;
}
.nav-links a.active {
    color: #fff;
    border-bottom-color: var(--accent);
}
.navbar.scrolled .nav-links a {
    color: var(--text2);
}
.navbar.scrolled .nav-links a:hover {
    color: var(--text);
}
.navbar.scrolled .nav-links a.active {
    color: var(--text);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-actions .btn-ghost {
    color: rgb(255 255 255 / 0.7);
}
.nav-actions .btn-ghost:hover {
    color: #fff;
}
.navbar.scrolled .nav-actions .btn-ghost {
    color: var(--text2);
}
.navbar.scrolled .nav-actions .btn-ghost:hover {
    color: var(--text);
}
.mobile-menu-btn i {
    color: #fff;
}
.navbar.scrolled .mobile-menu-btn i {
    color: var(--text2);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    white-space: nowrap;
}
.btn-ghost {
    background: #fff0;
    color: var(--text2);
}
.btn-ghost:hover {
    color: var(--text);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent2);
}
.btn-gradient {
    background: linear-gradient(45deg, #3576ff, #15f27c);
    color: #fff;
    border: none;
}
.btn-gradient:hover {
    opacity: 0.9;
}
.btn-outline {
    background: #fff0;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--border2);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text2);
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn i {
    font-size: 20px;
}
.hero {
    padding: 160px 0 0;
    position: relative;
    overflow: hidden;
    background: #061d51 url(../assets/images/background.png) repeat-x center bottom;
    background-size: 180px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgb(37 99 235 / 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.hero-content {
    max-width: 540px;
    align-self: start;
    padding-top: 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / 0.1);
    color: rgb(255 255 255 / 0.8);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 span {
    background: linear-gradient(45deg, #3576ff, #15f27c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.hero p {
    font-size: 16px;
    color: rgb(255 255 255 / 0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-actions .btn {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 10px;
}
.hero-actions .btn-outline {
    color: #fff;
    border-color: rgb(255 255 255 / 0.25);
}
.hero-actions .btn-outline:hover {
    border-color: rgb(255 255 255 / 0.5);
}
.hero-visual {
    display: flex;
    justify-content: center;
}
.hero-visual img {
    max-width: 100%;
    height: auto;
}
.social-proof-bar {
    background: #fff;
    padding: 0;
}
.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
}
.proof-stat {
    text-align: center;
}
.proof-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #3576ff, #15f27c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.proof-label {
    font-size: 13px;
    color: var(--text3);
    margin-top: 2px;
}
.proof-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}
.proof-providers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.proof-providers span {
    font-size: 14px;
    color: var(--text3);
    white-space: nowrap;
}
.proof-providers-images {
    display: flex;
    align-items: center;
    gap: 10px;
}
.proof-providers-images img {
    height: 36px;
}
.pain-section {
    padding: 100px 0;
}
.pain-header {
    text-align: center;
    margin-bottom: 48px;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pain-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}
.pain-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}
.pain-icon.red {
    background: rgb(239 68 68 / 0.1);
    color: var(--red);
}
.pain-icon.yellow {
    background: rgb(245 158 11 / 0.1);
    color: var(--yellow);
}
.pain-icon.blue {
    background: rgb(59 130 246 / 0.1);
    color: var(--blue);
}
.pain-icon.green {
    background: rgb(16 185 129 / 0.1);
    color: var(--green);
}
.pain-icon.accent {
    background: var(--accent-dim);
    color: var(--accent);
}
.pain-card-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}
.pain-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.pain-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.6;
}
.section {
    padding: 100px 0;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 16px;
    color: var(--text2);
    max-width: 540px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-sub {
    margin: 0 auto;
}
.section#shield,
.section#cta-inline,
.section#faq,
.cta-section#cta-block {
    background: var(--surface);
}
.features-section-wrap {
    background: var(--surface);
}
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-block:last-child {
    margin-bottom: 0;
}
.feature-block.reverse .feature-block-visual {
    order: -1;
}
.feature-block-visual {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.feature-block.reverse .feature-block-visual {
    justify-content: flex-start;
}
.feature-block-visual img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}
.feature-block-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.feature-block-content p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
}
.feature-block-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-block-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text2);
}
.feature-block-content li i {
    color: var(--green);
    font-size: 13px;
    width: 16px;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.feature-card-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}
.feature-icon {
    margin-bottom: 16px;
    font-size: 38px;
}
.feature-icon i {
    background: linear-gradient(45deg, #3576ff, #15f27c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}
.how-step {
    text-align: center;
    counter-increment: step;
    position: relative;
}
.how-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 18px;
}
.how-number::after {
    content: counter(step);
}
.how-step h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.how-step p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}
.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}
.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
}
.benefit-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}
.benefit-card-body {
    padding: 0;
}
.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.benefit-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.6;
}
.app-preview {
    text-align: center;
    padding: 80px 0 0;
}
.app-preview img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.1);
}
.shield-showcase {
    background: var(--navy);
    border-radius: 16px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.shield-showcase::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(37 99 235 / 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.shield-content {
    position: relative;
    z-index: 1;
}
.shield-content .section-label {
    color: rgb(255 255 255 / 0.5);
}
.shield-content .section-title {
    color: #fff;
}
.shield-content .section-sub {
    color: rgb(255 255 255 / 0.65);
}
.shield-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.shield-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.shield-feat-icon {
    background: linear-gradient(45deg, #3576ff, #15f27c);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.shield-feat h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.shield-feat p {
    font-size: 13px;
    color: rgb(255 255 255 / 0.55);
    line-height: 1.5;
}
.shield-visual {
    position: relative;
    z-index: 1;
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.shield-card {
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 10px;
    padding: 16px 18px;
}
.shield-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgb(255 255 255 / 0.4);
    margin-bottom: 8px;
}
.shield-card-value {
    font-size: 15px;
    font-weight: 500;
}
.shield-bar-track {
    height: 6px;
    background: rgb(255 255 255 / 0.1);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}
.shield-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(45deg, #3576ff, #15f27c);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 14px;
}
.testimonial-text {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-name {
    font-size: 13px;
    font-weight: 600;
}
.testimonial-role {
    font-size: 11.5px;
    color: var(--text3);
}
.pricing-toggle-wrap {
    text-align: center;
}
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--surface2);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 48px;
}
.billing-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    background: #fff0;
    color: var(--text2);
    transition: all 0.15s;
}
.billing-btn.active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}
.billing-save {
    background: rgb(16 185 129 / 0.1);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}
.plan-carousel-wrap {
    position: relative;
}
.plan-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding-top: 16px;
}
.plan-card {
    min-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}
.plan-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text2);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    transition: all 0.15s;
    z-index: 2;
}
.plan-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.plan-arrow-left {
    left: -22px;
}
.plan-arrow-right {
    right: -22px;
}
.plan-arrow[disabled] {
    opacity: 0.3;
    pointer-events: none;
}
.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    position: relative;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.plan-card:hover {
    border-color: var(--border2);
}
.plan-featured {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.plan-icon {
    margin-bottom: 16px;
}
.plan-icon img {
    height: 48px;
}
.plan-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.plan-price {
    margin-bottom: 24px;
}
.plan-amount {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}
.plan-period {
    font-size: 14px;
    color: var(--text3);
}
.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.plan-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text2);
}
.plan-spec i {
    width: 16px;
    text-align: center;
    color: var(--accent);
    font-size: 13px;
}
.plan-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
}
.plan-trial {
    text-align: center;
    font-size: 12px;
    color: var(--text3);
    margin-top: 14px;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open {
    border-color: var(--accent);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}
.faq-question i {
    color: var(--text3);
    font-size: 13px;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}
.cta-section {
    text-align: center;
    padding: 80px 0 100px;
}
.cta-box {
    background: var(--navy);
    border-radius: 20px;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(28 204 110 / 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(53 118 255 / 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    position: relative;
}
.cta-box p {
    font-size: 16px;
    color: rgb(255 255 255 / 0.6);
    margin-bottom: 32px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-box .btn {
    position: relative;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 10px;
}
.cta-trust {
    position: relative;
    margin-top: 20px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.4);
}
.cta-trust i {
    margin-right: 4px;
}
.site-footer {
    position: relative;
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}
.site-footer:before {
    position: absolute;
    content: ' ';
    background: linear-gradient(45deg, #3576ff, #15f27c);
    width: 100%;
    height: 2.56px;
    top: 0px;
    left: 0;
    right: 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    font-size: 12.5px;
    color: var(--text3);
}
.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}
.footer-links a {
    font-size: 12.5px;
    color: var(--text3);
    transition: color 0.15s;
}
.footer-links a:hover {
    color: var(--text2);
}
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text2);
    padding: 4px;
}
.mobile-nav-close i {
    font-size: 22px;
}
.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover {
    color: var(--text);
}
.mobile-nav-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-nav-actions .btn {
    justify-content: center;
}
.inline-cta-inner {
    background: linear-gradient(135deg, rgb(53 118 255 / 0.08), rgb(28 204 110 / 0.08));
    border: 1px solid rgb(37 99 235 / 0.15);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}
.inline-cta-inner h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.inline-cta-inner p {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 20px;
}
.signup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.signup-overlay.open {
    display: flex;
}
.signup-modal {
    background: var(--surface);
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    padding: 44px 36px 36px;
    position: relative;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.2);
    animation: modalIn 0.25s ease;
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.signup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text3);
    font-size: 18px;
    padding: 4px;
}
.signup-close:hover {
    color: var(--text);
}
.signup-header {
    text-align: center;
    margin-bottom: 28px;
}
.signup-header img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 16px;
}
.signup-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.signup-header p {
    font-size: 14px;
    color: var(--text2);
}
.signup-header p span {
    background: linear-gradient(45deg, #3576ff, #15f27c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-weight: 600;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.signup-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.signup-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.signup-field input {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.15s;
    outline: none;
}
.signup-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.signup-field input::placeholder {
    color: var(--text3);
}
.signup-submit {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 4px;
}
.signup-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.signup-turnstile {
    display: flex;
    justify-content: center;
    margin-top: 2px;
}
.signup-error {
    background: rgb(239 68 68 / 0.08);
    border: 1px solid rgb(239 68 68 / 0.2);
    color: var(--red);
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
}
.signup-error.show {
    display: block;
}
.signup-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text3);
}
.signup-footer a {
    color: var(--accent);
    font-weight: 500;
}
.signup-perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.signup-perks span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text3);
}
.signup-perks i {
    color: var(--green);
    font-size: 11px;
}
@media (max-width: 500px) {
    .signup-modal {
        margin: 16px;
        padding: 32px 24px 28px;
    }
    .signup-row {
        grid-template-columns: 1fr;
    }
    .signup-perks {
        flex-direction: column;
        gap: 6px;
    }
}
.sb-chat {
    z-index: 100 !important;
}
.sb-chat-btn {
    background: linear-gradient(45deg, #3576ff, #15f27c) !important;
}
@media (max-width: 900px) {
    .nav-links,
    .nav-actions .btn-ghost,
    .nav-actions .btn-primary {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero {
        padding: 120px 0 60px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual img {
        max-width: 320px;
    }
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 150px;
    }
    .feature-block.reverse .feature-block-visual {
        order: 0;
    }
    .feature-block-visual img {
        margin: 0 auto;
    }
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .benefits-row {
        grid-template-columns: 1fr;
    }
    .shield-showcase {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }
    .plan-card {
        min-width: calc(100% - 40px);
    }
    .plan-arrow-left {
        left: -8px;
    }
    .plan-arrow-right {
        right: -8px;
    }
    .proof-providers {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .cta-box {
        padding: 48px 24px;
    }
    .cta-box h2 {
        font-size: 28px;
    }
    .section-title {
        font-size: 28px;
    }
    .social-proof-inner {
        flex-direction: column;
        gap: 24px;
    }
    .proof-divider {
        width: 60px;
        height: 1px;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-card {
        min-width: calc((100% - 20px) / 2);
    }
}
