:root {
    /* Light Premium Palette */
    --bg-dark: #F8F9FA;
    --bg-surface: rgba(255, 255, 255, 0.6);
    --bg-surface-solid: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.15);

    /* Primary Cyber/Safety Colors */
    --primary-rgb: 3, 182, 156;
    --status-rgb: 37, 211, 102;
    --status-color: #25D366;
    --primary: #03B69C;
    --primary-hover: #029983;
    --primary-glow: rgba(var(--primary-rgb), 0.25);
    --primary-glow-heavy: rgba(var(--primary-rgb), 0.4);

    --secondary: #03B69C;

    /* Text */
    --text-main: #070707;
    --text-muted: #4A5568;

    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing & Sizes */
    --section-padding: 100px;
    --section-padding-mobile: 80px;
    --container-width: 1200px;
    --card-radius: 24px;
    --gap-base: 32px;
    --gap-small: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: blur(16px);
}

.br-mobile {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
        --section-padding-mobile: 40px;
    }

    .hide-mobile {
        display: none !important;
    }

    .br-mobile {
        display: block;
    }

    .spacer-64 { height: 32px !important; }
    .spacer-48 { height: 24px !important; }
    .spacer-32 { height: 16px !important; }
    .mb-64 { margin-bottom: 32px !important; }
    .mb-32 { margin-bottom: 16px !important; }
    .mt-80 { margin-top: 40px !important; }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utility / Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: var(--section-padding) 0;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
}

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

.mx-auto {
    margin-inline: auto;
}

.mb-64 {
    margin-bottom: 64px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-96 {
    margin-bottom: 96px;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.spacer-32 {
    height: 32px;
}

.max-w {
    max-width: 800px;
    margin-inline: auto;
}

.text-primary {
    color: var(--primary) !important;
}

.text-main {
    color: var(--text-main) !important;
}

.block-btn {
    display: block;
    text-align: center;
    width: 100%;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mt-auto {
    margin-top: auto;
}

.section-padding-small {
    padding: 64px 0;
}

/* Reusable dark section */
.dark-section {
    position: relative;
}

.infra-intro {
    padding-top: 20px !important;
}





.dark-section .section-title {
    color: #ffffff;
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}


@media (max-width: 768px) {
    .section-padding-small {
        padding: 48px 0;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h2.section-title {
    font-size: clamp(1.85rem, 6vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 0;
    /* Removing default margin, use utility classes instead */
}

p.large-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.mb-line {
    margin-bottom: 32px;
}

.hidden-pt {
    margin-top: 48px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #0A0F16, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 24px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 32px var(--primary-glow-heavy);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.btn-icon {
    padding: 14px;
    border-radius: 12px;
}

/* Glassmorphism & Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
}

.glow-border-soft {
    position: relative;
}

.glow-border-soft::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(to bottom right, rgba(var(--primary-rgb), 0.2), transparent);
    z-index: -1;
    opacity: 0.5;
}

/* Glow Orbs / Environment */
.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow-heavy) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.top-right {
    top: -200px;
    right: -200px;
}

.bottom-left {
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.15) 0%, transparent 70%);
}

.center-behind {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    color: var(--text-main);
}

.navbar:not(.scrolled) {
    color: #fff;
}

.navbar .logo-img {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    filter: none;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
}

@keyframes navEntry {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: navEntry 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .logo-img {
        height: 32px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 12px;
    }
    
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 16px;
    }
}

.lang-switcher {
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-switcher .active {
    color: var(--primary);
}

.lang-switcher .divider {
    color: var(--border-light);
    margin: 0 4px;
}

.btn-nav {
    font-weight: 600;
    color: #FFFFFF;
    background: var(--primary);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-nav:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--primary-glow-heavy);
}

/* SITE SWITCHER */
.site-switcher-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    width: 100%;
}

.site-switcher {
    display: inline-flex;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    min-width: unset;
}

.switcher-btn {
    position: relative;
    z-index: 2;
    flex: 1 0 0;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    text-align: center;
    white-space: nowrap;
}

.switcher-btn.active {
    color: #FFFFFF;
}

.switcher-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: var(--primary);
    border-radius: 100px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.site-switcher[data-active="personal"] .switcher-slider {
    transform: translateX(100%);
}

/* CONTENT VISIBILITY BY MODE */
.personal-view {
    display: none;
}

body[data-site-mode="personal"] .protector-view {
    display: none;
}

body[data-site-mode="personal"] .personal-view {
    display: block;
}

@media (max-width: 480px) {
    .switcher-btn {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .site-switcher-wrapper {
        margin-top: 32px;
    }
}

/* 1. HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 160px 0 100px;
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-center-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .text-main {
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    color: #FFFFFF !important;
    opacity: 0.95;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 0 auto 12px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-text-layers {
    display: grid;
    grid-template-areas: "layer";
    width: 100%;
    margin-bottom: 0;
}

.hero-text-block {
    grid-area: layer;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(15px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-block.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    pointer-events: auto;
}

.hero-content.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.hero-visual.reveal {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(20px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual.reveal.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 32px;
        min-height: 80vh;
    }

    .hero-content {
        margin-inline: auto;
    }

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

}

.hero-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

/* HERO REVEAL ANIMATIONS */
.hero-content .hero-text-layers,
.hero-actions {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content.active .hero-text-layers {
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.hero-content.active .hero-actions {
    animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px) skewY(2deg);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
        filter: blur(0);
    }
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: arrowBounce 2s infinite;
    cursor: pointer;
}

.scroll-down-arrow:hover {
    color: var(--primary);
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(12px);
    }
    60% {
        transform: translateY(6px);
    }
}

/* 1. SCENARIOS SECTION */
.scenarios {
    background: #f8fafc;
}

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

.scenario-card {
    background: #FFFFFF;
    padding: 20px 16px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 120px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.scenario-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

/* Base state for cards with backgrounds */
.scenario-card.has-bg {
    background: #06090b;
    /* Dark base for cards with images */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-card.has-bg::before {
    opacity: 0.4;
}

.scenario-card.has-bg .scenario-content h4 {
    color: #ffffff;
}

.scenario-card.has-bg .scenario-content p {
    color: rgba(255, 255, 255, 0.7);
}

.scenario-card.has-bg:hover::before {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Specific Scenario Backgrounds */
.scenario-aggression::before {
    background-image: url('assets/scenario_aggression_1773139622270.png');
}

.scenario-attention::before {
    background-image: url('assets/scenario_attention_1773139679201.png');
}

.scenario-bullying::before {
    background-image: url('assets/scenario_school_bullying_1773653673716.png');
}

.scenario-ex::before {
    background-image: url('assets/scenario_ex_partner_conflict_1773653507825.png');
}

.scenario-late-returns::before {
    background-image: url('assets/scenario_late_returns_1773140294026.png');
}

.scenario-transit::before {
    background-image: url('assets/scenario_transit_1773140315774.png');
}

.scenario-medical::before {
    background-image: url('assets/scenario_medical_1773140334236.png');
}

.scenario-taxi::before {
    background-image: url('assets/scenario_taxi_conflict_1773231946131.png');
}

.scenario-door::before {
    background-image: url('assets/scenario_bar_conflict_1773235231197.png');
}

.scenario-theft::before {
    background-image: url('assets/scenario_harassment_v2_1773235261882.png');
}

.scenario-drunk::before {
    background-image: url('assets/scenario_drunk_company_1773232676508.png');
}

.scenario-neighbor::before {
    background-image: url('assets/scenario_bad_neighbor_1773232695830.png');
}

.scenario-road::before {
    background-image: url('assets/scenario_road_conflict_1773232714087.png');
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.scenario-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--primary-rgb), 1);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.scenario-card:hover .scenario-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.scenario-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.3;
}

.scenario-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.scenario-card.highlight-scenario {
    border: 2px dashed rgba(var(--primary-rgb), 0.4);
}

.scenario-card.highlight-scenario.has-bg {
    background: #06090b;
}

.scenario-card.highlight-scenario .scenario-icon {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .scenario-card {
        padding: 16px 20px;
        min-height: 100px;
        margin-bottom: 8px;
    }
}

/* 1.1 BELIEFS SECTION (List Layout) */
.myths-list-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.myth-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.myth-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.myth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.myth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 0;
}

.myth-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.myth-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .section-header-centered {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .myth-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 24px 0;
        margin-bottom: 12px;
    }

    .myth-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .myth-content {
        align-items: center;
        padding-top: 0;
    }
}




