/* ============================================
   Friday Landing Page - Premium Styles
   ============================================ */

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #22d3ee;

    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;

    --light: #f8fafc;
    --light-dark: #e2e8f0;
    --light-darker: #cbd5e1;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --section-padding-sm: 80px 0;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    font-family: var(--font-family);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: white;
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn i {
    font-size: 1.2em;
}

/* ============================================
   Section Styles
   ============================================ */

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark);
}

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

.navbar-toggler {
    border: none;
    padding: 8px;
    color: white;
    font-size: 1.5rem;
}

.navbar.scrolled .navbar-toggler {
    color: var(--dark);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-nav {
    padding: 10px 24px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 40%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-20px); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.25rem;
    color: #25D366;
}

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-trust .trust-item i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.phone-mockup {
    width: 300px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
}

.phone-screen {
    background: linear-gradient(180deg, #075e54 0%, #128c7e 100%);
    border-radius: 28px;
    overflow: hidden;
    padding-top: 40px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.chat-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.chat-messages {
    padding: 20px;
    min-height: 300px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.message {
    margin-bottom: 12px;
}

.message-received .message-content {
    background: white;
    border-radius: 0 16px 16px 16px;
    padding: 14px 18px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-content strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.message-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.summary-item i {
    font-size: 1rem;
    margin-top: 2px;
}

.summary-item i.mdi-check-circle {
    color: var(--success);
}

.summary-item i.mdi-alert-circle {
    color: var(--warning);
}

.summary-item i.mdi-clock {
    color: var(--secondary);
}

.message-time {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card.card-1 {
    top: 20%;
    right: 0;
    animation: float1 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 25%;
    left: 10%;
    animation: float2 4s ease-in-out infinite;
}

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

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

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ============================================
   Pain Points Section
   ============================================ */

.pain-section {
    padding: var(--section-padding);
    background: var(--light);
}

.pain-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--light-dark);
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pain-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-icon i {
    font-size: 2rem;
    color: var(--danger);
}

.pain-card h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.pain-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   How It Works Section
   ============================================ */

.howitworks-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-dark);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-dark);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.step-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.step-note i {
    font-size: 1.25rem;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits-section {
    padding: var(--section-padding);
    background: white;
}

.benefit-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card.featured {
    background: var(--gradient-primary);
    color: white;
}

.benefit-card.featured h3,
.benefit-card.featured .benefit-list li {
    color: white;
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-card.featured .benefit-icon i {
    color: white;
}

.benefit-card.featured .benefit-list i {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
}

.toggle-label {
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--dark);
}

.save-badge {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-darker);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid var(--light-dark);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-price {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--light-dark);
    border-bottom: 1px solid var(--light-dark);
}

.pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

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

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

.pricing-features i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
}

.pricing-card.featured .btn-primary {
    padding: 18px 36px;
}

/* ============================================
   Trust Section
   ============================================ */

.trust-section {
    padding: var(--section-padding);
    background: white;
}

.trust-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: white;
}

.trust-card h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 16px;
}

.trust-card > .row > .col-lg-5 > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-item-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.trust-item-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.trust-item-card span {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .trust-card {
        padding: 40px;
    }

    .trust-card h3 {
        margin-bottom: 24px;
    }

    .trust-items {
        margin-top: 32px;
    }
}

@media (max-width: 576px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 50%);
}

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

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 60px 0;
    background: var(--dark);
    color: white;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand .brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer .col-md-6:last-child {
        text-align: left !important;
        margin-top: 32px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* ============================================
   Responsive Utilities
   ============================================ */

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-section .row {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-visual {
        margin-top: 60px;
        padding: 20px;
    }

    .floating-card.card-1 {
        right: -10px;
    }

    .floating-card.card-2 {
        left: -10px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 16px;
    }

    .navbar.scrolled .navbar-collapse {
        background: white;
        box-shadow: var(--shadow-lg);
    }

    .navbar.scrolled .navbar-collapse .nav-link {
        color: var(--text-secondary);
    }

    .navbar-collapse .btn-nav {
        width: 100%;
        margin-top: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ============================================
   Animations
   ============================================ */

[data-aos] {
    pointer-events: auto !important;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--light-darker);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
