/* ========================================
   DATALINK × PERPLEXITY LANDING PAGE
   Inspired by Thmanyah's Visual Style
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Colors from design-system.json */
    --primary: #0B2C4A;
    --primary-variant: #11406A;
    --accent: #FFB000;
    --accent-variant: #F59E0B;
    --bg: #FFFFFF;
    --muted-bg: #F7F8FA;
    --text: #0F1724;
    --text-muted: #475569;
    --success: #16A34A;
    --danger: #EF4444;
    --card: #FFFFFF;
    --border: #E6E9EE;

    /* Typography */
    --font-primary: 'Cairo', 'Noto Kufi Arabic', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', 'Noto Sans', sans-serif;

    /* Font Weights */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Font Sizes */
    --text-h1: 48px;
    --text-h2: 36px;
    --text-h3: 28px;
    --text-lead: 20px;
    --text-body: 18px;
    --text-small: 16px;

    /* Spacing */
    --space-xs: 6px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 36, 0.04);
    --shadow-md: 0 6px 18px rgba(11, 28, 46, 0.08);
    --shadow-lg: 0 20px 40px rgba(11, 28, 46, 0.12);
    --shadow-xl: 0 30px 60px rgba(11, 28, 46, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: overflow var(--transition-base);
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .navbar .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-variant);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outlined:hover,
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--muted-bg);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    font-weight: var(--weight-bold);
}

.btn-accent:hover {
    background: var(--accent-variant);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--text-lead);
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 44, 74, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(11, 44, 74, 0);
    }
}

/* Language Switch Button */
.btn-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 10px 18px;
    font-size: 15px;
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-md);
    background: rgba(11, 44, 74, 0.03);
    color: var(--text-muted);
    border: 1.5px solid rgba(11, 44, 74, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

.btn-language:hover {
    background: rgba(11, 44, 74, 0.08);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 44, 74, 0.15);
}

.btn-language:active {
    transform: translateY(0);
}

.btn-language svg {
    stroke-width: 2;
    transition: transform var(--transition-base);
}

.btn-language:hover svg {
    transform: rotate(15deg);
}

/* Navbar Actions Container */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* Hide mobile actions on desktop */
.navbar-actions-mobile {
    display: none;
}

/* Navbar Decorative Elements */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.navbar.scrolled::after {
    opacity: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(11, 44, 74, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 176, 0, 0.3) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(11, 44, 74, 0.12);
    border-bottom-color: rgba(11, 44, 74, 0.12);
    height: 72px;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled .navbar-content {
    height: 72px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 20px;
    font-weight: var(--weight-bold);
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.navbar-brand:hover::after {
    opacity: 1;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(11, 44, 74, 0.1));
}

.navbar-brand:hover .logo {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(11, 44, 74, 0.15));
}

.navbar.scrolled .navbar-brand .logo {
    height: 56px;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    color: var(--text-muted);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(11, 44, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-base);
    pointer-events: none;
}

.nav-link:hover::before {
    width: 120px;
    height: 120px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform var(--transition-base);
    box-shadow: 0 0 8px rgba(255, 176, 0, 0.6);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(11, 44, 74, 0.05) 0%, rgba(255, 176, 0, 0.05) 100%);
    font-weight: var(--weight-bold);
    box-shadow: 0 2px 8px rgba(11, 44, 74, 0.08);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 8px;
    height: 8px;
}

.nav-link.active::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 176, 0, 0.1) 0%, rgba(11, 44, 74, 0.05) 100%);
    border-radius: var(--radius-md);
}

/* Nav Link Ripple Effect */
.nav-link {
    cursor: pointer;
}

.nav-link:active {
    transform: scale(0.98);
}

/* Navbar Brand Animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.navbar-brand .logo {
    animation: logoFloat 3s ease-in-out infinite;
}

.navbar-brand:hover .logo {
    animation: none;
}

#navSubscribeBtn {
    padding: 12px 28px;
    font-size: var(--text-small);
    font-weight: var(--weight-bold);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 44, 74, 0.25);
    position: relative;
    overflow: hidden;
}

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

#navSubscribeBtn:hover::before {
    left: 100%;
}

#navSubscribeBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 44, 74, 0.35);
    background: linear-gradient(135deg, var(--primary-variant) 0%, var(--primary) 100%);
}

#navSubscribeBtn:active {
    transform: translateY(0);
}

/* Navbar Subscribe Button Glow Effect */
#navSubscribeBtn {
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(11, 44, 74, 0.25);
    }
    50% {
        box-shadow: 0 4px 20px rgba(11, 44, 74, 0.35), 0 0 20px rgba(255, 176, 0, 0.2);
    }
}