.hero-content h1 {
    margin: 0 0 24px 0;
}



@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-content {
    max-width: 850px;
    /* Increased to ensure two-line heading fits */
    z-index: 2;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 0;
    width: 100%;
    padding: 0 20px;
}

/* HERO VIDEO REFINEMENTS END */
/* PROBLEM SECTION — Light Gray Background */
section.problem {
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}

/* Subtle radial overlay for depth */
section.problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 0, 0, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section.problem>.container {
    position: relative;
    z-index: 1;
}

section.problem .section-title {
    color: var(--text-main);
}

section.problem .section-subtitle {
    color: var(--text-muted);
}

/* 2. EXPANDING GALLERY (Ваше окружение) */
.expanding-gallery {
    display: flex;
    gap: 20px;
    height: 480px;
    width: 100%;
}

.gallery-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    overflow: hidden;
    flex: 1;
    /* Equal default width */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.expanding-gallery:hover .gallery-panel {
    flex: 0.5;
    /* Shrink all when gallery is hovered */
}

.gallery-panel:hover {
    flex: 2 !important;
    /* The hovered panel expands */
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.gallery-panel.active .panel-overlay,
.gallery-panel:hover .panel-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.panel-content {
    position: absolute;
    inset: 0;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Move to bottom */
    align-items: center;
    /* Keep centered horizontally */
    text-align: center;
    z-index: 2;
    color: #fff;
}

.panel-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    transition: all 0.5s ease;
    width: 100%;
}



.panel-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.expanding-gallery:hover .gallery-panel:not(:hover) .panel-header h3 {
    font-size: 1.1rem;
    /* Shrink title slightly instead of hiding */
}

.panel-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    margin-top: 0;
}

.gallery-panel:hover .panel-body {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
}

.expanding-gallery:hover .gallery-panel:not(:hover) .panel-body {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.panel-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-wrap: balance;
}

@media (max-width: 992px) {
    .expanding-gallery {
        flex-direction: column;
        height: auto !important;
        gap: 12px;
        padding-bottom: 20px;
    }

    .gallery-panel {
        flex: none;
        width: 100%;
        height: 100px; 
        transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        cursor: default;
        will-change: height;
        overflow: hidden;
    }

    .gallery-panel .panel-body {
        max-height: 0;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    /* Active state (triggered by scroll JS) */
    .gallery-panel.active {
        height: 340px;
    }

    .panel-header h3 {
        font-size: 1.25rem;
        transition: transform 0.4s ease;
    }

    .gallery-panel.active .panel-header h3 {
        transform: translateY(-10px);
    }

    .gallery-panel.active .panel-body {
        max-height: 250px;
        opacity: 1;
        margin-top: 12px;
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    
    /* Disable hover effects on mobile to prevent conflicts with scroll logic */
    .gallery-panel:hover {
        flex: none !important;
    }
}






/* 2.5 HOW IT PROTECTS */
.protect-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .protect-split {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .protect-content {
        margin-inline: auto;
    }

    .video-container {
        margin-inline: auto;
    }
}

.protect-content {
    max-width: 540px;
}

.protect-description {
    margin-top: 32px;
}

.protect-description p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    padding: 12px;
    background: var(--bg-surface);
    border-radius: 32px;
    overflow: hidden;
    margin: 0 auto;
}

.protect-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay-soft {
    position: absolute;
    inset: 12px;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    border-radius: 20px;
}



@media (max-width: 992px) {
    .protect-split {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }



    .protect-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .protect-visual {
        order: 2;
    }
}


/* 3. VALUE PROP — DARK HERO STRIPE */
/* 3. VALUE PROP — DARK HERO STRIPE */
.value-prop {
    position: relative;
}

.integrated-dark-block {
    background: #06090b;
    position: relative;
    overflow: visible !important;
    isolation: isolate;
    /* Create new stacking context but allow overflow */
}




/* Dot-grid texture */
.integrated-dark-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}



/* Animated primary glow top-left */
.integrated-dark-block::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 65%);
    animation: vpGlowPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}



@keyframes vpGlowPulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(80px, 60px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-40px, 100px) scale(0.95);
        opacity: 0.7;
    }
}

/* Secondary glow bottom-right */
.integrated-dark-block .vp-glow-secondary {

    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 65%);
    animation: vpGlowPulse 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 0;
}


/* Make all direct children sit above the bg layers */
.value-prop>.container {
    position: relative;
    z-index: 1;
}

/* Override text colours for dark background */
.value-prop .section-title {
    color: #ffffff;
}

