/* ===== CSS Variables & Reset ===== */
:root {
    --orange-50: #FFF3E0;
    --orange-100: #FFE0B2;
    --orange-200: #FFCC80;
    --orange-300: #FFB74D;
    --orange-400: #FFA726;
    --orange-500: #FF9800;
    --orange-600: #FF8A00;
    --orange-700: #F57C00;
    --orange-800: #EF6C00;
    --orange-900: #E65100;

    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #1A1A1A;
    --black: #111111;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Unbounded', 'Inter', -apple-system, sans-serif;

    --dark-950: #120B06;
    --dark-900: #1A1008;
    --dark-800: #241709;
    --cream: #FFF8F0;
    --cream-dim: rgba(255, 244, 230, 0.72);
    --cream-faint: rgba(255, 244, 230, 0.55);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.14), 0 8px 20px rgba(0,0,0,0.08);
    --shadow-orange: 0 8px 32px rgba(255,138,0,0.3), 0 2px 8px rgba(255,138,0,0.15);
    --shadow-orange-lg: 0 20px 50px rgba(255,138,0,0.4), 0 4px 12px rgba(255,138,0,0.2);
    --shadow-orange-glow: 0 0 60px rgba(255,138,0,0.2), 0 0 120px rgba(255,138,0,0.1);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.35s var(--ease-smooth);
    --transition-slow: 0.65s var(--ease-out);
    --transition-bounce: 0.5s var(--ease-bounce);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Particles Background ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--orange-500);
    opacity: 0.07;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.07;
        transform: translateY(95vh) rotate(20deg) scale(1);
    }
    95% {
        opacity: 0.07;
    }
    100% {
        transform: translateY(-100px) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 152, 0, 0.08);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04), 0 0 40px rgba(255,138,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-icon-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.4s var(--ease-bounce);
    filter: drop-shadow(0 3px 8px rgba(255,138,0,0.35));
    border: 2px solid rgba(255,138,0,0.15);
}

.nav-logo:hover .logo-icon-img {
    transform: rotate(-8deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(255,138,0,0.45));
}

.footer-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: 0;
}

.logo-vpn {
    color: var(--orange-600);
    font-weight: 800;
}

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

.nav-link {
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-700));
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--orange-700);
    background: rgba(255,152,0,0.06);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-cta {
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-800));
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-orange-lg);
}

.nav-cta:hover::before {
    left: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
    padding: 8px 24px;
}

.mobile-link:hover {
    color: var(--orange-600);
}

.mobile-cta {
    color: var(--orange-600) !important;
}

/* Nav contrast: light text over dark hero at top, dark text on scrolled glass */
.navbar .logo-text {
    color: #fff;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.75);
}

.navbar .nav-link:hover {
    color: var(--orange-300);
    background: rgba(255,255,255,0.06);
}

.navbar .mobile-toggle span {
    background: #fff;
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link:hover {
    color: var(--orange-700);
    background: rgba(255,152,0,0.06);
}

.navbar.scrolled .mobile-toggle span,
.navbar .mobile-toggle.active span {
    background: var(--gray-900);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 78% 18%, rgba(255,138,0,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 12% 88%, rgba(255,100,0,0.12) 0%, transparent 55%),
        linear-gradient(160deg, var(--dark-950) 0%, var(--dark-900) 55%, var(--dark-800) 100%);
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,152,0,0.14), transparent 70%);
    top: -250px;
    right: -150px;
    animation: floatSlow 20s ease-in-out infinite;
}