#navSubscribeBtn:hover {
    animation: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(11, 44, 74, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

/* Ensure navbar menu displays correctly on desktop */
@media (min-width: 901px) {
    .navbar-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        overflow: visible !important;
    }

    .navbar-menu .nav-link {
        width: auto !important;
        padding: 12px 20px !important;
        margin-bottom: 0 !important;
    }

    .navbar-menu .nav-link::after {
        display: block !important;
        bottom: 8px !important;
        top: auto !important;
        left: 50% !important;
        transform: translateX(-50%) scaleX(0) !important;
    }

    .navbar-menu .nav-link.active::after {
        transform: translateX(-50%) scaleX(1) !important;
        width: 8px !important;
        height: 8px !important;
    }

    .navbar-menu .nav-link:hover {
        transform: translateY(-2px) !important;
        background: transparent !important;
    }

    .navbar-actions-mobile {
        display: none !important;
    }

    .navbar-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(11, 44, 74, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-pill);
    transition: all var(--transition-base);
    box-shadow: 0 1px 2px rgba(11, 44, 74, 0.2);
}

@media (max-width: 900px) {
    .navbar {
        height: 72px;
        overflow: visible;
    }

    .navbar-content {
        height: 72px;
        overflow: visible;
        position: relative;
    }

    .navbar-brand {
        flex-shrink: 0;
        z-index: 1001;
    }

    .navbar-brand .logo {
        height: 48px;
        max-width: 150px;
    }

    /* Hide desktop actions in mobile */
    .navbar-actions {
        display: none !important;
    }

    .navbar-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: calc(100vh - 72px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-xl);
        box-shadow: -4px 0 40px rgba(11, 44, 74, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(11, 44, 74, 0.08);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }

    .navbar-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 176, 0, 0.4) 50%,
            transparent 100%);
    }

    .navbar-menu.active {
        right: 0;
        animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Mobile menu overlay */
    .navbar-menu-overlay {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 44, 74, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    @keyframes slideInRight {
        from {
            right: -100%;
            opacity: 0;
        }
        to {
            right: 0;
            opacity: 1;
        }
    }

    .navbar-menu .nav-link {
        width: 100%;
        padding: 16px 20px;
        margin-bottom: var(--space-xs);
        border-radius: var(--radius-md);
        font-size: var(--text-lead);
    }

    .navbar-menu .nav-link::after {
        display: none;
    }

    .navbar-menu .nav-link.active::after {
        display: block;
        bottom: auto;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        border-radius: var(--radius-pill);
        box-shadow: 0 0 8px rgba(255, 176, 0, 0.6);
    }

    .navbar-menu .nav-link:hover {
        transform: translateX(-4px);
        background: rgba(11, 44, 74, 0.05);
    }

    /* Mobile actions inside menu */
    .navbar-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
        border-top: 1px solid var(--border);
    }

    .navbar-actions-mobile .btn {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
        white-space: nowrap;
        min-height: 48px;
    }

    .navbar-actions-mobile .btn-language {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .navbar-actions-mobile .btn-language span {
        display: inline;
    }

    .navbar-actions-mobile .btn-outlined {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active {
        background: rgba(11, 44, 74, 0.15);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--accent);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--accent);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

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

.eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variant) 100%);
    color: var(--primary);
    font-size: 14px;
    font-weight: var(--weight-bold);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

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