.value-prop .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Security steps on dark bg */
.value-prop .security-step {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.value-prop .security-step:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.value-prop .security-step .step-content h3 {
    color: #ffffff;
}

.value-prop .security-step .step-content p {
    color: rgba(255, 255, 255, 0.6);
}

/* Step icon stays branded blue but with dark glow */
.value-prop .step-num-icon {
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}



/* Marquee on dark bg */
.value-prop .partners-marquee-section {
    margin-top: 0;
}

.value-prop .marquee-title {
    color: rgba(255, 255, 255, 0.4);
}

.value-prop .marquee-group span {
    color: rgba(255, 255, 255, 0.5);
}

.value-prop .marquee-group i {
    color: var(--primary);
    opacity: 0.6;
}

/* 3. VALUE PROP REDESIGN */
/* 3. ARCHITECTURE & LOGIC SECTION */
.architecture-wrap {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.logic-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.logic-card {
    padding: 48px !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.4) !important;
}

.logic-card.accent-border {
    border: 2px solid var(--primary);
    background: rgba(var(--primary-rgb), 0.03) !important;
}

.logic-tag {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.logic-tag.active {
    background: var(--primary);
    color: white;
}

.logic-card h3 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.logic-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logic-body .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
}

.logic-body strong {
    color: var(--primary);
}

/* Insurance Specifics */
.insurance-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ins-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ins-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ins-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.ins-text p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: var(--text-muted) !important;
}

/* SOS Visuals */
.sos-activation-box {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.sos-visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.sos-inner-circle {
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    z-index: 2;
}

.sos-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.sos-text p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.card-footer-note {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-footer-note.dark {
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    border-top: none;
    margin-top: 16px;
}

.card-footer-note i {
    color: var(--primary);
}

.card-footer-note span {
    font-style: italic;
}

/* Timeline Architecture */
.response-architecture {
    padding: 80px 0 0 0;
    color: white;
}


.arch-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.arch-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.arch-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 0;
}

.arch-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* TIMELINE TRIGGER — SOS Button Press */
/* Aligns SOS center with timeline-line at left: 150px.
   Spacer = 150px (line) - 44px (half of 88px btn) = 106px */
.timeline-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    position: relative;
}

.sos-slider-container {
    width: 100%;
    max-width: 420px;
    height: 88px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 44px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
}

.trigger-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trigger-description i {
    font-size: 1.1rem;
}

.sos-slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 44px;
    background: transparent;
    transition: background-color 0.4s ease;
}

.sos-slider-track.completed {
    background: rgba(255, 59, 48, 0.15);
}

.sos-slider-text {
    position: absolute;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding-left: 70px;
}

.sos-slider-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    z-index: 2;
    cursor: grab;
    box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.3);
    touch-action: none;
    user-select: none;
    will-change: transform;
    animation: sosIdlePulse 2.5s infinite ease-out, sosIdleShake 4s infinite ease-in-out;
}

.sos-slider-thumb:active {
    cursor: grabbing;
    animation: none !important;
}

.sos-slider-thumb i {
    font-size: 1.7rem;
}

.sos-slider-thumb.is-active {
    background: #ff3b30;
    box-shadow: 0 0 40px rgba(255, 59, 48, 0.6);
    cursor: default;
    transition: transform 0.3s ease, background 0.4s ease;
    animation: none !important;
}

.sos-slider-thumb.is-active i {
    animation: sosBeat 0.4s ease infinite alternate;
}

@keyframes sosIdlePulse {
    0% {
        box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.3), 0 0 0 0 rgba(var(--primary-rgb), 0.5);
    }

    50% {
        box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.3), 0 0 0 20px rgba(var(--primary-rgb), 0);
    }

    100% {
        box-shadow: 0 12px 20px rgba(var(--primary-rgb), 0.3), 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

@keyframes sosIdleShake {

    0%,
    85% {
        left: 0;
    }

    87% {
        left: 4px;
    }

    89% {
        left: -3px;
    }

    91% {
        left: 3px;
    }

    93% {
        left: -2px;
    }

    95% {
        left: 0;
    }

    100% {
        left: 0;
    }
}

@keyframes sosBeat {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.timeline-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content-inner {
    min-height: 0;
    position: relative;
    overflow: hidden;
    /* padding-top to give breathing room after the SOS button */
    padding-top: 20px;
}

.timeline-container.simulation-active .timeline-content-wrapper {
    grid-template-rows: 1fr;
}

.timeline-line {
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--primary), transparent);
    opacity: 0.4;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-container.simulation-active .timeline-line {
    transform: scaleY(1);
    transition: transform 5s linear;
    /* Slow growth during simulation */
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-time {
    width: 130px;
    flex-shrink: 0;
    margin-right: 40px;
    padding-top: 8px;
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.step-time span {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    display: block;
}

.step-dot {
    position: absolute;
    left: 151px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0A0F16;
    border: 2px solid var(--primary);
    z-index: 2;
    margin-top: 14px;
    box-shadow: 0 0 15px var(--primary-glow-heavy);
}

.step-dot.main {
    width: 24px;
    height: 24px;
    border-width: 4px;
    margin-top: 10px;
}

.step-info {
    flex-grow: 1;
    padding-left: 20px;
}

.step-info h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-wrap: balance;
}

.step-info p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    text-wrap: balance;
}

.timeline-step.highlight .step-info {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    max-width: 900px;
}

.resolution-sequence {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seq-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.seq-item:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateX(5px);
}

.seq-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seq-content h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-wrap: balance;
}

.seq-content p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
    text-wrap: balance;
}

.seq-arrow {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: var(--primary);
    opacity: 0.5;
    font-size: 1.2rem;
}

