/* ============================================
   AccountsZenix - LUXURY STYLESHEET
   Domain: accountszenix.com
   ============================================ */

/* CSS Variables - New Color Theme */
:root {
    /* Primary Palette */
    --white: #FFFFFF;
    --soft-ivory: #F8FAFC;
    --warm-linen: #F8FAFC;
    --deep-evergreen: #0F172A;
    --premium-emerald: #0F9D9A;
    --muted-sage: #5B6470;
    --antique-gold: #0F9D9A;
    --champagne-beige: #E2E8F0;
    --forest-moss: #0F172A;
    --soft-divider: #E2E8F0;

    /* Functional Colors */
    --text-primary: #0F172A;
    --text-secondary: #5B6470;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F8FAFC;
    --accent-primary: #0F9D9A;
    --accent-hover: #0B7F7C;
    --accent-gold: #0F9D9A;
    --accent-soft: #DDF7F5;
    --border-color: #E2E8F0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Manrope', var(--font-primary);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    --container-padding: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 60px rgba(15, 23, 42, 0.15);

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    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: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

/* Utility Bar */
.utility-bar {
    background: var(--deep-evergreen);
    padding: 10px 0;
    font-size: 0.8125rem;
}

.utility-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.utility-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.utility-bar__item svg {
    width: 14px;
    height: 14px;
    color: var(--antique-gold);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--soft-divider);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--deep-evergreen);
}

.logo__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--premium-emerald), var(--deep-evergreen));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-evergreen);
    background: var(--soft-ivory);
}

.nav-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--soft-ivory);
    color: var(--deep-evergreen);
}

.dropdown-item img,
.dropdown-item svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--deep-evergreen);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-evergreen);
    border: 2px solid var(--champagne-beige);
}

.btn-secondary:hover {
    border-color: var(--premium-emerald);
    background: var(--soft-ivory);
}

.btn-gold {
    background: var(--antique-gold);
    color: white;
}

.btn-gold:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-evergreen);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-ivory) 100%);
    overflow: hidden;
}

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

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--premium-emerald);
    margin-bottom: 24px;
}

.hero__badge svg {
    width: 14px;
    height: 14px;
    color: var(--antique-gold);
}

.hero__title {
    margin-bottom: 20px;
    color: var(--deep-evergreen);
}

.hero__title span {
    color: var(--premium-emerald);
}

.hero__description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--muted-sage);
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--forest-moss);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--premium-emerald);
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

.hero-dashboard {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    border: 1px solid var(--soft-divider);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--soft-divider);
}

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

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-sage);
}

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

.dashboard-card {
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--soft-divider);
}

.dashboard-card__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dashboard-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-sage);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-evergreen);
    margin-top: 4px;
}

.dashboard-card.featured {
    background: linear-gradient(135deg, var(--premium-emerald), var(--deep-evergreen));
    border-color: transparent;
}

.dashboard-card.featured .dashboard-card__icon {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-card.featured .dashboard-card__label,
.dashboard-card.featured .dashboard-card__value {
    color: white;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--soft-ivory);
}

.section-warm {
    background: var(--warm-linen);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--premium-emerald);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
    color: var(--deep-evergreen);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-sage);
}

/* Structured Access Section */
.access-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.access-content h2 {
    margin-bottom: 20px;
    color: var(--deep-evergreen);
}

.access-content p {
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.access-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.access-feature__icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-feature__icon svg {
    width: 20px;
    height: 20px;
    color: var(--premium-emerald);
}

.access-feature__content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--deep-evergreen);
}

.access-feature__content p {
    font-size: 0.875rem;
    margin: 0;
}

/* Access Visual */
.access-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.access-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--soft-divider);
}

.access-card:nth-child(2) {
    transform: translateY(20px);
}

.access-card:nth-child(3) {
    transform: translateY(-10px);
}

.access-card__number {
    width: 36px;
    height: 36px;
    background: var(--premium-emerald);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.access-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.access-card p {
    font-size: 0.875rem;
    margin: 0;
}

/* Service Directory */
.directory-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--champagne-beige);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-fast);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--premium-emerald);
}

.search-bar svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted-sage);
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-sage);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--premium-emerald);
    border-color: var(--premium-emerald);
    color: white;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-emerald), var(--antique-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.service-card__category {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--antique-gold);
    margin-bottom: 8px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.service-card__description {
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #F59E0B;
}

.service-card__price span {
    font-size: 0.75rem;
    color: var(--muted-sage);
    font-weight: 400;
}

/* Pricing Overview */
.pricing-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--soft-divider);
}