.hero-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,138,0,0.10), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: floatSlow 18s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,165,0,0.08), transparent 70%);
    top: 40%;
    left: 45%;
    animation: floatSlow 25s ease-in-out infinite 3s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.08); }
    50% { transform: translate(-25px, 35px) scale(0.95); }
    75% { transform: translate(25px, 25px) scale(1.04); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,170,60,0.35);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-300);
    width: fit-content;
    box-shadow: 0 0 24px rgba(255,138,0,0.12);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(255,138,0,0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(34,197,94,0.4); }
    50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 16px rgba(34,197,94,0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.5px;
    color: var(--cream);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 40%, var(--orange-900) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cream-dim);
    line-height: 1.75;
    max-width: 480px;
    font-weight: 400;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s var(--ease-out);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-700) 50%, var(--orange-900) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    animation: btnGradient 5s ease-in-out infinite;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-orange-lg);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
    background: rgba(255,255,255,0.8);
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--orange-300);
    color: var(--orange-700);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255,138,0,0.08);
    background: rgba(255,248,240,0.9);
}

/* Secondary button variant on the dark hero */
.hero .btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #FFE9D2;
    border-color: rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    border-color: var(--orange-400);
    color: var(--orange-300);
    background: rgba(255,138,0,0.1);
    box-shadow: var(--shadow-md), 0 0 24px rgba(255,138,0,0.16);
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 12px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-600);
    letter-spacing: -1px;
}

.stat-icon {
    font-size: 32px;
    line-height: 1;
}

.stat-plus, .stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-600);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--orange-200), transparent);
}

.hero .stat-label {
    color: var(--cream-faint);
}

.hero .stat-number,
.hero .stat-suffix,
.hero .stat-plus {
    color: var(--orange-400);
}

.hero .stat-divider {
    background: linear-gradient(180deg, transparent, rgba(255,170,60,0.4), transparent);
}

/* ===== Hero Visual (Logo Image) ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,138,0,0.25), rgba(255,165,0,0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroLogoPulse 4s ease-in-out infinite;
}

@keyframes heroLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; filter: blur(0px); }
    50% { transform: scale(1.3); opacity: 0.35; filter: blur(4px); }
}

.hero-logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,138,0,0.12);
}

.hero-logo-ring-1 {
    width: 270px;
    height: 270px;
    animation: ringRotate 18s linear infinite;
    border-style: dashed;
    border-color: rgba(255,138,0,0.18);
}

.hero-logo-ring-2 {
    width: 320px;
    height: 320px;
    animation: ringRotate 28s linear infinite reverse;
    border-color: rgba(255,138,0,0.1);
}

.hero-logo-ring-3 {
    width: 370px;
    height: 370px;
    animation: ringRotate 38s linear infinite;
    border-style: dotted;
    border-color: rgba(255,138,0,0.06);
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo-img {
    position: relative;
    z-index: 2;
    width: 230px;
    height: 230px;
    border-radius: 36px;
    object-fit: cover;
    filter: drop-shadow(0 16px 48px rgba(255,138,0,0.35));
    animation: heroLogoFloat 5s ease-in-out infinite;
    border: 3px solid rgba(255,255,255,0.4);
    transition: all 0.5s var(--ease-out);
}

.hero-logo-img:hover {
    transform: translateY(-8px) scale(1.04) rotate(-2deg);
    filter: drop-shadow(0 24px 56px rgba(255,138,0,0.45));
    border-color: rgba(255,255,255,0.6);
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    33% { transform: translateY(-10px) scale(1.01) rotate(0.5deg); }
    66% { transform: translateY(-16px) scale(1.02) rotate(-0.5deg); }
}

/* ===== Trust bar ===== */
.trust-bar {
    position: relative;
    z-index: 1;
    padding: 18px 0;
    background: linear-gradient(90deg, var(--dark-950) 0%, var(--dark-800) 50%, var(--dark-950) 100%);
    border-top: 1px solid rgba(255,138,0,0.12);
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 36px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.trust-item b {
    color: var(--orange-400);
    font-weight: 800;
}

.trust-item-icon {
    font-size: 16px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(255,138,0,0.35));
}

@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 10px 20px;
    }

    .trust-item {
        font-size: 12.5px;
    }
}

