/* ============================================
   EASY Connect — CyberCrest-inspired Dark Theme
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --bg-dark: #0a0e17;
    --bg-dark-2: #0f1520;
    --bg-dark-3: #141c2b;
    --bg-card: #121a29;
    --bg-card-hover: #1a2438;

    --primary: #00b4d8;
    --primary-light: #48cae4;
    --primary-dark: #0096c7;
    --accent: #00f5d4;
    --accent-2: #7b2ff7;
    --gradient-1: linear-gradient(135deg, #00b4d8, #00f5d4);
    --gradient-2: linear-gradient(135deg, #7b2ff7, #00b4d8);
    --gradient-3: linear-gradient(135deg, #00b4d8, #7b2ff7);

    --text-white: #ffffff;
    --text-light: #c3cde6;
    --text-muted: #8292b4;
    --text-dark: #4a5a7a;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --glow: rgba(0, 180, 216, 0.3);
    --glow-accent: rgba(0, 245, 212, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.15);
    --shadow-hover: 0 8px 40px rgba(0, 180, 216, 0.2);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */

/* === VIDEO GIF BACKGROUNDS === */
.video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.video-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 23, 0.65) 0%,
        rgba(10, 14, 23, 0.55) 30%,
        rgba(10, 14, 23, 0.60) 70%,
        rgba(10, 14, 23, 0.80) 100%
    );
    z-index: 1;
}

.video-bg__overlay--heavy {
    background: linear-gradient(
        180deg,
        rgba(10, 14, 23, 0.82) 0%,
        rgba(10, 14, 23, 0.72) 30%,
        rgba(10, 14, 23, 0.72) 70%,
        rgba(10, 14, 23, 0.88) 100%
    );
}

/* Ensure section content stays above video */
.hero,
.bypass-banner,
.features,
.about,
.security-layers,
.services,
.anon-section,
.download {
    position: relative;
}

.hero > .container,
.hero > .hero__bg-effects,
.hero > canvas,
.bypass-banner > .container,
.bypass-banner > .bypass-banner__bg,
.features > .container,
.about > .container,
.security-layers > .container,
.security-layers > .security-layers__bg,
.services > .container,
.anon-section > .container,
.anon-section > .anon-section__bg,
.download > .container {
    position: relative;
    z-index: 2;
}

/* Reduce canvas opacity when video bg is present */
.hero .hero__canvas {
    opacity: 0.3;
}

.bypass-banner .cinematic-canvas,
.security-layers .cinematic-canvas,
.anon-section .cinematic-canvas,
.anon-section .anon-section__canvas {
    opacity: 0.2;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-md);
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 6px 30px rgba(0, 180, 216, 0.5);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-light);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--block {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
}