.pricing-panel__header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--soft-divider);
}

.pricing-panel__icon {
    width: 64px;
    height: 64px;
    background: var(--soft-ivory);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}

.pricing-panel h3 {
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.pricing-panel p {
    font-size: 0.9375rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pricing-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
}

.pricing-tier__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-evergreen);
}

.pricing-tier__price {
    font-size: 1rem;
    font-weight: 700;
    color: #F59E0B;
}

/* Featured Services */
.featured-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
}

.featured-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--champagne-beige);
}

.featured-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.featured-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--deep-evergreen);
}

.featured-card__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 16px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--soft-divider);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--premium-emerald), var(--deep-evergreen));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.step-card p {
    font-size: 0.875rem;
    margin: 0;
}

/* Category Overview */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

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

.category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--champagne-beige);
}

.category-card__icons {
    display: flex;
    gap: -8px;
    margin-bottom: 20px;
}

.category-card__icons span {
    width: 44px;
    height: 44px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: -8px;
    border: 2px solid var(--white);
}

.category-card__icons span:first-child {
    margin-left: 0;
}

.category-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.category-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

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

.why-card__icon {
    width: 52px;
    height: 52px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--premium-emerald);
}

.why-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.why-card p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--antique-gold);
    fill: var(--antique-gold);
}

.testimonial-card__text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--premium-emerald), var(--deep-evergreen));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-card__info h5 {
    font-size: 0.9375rem;
    margin-bottom: 2px;
    color: var(--deep-evergreen);
}

.testimonial-card__info span {
    font-size: 0.8125rem;
    color: var(--muted-sage);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--soft-divider);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-evergreen);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--soft-ivory);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--muted-sage);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--premium-emerald);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-evergreen), var(--forest-moss));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--deep-evergreen);
    transition: var(--transition-fast);
}

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

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--soft-ivory);
    padding: 80px 0 32px;
    border-top: 1px solid var(--soft-divider);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand p {
    font-size: 0.9375rem;
    margin: 16px 0 24px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social a:hover {
    background: var(--premium-emerald);
    border-color: var(--premium-emerald);
}

.footer__social a:hover svg {
    color: white;
}

.footer__social svg {
    width: 18px;
    height: 18px;
    color: var(--muted-sage);
}

.footer__column h5 {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    color: var(--deep-evergreen);
}

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

.footer__links a {
    font-size: 0.875rem;
    color: var(--muted-sage);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--premium-emerald);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--soft-divider);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--muted-sage);
    margin: 0;
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 0.8125rem;
    color: var(--muted-sage);
}

.footer__bottom-links a:hover {
    color: var(--premium-emerald);
}

/* Floating Chat Icons */
.floating-chat-links {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
}

.floating-chat-links__item {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    position: relative;
}

.floating-chat-links__item:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.03);
}

.floating-chat-links__item svg {
    width: 28px;
    height: 28px;
}

.floating-chat-links__item span {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--deep-evergreen);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

.floating-chat-links__item:hover span,
.floating-chat-links__item:focus-visible span {
    opacity: 1;
    visibility: visible;
}

.floating-chat-links__item--whatsapp {
    background: #25D366;
}

.floating-chat-links__item--telegram {
    background: #229ED9;
}

.floating-chat-links__item:focus-visible {
    outline: 3px solid rgba(15, 157, 154, 0.28);
    outline-offset: 3px;
}

/* Hide legacy floating widgets replaced by the new left-side chat icons */
.floating-contact,
.floating-menu,
#floatingContact {
    display: none !important;
}

/* Floating Contact Panel */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-contact__toggle {
    width: 56px;
    height: 56px;
    background: var(--premium-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.floating-contact__toggle:hover {
    background: var(--deep-evergreen);
    transform: scale(1.05);
}

.floating-contact__toggle svg {
    width: 24px;
    height: 24px;
    color: white;
}

.floating-contact__menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.floating-contact.active .floating-contact__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--soft-divider);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.floating-contact__item:hover {
    background: var(--premium-emerald);
    border-color: var(--premium-emerald);
}

.floating-contact__item:hover span,
.floating-contact__item:hover svg {
    color: white;
}

.floating-contact__item svg {
    width: 20px;
    height: 20px;
    color: var(--premium-emerald);
}

.floating-contact__item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--deep-evergreen);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 20px;
}

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

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    max-height: min(90vh, 760px);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: var(--transition-normal);
    position: relative;
}

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

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--soft-divider);
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 2;
}

