/* ── Base ── */

/* Override Bootstrap Icons font-display (CDN stylesheet defaults to "block") */
@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
    font-display: swap;
}

:root {
    --navy: #0f2b46;
    --navy-light: #163d5e;
    --navy-dark: #091c2f;
    --accent: #f26522;
    --accent-hover: #d9551a;
    --blue-soft: #2a7de1;
    --section-light: #f7f9fc;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", -apple-system;
    font-weight: 350;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--text-primary);
    background: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ── Navbar ── */
.site-navbar {
    background: var(--navy);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.nav-brand img {
    height: 28px;
    width: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    border-radius: 50px !important;
    transition: background 0.2s, transform 0.15s !important;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a4f7a 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42,125,225,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,101,34,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 650px;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(242,101,34,0.35);
}

.btn-primary-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(242,101,34,0.45);
    color: #fff;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
}

.btn-secondary-cta:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(42,125,225,0.2) 0%, transparent 60%);
    z-index: -1;
}

/* ── Orbital Ring Animation ── */
.orbit-container {
    position: relative;
    width: 460px;
    height: 460px;
    margin: 0 auto;
}

/* Center shield */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), #ff8a50);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #fff;
    box-shadow: 0 8px 40px rgba(242,101,34,0.4);
    z-index: 10;
    animation: center-broadcast 6s ease-in-out infinite;
}

@keyframes center-broadcast {
    /* Resting state */
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 40px rgba(242,101,34,0.4);
    }
    /* Charge up */
    8% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 8px 60px rgba(242,101,34,0.7);
    }
    /* Fire — snap back slightly past resting */
    12% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 8px 50px rgba(242,101,34,0.5);
    }
    /* Settle */
    18% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 40px rgba(242,101,34,0.4);
    }
}

/* Orbit ring visual */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    margin-top: -170px;
    margin-left: -170px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: ring-spin 40s linear infinite;
}

.orbit-ring-2 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    border: 1px dashed rgba(255,255,255,0.06);
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Individual orbiting icon */
.orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    margin-left: -28px;
    animation: orbit-float var(--duration) linear infinite;
    z-index: 5;
}

.orbit-icon-inner {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    animation: icon-bob 3s ease-in-out infinite;
    transition: box-shadow 0.3s;
}

.orbit-icon-inner:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 24px rgba(255,255,255,0.15);
}

.orbit-icon-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

@keyframes orbit-float {
    from {
        transform: rotate(var(--start)) translateX(var(--radius)) rotate(calc(-1 * var(--start)));
    }
    to {
        transform: rotate(calc(var(--start) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * var(--start) - 360deg));
    }
}

/* Icon positions set via inline style vars: --start, --radius, --duration, --receive-delay */

@keyframes icon-bob {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-4px); }
}

/* Alert receive flash on icons (staggered) */
.orbit-icon-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(242,101,34,0.35);
    opacity: 0;
    animation: icon-receive 6s ease-out infinite;
    animation-delay: var(--receive-delay, 0s);
    pointer-events: none;
}

.orbit-icon-inner {
    position: relative;
}

@keyframes icon-receive {
    0%, 10% { opacity: 0; }
    15% { opacity: 1; border-color: rgba(242,101,34,0.6); }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

/* Alert broadcast ripple from center */
.alert-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border: 2px solid rgba(242,101,34,0.6);
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
    animation: ripple-expand 6s ease-out infinite;
    pointer-events: none;
}

.alert-ripple:nth-child(2) {
    animation-delay: 0.3s;
    border-color: rgba(242,101,34,0.4);
}

.alert-ripple:nth-child(3) {
    animation-delay: 0.6s;
    border-color: rgba(242,101,34,0.25);
}

@keyframes ripple-expand {
    0% { transform: scale(1); opacity: 0.8; }
    20% { transform: scale(5); opacity: 0; }
    100% { transform: scale(5); opacity: 0; }
}