.highlight-end {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.seq-item, 
.seq-arrow {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step.is-visible .seq-item,
.timeline-step.is-visible .seq-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered loading for the sequence */
.timeline-step.is-visible .seq-item:nth-child(1) { transition-delay: 0.3s; }
.timeline-step.is-visible .seq-arrow:nth-child(2) { transition-delay: 0.6s; }
.timeline-step.is-visible .seq-item:nth-child(3) { transition-delay: 0.9s; }
.timeline-step.is-visible .seq-arrow:nth-child(4) { transition-delay: 1.2s; }
.timeline-step.is-visible .seq-item:nth-child(5) { transition-delay: 1.5s; }
.timeline-step.is-visible .seq-arrow:nth-child(6) { transition-delay: 1.8s; }
.timeline-step.is-visible .seq-item:nth-child(7) { transition-delay: 2.1s; }

.pulsate {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

@media (max-width: 1024px) {
    .logic-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-step {
        flex-direction: column;
        gap: 12px;
        padding-left: 60px;
    }

    .step-time {
        width: auto;
        margin-right: 0;
        text-align: left;
    }

    .step-time span {
        display: inline;
        margin-right: 8px;
    }

    .step-dot {
        left: 25px;
        margin-top: 10px;
    }

    .step-info {
        padding-left: 0;
        width: 100%;
    }

    .timeline-step.highlight .step-info {
        padding: 24px 16px;
    }

    .seq-item {
        padding: 12px;
        gap: 16px;
    }

    .seq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .response-architecture {
        padding: 40px 24px;
    }

    .logic-card {
        padding: 32px !important;
    }
}


.section-header-centered {
    max-width: 1000px;
    margin-inline: auto;
}


.highlight-card {
    position: relative;
    background: rgba(20, 28, 39, 0.7);
    border-color: var(--primary-glow-heavy);
}

/* 4. GUIDE REDESIGN */
.guide-intro {
    margin-bottom: 64px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.section-title-small {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 700;
}

.section-subtitle-small {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.spacer-64 {
    height: 64px;
}

.spacer-48 {
    height: 48px;
}

.infrastructure-card {
    padding: 64px;
    border-radius: 40px;
    background: var(--bg-surface-solid);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.infra-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.infra-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.infra-feature .f-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.infra-feature .f-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 700;
}

.infra-feature .f-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .infrastructure-card {
        padding: 40px 24px;
    }
}


/* 5.5 TRUST & BENEFITS SECTION */
.trust-benefits {
    background:
        linear-gradient(rgba(6, 9, 11, 0.60), rgba(6, 9, 11, 0.60)),
        url('happy_family.png') center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trust-benefits-inner {
    max-width: 1000px;
    padding: 120px 32px;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.trust-title .counter {
    color: var(--primary);
}

.trust-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: balance;
}

/* 5.6 SIMPLICITY & ACCESS SECTION */
.simplicity-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
}

.simplicity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.simplicity-card {
    background: #f8f9fa;
    padding: 48px 32px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.simplicity-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.simplicity-icon {
    width: 72px;
    height: 72px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 28px;
    transition: all 0.5s;
}

.simplicity-card:hover .simplicity-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.simplicity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.simplicity-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .simplicity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.benefit-item {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-glow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. PLAN - Blue Theme */
.plan {
    background: var(--primary);
    color: #FFFFFF;
}

.plan .section-title {
    color: #FFFFFF !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

.step {
    text-align: center;
    position: relative;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-step-action {
    display: inline-block;
    background: #FFFFFF;
    color: var(--primary);
    padding: 8px 24px;
    /* Reduced padding to match text height better */
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    /* Match step h3 size exactly */
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
}

.btn-step-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.step h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin: 0;
    padding: 8px 0;
    /* Exactly match button vertical padding for baseline alignment */
    line-height: 1.2;
}

.step-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

.step-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@media (max-width: 768px) {
    .step:not(:last-child)::after {
        display: none;
    }
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
    line-height: 1.6;
}

/* 7. VIDEO */
.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.video-wrapper:hover .video-bg {
    transform: scale(1.05);
}

.video-overlay-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.video-center {
    position: relative;
    z-index: 10;
    text-align: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 16px;
}

.play-btn i {
    margin-left: 6px;
}

.video-wrapper:hover .play-btn {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: scale(1.1);
}

.video-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 5. ACTIVATION PATH */
.activation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.activation-step {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.activation-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.step-number {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.activation-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.activation-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.app-buttons-mini {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mini-app-btn {
    padding: 10px 16px;
    background: #000;
    color: white;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.mini-app-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.step-link {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(var(--primary-rgb), 0.08);
    padding: 12px 20px;
    border-radius: 100px;
    width: fit-content;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.pulse-green {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

@media (max-width: 992px) {
    .activation-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 24px;
    }

    .activation-step {
        padding: 32px 24px !important;
    }

    .step-header {
        margin-bottom: 20px !important;
    }
}

/* 8. PRICES — Premium Tech Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin: 0 auto;
    gap: 28px;
    align-items: start;
}

.price-card {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    /* Removed overflow: hidden to prevent clipping the badge */
}

/* Base clipping layer for background effects */
.price-card-content-wrap {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.10);
    border-color: rgba(var(--primary-rgb), 0.3);
}

/* Popular = dark premium */
.price-card.popular {
    background: #06090b;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 24px 80px rgba(var(--primary-rgb), 0.2);
}

.price-card.popular::before {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 60%);
}

.price-card.popular:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(var(--primary-rgb), 0.35);
    border-color: rgba(var(--primary-rgb), 0.55);
}

/* Animated glow orb inside popular card */
.price-card-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.popular-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #FFFFFF;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    z-index: 10;
    animation: badgePulse 2.5s infinite ease-in-out;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.6);
    }
}

.price-daily {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.price-card.popular .price-daily {
    color: rgba(255, 255, 255, 0.55);
}

/* Card top area with icon */
.price-card-top {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.plan-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.price-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
}

.popular-icon {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 6px;
}

.price-card.popular .plan-name {
    color: #ffffff;
}

.plan-members {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-card.popular .plan-members {
    color: rgba(255, 255, 255, 0.75);
}

.plan-members i {
    font-size: 1rem;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 10px;
}

.price-card.popular .price-value .currency {
    color: rgba(255, 255, 255, 0.7);
}

.price-value .amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
    letter-spacing: -3px;
}

.price-card.popular .price-value .amount {
    color: #ffffff;
}

.price-value .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-card.popular .price-value .period {
    color: rgba(255, 255, 255, 0.45);
}

/* Feature list */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-main);
}

.price-card.popular .price-features li {
    color: rgba(255, 255, 255, 0.92);
}

.price-features li i {
    font-size: 1.15rem;
    color: var(--primary);
    flex-shrink: 0;
}

.price-features li.muted {
    opacity: 0.38;
}

.price-features li.muted i {
    color: var(--text-muted);
}

/* Buttons */
.btn-primary-solid {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.4);
    font-weight: 700;
    text-align: center;
    padding: 16px 28px;
    border-radius: 100px;
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.btn-primary-solid:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.55);
    color: #ffffff;
}

.btn-outline-tech {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    font-weight: 700;
    text-align: center;
    padding: 16px 28px;
    border-radius: 100px;
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-outline-tech:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-2px);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.price-card.popular .price-note {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-info-note {
    background: #f8fafc;
    padding: 24px 40px;
    border-radius: 24px;
    width: fit-content;
    margin: 64px auto 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-info-note p {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    text-wrap: balance;
}

.pricing-info-note p i {
    font-size: 1.5rem;
    color: var(--primary);
    vertical-align: middle;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .pricing-info-note {
        padding: 16px 20px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .price-card {
        padding: 44px 32px;
    }

    .price-value .amount {
        font-size: 3.8rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }
}

/* Gift Section Styles */
.gift-section-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 48px auto 0;
    z-index: 1;
}

.gift-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.12), transparent 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
}

.gift-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding: 64px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.gift-features-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.gift-features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gift-features-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.gift-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gift-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.gift-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.gift-visual {
    border-radius: 32px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gift-section:hover .gift-image {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .gift-section {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }

    .gift-badge {
        margin-inline: auto;
    }

    .gift-features-list {
        display: inline-block;
        text-align: left;
    }

    .gift-footer {
        flex-direction: column;
        gap: 24px;
    }

    .gift-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 9. FOOTER */

/* 7. CONTACT MANAGER CTA */
.contact-cta {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 48px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.messenger-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.messenger-btn i {
    font-size: 1.4rem;
}

.messenger-btn.telegram {
    background: #24A1DE;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(36, 161, 222, 0.2);
}

.messenger-btn.whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.messenger-btn.viber {
    background: #7360F2;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(115, 96, 242, 0.2);
}

.messenger-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.manager-avatar-group {
    position: relative;
    width: fit-content;
}

.manager-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.manager-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--status-color);
    border-radius: 50%;
}

.pulse-green {
    box-shadow: 0 0 0 rgba(var(--status-rgb), 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--status-rgb), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--status-rgb), 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--status-rgb), 0);
    }
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 48px;
        text-align: center;
        gap: 48px;
    }

    .contact-subtitle {
        margin-inline: auto;
    }

    .messenger-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .manager-img {
        width: 240px;
        height: 240px;
    }

    .manager-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 40px 24px;
        border-radius: 32px;
    }

    .messenger-btn {
        width: 100%;
        justify-content: center;
    }
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #070707;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr 200px;
    gap: 64px;
    align-items: start;
}

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