.modal__close:hover {
    background: var(--soft-ivory);
}

.modal__close svg {
    width: 20px;
    height: 20px;
    color: var(--muted-sage);
}

.modal__icon {
    width: 64px;
    height: 64px;
    background: var(--soft-ivory);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal__icon svg {
    width: 32px;
    height: 32px;
    color: var(--premium-emerald);
}

.modal h3 {
    text-align: center;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.modal > p {
    text-align: center;
    margin-bottom: 28px;
}

.modal__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.modal__contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.modal__contact:hover {
    background: var(--premium-emerald);
}

.modal__contact:hover svg,
.modal__contact:hover span,
.modal__contact:hover strong {
    color: white;
}

.modal__contact svg {
    width: 24px;
    height: 24px;
    color: var(--premium-emerald);
    flex-shrink: 0;
}

.modal__contact div {
    display: flex;
    flex-direction: column;
}

.modal__contact strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-evergreen);
}

.modal__contact span {
    font-size: 0.8125rem;
    color: var(--muted-sage);
}

.modal__note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted-sage);
    padding-top: 20px;
    border-top: 1px solid var(--soft-divider);
}

/* Checkout Modal */
.modal--checkout {
    max-width: 560px;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-form {
    margin-top: 24px;
}

.checkout-step__actions,
.checkout-error-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.checkout-back,
.checkout-back-to-payment {
    min-width: 140px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(15, 157, 154, 0.1);
}

.form-group input.error {
    border-color: #e53e3e;
}

.error-message {
    font-size: 0.8125rem;
    color: #e53e3e;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

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

.order-summary {
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.order-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.order-summary__item:last-child {
    margin-bottom: 0;
}

.order-summary__total {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.payment-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted-sage);
    margin-top: 16px;
}

/* Threads Country IP Section */
.threads-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.threads-country-card {
    background: var(--white);
    border: 1px solid var(--soft-divider);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.threads-country-card__flag {
    font-size: 2rem;
    margin-bottom: 16px;
}

.threads-country-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.threads-country-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.threads-country-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.threads-country-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--premium-emerald);
}

.threads-country-card__price span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-sage);
}

.pricing-card__icon.country-flag-icon {
    font-size: 2rem;
    line-height: 1;
}

/* Threads Country IP Table */
.country-ip-panel {
    margin-top: 24px;
}

.country-ip-table-wrapper {
    background: var(--white);
    border: 1px solid var(--soft-divider);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.country-ip-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.country-ip-table th,
.country-ip-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--soft-divider);
}

.country-ip-table th {
    background: var(--soft-ivory);
    color: var(--deep-evergreen);
    font-size: 0.875rem;
    font-weight: 700;
}

.country-ip-table td {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.country-ip-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.65);
}

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

.checkout-step--2 .modal__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.checkout-step--2 .modal__icon svg,
.checkout-step--loading .modal__icon svg,
.checkout-step--error .modal__icon svg,
.checkout-step--success .modal__icon svg {
    width: 24px;
    height: 24px;
}

.loading-spinner svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Service Page Styles */
.service-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--white) 100%);
}

.service-hero__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.service-hero__icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
}

.service-hero h1 {
    margin-bottom: 16px;
    color: var(--deep-evergreen);
}

.service-hero p {
    font-size: 1.125rem;
    margin-bottom: 28px;
}

/* Quick Highlights */
.highlights-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--soft-divider);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-evergreen);
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: var(--premium-emerald);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--champagne-beige);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-sage);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-tab:hover {
    border-color: var(--premium-emerald);
    color: var(--premium-emerald);
}

.pricing-tab.active {
    background: var(--premium-emerald);
    border-color: var(--premium-emerald);
    color: white;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid var(--soft-divider);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--champagne-beige);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--antique-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--antique-gold);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.pricing-card__icon {
    width: 56px;
    height: 56px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.pricing-card__quantity {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-sage);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 20px;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-sage);
}

.pricing-card__features {
    margin-bottom: 24px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--muted-sage);
    border-bottom: 1px solid var(--soft-divider);
}

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

.pricing-card__features svg {
    width: 16px;
    height: 16px;
    color: var(--premium-emerald);
}