/* === SECTION HELPERS === */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 180, 216, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--bg-dark);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__link {
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav__link.active {
    color: var(--primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 180, 216, 0.15);
    top: -200px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: rgba(123, 47, 247, 0.12);
    bottom: -150px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero__desc {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Phone Mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__phone {
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    background: #1a1f2e;
    border-radius: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(0, 180, 216, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark-2);
}

.phone-header {
    padding: 8px 16px 0;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 8px 4px;
}

.phone-status-icons {
    display: flex;
    gap: 6px;
    font-size: 0.6rem;
}

.phone-app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.phone-app-header .fab.fa-telegram {
    font-size: 1.4rem;
    color: var(--primary);
}

.phone-app-header .shield-active {
    margin-left: auto;
    color: var(--accent);
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-chats {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.phone-chat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.phone-chat:hover {
    background: rgba(255, 255, 255, 0.03);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.chat-msg {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.chat-time {
    font-size: 0.68rem;
    color: var(--text-dark);
}

.chat-badge {
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.phone-connection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 245, 212, 0.08);
    border-top: 1px solid rgba(0, 245, 212, 0.15);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 500;
}

.hero__glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card--large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 180, 216, 0.05) 100%);
}

.feature-card--large .feature-card__icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.feature-card--large .feature-card__title {
    font-size: 1.5rem;
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    background: var(--gradient-1);
    color: var(--bg-dark);
}

.feature-card--large .feature-card__icon {
    margin-bottom: 0;
}

.feature-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-card__link:hover {
    gap: 12px;
    color: var(--accent);
}

.feature-card__link i {
    font-size: 0.75rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    overflow: hidden;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    display: flex;
    justify-content: center;
}

.about__image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

/* Globe */
.about__globe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 216, 0.15);
}

.globe-ring--1 {
    width: 100%;
    height: 100%;
    animation: spinSlow 20s linear infinite;
}

.globe-ring--2 {
    width: 80%;
    height: 80%;
    border-color: rgba(123, 47, 247, 0.12);
    animation: spinSlow 15s linear infinite reverse;
}

.globe-ring--3 {
    width: 60%;
    height: 60%;
    border-color: rgba(0, 245, 212, 0.1);
    animation: spinSlow 10s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-center {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    box-shadow: 0 0 60px rgba(0, 180, 216, 0.4);
    z-index: 2;
}

.globe-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.globe-dot--1 { top: 10%; left: 50%; }
.globe-dot--2 { top: 30%; right: 8%; }
.globe-dot--3 { bottom: 20%; right: 12%; }
.globe-dot--4 { bottom: 10%; left: 40%; }
.globe-dot--5 { top: 40%; left: 5%; }
.globe-dot--6 { top: 60%; left: 15%; }

.about__float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    z-index: 10;
    animation: cardFloat 4s ease-in-out infinite;
}

.about__float-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about__float-card--1 {
    top: 20px;
    right: -20px;
}

.about__float-card--2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about__float-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
}

.about__float-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about__text .section-tag {
    display: inline-flex;
}

.about__text .section-title {
    text-align: left;
}

.about__desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-light);
}

.about__list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--bg-dark-2);
    position: relative;
    overflow: hidden;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: var(--shadow-hover);
}

.service-box:hover::after {
    transform: scaleX(1);
}

.service-box__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-box:hover .service-box__icon {
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

.service-box__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.service-box__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
    padding: 100px 0;
    position: relative;
}

.process__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.process__step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.1);
    border: 2px solid rgba(0, 180, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 24px;
    transition: var(--transition);
}

.process__step:hover .process__step-icon {
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.3);
}

.process__step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.process__step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.process__connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    width: 60px;
    flex-shrink: 0;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.1));
}