.faq-column {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-left: -5px;
}

.footer-brand .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 24px;
    max-width: 250px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
}

.socials a:hover {
    background: var(--primary);
    color: #000;
}

.footer-links h4,
.footer-faq h4,
.footer-contacts h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary);
}

details {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    color: #FFFFFF;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-size: 0.95rem;
}

.footer-contacts .contact-line {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.footer-contacts .contact-line a {
    color: #FFFFFF;
    font-weight: 500;
    white-space: nowrap;
}

.footer-contacts .contact-line a:hover {
    color: var(--primary);
}

.lead-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.lead-form {
    display: flex;
    gap: 8px;
}

.lead-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    outline: none;
    font-family: inherit;
}

.lead-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* SCROLL REVEAL & ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.slide-left {
    transform: translateX(-40px);
}

.reveal.slide-right {
    transform: translateX(40px);
}

.reveal.slide-left.active,
.reveal.slide-right.active {
    transform: translateX(0);
}

.reveal.scale-up {
    transform: scale(0.95) translateY(20px);
}

.reveal.scale-up.active {
    transform: scale(1) translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow-heavy);
    }

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* PROFESSIONAL STAGGER REVEAL */
.reveal.stagger-container>*:not(.timeline-line) {
    opacity: 0;
}

.reveal.stagger-container.active>*:not(.timeline-line) {
    animation: popupFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal.stagger-container.active>*:nth-child(1) {
    animation-delay: 0.1s;
}

.reveal.stagger-container.active>*:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal.stagger-container.active>*:nth-child(3) {
    animation-delay: 0.3s;
}

.reveal.stagger-container.active>*:nth-child(4) {
    animation-delay: 0.4s;
}

.reveal.stagger-container.active>*:nth-child(5) {
    animation-delay: 0.5s;
}

.reveal.stagger-container.active>*:nth-child(6) {
    animation-delay: 0.6s;
}

.reveal.stagger-container.active>*:nth-child(7) {
    animation-delay: 0.7s;
}

.reveal.stagger-container.active>*:nth-child(8) {
    animation-delay: 0.8s;
}

.reveal.stagger-container.active>*:nth-child(9) {
    animation-delay: 0.9s;
}

.reveal.stagger-container.active>*:nth-child(n+10) {
    animation-delay: 1s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        white-space: normal;
    }

    .guide-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

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

    .popular.glow-border-heavy {
        transform: scale(1);
    }

    .popular.glow-border-heavy:hover {
        transform: scale(1.02);
    }

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

@media (max-width: 768px) {
    .hero-content {
        margin-top: 40px;
        text-align: center;
    }

    .footer-grid,
    .footer-top,
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* 4.5 APP FEATURES SECTION */
.app-features-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
    text-align: left;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    align-items: flex-start;
    text-align: left;
}


.feature-card.active,
.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}




.feature-card .step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.feature-card .step-content h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: all 0.4s;
    text-wrap: balance;
}



.feature-card .step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-wrap: balance;
}




.feature-card .step-num-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary);
    /* Solid Blue box like Smart Dispatch */
    color: #FFFFFF;
    /* White icon like Smart Dispatch */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s;
    box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.3);
}




.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .step-content h3 span {
    font-weight: 400;
    opacity: 0.8;
}

