/* ===========================================================
   Sideline — Global Stylesheet
   Dark theme · Purple & Blue · 3D Effects · Arial
   =========================================================== */

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

:root {
    --bg: #050508;
    --bg-secondary: #0a0a14;
    --bg-card: #0f0f1e;
    --bg-card-hover: #161630;
    --bg-elevated: #141430;
    --border: #1c1c40;
    --border-light: #2e2e58;
    --text: #e8e8f0;
    --text-bright: #ffffff;
    --text-muted: #9494b8;
    --text-dim: #64648a;

    /* Purple primary */
    --purple: #7c3aed;
    --purple-light: #8b5cf6;
    --purple-lighter: #a78bfa;
    --purple-dark: #6d28d9;
    --purple-deeper: #5b21b6;
    --purple-bg: rgba(124, 58, 237, 0.12);
    --purple-glow: rgba(124, 58, 237, 0.25);
    --purple-glow-intense: rgba(124, 58, 237, 0.4);
    --purple-shine: rgba(167, 139, 250, 0.08);

    /* Blue secondary */
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-lighter: #93bbfd;
    --blue-dark: #2563eb;
    --blue-bg: rgba(59, 130, 246, 0.1);
    --blue-glow: rgba(59, 130, 246, 0.2);

    /* Accents */
    --accent: var(--purple);
    --accent-light: var(--purple-light);
    --accent-bg: var(--purple-bg);
    --accent-glow: var(--purple-glow);
    --gradient-primary: linear-gradient(145deg, #7c3aed 0%, #8b5cf6 30%, #6d28d9 70%, #5b21b6 100%);
    --gradient-hero: linear-gradient(135deg, #050508 0%, #0e0a1e 40%, #0a0818 100%);
    --gradient-card: linear-gradient(145deg, #0f0f1e 0%, #14142a 50%, #1a1040 100%);
    --gradient-accent-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);

    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* 3D Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 12px 60px rgba(0, 0, 0, 0.55);
    --shadow-purple: 0 8px 40px rgba(124, 58, 237, 0.2);
    --shadow-purple-lg: 0 16px 60px rgba(124, 58, 237, 0.3);
    --shadow-blue: 0 8px 40px rgba(59, 130, 246, 0.15);
    --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-3d: 0 4px 0 rgba(0, 0, 0, 0.3), 0 8px 32px rgba(124, 58, 237, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1600px;
    padding: 0 40px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== ANIMATED BACKGROUND ===== */
.site-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.site-gradient-orb {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
    filter: blur(40px);
}

.site-gradient-orb-2 {
    position: fixed;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, rgba(124, 58, 237, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.08); }
    66% { transform: translate(-30px, 30px) scale(0.92); }
}

/* ===== GLASS NAVIGATION ===== */
nav {
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 58, 237, 0.04);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 0px !important;
    padding-right: 28px;
}

nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    transition: filter 0.3s, transform 0.3s;
}

nav .logo:hover {
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.25));
    transform: scale(1.02);
}

nav .logo img {
    display: block;
    height: 220px;
    width: auto;
}

nav .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

nav .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color var(--transition), text-shadow var(--transition);
    position: relative;
    padding: 4px 0;
}

nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--purple-glow);
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: var(--text-bright);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

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

nav .nav-cta {
    color: var(--purple-lighter);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
    position: relative;
}

nav .nav-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--purple-lighter);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
}

nav .nav-cta:hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ===== HERO ===== */
.hero {
    background: transparent;
    padding: 60px 0 90px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

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

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--purple-lighter);
    font-weight: 500;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 16px rgba(124, 58, 237, 0.1);
}