.hero-subtitle {
    font-size: var(--text-lead);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.accent-text {
    color: var(--accent);
    font-weight: var(--weight-bold);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.trust-badges {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: var(--text-small);
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: var(--weight-bold);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    min-height: 500px;
    width: 100%;
}

/* Floating AI Icons */
.ai-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: pointer;
    z-index: 5;
}

.ai-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.ai-icon img {
    width: 100%;
    height: 100%;
    padding: 12px;
    transition: transform var(--transition-base);
    object-fit: contain;
}

.ai-icon:hover img {
    transform: rotate(5deg);
}

/* Gemini Icon */
.ai-icon-gemini {
    top: 10%;
    right: 10%;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 0s;
}

/* ChatGPT Icon */
.ai-icon-chatgpt {
    top: 30%;
    left: 5%;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Claude Icon */
.ai-icon-claude {
    bottom: 25%;
    right: 15%;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* GROK Icon */
.ai-icon-grok {
    bottom: 10%;
    left: 10%;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .hero-visual {
        min-height: 400px;
    }

    .ai-icon {
        width: 60px;
        height: 60px;
    }

    .ai-icon-gemini {
        top: 5%;
        right: 5%;
    }

    .ai-icon-chatgpt {
        top: 25%;
        left: 3%;
    }

    .ai-icon-claude {
        bottom: 20%;
        right: 10%;
    }

    .ai-icon-grok {
        bottom: 5%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 350px;
    }

    .ai-icon {
        width: 50px;
        height: 50px;
    }

    .ai-icon svg {
        padding: 8px;
    }
}

/* ========== SECTION COMMON STYLES ========== */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-lead);
    color: var(--text-muted);
}

/* ========== SUBSCRIPTION SECTION ========== */
.subscription-section {
    background: var(--muted-bg);
}

.subscription-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid var(--accent);
}

/* ========== UNIFIED PLANS GRID ========== */
.plans-grid-unified {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.plan-card-unified {
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 500px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.plan-card-unified:nth-child(1) {
    animation-delay: 0.1s;
}

.plan-card-unified:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-card-unified:nth-child(3) {
    animation-delay: 0.3s;
}

.plan-card-unified:nth-child(4) {
    animation-delay: 0.4s;
}

.plan-card-unified:nth-child(5) {
    animation-delay: 0.5s;
}

.plan-card-unified.plan-featured {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(255, 176, 0, 0.15);
}

.plan-card-unified.plan-featured::before {
    opacity: 1;
    height: 6px;
}

.plan-card-unified:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(11, 44, 74, 0.15);
}

.plan-card-unified.plan-featured:hover {
    box-shadow: 0 24px 48px rgba(255, 176, 0, 0.25);
    border-color: var(--accent-variant);
}

.card-badge {
    position: absolute;
    top: -16px;
    right: var(--space-xl);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variant) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: var(--weight-bold);
    box-shadow: var(--shadow-md);
}

.subscription-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.plan-title {
    font-size: var(--text-h3);
    color: var(--primary);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-md);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-sm);
}

.price-value {
    font-size: 64px;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
}

.price-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 8px;
}

.currency {
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--text);
}

.period {
    font-size: var(--text-small);
    color: var(--text-muted);
}

.features-list {
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: var(--text-body);
    color: var(--text);
}

.check-icon {
    flex-shrink: 0;
}

.card-note {
    text-align: center;
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* Unified Plan Card Background */
.plan-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg,
        rgba(11, 44, 74, 0.03) 0%,
        rgba(255, 176, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.plan-card-unified.plan-featured .plan-card-background {
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.08) 0%,
        rgba(255, 176, 0, 0.03) 100%);
}

.plan-card-unified:hover .plan-card-background {
    opacity: 1;
}

.plan-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--accent) 0%,
        var(--accent-variant) 50%,
        var(--accent) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: all var(--transition-base);
    animation: shimmer 3s infinite;
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.plan-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg,
        rgba(11, 44, 74, 0.03) 0%,
        rgba(255, 176, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.plan-card-mini:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(11, 44, 74, 0.15);
    border-color: var(--accent);
}

.plan-card-mini:hover .plan-card-background {
    opacity: 1;
}

.plan-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--accent) 0%,
        var(--accent-variant) 50%,
        var(--accent) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: all var(--transition-base);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.plan-card-mini:hover::before {
    opacity: 1;
    height: 5px;
}

.plan-card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variant) 100%);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: var(--weight-bold);
    box-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

.mini-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-variant) 100%);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: var(--weight-bold);
    box-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 176, 0, 0.5);
    }
}

.badge-icon {
    font-size: 14px;
    animation: rotateStar 3s linear infinite;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.plan-card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg,
        rgba(11, 44, 74, 0.05) 0%,
        rgba(255, 176, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.plan-card-unified:hover .plan-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.15) 0%,
        rgba(11, 44, 74, 0.1) 100%);
}

.plan-card-unified.plan-featured .plan-icon-wrapper {
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.15) 0%,
        rgba(255, 176, 0, 0.08) 100%);
}

.plan-icon {
    color: var(--accent);
    transition: all var(--transition-base);
}

