/* ============================================
   QUALITYPVA.COM - GLOBAL STYLESHEET
   Trust-First Blue + Clean Neutrals Theme
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    /* Primary Colors */
    --primary-blue: #1a56db;
    --primary-blue-dark: #1e429f;
    --primary-blue-light: #3b82f6;
    
    /* Accent Colors */
    --accent-green: #10b981;
    --accent-green-dark: #059669;
    --accent-green-light: #34d399;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    --gradient-card: linear-gradient(180deg, rgba(26, 86, 219, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    
    /* Neutral Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow-blue: 0 0 20px rgba(26, 86, 219, 0.3);
    --shadow-glow-green: 0 0 20px rgba(16, 185, 129, 0.3);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1280px;
    --container-padding: 1rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
    :root {
        --container-padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

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

.btn-green:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

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

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

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

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

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dropdown-toggle i {
    transition: transform var(--transition-normal);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1001;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.services-dropdown {
    min-width: 310px;
    max-height: min(72vh, 460px);
    padding: 0.5rem;
    overflow-y: auto;
    display: grid;
    gap: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-medium) transparent;
}

.services-dropdown::-webkit-scrollbar,
.mobile-dropdown-list::-webkit-scrollbar {
    width: 8px;
}

.services-dropdown::-webkit-scrollbar-track,
.mobile-dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}

.services-dropdown::-webkit-scrollbar-thumb,
.mobile-dropdown-list::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 999px;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-blue);
    border-color: var(--border-light);
}

.nav-cta {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.mobile-dropdown {
    margin-top: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 0;
    background: transparent;
}

.mobile-dropdown-toggle i {
    font-size: 0.85rem;
    transition: transform var(--transition-normal);
}

.mobile-dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 0.35rem 0 0;
    margin-bottom: 0.25rem;
    border-left: 1px solid var(--border-light);
    scrollbar-width: thin;
    scrollbar-color: var(--border-medium) transparent;
}

.mobile-dropdown.open .mobile-dropdown-list {
    max-height: 360px;
    overflow-y: auto;
}

.mobile-dropdown.open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-item {
    display: block;
    padding: 0.56rem 0.75rem 0.56rem 0.95rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.mobile-dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-blue);
}

.mobile-nav-cta {
    margin-top: 2rem;
}

.mobile-nav-cta .btn {
    width: 100%;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* ============================================
   FLOATING CONTACT ICONS
   ============================================ */

.floating-contacts {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-contact.whatsapp {
    background: #25d366;
}

.floating-contact.telegram {
    background: #0088cc;
}

.floating-contact:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.floating-contact.telegram {
    animation: pulse-telegram 2s infinite;
}

@keyframes pulse-telegram {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 136, 204, 0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding-top: 132px;
    padding-bottom: 92px;
    background:
        linear-gradient(140deg, rgba(37, 99, 235, 0.1) 0%, rgba(20, 184, 166, 0.08) 46%, rgba(248, 251, 255, 0.92) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--border-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(37, 99, 235, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 86% 86%, rgba(20, 184, 166, 0.16) 0%, transparent 45%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, transparent 76%);
    opacity: 0.24;
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
    }
}

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0.95rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: 1.15rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 16ch;
}

.hero-title .highlight {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 1.7rem;
    max-width: 620px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.9rem;
    margin-bottom: 1.85rem;
}

.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.58);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-benefit i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #ffffff;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-proof-item i {
    color: var(--primary-blue);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-stat {
    padding: 0.95rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(1rem, 2.1vw, 1.32rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.68rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
}

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

.hero-image {
    width: min(100%, 540px);
    min-height: 490px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 43%),
        radial-gradient(circle at 0% 100%, rgba(20, 184, 166, 0.14) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.hero-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    padding: 1rem;
}

.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.95rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.hero-card-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.66rem;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-card-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.16);
}

.hero-card-list {
    display: grid;
    gap: 0.55rem;
}