.connector-dot {
    position: absolute;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.pricing__toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.pricing__toggle-label.active {
    color: var(--text-white);
}

.pricing__toggle-btn {
    width: 56px;
    height: 30px;
    border-radius: 15px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.pricing__toggle-btn:hover {
    border-color: var(--primary);
}

.pricing__toggle-slider {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-1);
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

.pricing__toggle-btn.active .pricing__toggle-slider {
    left: calc(100% - 24px);
}

.pricing__discount {
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-card--popular {
    border-color: rgba(0, 180, 216, 0.3);
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.06) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card__price {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-card__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    transition: var(--transition);
}

.pricing-card__period {
    font-size: 0.9rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 6px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-card__features li i.fa-check {
    color: var(--accent);
    font-size: 0.85rem;
}

.pricing-card__features li i.fa-times {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.pricing-card__features li.disabled {
    color: var(--text-dark);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
    padding: 100px 0;
}

.reviews__slider {
    overflow: hidden;
    position: relative;
}

.reviews__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    flex-shrink: 0;
    box-sizing: border-box;
}

.review-card:hover {
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: var(--shadow-glow);
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-card__stars i {
    color: #f5a623;
    font-size: 0.9rem;
}

.review-card__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.review-card__name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
    display: block;
}

.review-card__role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.reviews__btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.reviews__dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--bg-dark-2);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.active {
    border-color: rgba(0, 180, 216, 0.2);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   DOWNLOAD / CTA
   ============================================ */
.download {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download > .container {
    position: relative;
    z-index: 2;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.download__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.download__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.download__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    transition: var(--transition);
    min-width: 180px;
}

.download-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.download-btn i {
    font-size: 1.8rem;
    color: var(--primary);
}

.download-btn small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.download-btn span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--bg-dark-3);
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.footer__socials a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.footer__col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__col ul li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer__col ul li a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer__col ul li a:hover {
    color: var(--primary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-dark);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer__links a:hover {
    color: var(--primary);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero__desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__text .section-title {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__list {
        align-items: center;
    }

    .about__image-wrapper {
        width: 350px;
        height: 350px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card--large {
        grid-column: span 2;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-8px);
    }

    .review-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark-2);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        border-left: 1px solid var(--border);
        transition: var(--transition-slow);
        z-index: 999;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 14px 16px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav__actions .btn {
        display: none;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-card--large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card--large .feature-card__icon {
        margin: 0 auto 20px;
    }

    .process__steps {
        flex-direction: column;
        align-items: center;
    }

    .process__connector {
        padding-top: 0;
        width: 2px;
        height: 40px;
        flex-direction: column;
    }

    .connector-line {
        width: 2px;
        height: 100%;
    }

    .connector-dot {
        right: auto;
        bottom: 0;
    }

    .review-card {
        min-width: 100%;
        max-width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .download__buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .phone-mockup {
        width: 260px;
        height: 540px;
    }

    .about__image-wrapper {
        width: 280px;
        height: 280px;
    }
}

/* === OVERLAY FOR MOBILE MENU === */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* === SELECTION === */
::selection {
    background: rgba(0, 180, 216, 0.3);
    color: var(--text-white);
}

/* ============================================
   HERO ENHANCEMENTS — Particle Canvas & Floats
   ============================================ */
.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__canvas--globe {
    z-index: 0;
    opacity: 0.6;
}

/* Cinematic canvas — full-bleed animated backgrounds */
.cinematic-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cinematic-canvas--over {
    z-index: 1;
    opacity: 0.3;
}

.hero__orb--3 {
    width: 400px;
    height: 400px;
    background: rgba(0, 245, 212, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite;
}

.hero__binary-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.04;
    pointer-events: none;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--primary);
}

.hero__binary-rain span {
    position: absolute;
    top: -20px;
    animation: binaryFall linear infinite;
    opacity: 0.7;
}

@keyframes binaryFall {
    to {
        transform: translateY(110vh);
        opacity: 0;
    }
}

/* Floating security icons */
.hero__float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 180, 216, 0.3);
    font-size: 1rem;
    animation: floatSlow 8s ease-in-out infinite;
}

.float-icon--1 { top: 15%; left: 8%; animation-delay: 0s; animation-duration: 7s; }
.float-icon--2 { top: 25%; right: 12%; animation-delay: 1.5s; animation-duration: 9s; }
.float-icon--3 { top: 60%; left: 5%; animation-delay: 3s; animation-duration: 8s; }
.float-icon--4 { bottom: 20%; right: 8%; animation-delay: 0.5s; animation-duration: 10s; }
.float-icon--5 { top: 40%; left: 15%; animation-delay: 2s; animation-duration: 6s; }
.float-icon--6 { bottom: 30%; left: 20%; animation-delay: 4s; animation-duration: 11s; }

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    25% { transform: translate(10px, -15px) rotate(5deg); opacity: 0.7; }
    50% { transform: translate(-5px, -30px) rotate(-3deg); opacity: 0.5; }
    75% { transform: translate(15px, -10px) rotate(8deg); opacity: 0.8; }
}

/* ============================================
   BYPASS RUSSIA BANNER
   ============================================ */
.bypass-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0b1022 50%, var(--bg-dark) 100%);
}

.bypass-banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bypass-banner__particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 180, 216, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particleShift 20s linear infinite;
}

@keyframes particleShift {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.bypass-banner__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: scanline 4s linear infinite;
    opacity: 0.6;
}

@keyframes scanline {
    from { top: 0; }
    to { top: 100%; }
}

.bypass-banner__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bypass-banner__text .section-tag {
    display: inline-flex;
}