/* ===== Sections Common ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 68px;
}

.section-header-left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange-700);
    background: linear-gradient(135deg, var(--orange-50), rgba(255,224,178,0.6));
    border: 1px solid var(--orange-200);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 22px;
    transition: all 0.4s var(--ease-out);
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,138,0,0.12);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.18;
    color: var(--gray-900);
    margin-bottom: 18px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700), var(--orange-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-header-left .section-desc {
    margin: 0;
}

/* ===== Features ===== */
.features {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 50% 30% at 0% 50%, rgba(255,138,0,0.03) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 100% 50%, rgba(255,138,0,0.03) 0%, transparent 60%),
        var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-200), transparent);
}

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

.feature-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238,238,238,0.8);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    transition: all 0.45s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-600), var(--orange-800));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,138,0,0.06), transparent 70%);
    border-radius: 50%;
    transition: all 0.5s var(--ease-out);
    opacity: 0;
}

.feature-card:hover {
    border-color: rgba(255,167,38,0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255,138,0,0.06);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
    bottom: -30%;
    right: -30%;
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--orange-50), rgba(255,224,178,0.5));
    border-radius: var(--radius-md);
    color: var(--orange-600);
    margin-bottom: 22px;
    transition: all 0.45s var(--ease-out);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-700));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    color: var(--white);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(255,138,0,0.3);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--orange-800);
}

.feature-desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== App Section ===== */
.app-section {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,138,0,0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--gray-50) 0%, #FFF9F2 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-200), transparent);
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--orange-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(10px);
    cursor: default;
}

.app-badge:hover {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    color: var(--white);
    border-color: var(--orange-600);
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-orange);
}

.app-badge-icon {
    font-size: 16px;
    transition: transform 0.3s var(--ease-bounce);
}

.app-badge:hover .app-badge-icon {
    transform: scale(1.2) rotate(-10deg);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.4s var(--ease-out);
    padding: 8px 0;
}

.app-feature:hover {
    color: var(--gray-900);
    transform: translateX(8px);
}

.app-feature-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 3px 10px rgba(255,138,0,0.25);
}

.app-feature:hover .app-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(255,138,0,0.35);
}

.app-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.08),
        0 0 0 6px rgba(26,26,46,0.15),
        0 30px 80px rgba(0,0,0,0.25),
        0 0 60px rgba(255,138,0,0.08);
    z-index: 2;
    animation: phoneFloat 5s ease-in-out infinite;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.phone-mockup:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.12),
        0 0 0 6px rgba(26,26,46,0.15),
        0 40px 100px rgba(0,0,0,0.3),
        0 0 80px rgba(255,138,0,0.12);
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.5deg); }
    66% { transform: translateY(-18px) rotate(-0.5deg); }
}

.phone-notch {
    width: 100px;
    height: 26px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.phone-screen {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,138,0,0.12), rgba(255,165,0,0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.25); opacity: 0.8; }
}

/* ===== Pricing ===== */
.pricing {
    padding: 130px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,138,0,0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--white) 0%, #FFF5E6 30%, #FFF5E6 70%, var(--white) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-200), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-300);
    transform: translateY(-6px);
}

.pricing-card-featured {
    border: 1px solid rgba(255,138,0,0.45);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255,138,0,0.14);
    background: linear-gradient(165deg, var(--dark-900) 0%, var(--dark-800) 100%);
}

.pricing-card-featured .pricing-name,
.pricing-card-featured .price-currency {
    color: var(--cream);
}

.pricing-card-featured .pricing-period,
.pricing-card-featured .price-period {
    color: var(--cream-faint);
}

.pricing-card-featured .pricing-features li {
    color: var(--cream-dim);
}

.pricing-card-featured .pricing-features li:hover {
    color: var(--cream);
}

.pricing-card-featured .pricing-note {
    color: var(--cream-faint);
}