.plan-card-unified:hover .plan-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.plan-title-unified {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    text-align: center;
    transition: color var(--transition-base);
}

.plan-card-unified:hover .plan-title-unified {
    color: var(--accent);
}

.plan-description-unified {
    font-size: var(--text-small);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-plan-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    text-align: center;
    transition: color var(--transition-base);
}

.plan-card-mini:hover .mini-plan-title {
    color: var(--accent);
}

.mini-plan-description {
    font-size: var(--text-small);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-price-unified {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg);
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.05) 0%,
        rgba(255, 176, 0, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 176, 0, 0.1);
    transition: all var(--transition-base);
}

.plan-card-unified.plan-featured .plan-price-unified {
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.12) 0%,
        rgba(255, 176, 0, 0.06) 100%);
    border-color: rgba(255, 176, 0, 0.2);
}

.plan-card-unified:hover .plan-price-unified {
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.1) 0%,
        rgba(255, 176, 0, 0.05) 100%);
    border-color: rgba(255, 176, 0, 0.2);
    transform: scale(1.05);
}

.plan-price-value {
    font-size: 48px;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255, 176, 0, 0.2);
    transition: all var(--transition-base);
}

.plan-card-unified:hover .plan-price-value {
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
}

.plan-currency {
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--text);
}

.plan-period {
    font-size: var(--text-small);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

.mini-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg);
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.05) 0%,
        rgba(255, 176, 0, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 176, 0, 0.1);
    transition: all var(--transition-base);
}

.plan-card-mini:hover .mini-plan-price {
    background: linear-gradient(135deg,
        rgba(255, 176, 0, 0.1) 0%,
        rgba(255, 176, 0, 0.05) 100%);
    border-color: rgba(255, 176, 0, 0.2);
    transform: scale(1.05);
}

.mini-price {
    font-size: 48px;
    font-weight: var(--weight-bold);
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255, 176, 0, 0.2);
    transition: all var(--transition-base);
}

.plan-card-mini:hover .mini-price {
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(255, 176, 0, 0.3);
}

.mini-currency {
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--text);
}

.mini-period {
    font-size: var(--text-small);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--text-small);
    color: var(--text);
    text-align: right;
    transition: transform var(--transition-base);
}

.plan-card-unified:hover .plan-feature-item {
    transform: translateX(-4px);
}

.plan-check-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.plan-card-unified:hover .plan-check-icon {
    transform: scale(1.2) rotate(5deg);
}

.mini-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    flex: 1;
}

.mini-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--text-small);
    color: var(--text);
    text-align: right;
    transition: transform var(--transition-base);
}

.plan-card-mini:hover .mini-feature-item {
    transform: translateX(-4px);
}

.mini-feature-more {
    padding-top: var(--space-md);
    margin-top: var(--space-xs);
    border-top: 1px dashed var(--border);
}

.feature-more-text {
    font-size: var(--text-small);
    font-weight: var(--weight-semibold);
    color: var(--accent);
    padding-right: var(--space-md);
}

.mini-check-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.plan-card-mini:hover .mini-check-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-plan-action {
    width: 100%;
    margin-top: auto;
    padding: 14px 24px;
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.btn-plan-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transition: left 0.5s ease;
}

.btn-plan-action:hover::before {
    left: 100%;
}

.btn-plan-action svg {
    transition: transform var(--transition-base);
}

.btn-plan-action:hover svg {
    transform: translateX(-4px);
}

.plan-card-mini .btn-plan-select {
    width: 100%;
    margin-top: auto;
    padding: 14px 24px;
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.plan-card-mini .btn-plan-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transition: left 0.5s ease;
}

.plan-card-mini .btn-plan-select:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 44, 74, 0.25);
    border-color: var(--primary);
}

.plan-card-mini .btn-plan-select:hover::before {
    left: 100%;
}

.plan-card-mini .btn-plan-select svg {
    transition: transform var(--transition-base);
}

.plan-card-mini .btn-plan-select:hover svg {
    transform: translateX(-4px);
}

/* Responsive Unified Plans */
@media (max-width: 1024px) {
    .plans-grid-unified {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .plans-grid-unified {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 500px;
    }

    .plan-card-unified {
        min-height: 480px;
    }

    .plan-card-content {
        padding: var(--space-xl);
    }

    .plan-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .plan-title-unified {
        font-size: var(--text-lead);
    }

    .plan-price-value {
        font-size: 40px;
    }

    .plan-currency,
    .plan-period {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .plan-card-unified {
        min-height: 460px;
    }

    .plan-card-content {
        padding: var(--space-lg);
    }

    .plan-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-md);
    }

    .plan-price-value {
        font-size: 36px;
    }
}