/* Netflix Pricing */
.netflix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.netflix-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 2px solid var(--soft-divider);
    text-align: center;
    transition: var(--transition-normal);
}

.netflix-card:hover {
    border-color: var(--champagne-beige);
    box-shadow: var(--shadow-md);
}

.netflix-card.featured {
    border-color: var(--antique-gold);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.netflix-card__plan {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-evergreen);
    margin-bottom: 8px;
}

.netflix-card__price {
    font-size: 3rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 8px;
}

.netflix-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-sage);
}

.netflix-card__period {
    font-size: 0.875rem;
    color: var(--muted-sage);
    margin-bottom: 24px;
}

/* Amber Pricing Offer Card */
.offer-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    border-color: var(--premium-emerald);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.offer-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FEF3C7;
    color: #92400E;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.offer-card__icon {
    width: 32px;
    height: 32px;
    background: var(--soft-ivory);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1rem;
}

.offer-card__title {
    font-size: 0.9375rem;
    margin-bottom: 6px;
    color: var(--deep-evergreen);
}

.offer-card__description {
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.offer-card__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #F59E0B;
}

.offer-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.offer-card__original-price {
    font-size: 0.75rem;
}

.offer-card__savings {
    font-size: 0.6875rem;
}

.offer-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.offer-card__features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.offer-card__features li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.offer-card__features svg {
    width: 16px;
    height: 16px;
    color: var(--premium-emerald);
    flex-shrink: 0;
}

.offer-card__cta {
    background: var(--premium-emerald);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
}

.offer-card__cta svg {
    width: 10px;
    height: 10px;
}

.offer-card__cta:hover {
    background: #D97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.offer-card__cta:active {
    transform: translateY(0);
}

/* Offer Grid Layout */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Popular Badge Variation */
.offer-card.popular {
    border-color: var(--premium-emerald);
    box-shadow: 0 4px 16px rgba(15, 157, 154, 0.15);
    transform: scale(1.01);
}

.offer-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-emerald), var(--deep-evergreen));
}

.offer-card.popular .offer-card__badge {
    background: var(--premium-emerald);
    color: white;
}

/* Related Services */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--soft-divider);
    transition: var(--transition-fast);
}

.related-item:hover {
    border-color: var(--champagne-beige);
    box-shadow: var(--shadow-sm);
}

.related-item span:first-child {
    font-size: 1.5rem;
}

.related-item span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-evergreen);
}

/* Order Page */
.order-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--white) 100%);
    text-align: center;
}

.order-hero h1 {
    margin-bottom: 16px;
    color: var(--deep-evergreen);
}

.order-hero p {
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

.order-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-step__number {
    width: 36px;
    height: 36px;
    background: var(--premium-emerald);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.order-step span:last-child {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--deep-evergreen);
}

.order-contacts {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.order-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--champagne-beige);
    transition: var(--transition-fast);
}

.order-contact:hover {
    border-color: var(--premium-emerald);
    background: var(--soft-ivory);
}

.order-contact svg {
    width: 24px;
    height: 24px;
    color: var(--premium-emerald);
}

.order-contact div {
    text-align: left;
}

.order-contact strong {
    display: block;
    font-size: 0.875rem;
    color: var(--deep-evergreen);
}

.order-contact span {
    font-size: 0.8125rem;
    color: var(--muted-sage);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--soft-divider);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-evergreen);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--champagne-beige);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--premium-emerald);
}

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

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
}

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

.blog-card__image {
    height: 200px;
    background: linear-gradient(135deg, var(--soft-ivory), var(--warm-linen));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card__content {
    padding: 28px;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-card__meta span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--deep-evergreen);
}

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

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--premium-emerald);
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.blog-card__link:hover svg {
    transform: translateX(4px);
}

/* About Page */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--white) 100%);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 20px;
    color: var(--deep-evergreen);
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted-sage);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--soft-ivory), var(--warm-linen));
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--deep-evergreen);
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--soft-divider);
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-emerald);
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.875rem;
    color: var(--muted-sage);
}

/* Privacy Policy */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    margin: 40px 0 16px;
    color: var(--deep-evergreen);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 16px;
}