.bypass-banner__text .section-title {
    text-align: left;
}

.bypass-banner__desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.accent-text {
    color: var(--accent);
}

/* Bypass features */
.bypass-banner__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.bypass-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 180, 216, 0.04);
    border: 1px solid rgba(0, 180, 216, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.bypass-feature:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateX(4px);
}

.bypass-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bypass-feature h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.bypass-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Live status */
.bypass-banner__status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0, 245, 212, 0.04);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-accent);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Tunnel Diagram */
.tunnel-diagram {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 580px;
    flex-direction: column;
}

.tunnel-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.tunnel-node__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.tunnel-node--user .tunnel-node__icon {
    background: rgba(0, 180, 216, 0.15);
    border: 2px solid rgba(0, 180, 216, 0.3);
    color: var(--primary);
}

.tunnel-node--proxy .tunnel-node__icon {
    background: rgba(123, 47, 247, 0.15);
    border: 2px solid rgba(123, 47, 247, 0.3);
    color: var(--accent-2);
}

.tunnel-node--tg .tunnel-node__icon {
    background: rgba(0, 245, 212, 0.15);
    border: 2px solid rgba(0, 245, 212, 0.3);
    color: var(--accent);
}

.tunnel-node span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.tunnel-node__pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    top: 0;
    animation: tunnelPulse 2.5s ease-out infinite;
}

.tunnel-node--proxy .tunnel-node__pulse {
    border-color: var(--accent-2);
    animation-delay: 0.8s;
}

.tunnel-node--tg .tunnel-node__pulse {
    border-color: var(--accent);
    animation-delay: 1.6s;
}

@keyframes tunnelPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Path between nodes */
.tunnel-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60px;
    position: relative;
    width: 4px;
}

.tunnel-path__line {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.4), rgba(123, 47, 247, 0.4));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    left: 50%;
    transform: translateX(-50%);
    animation: packetFlow 2s linear infinite;
    box-shadow: 0 0 8px var(--glow);
}

.data-packet--1 { animation-delay: 0s; }
.data-packet--2 { animation-delay: 0.7s; }
.data-packet--3 { animation-delay: 1.4s; }
.data-packet--4 { animation-delay: 0.3s; background: var(--accent-2); box-shadow: 0 0 8px rgba(123, 47, 247, 0.5); }
.data-packet--5 { animation-delay: 1.1s; background: var(--accent); box-shadow: 0 0 8px var(--glow-accent); }