.hero .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--blue-glow);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 25%, #7c3aed 50%, #60a5fa 75%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.08;
    filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.15));
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero .subtag {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 56px;
    padding-top: 44px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

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

.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 25%, #7c3aed 50%, #60a5fa 75%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(124, 58, 237, 0.2));
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    cursor: pointer;
    border: none;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(1); }

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: 1px solid rgba(167, 139, 250, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: rgba(124, 58, 237, 0.06);
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    color: var(--purple-lighter);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--purple-bg);
    border-color: var(--purple);
    box-shadow: 0 6px 24px var(--purple-glow);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--purple);
    color: var(--purple-lighter);
    box-shadow: 0 6px 24px var(--purple-glow);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.3rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.88rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 0;
    position: relative;
}

section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.15;
    filter: drop-shadow(0 2px 10px rgba(124, 58, 237, 0.1));
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 70px;
    font-size: 1.15rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-bg);
    color: var(--purple-lighter);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.08);
}

.section-divider {
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 3px;
    margin: 0 auto 28px;
    box-shadow: 0 0 16px var(--purple-glow);
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-purple-lg);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 50%, var(--purple) 100%);
    opacity: 0.2;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-3d);
}

.step-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-purple-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 6px 24px var(--purple-glow), var(--shadow-inner);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(167, 139, 250, 0.15);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 14px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== PRICING ===== */
.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-purple-lg);
}

.pricing-card.featured {
    border: 1.5px solid rgba(124, 58, 237, 0.35);
    background: var(--gradient-card);
    transform: scale(1.03);
    box-shadow: var(--shadow-purple);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: var(--shadow-purple-lg);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 26px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px var(--purple-glow);
    border: 1px solid rgba(167, 139, 250, 0.15);
}

.pricing-card .plan-icon {
    width: 56px;
    height: 56px;
    background: var(--purple-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
}

.pricing-card.featured .plan-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.pricing-card .plan-name {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.pricing-card .price {
    font-size: 3.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 25%, #7c3aed 50%, #60a5fa 75%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -1.5px;
    filter: drop-shadow(0 2px 12px rgba(124, 58, 237, 0.2));
}

.pricing-card.featured .price {
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 25%, #7c3aed 50%, #60a5fa 75%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card .price-period {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.pricing-card .price-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.pricing-card .price-savings {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-card ul li {
    padding: 12px 0;
    color: var(--text);
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--purple-light);
    font-weight: 700;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(124, 58, 237, 0.3));
}

.pricing-card.featured ul li::before {
    color: var(--blue-light);
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.3));
}

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

/* Comparison table */
.pricing-comparison {
    margin-top: 70px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    overflow-x: auto;
    box-shadow: var(--shadow-3d);
}

.pricing-comparison h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 28px;
    text-align: center;
}

.pricing-comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.3rem;
}

.pricing-comparison th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-comparison th:first-child { color: var(--purple-lighter); }

.pricing-comparison td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.pricing-comparison tr:last-child td {
    border-bottom: none;
}

.pricing-comparison td:first-child {
    font-weight: 600;
    color: var(--text-bright);
}

.pricing-comparison .check { color: var(--blue-light); font-weight: 700; }
.pricing-comparison .cross { color: var(--text-dim); }

/* ===== CTA BANNER ===== */
.trial-banner {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-xl);
    padding: 64px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.trial-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.trial-banner p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.trial-banner .btn {
    font-size: 1.15rem;
    padding: 20px 52px;
}

.trial-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trial-features span {
    color: var(--text-dim);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trial-features .check-icon {
    color: var(--blue);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: left;
    position: relative;
    box-shadow: var(--shadow-3d);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 3.5rem;
    color: rgba(124, 58, 237, 0.08);
    font-weight: 900;
    line-height: 1;
}

.testimonial-card p.quote {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 0.94rem;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 12px var(--purple-glow);
}

.testimonial-author-info .name {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 1.3rem;
}

.testimonial-author-info .title {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ===== INDUSTRIES ===== */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 750px;
    margin: 0 auto;
}

.industry-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 26px;
    border-radius: 100px;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.industry-tag:hover {
    border-color: var(--purple);
    color: var(--purple-lighter);
    background: var(--purple-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--purple-glow);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.faq-question {
    padding: 24px 28px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
    user-select: none;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--purple);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color var(--transition);
}

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

footer p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.8;
}

