/* ═══════════════════════════════════════════
   Webnox Pro Landing Page — Design System
   ═══════════════════════════════════════════ */

:root {
    /* ─── Premium Color Palette ─── */
    --primary: #020617;        /* Slate 950 */
    --primary-light: #0f172a;  /* Slate 900 */
    --accent: #10b981;         /* Emerald 500 */
    --accent-dark: #059669;    /* Emerald 600 */
    --accent-glow: rgba(16, 185, 129, 0.4);
    --secondary: #6366f1;      /* Indigo 500 */
    --promo: #fbbf24;          /* Amber 400 */
    --danger: #ef4444;
    
    /* ─── Contextual Colors ─── */
    --text: #334155;           /* Slate 600 */
    --text-dark: #0f172a;      /* Slate 900 */
    --text-light: #64748b;     /* Slate 500 */
    --text-muted: #94a3b8;     /* Slate 400 */
    --bg: #f8fafc;             /* Slate 50 */
    --bg-alt: #f1f5f9;         /* Slate 100 */
    --white: #ffffff;
    --border: rgba(226, 232, 240, 0.8);
    
    /* ─── Effects & Glassmorphism ─── */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* ─── Shadows ─── */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
    
    /* ─── Sizing ─── */
    --radius: 12px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --container: 1200px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.inline-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.full-width {
    width: 100%;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-accent {
    background: var(--accent);
    
    border-color: var(--accent);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-outline-light {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline-light:hover {
    background: var(--primary);
    
    border-color: var(--primary);
}

.btn-outline-muted {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
    cursor: default;
    opacity: .6;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-
}

.btn-white:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .2);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    animation: btn-sweep 3s infinite;
}

@keyframes btn-sweep {
    100% {
        left: 100%;
    }
}

/* ─── PROMO BANNER ───────────────────────── */
.promo-banner {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--promo);
    color: var(--primary);
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: .5px;
}

.promo-text {
    margin: 0;
}

.promo-text strong {
    color: var(--promo);
}

.countdown-timer {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: var(--promo);
    letter-spacing: 1px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.promo-link:hover {
    color: var(--promo);
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-box {
    width: 36px;
    height: 36px;
    background: transparent;
    
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.logo-icon-box i {
    width: 20px;
    height: 20px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

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

.logo-subtext {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-links a.nav-item-highlight {
    color: var(--accent);
    font-weight: 700;
    background: rgba(16, 185, 129, 0.08);
    padding: 2px 10px;
    border-radius: 6px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── HERO ───────────────────────────────── */
.hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    color: var(--white);
}

.hero-bg-visual {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.15), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -2px;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 20px;
    color: rgba(203, 213, 225, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Glass Frame for Visual */
.glass-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.glass-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0;
    margin-bottom: 10px;
}

.frame-header .dots {
    display: flex;
    gap: 6px;
}

.frame-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.frame-header .search-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    flex-grow: 1;
    text-align: center;
}

.glass-frame .content {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.glass-frame img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.floating-stat.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
}

.floating-stat.glass .stat-num {
    
}

.floating-stat.glass .icon-box {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: grid;
    place-items: center;
}

/* ─── VIDEO SECTION ──────────────────────── */
.section-video {
    padding: 120px 0;
    background: var(--bg);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.glass-premium {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    padding: 24px;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 6, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent);
    
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: play-pulse 2s infinite;
    cursor: pointer;
    transition: var(--transition-fast);
}

@keyframes play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-dark);
}

.video-duration {
    
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
    z-index: 5;
}

.video-wrapper.playing .video-placeholder,
.video-wrapper.playing .video-overlay {
    display: none;
}

.video-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.v-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

.v-highlight i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* ─── TRUST BAR ──────────────────────────── */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

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

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

.trust-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}

.trust-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ─── SECTION COMMONS ────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(16, 185, 129, .08);
    color: var(--accent);
    margin-bottom: 16px;
}

.tag-light {
    background: rgba(255, 255, 255, .1);
    color: var(--accent);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
}

/* ─── PROBLEM / SOLUTION ─────────────────── */
.section-problem {
    padding: 100px 0;
    background: var(--white);
}

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

.ps-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ps-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ps-bad {
    background: #fef2f2;
    border-color: #fecaca;
}

.ps-good {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.ps-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.ps-icon-box.bad {
    background: #fee2e2;
    color: var(--danger);
}

.ps-icon-box.good {
    background: #dcfce7;
    color: var(--accent);
}

.ps-icon-box i {
    width: 24px;
    height: 24px;
}

.ps-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
}

.ps-list li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.ps-bad .ps-list li i {
    color: var(--danger);
}

.ps-good .ps-list li i {
    color: var(--accent);
}

/* ─── FEATURES ───────────────────────────── */
.section-features {
    padding: 100px 0;
}

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

.feature-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(16, 185, 129, .08);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

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

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── HOW IT WORKS ───────────────────────── */
.section-steps {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    opacity: .3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding-top: 60px;
    color: var(--text-muted);
}

.step-connector i {
    width: 24px;
    height: 24px;
}

/* ─── DEEP DIVE ──────────────────────────── */
.section-deepdive {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
}

.deepdive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.deepdive-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.deepdive-icon-bg {
    color: var(--primary);
    opacity: .06;
}

.deepdive-icon-bg i {
    width: 200px;
    height: 200px;
}

.deepdive-mini-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mini-card i {
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

.mini-card.accent {
    background: var(--accent);
    
    border-color: var(--accent);
}

.mini-card.accent i {
    
}

.deepdive-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.deepdive-text>p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 16px;
}

.deepdive-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.deepdive-list li {
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.deepdive-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.deepdive-list li strong {
    color: var(--primary);
}

/* ─── COMPARISON TABLE ───────────────────── */
.section-compare {
    padding: 100px 0;
}

.compare-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 18px 24px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.compare-table thead th {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.col-webnox {
    background: #f0fdf4 !important;
}

.col-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 800;
}

.col-highlight .inline-icon {
    color: var(--promo);
}

.compare-table td.best {
    background: #f0fdf4;
    font-weight: 600;
    color: var(--accent-dark);
}

.compare-table td.best .inline-icon {
    color: var(--accent);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: rgba(16, 185, 129, .02);
}

/* ─── AI SECTION ─────────────────────────── */
.section-ai {
    padding: 120px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ai-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-content>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-size: 16px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius);
    background: rgba(16, 185, 129, .15);
    display: grid;
    place-items: center;
}

.ai-feature-icon i {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.ai-features li strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.ai-features li p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-orb {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .2), transparent 70%);
    position: absolute;
    animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {

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

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

.ai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.chip {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    transition: var(--transition);
}

.chip:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.chip-accent {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ─── SECURITY ───────────────────────────── */
.section-security {
    padding: 120px 0;
    background: var(--primary-light);
    color: var(--white);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.security-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.security-content>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
}

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

.sec-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sec-item i {
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.sec-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 2px;
}

.sec-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, .2);
    display: grid;
    place-items: center;
    animation: shield-rotate 20s linear infinite;
    position: relative;
}

.shield-ring::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .08);
}