@keyframes packetFlow {
    0% { top: -8px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.tunnel-path__shield {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.7rem;
    color: var(--primary);
    white-space: nowrap;
}

.tunnel-path__shield i {
    font-size: 0.65rem;
}

/* ============================================
   SECURITY LAYERS SECTION
   ============================================ */
.security-layers {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.security-layers__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hex-grid {
    position: absolute;
    inset: -50px;
    opacity: 0.04;
}

.hex-grid .hex {
    position: absolute;
    width: 60px;
    height: 52px;
    background: none;
    border: 1px solid var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.security-layers__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* Shield stack */
.shield-stack {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer__ring {
    border-radius: 50%;
    border: 1px dashed;
    position: absolute;
    animation: spinSlow linear infinite;
}

.shield-layer--1 {
    width: 100%;
    height: 100%;
}

.shield-layer--1 .shield-layer__ring {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 180, 216, 0.15);
    animation-duration: 30s;
}

.shield-layer--1 .shield-layer__icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
}

.shield-layer--1 .shield-layer__label {
    position: absolute;
    top: -40px;
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.shield-layer--2 {
    width: 75%;
    height: 75%;
}

.shield-layer--2 .shield-layer__ring {
    width: 100%;
    height: 100%;
    border-color: rgba(123, 47, 247, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.shield-layer--2 .shield-layer__icon {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(123, 47, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    font-size: 0.85rem;
}

.shield-layer--2 .shield-layer__label {
    position: absolute;
    right: -130px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.shield-layer--3 {
    width: 52%;
    height: 52%;
}

.shield-layer--3 .shield-layer__ring {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 245, 212, 0.18);
    animation-duration: 20s;
}

.shield-layer--3 .shield-layer__icon {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
}

.shield-layer--3 .shield-layer__label {
    position: absolute;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.shield-layer--4 {
    width: 32%;
    height: 32%;
}

.shield-layer--4 .shield-layer__ring {
    width: 100%;
    height: 100%;
    border-color: rgba(245, 166, 35, 0.15);
    animation-duration: 15s;
    animation-direction: reverse;
}

.shield-layer--4 .shield-layer__icon {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(245, 166, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a623;
    font-size: 0.85rem;
}

.shield-layer--4 .shield-layer__label {
    position: absolute;
    bottom: -40px;
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Shield core */
.shield-core {
    position: relative;
    z-index: 5;
}

.shield-core__inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: 0 0 50px rgba(0, 180, 216, 0.4);
    position: relative;
    z-index: 2;
}

.shield-core__pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.2);
    top: 0;
    left: 0;
    animation: corePulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes corePulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

/* Security stats */
.security-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 700px;
}

.security-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.security-stat__circle {
    position: relative;
    width: 90px;
    height: 90px;
}

.security-stat__circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.security-stat__bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 6;
}

.security-stat__progress {
    fill: none;
    stroke: url(#grad) var(--primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 2s ease;
}

.security-stat__value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.security-stat__label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================
   ANONYMITY CTA SECTION
   ============================================ */
.anon-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark-2) 0%, #090d18 50%, var(--bg-dark) 100%);
}

.anon-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.anon-section__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.anon-section__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.anon-section__icon-big {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anon-icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.anon-icon-ring--1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 180, 216, 0.15);
    animation: spinSlow 15s linear infinite;
}

.anon-icon-ring--2 {
    width: 130%;
    height: 130%;
    border-color: rgba(123, 47, 247, 0.1);
    animation: spinSlow 20s linear infinite reverse;
    border-style: dashed;
}

.anon-icon-ring--3 {
    width: 160%;
    height: 160%;
    border-color: rgba(0, 245, 212, 0.06);
    animation: spinSlow 25s linear infinite;
}

.anon-icon-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: 0 0 50px rgba(123, 47, 247, 0.3);
    z-index: 2;
}

.anon-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.anon-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: var(--transition);
}

.anon-feature:hover {
    border-color: rgba(0, 180, 216, 0.3);
    background: rgba(0, 180, 216, 0.05);
    transform: translateY(-2px);
}

.anon-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.anon-feature span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   ENHANCED SECTION BACKGROUNDS
   ============================================ */
.features {
    background: radial-gradient(ellipse at top right, rgba(0, 180, 216, 0.04) 0%, transparent 60%),
                var(--bg-dark);
}

.process {
    background: radial-gradient(ellipse at bottom left, rgba(123, 47, 247, 0.04) 0%, transparent 60%),
                var(--bg-dark);
}

.download {
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
                var(--bg-dark-2);
}

.reviews {
    background: radial-gradient(ellipse at top center, rgba(0, 245, 212, 0.03) 0%, transparent 50%),
                var(--bg-dark);
}

/* ============================================
   RESPONSIVE for new sections
   ============================================ */
@media (max-width: 1024px) {
    .bypass-banner__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bypass-banner__text .section-title {
        text-align: center;
    }

    .bypass-banner__text {
        text-align: center;
    }

    .bypass-banner__features {
        align-items: center;
    }

    .tunnel-diagram {
        max-width: 300px;
        margin: 0 auto;
    }

    .shield-stack {
        width: 300px;
        height: 300px;
    }

    .shield-layer__label {
        display: none;
    }

    .security-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .security-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .shield-stack {
        width: 250px;
        height: 250px;
    }

    .anon-features {
        flex-direction: column;
        align-items: center;
    }

    .float-icon {
        display: none;
    }

    .hero__binary-rain {
        display: none;
    }
}

@media (max-width: 480px) {
    .bypass-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   UTP: Подключение в 2 клика
   ============================================ */
.hero__utp {
    margin-bottom: 32px;
}

.utp-steps {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    animation: utpGlow 3s ease-in-out infinite;
}

@keyframes utpGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.25), 0 0 80px rgba(0, 245, 212, 0.1); }
}