.hero-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.56rem 0.68rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.9);
}

.hero-card-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: var(--text-primary);
    font-weight: 600;
}

.hero-card-platform i {
    width: 14px;
    text-align: center;
    color: var(--primary-blue);
}

.hero-card-stock {
    font-size: 0.76rem;
    font-weight: 700;
    color: #047857;
    background: rgba(16, 185, 129, 0.14);
    padding: 0.24rem 0.52rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.hero-card-footer {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.hero-card-metric {
    text-align: center;
    padding: 0.7rem 0.55rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.74);
}

.hero-card-metric strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.06rem;
    line-height: 1.2;
}

.hero-card-metric span {
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.5rem 0.78rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text-primary);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.hero-floating-card i {
    color: var(--primary-blue);
}

.hero-floating-card-top {
    top: 18px;
    right: 20px;
    animation: heroFloat 3.8s ease-in-out infinite;
}

.hero-floating-card-bottom {
    left: 18px;
    bottom: 18px;
    animation: heroFloat 4.2s ease-in-out infinite reverse;
}

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

@media (max-width: 1023px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 74px;
    }

    .hero-content {
        gap: 2.4rem;
    }

    .hero-title {
        max-width: 20ch;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 620px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 108px;
        padding-bottom: 64px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-proof-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .hero-image {
        padding: 0.9rem;
        border-radius: 24px;
    }

    .hero-card {
        padding: 0.8rem;
    }

    .hero-card-item {
        padding: 0.5rem 0.56rem;
    }

    .hero-card-platform {
        font-size: 0.8rem;
    }

    .hero-card-stock {
        font-size: 0.7rem;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 0.65rem;
    }
}

@media (max-width: 440px) {
    .hero-card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card-stock {
        align-self: flex-end;
    }
}

/* ============================================
   PLATFORM GRID SECTION
   ============================================ */