.f-result {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card .f-result {
    color: var(--text-main) !important;
    font-weight: 600;
}

.feature-card.active .f-result {
    color: #FFFFFF !important;
}

/* Mockup */
.app-mockup-container {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
}

.mockup-frame {
    width: 323px;
    height: 663px;
    background: #000;
    border-radius: 56px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 8px solid #1a1a1a;
}

.mockup-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: #070707;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.screen-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.screen-layer.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .app-features-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .app-mockup-container {
        position: relative;
        top: 0;
        order: -1;
    }

    .mockup-frame {
        width: 300px;
        height: 620px;
        border-radius: 44px;
        border-width: 7px;
        padding: 10px;
    }

    .mockup-frame::after {
        width: 120px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .mockup-frame {
        width: 240px;
        height: 500px;
        border-radius: 36px;
        border-width: 6px;
        padding: 8px;
    }

    .mockup-frame::after {
        width: 90px;
        height: 18px;
    }

    .app-screen {
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .feature-card .step-content {
        align-items: center;
        text-align: center;
    }
}

/* APP SECURITY UNIFIED (Centered Phone, Cards Around) */
.app-security-unified {
    margin-bottom: 80px;
    width: 100%;
}

.app-security-grid-triple {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 48px;
    /* More air between sides and phone */
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.security-column-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* More air between cards */
}

.security-column-center {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Circular Pulse Animation behind the phone */
.security-column-center::before,
.security-column-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    animation: circularPulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.security-column-center::after {
    animation-delay: 2s;
}

@keyframes circularPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.security-step {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: auto;
    min-height: 240px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .security-step .step-num-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

.security-column-side.column-left .security-step {
    margin-right: 0;
    margin-left: auto;
}

.security-column-side.column-right .security-step {
    margin-left: 0;
    margin-right: auto;
}



.security-step .step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.security-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.step-num-icon {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    background: var(--primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.2);
}

.security-step .step-content h3 {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    /* Remove top margin for perfect alignment with icon */
    font-weight: 800;
    color: var(--text-main);
    text-align: left;
    width: 100%;
    text-wrap: balance;
}

.security-step .step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-muted);
    text-align: left;
    text-wrap: balance;
}

@media (max-width: 1100px) {
    .app-security-grid-triple {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .security-column-center {
        grid-column: span 2;
        order: -1;
        margin-bottom: 40px;
    }


}

@media (max-width: 768px) {
    .app-security-grid-triple {
        grid-template-columns: 1fr;
    }

    .security-column-center {
        grid-column: span 1;
    }

    .security-step {
        padding: 16px 20px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .security-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 24px;
        height: auto;
        min-height: 200px;
    }

    .security-step .step-content {
        align-items: center;
        text-align: center;
    }

    .security-step .step-content h3,
    .security-step .step-content p {
        text-align: center;
    }

    .app-security-grid-triple {
        gap: 24px;
    }
}

/* SECURITY PARTNERS MARQUEE */
.partners-marquee-section {
    margin-bottom: 80px;
    text-align: center;
    overflow: hidden;
}

.marquee-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
    width: fit-content;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding-right: 40px;
}

.marquee-group span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    font-family: var(--font-heading);
    opacity: 0.8;
}

.marquee-group i {
    font-size: 2rem;
    color: var(--primary);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-group span {
        font-size: 1.5rem;
    }

    .marquee-group i {
        font-size: 1.5rem;
    }
}

/* OPERATIVES GALLERY */
.operatives-gallery-section {
    margin: 80px 0;
    padding: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.gallery-info h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.gallery-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.highlight-stats {
    margin-top: 24px;
}

.stat-number {
    font-weight: 800;
    font-family: var(--font-heading);
}

.main-stat {
    font-size: 4rem;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary-glow-heavy));
}

.secondary-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 700;
    margin: 0 4px;
}

.secondary-stat i {
    color: var(--primary);
    font-size: 1.2rem;
}

.gallery-main-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.operatives-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-main-image:hover .operatives-img {
    transform: scale(1.05);
}

.image-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

.info-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .operatives-gallery-section {
        padding: 40px 24px;
    }

    .gallery-info p {
        text-wrap: balance;
    }

    .main-stat {
        display: inline;
        font-size: 2.2rem;
        margin-bottom: 0;
        margin-right: 4px;
        filter: none;
    }

    .highlight-stats {
        font-size: 1.15rem;
        line-height: 1.6;
        text-align: center;
    }

    .secondary-stat {
        font-size: 1.15rem;
    }

    .image-overlay-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .info-item {
        align-items: center;
    }
}
/* ========================================
   PERSONAL MODE — Feminine Friendly Design 2026
   ======================================== */

/* Warm soft palette for personal mode */
.p-personal {
    --p-bg: #FFF8F5;
    --p-bg-card: #FFFFFF;
    --p-accent: #E8847C;
    --p-accent-light: #FCEAE8;
    --p-accent-hover: #D96F66;
    --p-accent-glow: rgba(232, 132, 124, 0.25);
    --p-text: #2D2A32;
    --p-text-soft: #6B6574;
    --p-border: rgba(232, 132, 124, 0.15);
    --p-gradient: linear-gradient(135deg, #FCEAE8 0%, #F5E6FF 50%, #E8F0FE 100%);
    --p-gradient-warm: linear-gradient(135deg, #E8847C, #C86DD7);
}

.p-personal .p-risk,
.p-personal .p-solution,
.p-personal .p-features {
    background: var(--p-bg);
}

/* Section Titles */
.p-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-wrap: balance;
    color: var(--p-text);
    margin-bottom: 16px;
}

/* ---- PILL SCENARIOS ---- */
.p-scenarios-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.p-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--p-text);
    background: var(--p-bg-card);
    border: 1.5px solid var(--p-border);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.p-pill:hover {
    transform: translateY(-2px);
    border-color: var(--p-accent);
    box-shadow: 0 6px 20px var(--p-accent-glow);
}

.p-pill--accent {
    background: var(--p-accent-light);
    border-color: rgba(232, 132, 124, 0.3);
    color: #B5524A;
}

.p-pill--warn {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-color: rgba(255, 152, 0, 0.25);
    color: #E65100;
}

/* ---- BELIEFS GRID ---- */
.p-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.p-belief-card {
    background: var(--p-bg-card);
    border: 1.5px solid var(--p-border);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.p-belief-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 132, 124, 0.12);
    border-color: rgba(232, 132, 124, 0.3);
}

.p-belief-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--p-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--p-accent);
}

.p-belief-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 8px;
}

.p-belief-card p {
    font-size: 0.9rem;
    color: var(--p-text-soft);
    line-height: 1.5;
    margin: 0;
}

/* ---- HOW IT WORKS GRID ---- */
.p-how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.p-how-card {
    flex: 1;
    max-width: 340px;
    background: var(--p-bg-card);
    border: 1.5px solid var(--p-border);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.p-how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 132, 124, 0.12);
}

.p-how-card--highlight {
    border-color: var(--p-accent);
    background: var(--p-accent-light);
}

.p-how-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p-accent);
    margin-bottom: 12px;
}

.p-how-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--p-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--p-accent);
}

.p-how-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 10px;
}

.p-how-card p {
    font-size: 0.9rem;
    color: var(--p-text-soft);
    line-height: 1.6;
    margin: 0;
}

.p-how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p-accent);
    font-size: 1.4rem;
    padding-top: 48px;
    opacity: 0.5;
}

/* ---- Personal section overrides for shared components ---- */
.p-personal .operatives-gallery-section {
    border-radius: 28px;
    border: 1.5px solid var(--p-border);
    overflow: hidden;
}