.utp-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utp-step__number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.utp-step span {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.utp-step__arrow {
    color: var(--accent);
    font-size: 1.2rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}

@media (max-width: 600px) {
    .utp-steps {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
    .utp-step__arrow {
        transform: rotate(90deg);
    }
    @keyframes arrowPulse {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
        50% { transform: rotate(90deg) translateX(6px); opacity: 1; }
    }
}

/* ============================================
   Pricing: Guarantee Badge & Per-Day Cost
   ============================================ */
.pricing__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(0, 245, 212, 0.06);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 12px;
    margin-bottom: 40px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing__guarantee i {
    font-size: 1.2rem;
}

.pricing-card__per-day {
    text-align: center;
    padding: 8px 0 4px;
    margin-top: -4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card__per-day .accent-text {
    color: var(--accent);
}

.pricing-card__badge--save {
    background: linear-gradient(135deg, #00f5d4, #00b4d8) !important;
}

/* Pricing amount ruble style */
.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Download main button glow */
.download-btn--main {
    background: var(--gradient-1) !important;
    border-color: transparent !important;
    animation: mainBtnPulse 2s ease-in-out infinite;
}

.download-btn--main i,
.download-btn--main span,
.download-btn--main small {
    color: var(--bg-dark) !important;
}

@keyframes mainBtnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.5), 0 0 60px rgba(0, 245, 212, 0.2); }
}

/* ============================================
   MOBILE-ONLY BADGE
   ============================================ */
.mobile-only-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(0, 180, 216, 0.15));
    border: 1px solid rgba(123, 47, 247, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 16px;
    animation: badgePulse 3s ease-in-out infinite;
}

.mobile-only-badge i {
    font-size: 1.2rem;
    color: var(--primary);
}

@keyframes badgePulse {
    0%, 100% { border-color: rgba(123, 47, 247, 0.3); }
    50% { border-color: rgba(0, 245, 212, 0.6); box-shadow: 0 0 20px rgba(0, 245, 212, 0.1); }
}

/* ============================================
   SECTION FUSION / MERGE ANIMATIONS
   ============================================ */

/* Each section gets an overlapping gradient top that "merges" with the previous section */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 14, 23, 0.3) 20%,
        rgba(10, 14, 23, 0.7) 50%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

section:first-of-type::before {
    display: none;
}