.privacy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 8px;
    color: var(--muted-sage);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .menu-toggle {
        display: flex;
        margin-right: 16px;
    }
    
    .navbar .btn-primary {
        margin-right: 8px;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-normal);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 14px 16px;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .hero__container,
    .access-section,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-compare {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .utility-bar__content {
        gap: 12px;
    }
    
    .highlights-bar {
        gap: 16px;
    }
    
    .order-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal {
        padding: 28px 20px;
    }

    .modal--checkout {
        max-height: 88vh;
        padding: 24px 18px 20px;
    }

    .checkout-step__actions,
    .checkout-error-actions {
        flex-direction: column;
    }

    .checkout-back,
    .checkout-back-to-payment {
        width: 100%;
    }

    .order-summary {
        padding: 16px;
    }

    .order-summary__item {
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        margin-right: 20px;
    }
    
    .navbar .btn-primary {
        margin-right: 12px;
        padding: 8px 12px;
        font-size: 0.875rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .modal {
        padding: 28px 20px;
    }

    .modal--checkout {
        padding: 20px 16px 18px;
    }

    .modal__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .modal__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 10px;
    }

    .offer-card__icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .offer-card__price {
        font-size: 1rem;
    }

    .offer-card__cta {
        padding: 5px 8px;
        font-size: 0.625rem;
    }

    .offer-card__cta svg {
        width: 8px;
        height: 8px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

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

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

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NETFLIX PAGE STYLES
   ============================================ */

.netflix-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bulk-pricing-section {
    margin-top: 48px;
}

.bulk-pricing-card {
    background: linear-gradient(135deg, var(--deep-evergreen), var(--premium-emerald));
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
}

.bulk-pricing-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bulk-pricing-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.bulk-pricing-info {
    flex: 1;
}

.bulk-pricing-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bulk-pricing-info p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.bulk-pricing-action {
    flex-shrink: 0;
}

.bulk-pricing-action .btn-outline {
    border-color: white;
    color: white;
}

.bulk-pricing-action .btn-outline:hover {
    background: white;
    color: var(--deep-evergreen);
}

/* ============================================
   GAME ACCOUNTS PAGE STYLES
   ============================================ */

.game-categories-section {
    padding: 80px 0;
}

.game-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game-category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
}

.game-category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--champagne-beige);
}

.game-category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--premium-emerald), var(--deep-evergreen));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.game-category-icon.epic {
    background: linear-gradient(135deg, #313131, #000000);
}

.game-category-icon.riot {
    background: linear-gradient(135deg, #d13639, #a0282b);
}

.game-category-icon.other {
    background: linear-gradient(135deg, var(--antique-gold), #9a7d3d);
}

.game-category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--deep-evergreen);
}

.game-category-card p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.game-category-games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.game-tag {
    padding: 4px 12px;
    background: var(--soft-ivory);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-sage);
}

.other-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.other-game-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--soft-divider);
    transition: var(--transition-normal);
}

.other-game-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--champagne-beige);
}

.other-game-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--soft-ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--premium-emerald);
}

.other-game-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--deep-evergreen);
}

.other-game-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--premium-emerald);
    margin-bottom: 16px;
}

.other-game-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.other-game-features li {
    font-size: 0.875rem;
    color: var(--muted-sage);
    padding: 4px 0;
}

.other-game-features li::before {
    content: "✓";
    color: var(--premium-emerald);
    margin-right: 8px;
    font-weight: 700;
}

/* Responsive for Netflix and Game pages */
@media (max-width: 1024px) {
    .netflix-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-chat-links {
        left: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-chat-links__item {
        width: 52px;
        height: 52px;
    }

    .floating-chat-links__item svg {
        width: 24px;
        height: 24px;
    }

    .floating-chat-links__item span {
        display: none;
    }

    .netflix-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .game-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .other-games-grid {
        grid-template-columns: 1fr;
    }
    
    .bulk-pricing-content {
        flex-direction: column;
        text-align: center;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-card {
        padding: 10px;
    }

    .offer-card__icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .offer-card__price {
        font-size: 1rem;
    }

    .offer-card__features li {
        justify-content: flex-start;
    }

    .offer-card__cta {
        padding: 5px 8px;
        font-size: 0.625rem;
    }

    .offer-card__cta svg {
        width: 8px;
        height: 8px;
    }
}

/* Print styles */
@media (max-width: 768px) {
    .pricing-compare {
        grid-template-columns: 1fr;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }
}

@media print {
    .header,
    .floating-contact,
    .utility-bar {
        display: none;
    }

    .section {
        padding: 40px 0;
    }
}