/* .p-personal .response-architecture {
    border-radius: 28px;
    border: 1.5px solid var(--p-border);
    overflow: hidden;
    background: var(--p-bg-card);
}

.p-personal .arch-header {
    background: var(--p-gradient);
} */

.p-personal .arch-badge {
    background: rgba(255,255,255,0.7) !important;
    color: var(--p-accent) !important;
}

/* .p-personal .arch-header h2 {
    color: var(--p-text) !important;
} */

.p-personal .p-features {
    background: var(--p-bg);
}

.p-personal .p-features .feature-card.active {
    background: var(--p-accent) !important;
    border-color: var(--p-accent) !important;
}

.p-personal .p-features .feature-card.active .step-num-icon {
    background: rgba(255,255,255,0.9);
    color: var(--p-accent);
}

.p-personal .p-features .feature-card:not(.active) .step-num-icon {
    background: var(--p-accent-light);
    color: var(--p-accent);
}

.p-personal .activation {
    background: var(--p-bg);
}

.p-personal .activation .step-number {
    color: var(--p-accent);
}

.p-personal .pricing {
    background: var(--p-bg);
}

.p-personal .price-card.popular {
    border-color: var(--p-accent);
}

.p-personal .price-card.popular .popular-label {
    background: var(--p-accent);
}

.p-personal .btn-primary-solid {
    background: var(--p-accent) !important;
    border-color: var(--p-accent) !important;
}

.p-personal .btn-primary-solid:hover {
    background: var(--p-accent-hover) !important;
}

.p-personal .trust-benefits {
    background: 
        linear-gradient(rgba(6, 9, 11, 0.40), rgba(6, 9, 11, 0.40)),
        url('assets/personal_trust_bg_1773673564101.png') center center / cover no-repeat;
}

.p-personal .simplicity-section {
    background: var(--p-bg);
}

.p-personal .simplicity-icon {
    background: var(--p-accent-light);
    color: var(--p-accent);
}

.p-personal .contact-card {
    background: var(--p-bg-card);
    border-color: var(--p-border);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .p-how-grid {
        flex-direction: column;
        align-items: center;
    }
    .p-how-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .p-how-card {
        max-width: 100%;
    }
    .p-beliefs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .p-pill {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .p-beliefs-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PERSONAL VIEW (PV) THEME
   Soft, structural, feminine, and clear 2026 standards
   ========================================================= */

body[data-site-mode="personal"] {
    --bg-dark: #FFFBFA; /* Warm soft white */
    --bg-surface: #FFFFFF;
    --primary-rgb: 255, 123, 137;
    --status-rgb: 255, 123, 137;
    --status-color: #FF7B89;
    --primary: #FF7B89;
    --primary-hover: #F96575;
    --primary-glow: rgba(255, 123, 137, 0.15);
    --primary-glow-heavy: rgba(255, 123, 137, 0.35);
    --secondary: #FFB3A7;
    --text-main: #3E3535;
    --text-muted: #8B8080;
    --border-color: rgba(255, 123, 137, 0.08);
    --card-radius: 28px;
    --shadow-soft: 0 10px 40px rgba(255, 123, 137, 0.05);
}

.pv-theme {
    color: var(--text-main);
    background: var(--bg-dark);
}

.pv-theme .dark-section {
    background: var(--bg-dark) !important;
}

.pv-section {
    position: relative;
    z-index: 10;
}

.pv-bg-soft {
    background: #FFF5F3;
    border-radius: 40px;
}

/* Typography override for pv-theme */
.pv-theme h1, .pv-theme h2, .pv-theme h3, .pv-theme h4,
.pv-title {
    color: var(--text-main) !important;
}

.pv-massive-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.pv-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.pv-badge {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 100px;
    background: #FFEDEA;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pv-primary-text {
    color: var(--primary) !important;
}

/* Scenarios Masonry (replacing grid) */
.pv-scenarios-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.pv-scenario-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.pv-scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255,123,137,0.15);
}

.pv-scenario-card h4 {
    color: white !important;
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pv-scenario-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.pv-scenario-card:hover::before {
    transform: scale(1.05);
}

.pv-scenario-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 1;
}

/* Specific Sizes */
.pv-scenario-card:nth-child(1), .pv-scenario-card:nth-child(4) { grid-row: span 2; }
.pv-scenario-card:nth-child(8) { grid-column: span 2; }
.pv-scenario-card.highlight-scenario { grid-column: span 2; grid-row: span 2; }