footer .footer-brand {
    margin-bottom: 8px;
}

footer .footer-brand img {
    height: 28px;
    vertical-align: middle;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.1));
}

/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 40px rgba(124, 58, 237, 0.25));
}

/* ===== INDUSTRY TABLE ===== */
.industry-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-3d);
}

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

.industry-table td {
    padding: 16px 24px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
    cursor: default;
    position: relative;
}

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

.industry-table td:hover {
    background: var(--purple-bg);
    color: var(--purple-lighter);
}

.industry-table td::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition);
}

.industry-table td:hover::before {
    opacity: 1;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 100px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--gradient-hero);
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 25%, #7c3aed 50%, #60a5fa 75%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 16px rgba(124, 58, 237, 0.12));
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .features { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .testimonials { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    section h2 { font-size: 2rem; }
    .pricing-plans { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .trial-banner { padding: 44px 28px; }
    .trial-banner h2 { font-size: 1.6rem; }
    nav .logo img { height: 100px; }
}

@media (max-width: 640px) {
    .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 40px 0 70px; }
    section { padding: 70px 0; }
    section h2 { font-size: 1.6rem; }
    .pricing-comparison { padding: 24px; font-size: 0.82rem; }
    .hero-logo img { height: 220px; }

    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 8, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 18px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    nav .nav-links.open { display: flex; }
    .mobile-toggle { display: block; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero .badge { font-size: 0.75rem; padding: 8px 16px; }
    nav .logo img { height: 100px; }
}

/* ===== NAV ENHANCEMENTS ===== */
nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7c3aed 20%, #3b82f6 50%, #7c3aed 80%, transparent 100%);
    opacity: 0.4;
}

nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

/* Soft ambient glow on nav logo area */
nav .logo {
    position: relative;
}

nav .logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* Hero decorative glow enhancements */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(124, 58, 237, 0.04) 0%, transparent 100%);
    pointer-events: none;
}

/* Section decorative top accents */
section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}

section:hover::before {
    opacity: 1;
}

/* Feature card decorative corner accent */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

.feature-card:hover::after {
    width: 150px;
    height: 150px;
    top: -70px;
    right: -70px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

/* Step card decorative dots */
.step-card::before {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.2;
    box-shadow: 12px 0 0 var(--purple), 24px 0 0 var(--purple);
    transition: opacity 0.3s;
}

.step-card:hover::before {
    opacity: 0.5;
}

/* Pricing card shine effect */
.pricing-card.featured::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(25deg);
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { transform: rotate(25deg) translateX(-100%); }
    50% { transform: rotate(25deg) translateX(400%); }
}

/* Testimonial cards - subtle border glow on hover */
.testimonial-card {
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

/* Floating decorative blobs for hero */
.hero .deco-blob-1,
.hero .deco-blob-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero .deco-blob-1 {
    top: 15%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    animation: blobFloat1 12s ease-in-out infinite;
    filter: blur(30px);
}

.hero .deco-blob-2 {
    bottom: 10%;
    right: -3%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: blobFloat2 15s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 15px) scale(1.03); }
    66% { transform: translate(20px, -25px) scale(0.97); }
}

/* Smooth section transitions */
section {
    transition: background 0.5s ease;
}

/* Hover lift on all cards */
.pricing-card, .feature-card, .step-card, .testimonial-card {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                border-color 0.3s ease, 
                box-shadow 0.35s ease;
}

/* ===== AUTH / SIGNUP FORMS ===== */
.auth-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0;
}

.auth-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    outline: none;
}

.form-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-input::placeholder {
    color: var(--text-dim);
    opacity: 0.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
    margin-top: 4px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0 16px;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--card-bg);
    padding: 0 16px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.auth-info {
    padding: 32px 0;
}

.auth-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-bright);
}

.auth-info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-benefits li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.auth-disclaimer {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.78rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .auth-form-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .auth-form-card {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .auth-info {
        padding: 0;
    }
}