.platforms {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.platform-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    height: 100%;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.platform-link {
    display: block;
    color: inherit;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.platform-card:hover .platform-icon {
    background: var(--gradient-primary);
    color: white;
}

.platform-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.platform-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

.platform-order-btn {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   TRUST BAR SECTION
   ============================================ */

.trust-bar {
    padding: 60px 0;
    background: var(--gradient-soft);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.trust-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   BEST SELLERS SECTION
   ============================================ */

.best-sellers {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

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

.product-card.featured {
    border-color: var(--accent-green);
    position: relative;
}

.product-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 1;
}

.product-header {
    padding: 1.5rem;
    background: var(--gradient-card);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-type {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-body {
    padding: 1.5rem;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-feature i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

.product-cta {
    width: 100%;
}

/* ============================================
   PRICING TABS SECTION
   ============================================ */

.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.pricing-tab:hover {
    color: var(--primary-blue);
    border-color: var(--border-light);
}

.pricing-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ============================================
   BRAND STORY SECTION
   ============================================ */

.brand-story {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.story-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.story-features {
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.story-feature i {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-soft);
}

.story-icon {
    font-size: 6rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    transition: transform var(--transition-normal);
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.testimonial-rating {
    display: inline-flex;
    gap: 0.25rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   ORDER POPUP MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(7px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: min(92vh, 720px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.modal-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-medium) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 999px;
}

.modal-contacts {
    display: grid;
    gap: 1rem;
}

.modal-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.modal-contact:hover {
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

.modal-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.modal-contact-icon.whatsapp {
    background: #25d366;
}

.modal-contact-icon.telegram {
    background: #0088cc;
}

.modal-contact-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.modal-contact-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.modal-contact i:last-child {
    margin-left: auto;
    color: var(--text-light);
}

.modal-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.modal-note i {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-secondary);
}

.product-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.product-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.product-hero h1 {
    margin-bottom: 1rem;
}

.product-hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .product-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-feature-item i {
    color: var(--accent-green);
}

/* Pricing Table */
.pricing-table-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.pricing-tabs-wrapper {
    margin-bottom: 2rem;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.pricing-card-header {
    padding: 1.5rem;
    background: var(--gradient-card);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card-quantity {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-card-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-card-body {
    padding: 1.5rem;
}

.pricing-card-features {
    margin-bottom: 1.5rem;
}

.pricing-card-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-card-feature i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

.pricing-card-cta {
    width: 100%;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-values {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

.contact-content {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-method-icon.whatsapp {
    background: #25d366;
}

.contact-method-icon.telegram {
    background: #0088cc;
}

.contact-method-icon.email {
    background: var(--primary-blue);
}

.contact-method-info h3 {
    margin-bottom: 0.25rem;
}

.contact-method-info p {
    font-size: 0.9375rem;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-secondary);
    text-align: center;
}

.blog-hero h1 {
    margin-bottom: 1rem;
}

.blog-content {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.blog-image {
    height: 200px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blog-card p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: gap var(--transition-fast);
}

.read-more:hover {
    gap: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* ============================================
   HOMEPAGE DARK GREEN THEME OVERRIDES
   (index.html only via .homepage-dark)
   ============================================ */

.homepage-dark {
    --primary-blue: #22c55e;
    --primary-blue-dark: #16a34a;
    --primary-blue-light: #4ade80;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;
    --accent-green-light: #4ade80;
    --gradient-primary: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
    --gradient-soft: linear-gradient(135deg, rgba(34, 197, 94, 0.16) 0%, rgba(74, 222, 128, 0.1) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    --bg-primary: #111827;
    --bg-secondary: #0f172a;
    --bg-tertiary: #020617;
    --bg-dark: #020617;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --shadow-glow-green: 0 0 30px rgba(74, 222, 128, 0.35);
}

.homepage-dark {
    color: #ffffff;
    background: linear-gradient(155deg, #0f172a 0%, #111827 52%, #020617 100%);
    background-attachment: fixed;
}

.homepage-dark .hero,
.homepage-dark .platforms,
.homepage-dark .trust-bar,
.homepage-dark .best-sellers,
.homepage-dark .brand-story,
.homepage-dark .faq-section,
.homepage-dark .testimonials-section {
    background: transparent;
}

.homepage-dark .hero::before {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(34, 197, 94, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 80% 78%, rgba(74, 222, 128, 0.08) 0%, transparent 50%);
}

.homepage-dark .hero::after {
    opacity: 0.12;
}

.homepage-dark .navbar {
    background: rgba(2, 6, 23, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-dark .navbar.scrolled {
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
}

.homepage-dark .logo,
.homepage-dark h1,
.homepage-dark h2,
.homepage-dark h3,
.homepage-dark h4,
.homepage-dark h5,
.homepage-dark h6,
.homepage-dark .hero-stat-number,
.homepage-dark .price-amount,
.homepage-dark .faq-question,
.homepage-dark .platform-name,
.homepage-dark .product-name,
.homepage-dark .footer-column h4 {
    color: #ffffff;
}

.homepage-dark p,
.homepage-dark .nav-link,
.homepage-dark .dropdown-item,
.homepage-dark .mobile-nav-link,
.homepage-dark .mobile-dropdown-item,
.homepage-dark .hero-description,
.homepage-dark .section-description,
.homepage-dark .platform-meta,
.homepage-dark .product-type,
.homepage-dark .price-unit,
.homepage-dark .product-feature,
.homepage-dark .faq-answer p,
.homepage-dark .hero-stat-label,
.homepage-dark .footer-brand p,
.homepage-dark .footer-links a,
.homepage-dark .footer-bottom p,
.homepage-dark .footer-legal a {
    color: #9ca3af;
}

.homepage-dark .menu-toggle span {
    background: #ffffff;
}

.homepage-dark .nav-link:hover,
.homepage-dark .dropdown-item:hover,
.homepage-dark .mobile-nav-link:hover,
.homepage-dark .footer-links a:hover,
.homepage-dark .footer-legal a:hover {
    color: #4ade80;
}

.homepage-dark .dropdown-menu,
.homepage-dark .mobile-menu,
.homepage-dark .platform-card,
.homepage-dark .product-card,
.homepage-dark .testimonial-card,
.homepage-dark .hero-image,
.homepage-dark .story-image,
.homepage-dark .trust-icon,
.homepage-dark .platform-icon,
.homepage-dark .product-icon,
.homepage-dark .modal,
.homepage-dark .modal-contact,
.homepage-dark .footer-social a,
.homepage-dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.homepage-dark .hero-image {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(148, 163, 184, 0.04) 100%);
}

.homepage-dark .hero-image::before {
    background:
        radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.2) 0%, transparent 43%),
        radial-gradient(circle at 0% 100%, rgba(74, 222, 128, 0.16) 0%, transparent 50%);
}

.homepage-dark .hero-badge,
.homepage-dark .hero-benefit,
.homepage-dark .hero-proof-item,
.homepage-dark .hero-stat,
.homepage-dark .hero-card,
.homepage-dark .hero-card-item,
.homepage-dark .hero-card-metric,
.homepage-dark .hero-floating-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage-dark .hero-proof-item,
.homepage-dark .hero-benefit,
.homepage-dark .hero-floating-card {
    color: #d1d5db;
}

.homepage-dark .hero-proof-item i,
.homepage-dark .hero-floating-card i,
.homepage-dark .hero-card-platform i {
    color: #4ade80;
}

.homepage-dark .hero-card-title,
.homepage-dark .hero-card-platform,
.homepage-dark .hero-card-metric strong {
    color: #ffffff;
}

.homepage-dark .hero-card-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage-dark .hero-card-stock,
.homepage-dark .hero-card-status {
    background: rgba(74, 222, 128, 0.2);
    color: #bbf7d0;
}

.homepage-dark .hero-card-status::before {
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.24);
}

.homepage-dark .services-dropdown {
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
}

.homepage-dark .services-dropdown .dropdown-item {
    color: #0f172a;
    font-weight: 600;
}

.homepage-dark .services-dropdown .dropdown-item:hover {
    background: #dcfce7;
    color: #14532d;
    border-color: #86efac;
}

.homepage-dark .mobile-dropdown-list {
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-md);
    border-left: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.35rem;
}

.homepage-dark .mobile-dropdown-item {
    color: #0f172a;
    font-weight: 600;
}

.homepage-dark .mobile-dropdown-item:hover {
    background: #dcfce7;
    color: #14532d;
}

.homepage-dark .modal {
    background: rgba(248, 250, 252, 0.99);
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.5);
    backdrop-filter: none;
}

.homepage-dark .modal-header {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 55%, #4ade80 100%);
}

.homepage-dark .modal-header h3 {
    color: #ffffff;
}

.homepage-dark .modal-header p {
    color: rgba(255, 255, 255, 0.94);
}

.homepage-dark .modal-close {
    background: rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.homepage-dark .modal-close:hover {
    background: rgba(15, 23, 42, 0.38);
}

.homepage-dark .modal-contact {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
}

.homepage-dark .modal-contact-info h4 {
    color: #0f172a;
}

.homepage-dark .modal-contact-info p,
.homepage-dark .modal-note,
.homepage-dark .modal-contact i:last-child {
    color: #334155;
}

.homepage-dark .faq-item {
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

.homepage-dark .testimonial-text {
    color: #d1d5db;
}

.homepage-dark .testimonial-avatar {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}

.homepage-dark .faq-question {
    padding: 1.25rem 0;
}

.homepage-dark .faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

.homepage-dark .trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-dark .trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.homepage-dark .btn {
    border-radius: var(--radius-full);
    font-weight: 700;
}

.homepage-dark .btn-primary,
.homepage-dark .btn-green {
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.34), 0 0 22px rgba(74, 222, 128, 0.25);
}

.homepage-dark .btn-primary:hover,
.homepage-dark .btn-green:hover {
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
    color: #ffffff;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.42), 0 0 28px rgba(74, 222, 128, 0.35);
}

.homepage-dark .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.homepage-dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.45);
    color: #ffffff;
    filter: brightness(1.04);
}

.homepage-dark .footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   GLOBAL LIGHT THEME UPGRADE (PROJECT-WIDE)
   ============================================ */

:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #60a5fa;
    --accent-green: #14b8a6;
    --accent-green-dark: #0d9488;
    --accent-green-light: #5eead4;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(20, 184, 166, 0.1) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 249, 0.96) 100%);
    --bg-primary: #f8fbff;
    --bg-secondary: #edf4ff;
    --bg-tertiary: #e2ecff;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-light: #64748b;
    --border-light: #dbe5f2;
    --border-medium: #b8c8de;
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 28px 56px rgba(15, 23, 42, 0.12);
    --shadow-glow-blue: 0 0 28px rgba(37, 99, 235, 0.25);
    --shadow-glow-green: 0 0 28px rgba(20, 184, 166, 0.25);
    --section-padding: 88px 0;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 28px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08) 0%, transparent 46%),
        radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.08) 0%, transparent 45%),
        var(--bg-primary);
    color: var(--text-primary);
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

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

.navbar {
    background: rgba(248, 251, 255, 0.9);
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.dropdown-toggle i {
    font-size: 0.75rem;
}

.dropdown-menu,
.mobile-menu {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border-light);
}

.hero,
.product-hero,
.about-hero,
.contact-hero,
.blog-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-bottom: 1px solid var(--border-light);
}

.platforms,
.pricing-table-section,
.about-content,
.contact-content,
.blog-content,
.faq-section {
    background: transparent;
}

.trust-bar,
.best-sellers,
.brand-story,
.about-values {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header {
    margin: 0 auto 3.25rem;
}

.section-title {
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
}

.section-header-compact {
    margin-bottom: 2rem;
}

.section-title-accent {
    color: var(--primary-blue);
}

.brand-story-alt {
    background: var(--bg-secondary);
}

.hero-ctas-spaced {
    margin-top: 2rem;
}

.platform-card,
.product-card,
.pricing-card,
.value-card,
.blog-card,
.contact-method,
.contact-form-wrapper,
.trust-item,
.modal-contact,
.hero-image,
.story-image {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.platform-card:hover,
.product-card:hover,
.pricing-card:hover,
.blog-card:hover,
.contact-method:hover,
.modal-contact:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 24px 42px rgba(37, 99, 235, 0.14);
}

.btn {
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary,
.btn-green {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover,
.btn-green:hover {
    color: #ffffff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-blue);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.75);
}

.pricing-tab {
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.78);
}

.pricing-tab.active {
    border-color: transparent;
}

.form-input,
.form-select,
.form-textarea {
    border: 1px solid var(--border-medium);
    background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.contact-method-info small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.8125rem;
}

.trust-item-emphasis {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.form-intro {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.btn-block {
    width: 100%;
}

.faq-section-soft {
    background: var(--bg-secondary);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 220px;
}

.modal-header {
    position: relative;
}

.footer {
    background: linear-gradient(145deg, #0f172a 0%, #111e36 100%);
}

.footer-brand p,
.footer-links a,
.footer-bottom p,
.footer-legal a {
    color: #c7d2fe;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

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

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

    .floating-contacts {
        bottom: 16px;
        left: 16px;
    }

    .modal-overlay {
        padding: 0.75rem;
    }

    .modal {
        width: 100%;
        max-width: 420px;
        max-height: calc(100vh - 1.5rem);
        border-radius: 20px;
    }

    .modal-header {
        padding: 1.2rem 1.1rem;
    }

    .modal-header h3 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.2rem;
    }

    .modal-contact {
        padding: 0.95rem;
    }

    .modal-contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }
}

/* ============================================
   PVAPANEL-INSPIRED PRODUCT PAGE STYLING
   (Applied site-wide via .homepage-dark)
   ============================================ */

.homepage-dark {
    background:
        radial-gradient(circle at 15% 16%, rgba(37, 99, 235, 0.18) 0%, transparent 36%),
        radial-gradient(circle at 84% 82%, rgba(34, 197, 94, 0.18) 0%, transparent 38%),
        linear-gradient(160deg, #070a12 0%, #0b0f1c 55%, #070a12 100%);
    background-attachment: fixed;
}

.homepage-dark .product-hero,
.homepage-dark .pricing-table-section {
    position: relative;
    background: transparent;
    border-bottom: none;
}

.homepage-dark .product-hero::before,
.homepage-dark .pricing-table-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top center, rgba(74, 222, 128, 0.14) 0%, rgba(2, 6, 23, 0) 58%);
}

.homepage-dark .product-hero .container,
.homepage-dark .pricing-table-section .container {
    position: relative;
    z-index: 1;
}

.homepage-dark .product-hero {
    padding-top: 150px;
    padding-bottom: 72px;
}

.homepage-dark .product-hero-icon {
    background: rgba(11, 15, 28, 0.8);
    border: 1px solid rgba(74, 222, 128, 0.35);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
}

.homepage-dark .product-hero p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

.homepage-dark .product-feature-item {
    justify-content: center;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbe7ff;
}

.homepage-dark .pricing-tabs {
    justify-content: flex-start;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
}

.homepage-dark .pricing-tab {
    border-radius: 12px;
    padding: 0.75rem 1.3rem;
    background: rgba(11, 15, 28, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-weight: 600;
}

.homepage-dark .pricing-tab:hover {
    border-color: rgba(74, 222, 128, 0.55);
    color: #ffffff;
}

.homepage-dark .pricing-tab.active {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.34);
}

.homepage-dark .pricing-cards-grid {
    gap: 1.35rem;
}

.homepage-dark .pricing-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(11, 15, 28, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 55px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(10px);
}

.homepage-dark .pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 222, 128, 0.5);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.58), 0 0 26px rgba(74, 222, 128, 0.22);
}

.homepage-dark .pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.65rem 1.6rem 0.65rem;
    background: transparent;
    border-bottom: none;
}

.homepage-dark .pricing-card-price {
    order: 1;
    font-size: 2.65rem;
    line-height: 1;
    color: #ffffff;
}

.homepage-dark .pricing-card-price span {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
}

.homepage-dark .pricing-card-quantity {
    order: 2;
    margin-bottom: 0;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4ade80;
}

.homepage-dark .pricing-card-body {
    padding: 1rem 1.6rem 1.55rem;
}

.homepage-dark .pricing-card-feature {
    color: #cbd5e1;
    font-size: 0.91rem;
    padding: 0.48rem 0;
}

.homepage-dark .pricing-card-feature i {
    color: #4ade80;
}

.homepage-dark .pricing-card-cta {
    border-radius: 999px;
    font-weight: 700;
}

.homepage-dark .pricing-cards-grid .pricing-card:nth-child(3) {
    border-color: rgba(74, 222, 128, 0.52);
    background: linear-gradient(165deg, rgba(34, 197, 94, 0.16) 0%, rgba(11, 15, 28, 0.84) 72%);
    box-shadow: 0 28px 62px rgba(2, 6, 23, 0.62), 0 0 28px rgba(74, 222, 128, 0.25);
}

.homepage-dark .pricing-cards-grid .pricing-card:nth-child(3)::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.38rem 1rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #052e16;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    z-index: 2;
}

@media (max-width: 768px) {
    .homepage-dark .pricing-tabs {
        justify-content: center;
    }

    .homepage-dark .pricing-card-header {
        padding-top: 2.2rem;
    }
}