/* Myths Grid */
.pv-myths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pv-myth-card {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: var(--card-radius);
    text-align: left;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.pv-myth-card:hover {
    transform: translateY(-3px);
}

.pv-myth-icon {
    width: 48px;
    height: 48px;
    background: #FFEDEA;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.pv-myth-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.pv-myth-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Steps */
.pv-architecture-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.pv-step-card {
    text-align: center;
}

.pv-step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
}

.pv-step-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.pv-step-card p { color: var(--text-muted); }

/* Mockup Showcase */
.pv-app-showcase {
    display: flex;
    justify-content: center;
}

.pv-mockup-frame {
    width: 272px;
    background: #FFFFFF;
    border: 10px solid #F2ECED;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.pv-mockup-frame img {
    width: 100%;
    display: block;
}

/* Timeline */
.pv-timeline-container {
    background: var(--bg-surface);
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    margin: 0 auto;
    max-width: 900px;
}

.pv-timeline-trigger {
    background: #FFEDEA !important;
    border-color: #FFD6D1 !important;
}

.pv-timeline-trigger .trigger-description {
    color: var(--primary) !important;
}

.pv-slider-track {
    background: rgba(255, 123, 137, 0.15) !important;
}

.pv-slider-thumb {
    background: var(--primary) !important;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
}

.pv-timeline-line {
    background: #FFD6D1 !important;
}

.pv-step-dot {
    background: #FFD6D1 !important;
}

.pv-main-dot {
    background: var(--primary) !important;
    box-shadow: 0 0 0 8px #FFEDEA !important;
}

.pv-step-info h4 {
    color: var(--text-main);
}
.pv-step-info p {
    color: var(--text-muted) !important;
}

.pv-highlight {
    background: #FFEDEA !important;
    border-radius: 20px;
    padding: 24px !important;
}

.pv-resolution-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.pv-res-item {
    display: flex;
    gap: 16px;
    background: var(--bg-surface);
    padding: 20px;
    border-radius: 16px;
    text-align: left;
}

.pv-res-item i {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.pv-res-item h5 {
    color: var(--text-main);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.pv-res-item p {
    font-size: 0.9rem !important;
    line-height: 1.4;
}

/* Features Layout */
.pv-features-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
}

.pv-phone-frame {
    width: 272px;
    height: 550px;
    background: #FFFFFF;
    border: 12px solid #F2ECED;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.pv-feat-card {
    background: transparent !important;
    border: none !important;
    border-radius: var(--card-radius);
    padding: 24px 32px !important;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    transition: background 0.3s ease;
}

.pv-feat-card.active {
    background: var(--bg-surface) !important;
    box-shadow: var(--shadow-soft) !important;
}

.pv-feat-icon {
    width: 54px;
    height: 54px;
    background: #FFEDEA;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.pv-feat-card.active .pv-feat-icon {
    background: var(--primary);
    color: white;
}

/* Activation */
.pv-activation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pv-act-step {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: left;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.pv-step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD6D1;
    margin-bottom: 16px;
    line-height: 1;
}

.pv-act-step h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pv-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F8F4F5;
    border-radius: 100px;
    color: var(--text-main) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}
.pv-mini-btn:hover { background: #FFEDEA; }

.pv-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.pv-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #FFEDEA;
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
}
.pv-pulse {
    background: var(--primary) !important;
    box-shadow: 0 0 0 rgba(255, 123, 137, 0.4) !important;
}

/* Pricing Grid */
.pv-pricing-grid {
    display: grid;
    grid-template-columns: 350px 350px;
    justify-content: center;
    gap: 32px;
}

.pv-price-card {
    background: var(--bg-surface);
    border-radius: 40px;
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid transparent;
}

.pv-price-card.pv-popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pv-popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.pv-plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.pv-plan-icon { font-size: 32px; color: var(--text-muted); }
.pv-plan-name { font-size: 1.4rem; font-weight: 700; }
.pv-plan-members { color: var(--text-muted); font-size: 0.9rem; }

.pv-price-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
}
.pv-curr { font-size: 1.5rem; vertical-align: super; }
.pv-period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.pv-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.pv-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}
.pv-features i { color: var(--primary); }

.pv-btn {
    background: var(--primary) !important;
    color: white !important;
    border: none;
}
.pv-btn:hover { background: var(--primary-hover) !important; }
.pv-btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-main);
}
.pv-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.pv-note { font-size: 0.85rem; color: var(--text-muted); }

/* Buttons */
.block-btn { display: block; width: 100%; padding: 16px; border-radius: 100px; font-weight: 700; text-align: center; text-decoration: none;}

/* Operatives / Gallery */
.pv-operatives-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-surface);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pv-op-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pv-op-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pv-stat { font-size: 3.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 10px; line-height: 1;}

/* Simplicity Section */
.pv-simplicity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.pv-simple-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.pv-simple-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Contact box */
.pv-contact-box {
    display: grid;
    grid-template-columns: 1fr 300px;
    background: var(--bg-surface);
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.pv-contact-info { padding: 60px; }
.pv-messengers { display: flex; gap: 16px; }
.pv-msg-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 100px;
    color: white !important; text-decoration: none; font-weight: 600;
}
.tb-tg { background: #0088cc; }
.tb-wa { background: var(--status-color); }
.tb-vb { background: #665CAC; }

.pv-contact-manager {
    background: #FFF5F3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-manager-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.pv-manager-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}
.pv-status-chip {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--bg-surface);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .pv-scenarios-masonry { grid-template-columns: repeat(3, 1fr); }
    .pv-myths-grid { grid-template-columns: repeat(2, 1fr); }
    .pv-features-layout { grid-template-columns: 1fr; text-align: center; }
    .pv-phone-frame { margin: 0 auto; }
    .pv-feat-card { text-align: center; flex-direction: column; align-items: center; }
    .pv-activation-grid { grid-template-columns: 1fr; }
    .pv-pricing-grid { grid-template-columns: 1fr; }
    .pv-operatives-card { grid-template-columns: 1fr; }
    .pv-contact-box { grid-template-columns: 1fr; }
    .pv-resolution-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pv-scenarios-masonry { grid-template-columns: repeat(2, 1fr); }
    .pv-myths-grid { grid-template-columns: 1fr; }
    .pv-architecture-steps { grid-template-columns: 1fr; }
    .pv-simplicity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pv-scenarios-masonry { grid-template-columns: 1fr; }
    .pv-scenario-card:nth-child(n) { grid-column: span 1; }
    .pv-massive-title { font-size: 2.5rem; }
    .pv-timeline-container { padding: 20px; }
}

/* Modern Narrative Operatives Stats */
.op-stats-clean {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.op-stat-hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.op-stat-hero .big-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.3));
}

.op-stat-hero p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 320px;
}

.op-stat-text-content {
    position: relative;
    padding-left: 28px;
}

.op-stat-text-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.op-stat-text-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.2px;
}

@media (max-width: 768px) {
    .op-stat-hero .big-num { font-size: 4rem; }
    .op-stats-clean { 
        gap: 32px; 
        text-align: center;
        align-items: center;
        margin-top: 10px;
    }
    .op-stat-hero {
        align-items: center;
    }
    .op-stat-hero p { 
        font-size: 1.1rem; 
        max-width: 100%;
        margin-inline: auto;
    }
    .op-stat-text-content {
        padding-left: 0;
    }
    .op-stat-text-content::before {
        display: none;
    }
}



@media (max-width: 768px) {
    .trust-benefits {
        min-height: auto;
    }
    .trust-benefits-inner {
        padding: 64px 24px;
    }
    .trust-title,
    h2.section-title,
    .contact-title,
    .p-section-title { 
        font-size: 2rem !important; 
        margin-bottom: 24px !important;
        text-align: center !important;
    }
    .trust-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .trust-item { gap: 16px; }
    .trust-icon-box { width: 50px; height: 50px; font-size: 1.5rem; }
    .op-trust-list { gap: 24px; }
    
    .sos-slider-container {
        max-width: 500px;
        width: 100%;
        height: 80px !important;
        border-radius: 40px !important;
    }

    .sos-slider-thumb {
        width: 80px !important;
        height: 80px !important;
    }

    .sos-slider-thumb i {
        font-size: 1.6rem !important;
    }

    .sos-slider-thumb span {
        font-size: 0.75rem !important;
    }

    .sos-slider-text {
        font-size: 0.85rem;
        padding-left: 90px;
        padding-right: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .pv-features-layout {
        gap: 32px;
    }
}