.shield-ring i {
    width: 80px;
    height: 80px;
    color: var(--accent);
    opacity: .4;
}

@keyframes shield-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* ─── TESTIMONIALS ───────────────────────── */
.section-testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--promo);
}

.stars i {
    width: 16px;
    height: 16px;
}

.quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── PRICING ────────────────────────────── */
.section-pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.pricing-basic {
    background: var(--bg-alt);
}

.pricing-pro {
    background: var(--white);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--promo);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    letter-spacing: .5px;
    white-space: nowrap;
}

.pricing-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: var(--promo);
    margin-bottom: 12px;
}

.pricing-stars i {
    width: 16px;
    height: 16px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    margin-bottom: 8px;
}

.pricing-num {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-annual {
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-original {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-original del {
    color: var(--danger);
}

.pricing-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.pricing-list li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-list li.disabled {
    color: var(--text-muted);
}

.pricing-list li.disabled i {
    color: var(--text-muted);
}

.pricing-list li:not(.disabled) i {
    color: var(--accent);
}

.pricing-action {
    margin-bottom: 16px;
}

.pricing-note {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: 8px;
}

.pricing-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--danger);
    font-weight: 700;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.pricing-urgency i {
    width: 16px;
    height: 16px;
}

/* ─── FAQ ────────────────────────────────── */
.section-faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--accent);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.accordion-header i {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion-body {
    padding: 0 24px 20px;
    display: none;
}

.accordion-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── FINAL CTA ──────────────────────────── */
.section-final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    
}

.final-cta-inner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    
}

.final-cta-inner>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    margin-bottom: 20px;
}

.final-cta-note {
    font-size: 13px;
    opacity: .5;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
    background: #020617;
    
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent);
    background: rgba(16, 185, 129, .1);
}

.social-links a i {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── ANIMATIONS (scroll reveal) ─────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

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

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {

    .hero-grid,
    .deepdive-grid,
    .ai-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        text-align: center;
        padding: 80px 0 60px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .floating-stat {
        display: none;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        width: auto;
    }

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

    .pricing-pro {
        transform: scale(1);
    }

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

    .ai-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --container: 100%;
    }

    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--border);
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .trust-inner {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .promo-inner {
        font-size: 12px;
        gap: 8px;
    }

    .promo-link {
        display: none;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}

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

    .trust-number {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ─── HERO FLOATING STATS ────────────────── */
.hero-visual {
    position: relative;
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-stat.stat-1 {
    bottom: -20px;
    left: -30px;
}

.floating-stat.stat-2 {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
}

.stat-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ─── HERO PROOF BAR ────────────────────── */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-proof p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.hero-proof strong {
    color: rgba(255, 255, 255, 0.9);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid var(--primary);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

/* ─── BADGE GLOW ────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-glow {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent);
}

.badge-glow i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8));
}

/* ─── FOOTER COMPLIANCE ─────────────────── */
.footer-compliance {
    margin-top: 8px;
    font-size: 11px !important;
    opacity: 0.5;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    display: inline-block;
}