/* Responsive Other Plans */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .other-plans {
        margin-top: var(--space-2xl);
        padding-top: var(--space-2xl);
    }

    .other-plans-title {
        font-size: var(--text-h3);
    }

    .other-plans-subtitle {
        font-size: var(--text-body);
        margin-top: var(--space-lg);
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 500px;
    }

    .plan-card-mini {
        min-height: 380px;
    }

    .plan-card-content {
        padding: var(--space-xl);
    }

    .plan-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .mini-plan-title {
        font-size: var(--text-lead);
    }

    .mini-price {
        font-size: 40px;
    }

    .mini-currency,
    .mini-period {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .plan-card-mini {
        min-height: 360px;
    }

    .plan-card-content {
        padding: var(--space-lg);
    }

    .plan-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-md);
    }

    .mini-price {
        font-size: 36px;
    }
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.feature-icon {
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-size: var(--text-body);
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--muted-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    text-align: right;
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    background: white;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--muted-bg);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: var(--text-body);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.testimonials-track {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-height: 280px;
}

.testimonial-item {
    display: none;
    padding: var(--space-xl);
    animation: fadeIn 0.5s ease;
}

.testimonial-item.active {
    display: block;
}

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

.testimonial-quote {
    font-size: 48px;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-md);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: var(--text-lead);
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lead);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
}

.author-name {
    font-size: var(--text-body);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: var(--text-small);
    color: var(--text-muted);
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: var(--radius-pill);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        gap: var(--space-sm);
    }

    .testimonial-nav {
        width: 44px;
        height: 44px;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-item {
        padding: var(--space-lg);
    }

    .testimonial-quote {
        font-size: 36px;
    }

    .testimonial-text {
        font-size: var(--text-body);
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

/* ========== CTA FOOTER SECTION ========== */
.cta-footer-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-title {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--text-lead);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-price-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.price-label {
    font-size: var(--text-lead);
    opacity: 0.9;
}

.price-big {
    font-size: 56px;
    font-weight: var(--weight-bold);
    color: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    margin-bottom: var(--space-lg);
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: var(--space-md);
    object-fit: contain;
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand-text {
    font-size: var(--text-body);
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-4px);
}

.footer-title {
    font-size: var(--text-lead);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-md);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-body);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    margin-bottom: var(--space-lg);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.footer-contact li a {
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-contact li a:hover {
    opacity: 1;
}

.newsletter-title {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-md);
}

.newsletter-input-group {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--text-body);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group .btn {
    padding: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: var(--text-small);
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: var(--text-small);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 36, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.modal.active .modal-container {
    transform: scale(1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
    }
    to {
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--muted-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--danger);
    color: white;
}

.modal-content {
    padding: var(--space-2xl);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.modal-subtitle {
    font-size: var(--text-body);
    color: var(--text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--text-body);
    font-family: var(--font-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 44, 74, 0.1);
}

.form-input.error {
    border-color: var(--danger);
}

.form-error {
    display: block;
    font-size: 14px;
    color: var(--danger);
    margin-top: var(--space-xs);
    min-height: 20px;
}

.form-note {
    text-align: center;
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-top: var(--space-md);
    line-height: 1.6;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
}

.success-message.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    margin: 0 auto var(--space-lg);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--success);
    margin-bottom: var(--space-md);
}

.success-text {
    font-size: var(--text-body);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-variant);
}

/* ========== SELECTION ========== */
::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ========== PRIVACY PAGE STYLES - SIMPLE VERSION ========== */
.privacy-header-simple {
    padding: calc(72px + var(--space-3xl)) 0 var(--space-xl);
    background: var(--muted-bg);
    border-bottom: 1px solid var(--border);
}