/* Fusion reveal animation — sections slide up and "melt" into view */
section.section-fusion {
    opacity: 0;
    transform: translateY(80px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

section.section-fusion.fused {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Glowing fusion line between sections */
section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        var(--accent),
        var(--primary),
        transparent
    );
    opacity: 0;
    z-index: 3;
    transition: opacity 0.8s ease;
    border-radius: 2px;
    filter: blur(1px);
}

section.fused::after {
    opacity: 0.6;
    animation: fusionLineGlow 3s ease-in-out infinite;
}

section:first-of-type::after {
    display: none;
}

@keyframes fusionLineGlow {
    0%, 100% { opacity: 0.3; filter: blur(1px); }
    50% { opacity: 0.7; filter: blur(2px); }
}

/* ============================================
   ENHANCED MOBILE ADAPTATION (90% mobile audience)
   ============================================ */

/* --- 768px: Tablet + Large mobile --- */
@media (max-width: 768px) {
    /* Force mobile-only badge to center on smaller screens */
    .mobile-only-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    /* Bigger touch targets for ALL buttons */
    .btn--lg {
        padding: 16px 32px;
        font-size: 1.05rem;
        min-height: 52px;
    }

    .btn--sm {
        padding: 10px 20px;
        min-height: 44px;
    }

    /* Pricing cards: better stacking */
    .pricing__grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    /* Show nav CTA button on mobile too */
    .nav__actions .btn {
        display: inline-flex !important;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Bypass banner tunnel: stack vertically */
    .tunnel-diagram {
        flex-direction: column;
        gap: 16px;
    }

    .tunnel-connection {
        transform: rotate(90deg);
        width: 40px;
    }

    /* Section fusion: reduce overlap on mobile */
    section::before {
        top: -30px;
        height: 60px;
    }

    /* UTP block responsive */
    .utp-block {
        padding: 24px 16px;
    }

    .utp-block__title {
        font-size: 1.3rem;
    }

    /* Hero phone mockup: more prominent on mobile */
    .hero__phone {
        order: -1;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }

    /* Security layers: stack */
    .shield-stack {
        transform: scale(0.75);
    }

    .security-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Anon features: 2 columns on tablet */
    .anon-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 480px: Small mobile phones --- */
@media (max-width: 480px) {
    /* Typography scaling */
    .hero__title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .hero__desc {
        font-size: 0.95rem;
    }

    /* Mobile-only badge smaller */
    .mobile-only-badge {
        font-size: 0.75rem;
        padding: 7px 14px;
        gap: 6px;
    }

    /* Phone mockup: fit small screens */
    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .chat-name {
        font-size: 0.8rem;
    }

    .chat-msg {
        font-size: 0.7rem;
    }

    /* Nav: full width sidebar */
    .nav__menu {
        width: 100%;
        max-width: 100%;
    }

    /* Buttons: full width */
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Pricing cards full touch */
    .pricing-card__amount {
        font-size: 2.8rem;
    }

    .pricing-card__features li {
        font-size: 0.85rem;
    }

    /* Features grid: single column */
    .feature-card {
        padding: 20px;
    }

    .feature-card__icon {
        width: 48px;
        height: 48px;
    }

    .feature-card__icon i {
        font-size: 1.2rem;
    }

    /* Service boxes: single column */
    .service-box {
        padding: 20px 16px;
    }

    /* FAQ: smaller text */
    .faq__question span {
        font-size: 0.9rem;
    }

    .faq__answer p {
        font-size: 0.85rem;
    }

    /* Process steps: compact */
    .process__step {
        padding: 24px 16px;
    }

    /* Download CTA */
    .download__title {
        font-size: 1.5rem;
    }

    .download-btn {
        max-width: 100%;
    }

    /* Reviews: full width */
    .review-card {
        padding: 20px;
    }

    .review-card__text {
        font-size: 0.9rem;
    }

    /* Security stats compact */
    .security-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .security-stat__label {
        font-size: 0.7rem;
    }

    /* Shield stack: smaller */
    .shield-stack {
        transform: scale(0.6);
    }

    /* About globe smaller */
    .about__globe {
        width: 250px;
        height: 250px;
    }

    /* Anon features: single column */
    .anon-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Footer compact */
    .footer__brand {
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }
}

/* --- 360px: Extra small phones --- */
@media (max-width: 360px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .phone-mockup {
        width: 220px;
        height: 460px;
    }

    .pricing-card__amount {
        font-size: 2.4rem;
    }

    .btn--lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* --- Mobile performance tweaks (keep video backgrounds!) --- */
@media (max-width: 768px) {
    /* Keep video backgrounds but add heavier overlay for readability */
    .video-bg__overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 14, 23, 0.80) 0%,
            rgba(10, 14, 23, 0.70) 30%,
            rgba(10, 14, 23, 0.75) 70%,
            rgba(10, 14, 23, 0.90) 100%
        ) !important;
    }

    .video-bg__overlay--heavy {
        background: linear-gradient(
            180deg,
            rgba(10, 14, 23, 0.88) 0%,
            rgba(10, 14, 23, 0.80) 30%,
            rgba(10, 14, 23, 0.82) 70%,
            rgba(10, 14, 23, 0.95) 100%
        ) !important;
    }

    /* Reduce canvas animation opacity on mobile */
    .cinematic-canvas {
        opacity: 0.3;
    }

    /* Simpler section fusion on mobile */
    section.section-fusion {
        transform: translateY(40px) scale(1);
    }
}