/* Ambient glow behind orbit */
.orbit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(42,125,225,0.15) 0%, rgba(242,101,34,0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ── Trusted By / Social Proof Bar ── */
.social-proof {
    background: var(--section-light);
    border-top: 1px solid #e8edf2;
    border-bottom: 1px solid #e8edf2;
    padding: 28px 0;
    text-align: center;
}

.social-proof p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.proof-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ── Feature Sections ── */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 48px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.feature-icon.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.feature-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.feature-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.feature-icon.navy { background: linear-gradient(135deg, var(--navy-light), var(--navy)); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ── Showcase (alternating image + text) ── */
.showcase-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text .overline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.showcase-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.showcase-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.check-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Platform Badges ── */
.platform-section {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.platform-section .section-title {
    color: #fff;
}

.platform-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.platform-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.platform-badge i {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.9);
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ── */
.site-footer {
    background: #fff;
    border-top: 1px solid #e8edf2;
    padding: 16px 0;
    text-align: center;
}

.site-footer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 2px;
    }

    .nav-links a {
        padding: 10px 14px;
        width: 100%;
    }

    .hero {
        padding: 50px 0 40px;
        min-height: auto;
    }

    .hero .row {
        text-align: center;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .orbit-container {
        width: 320px;
        height: 320px;
        margin-top: 30px;
    }

    .orbit-center {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 18px;
    }

    .orbit-ring {
        width: 240px;
        height: 240px;
        margin-top: -120px;
        margin-left: -120px;
    }

    .orbit-ring-2 {
        width: 180px;
        height: 180px;
        margin-top: -90px;
        margin-left: -90px;
    }

    .orbit-icon {
        --radius: 120px !important;
    }

    .orbit-icon-inner {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .orbit-icon {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        margin-left: -22px;
    }

    .orbit-icon-label {
        display: none;
    }

    .showcase-row,
    .showcase-row.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .proof-stats {
        gap: 32px;
    }

    .section {
        padding: 56px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 36px 0 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .platform-badges {
        gap: 24px;
    }

    .proof-stats {
        gap: 24px;
    }

    .proof-stat .number {
        font-size: 1.4rem;
    }
}

/* ══════════════════════════════════════════════════════
   Interior Pages — shared styles for About, Pricing,
   Sales, Privacy, Subscribe, Checkout
   ══════════════════════════════════════════════════════ */

/* ── Page Hero (simpler than homepage hero) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a4f7a 100%);
    position: relative;
    overflow: hidden;
    padding: 64px 0 56px;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42,125,225,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Content Wrapper (interior pages) ── */
.content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-wrap h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--accent);
    letter-spacing: -0.02em;
}

.content-wrap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 10px;
}

.content-wrap p,
.content-wrap li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.content-wrap ul {
    padding-left: 20px;
}

.content-wrap a {
    color: var(--accent);
}

.content-wrap a:hover {
    color: var(--accent-hover);
}

/* ── Plan Cards ── */
.plan-card {
    border-radius: 14px;
    border: 1px solid #e8edf2;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.plan-card.featured {
    border: 2px solid var(--blue-soft);
    position: relative;
}

.plan-card.featured .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-soft);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plan-card .card-header {
    border-radius: 12px 12px 0 0;
    padding: 28px 24px 20px;
    text-align: center;
    background: #fff;
    border-bottom: none;
}

.plan-card .card-header h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.plan-card .card-header .plan-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.plan-card .price-block {
    text-align: center;
    padding: 20px 24px 16px;
}

.plan-card .price-block .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.plan-card .price-block .price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-card .price-block .price-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.plan-card .features-list {
    list-style: none;
    padding: 0 28px;
    margin: 0;
    flex: 1;
}

.plan-card .features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-card .features-list li:last-child {
    border-bottom: none;
}

.plan-card .features-list .check {
    color: #22c55e;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-card .card-footer {
    padding: 20px 28px 28px;
    background: transparent;
    border-top: none;
}

.plan-card .card-footer .btn-plan {
    width: 100%;
    padding: 13px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--navy);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.plan-card .card-footer .btn-plan:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-1px);
}

.plan-card.featured .card-footer .btn-plan {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.plan-card.featured .card-footer .btn-plan:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ── Comparison Table ── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    background: var(--section-light);
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #e8edf2;
    color: var(--text-primary);
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid #f0f4f8;
    color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .check-icon {
    color: #22c55e;
    font-weight: bold;
}

/* ── FAQ Section ── */
.faq-item {
    margin-bottom: 24px;
}

.faq-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item a {
    color: var(--accent);
}

.faq-item a:hover {
    color: var(--accent-hover);
}

/* ── Contact Info Bar ── */
.contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--section-light);
    border-radius: 14px;
    border: 1px solid #e8edf2;
}

.contact-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-bar .contact-item i {
    font-size: 1.3rem;
    color: var(--accent);
}

.contact-bar .contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-bar .contact-item a:hover {
    text-decoration: underline;
}

/* ── Sales / Contact Form ── */
.ba-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ba-form .form-control,
.ba-form .form-select {
    border-radius: 10px;
    padding: 11px 16px;
    border: 1px solid #e8edf2;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ba-form .form-control:focus,
.ba-form .form-select:focus {
    border-color: var(--blue-soft);
    box-shadow: 0 0 0 3px rgba(42,125,225,0.12);
}

.btn-submit {
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(242,101,34,0.3);
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(242,101,34,0.4);
    color: #fff;
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ── Privacy-specific ── */
.tldr-box {
    background: var(--section-light);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin-bottom: 32px;
    border-radius: 0 12px 12px 0;
}

.tldr-box h2 {
    margin-top: 0 !important;
    border-bottom: none !important;
    font-size: 1.15rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 12px !important;
}

.toc-box {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.toc-box h2 {
    margin-top: 0 !important;
    border-bottom: none !important;
    font-size: 1.1rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 12px !important;
}

.toc-box ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.toc-box li {
    margin-bottom: 4px;
}

.toc-box a {
    text-decoration: none;
    color: var(--accent);
}

.toc-box a:hover {
    text-decoration: underline;
}

/* ── Values Cards ── */
.value-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.value-card .value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.value-card .value-quote {
    font-style: italic;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.value-card .value-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Checkout Loader ── */
.checkout-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
}

.checkout-loader .spinner-border {
    width: 3rem;
    height: 3rem;
    margin-bottom: 24px;
    color: var(--blue-soft);
}

.checkout-loader h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.checkout-loader p {
    font-size: 1rem;
    color: var(--text-muted);
}

.checkout-error {
    display: none;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px;
}

.checkout-error h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.checkout-error p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ── Interior Responsive ── */
@media (max-width: 991px) {
    .page-hero {
        padding: 48px 0 40px;
    }

    .content-wrap {
        padding: 40px 20px;
    }

    .contact-bar {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 36px 0 32px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .content-wrap {
        padding: 32px 16px;
    }

    .plan-card .price-block .price {
        font-size: 2.4rem;
    }
}