.privacy-intro {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-main-title {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.privacy-update-date {
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.privacy-version {
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.privacy-intro-text {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-top: var(--space-md);
}

/* Privacy Content */
.privacy-content-simple {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Dynamic content styles from seeder */
.privacy-wrapper h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.privacy-wrapper h2 {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border);
}

.privacy-wrapper h2:first-of-type {
    margin-top: 0;
}

.privacy-wrapper h3 {
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.privacy-wrapper section {
    margin-bottom: var(--space-lg);
}

.privacy-wrapper section:last-child {
    margin-bottom: 0;
}

.privacy-wrapper p {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.privacy-wrapper p:last-child {
    margin-bottom: 0;
}

.privacy-wrapper ul {
    list-style: none;
    margin: var(--space-md) 0;
    padding: 0;
    padding-right: var(--space-lg);
}

.privacy-wrapper ul li {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    padding-right: var(--space-lg);
    position: relative;
}

.privacy-wrapper ul li::before {
    content: '•';
    color: var(--accent);
    font-weight: var(--weight-bold);
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

.privacy-wrapper ul li strong {
    color: var(--primary);
    font-weight: var(--weight-semibold);
}

.privacy-wrapper .last-updated {
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.section-heading {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border);
}

.section-heading:first-of-type {
    margin-top: 0;
}

.section-text {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.simple-list {
    list-style: none;
    margin: var(--space-md) 0 var(--space-xl) 0;
    padding: 0;
}

.simple-list li {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    padding-right: var(--space-lg);
    position: relative;
}

.simple-list li::before {
    content: '•';
    color: var(--accent);
    font-weight: var(--weight-bold);
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

.simple-list li strong {
    color: var(--primary);
    font-weight: var(--weight-semibold);
}

.highlight-box {
    padding: var(--space-lg);
    background: linear-gradient(135deg, #FFF7E6 0%, #FFFBF0 100%);
    border-right: 4px solid var(--accent);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.highlight-box p {
    font-size: var(--text-body);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.highlight-box strong {
    color: var(--primary);
    font-weight: var(--weight-bold);
}

.contact-box {
    padding: var(--space-xl);
    background: var(--muted-bg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.contact-box p {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.link-text {
    color: var(--accent);
    font-weight: var(--weight-semibold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.link-text:hover {
    color: var(--accent-variant);
}

/* ========== RESPONSIVE PRIVACY PAGE ========== */
@media (max-width: 768px) {
    .privacy-header-simple {
        padding: calc(72px + var(--space-2xl)) 0 var(--space-lg);
    }

    .privacy-main-title {
        font-size: var(--text-h2);
    }

    .privacy-wrapper {
        padding: var(--space-lg);
    }

    .privacy-wrapper h2 {
        font-size: var(--text-lead);
        margin-top: var(--space-lg);
    }

    .section-heading {
        font-size: var(--text-lead);
        margin-top: var(--space-lg);
    }

    .section-text,
    .simple-list li {
        font-size: var(--text-small);
    }

    .contact-box {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .privacy-wrapper {
        padding: var(--space-md);
    }

    .privacy-main-title {
        font-size: var(--text-h3);
    }

    .privacy-wrapper h2 {
        font-size: var(--text-body);
        margin-top: var(--space-md);
    }

    .section-heading {
        font-size: var(--text-body);
    }
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */
@media (max-width: 768px) {
    :root {
        --text-h1: 36px;
        --text-h2: 28px;
        --text-h3: 22px;
        --text-lead: 18px;
        --text-body: 16px;
    }

    .hero {
        padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
    }

    section {
        padding: var(--space-2xl) 0;
    }
}

/* ========== 404 PAGE STYLES ========== */
.error-section {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.error-bg-decoration {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.error-visual {
    position: relative;
    margin-bottom: var(--space-2xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-number {
    font-size: 180px;
    font-weight: var(--weight-bold);
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    z-index: 0;
}

.error-icon {
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

.error-title {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.error-description {
    font-size: var(--text-lead);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.error-suggestions {
    background: var(--muted-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2xl);
}

.suggestions-title {
    font-size: var(--text-lead);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    list-style: none;
    padding: 0;
}

.suggestions-list li {
    margin: 0;
}

.suggestions-list a {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.suggestions-list a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .error-number {
        font-size: 120px;
    }

    .error-title {
        font-size: var(--text-h2);
    }

    .error-actions {
        flex-direction: column;
    }

    .suggestions-list {
        flex-direction: column;
    }
}

/* ========== ORDER CONFIRMATION PAGE STYLES ========== */
.confirmation-section {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.confirmation-bg-decoration {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.confirmation-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.confirmation-icon {
    text-align: center;
    margin-bottom: var(--space-xl);
    animation: scaleIn 0.6s ease;
}

.confirmation-title {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    color: var(--success);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.confirmation-subtitle {
    font-size: var(--text-lead);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.order-details-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--success);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.order-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
}

.order-number {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.order-label {
    font-size: var(--text-body);
    color: var(--text-muted);
}

.order-id {
    font-size: var(--text-lead);
    font-weight: var(--weight-bold);
    color: var(--primary);
    font-family: monospace;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.info-label {
    font-size: var(--text-small);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
}

.info-value {
    font-size: var(--text-body);
    color: var(--text);
    font-weight: var(--weight-semibold);
}

.order-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: var(--text-small);
    font-weight: var(--weight-semibold);
}

.status-pending {
    background: rgba(255, 176, 0, 0.1);
    color: var(--accent-variant);
}

.status-completed {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.next-steps-card {
    background: var(--muted-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.steps-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.steps-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    font-size: var(--text-body);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: var(--text-small);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.confirmation-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.support-note {
    background: linear-gradient(135deg, rgba(11, 44, 74, 0.05) 0%, rgba(255, 176, 0, 0.05) 100%);
    border-right: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.support-note svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.support-note p {
    font-size: var(--text-body);
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.support-note a {
    color: var(--accent);
    font-weight: var(--weight-semibold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .confirmation-title {
        font-size: var(--text-h2);
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .support-note {
        flex-direction: column;
    }
}

/* ========== PAYMENT FAILED PAGE STYLES ========== */
.payment-failed-section {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.payment-failed-bg-decoration {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.payment-failed-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.payment-failed-icon {
    text-align: center;
    margin-bottom: var(--space-xl);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.payment-failed-title {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    color: var(--danger);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.payment-failed-subtitle {
    font-size: var(--text-lead);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.error-details-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--danger);
}

.error-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.error-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
}

.error-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.error-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.error-info-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.error-info-content {
    flex: 1;
}

.error-info-content strong {
    display: block;
    font-size: var(--text-body);
    font-weight: var(--weight-bold);
    color: var(--danger);
    margin-bottom: var(--space-xs);
}

.error-info-content p {
    font-size: var(--text-body);
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.solutions-card {
    background: var(--muted-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.solutions-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.solutions-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.solution-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.solution-icon {
    flex-shrink: 0;
}

.solution-content {
    flex: 1;
}

.solution-content strong {
    display: block;
    font-size: var(--text-body);
    font-weight: var(--weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.solution-content p {
    font-size: var(--text-small);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.payment-failed-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.support-note.error-note {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 176, 0, 0.05) 100%);
    border-right-color: var(--danger);
    flex-direction: column;
}

.support-note-content {
    flex: 1;
}

.support-note-content p {
    margin-bottom: var(--space-sm);
}

.support-note-content p:last-child {
    margin-bottom: 0;
}

.support-contacts {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.support-contacts li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-body);
    color: var(--text);
}

.support-contacts svg {
    flex-shrink: 0;
    color: var(--danger);
}

.support-contacts a {
    color: var(--accent);
    font-weight: var(--weight-semibold);
    text-decoration: underline;
}

.support-hours {
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .payment-failed-title {
        font-size: var(--text-h2);
    }

    .payment-failed-actions {
        flex-direction: column;
    }

    .error-info-item,
    .solution-item {
        flex-direction: column;
    }
}

/* ========== SUBSCRIPTION MODAL STYLES ========== */
/* Modal Button Hover Effects */
.subscription-modal-overlay button[type="submit"]:not([disabled]):hover {
    background: linear-gradient(135deg, #11406A 0%, #0B2C4A 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 44, 74, 0.35) !important;
}

.subscription-modal-overlay button[type="button"]:not([disabled]):hover {
    border-color: #0B2C4A !important;
    color: #0B2C4A !important;
    background: rgba(11, 44, 74, 0.05) !important;
}

/* Plan Card Hover Effects */
.subscription-modal-overlay div[style*="cursor: pointer"]:hover {
    border-color: #0B2C4A !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 44, 74, 0.1);
}

/* Input Focus Effects */
.subscription-modal-overlay input[type="email"]:focus,
.subscription-modal-overlay input[type="tel"]:focus {
    border-color: #0B2C4A !important;
    box-shadow: 0 0 0 3px rgba(11, 44, 74, 0.1);
}

/* Close Button Hover */
.subscription-modal-overlay button[style*="position: absolute"]:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg);
}