.pricing-card-featured .pricing-price {
    border-top-color: rgba(255,167,38,0.25);
    border-bottom-color: rgba(255,167,38,0.25);
}

.pricing-card-featured .pricing-price::before {
    background: linear-gradient(135deg, rgba(255,138,0,0.1), transparent);
}

.pricing-card-featured:hover {
    box-shadow: var(--shadow-xl), var(--shadow-orange-glow);
    border-color: var(--orange-600);
    transform: translateY(-8px) scale(1.01);
}

.pricing-badge-popular {
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-800));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255,138,0,0.3);
    z-index: 3;
}

.pricing-card .btn-pricing {
    margin-top: auto;
}

.pricing-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,138,0,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pricingGlow 6s ease-in-out infinite;
}

@keyframes pricingGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-20px, 20px) scale(1.2); opacity: 0.8; }
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.pricing-period {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,167,38,0.15);
    border-bottom: 1px solid rgba(255,167,38,0.15);
    position: relative;
}

.pricing-price::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,243,224,0.3), transparent);
    border-radius: var(--radius-md);
}

.price-amount {
    font-size: 68px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700), var(--orange-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: -3px;
    line-height: 1;
    position: relative;
}

.price-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.price-period {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 4px 0;
    transition: all 0.3s var(--ease-out);
}

.pricing-features li:hover {
    color: var(--gray-900);
    transform: translateX(4px);
}

.pricing-features li svg {
    color: var(--orange-500);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(255,138,0,0.3));
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    padding: 20px 32px;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.pricing-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 18px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0D0D0D 100%);
    color: var(--gray-400);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-600), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,138,0,0.06), transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-group a {
    font-size: 14px;
    color: var(--gray-400);
    transition: all 0.35s var(--ease-out);
    display: inline-block;
}

.footer-links-group a:hover {
    color: var(--orange-400);
    transform: translateX(6px);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.animate-on-scroll {
    transition-delay: calc(var(--delay, 0) * 0.12s);
}

/* ===== Stagger animation for pricing features ===== */
.pricing-features li {
    opacity: 0;
    transform: translateX(-15px);
    animation: none;
}

.pricing-card.visible .pricing-features li {
    animation: staggerIn 0.5s var(--ease-out) forwards;
}

.pricing-card.visible .pricing-features li:nth-child(1) { animation-delay: 0.1s; }
.pricing-card.visible .pricing-features li:nth-child(2) { animation-delay: 0.18s; }
.pricing-card.visible .pricing-features li:nth-child(3) { animation-delay: 0.26s; }
.pricing-card.visible .pricing-features li:nth-child(4) { animation-delay: 0.34s; }
.pricing-card.visible .pricing-features li:nth-child(5) { animation-delay: 0.42s; }
.pricing-card.visible .pricing-features li:nth-child(6) { animation-delay: 0.50s; }

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

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

    .hero-badge {
        margin: 0 auto;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-info .section-header {
        text-align: center;
    }

    .app-info .section-header-left .section-desc {
        margin: 0 auto;
    }

    .app-features {
        align-items: center;
    }

    .apps-grid {
        justify-content: center;
    }

    .pricing-grid {
        max-width: 500px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        letter-spacing: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .features {
        padding: 80px 0;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .app-section {
        padding: 80px 0;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .price-amount {
        font-size: 52px;
    }

    .hero-logo-container {
        width: 280px;
        height: 280px;
    }

    .hero-logo-img {
        width: 170px;
        height: 170px;
        border-radius: 28px;
    }

    .hero-logo-ring-1 { width: 210px; height: 210px; }
    .hero-logo-ring-2 { width: 250px; height: 250px; }
    .hero-logo-ring-3 { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .phone-mockup {
        width: 240px;
    }
}

/* ===== Smooth cursor glow ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,0,0.06), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s var(--ease-out);
    mix-blend-mode: normal;
    will-change: transform;
}

/* ===== Section divider wave ===== */
.section-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}
