/* ============================================
   VIKIMGSGMAIL - Premium White Theme Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Core theme */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --cream: #F0FDFA;
    --soft-gray: #E2E8F0;
    --charcoal: #0F172A;
    --dark-green: #334155;
    --muted-gray: #475569;
    --emerald: #0F766E;
    --teal: #134E4A;
    --gold: #5EEAD4;

    /* Extended palette */
    --deep-navy: #1E293B;
    --body-text: #475569;
    --light-muted: #64748B;
    --soft-teal-border: #D1FAE5;
    --teal-fill: #CCFBF1;
    --soft-teal: #ECFDF5;
    --navy-border: #334155;
    --footer-text: #CBD5E1;
    --placeholder: #94A3B8;
    --input-border: #D1D5DB;
    --success: #059669;
    --info: #0EA5E9;
    --warning: #F59E0B;
    --danger: #DC2626;
    
    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    --gradient-soft: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 24px 56px rgba(15, 23, 42, 0.14);
    --shadow-glow: 0 0 0 4px rgba(15, 118, 110, 0.10);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', var(--font-sans);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--body-text);
    background-color: var(--white);
    -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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

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

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

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

.container-narrow {
    max-width: 960px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--deep-navy);
    padding: 0.6rem 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.8rem;
    font-weight: 500;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

/* ============================================
   FLOATING CHAT LINKS
   ============================================ */
.floating-chat-links {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-chat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.floating-chat-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.floating-chat-link:focus-visible {
    outline: none;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.floating-chat-link-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-chat-link-telegram {
    background: linear-gradient(135deg, #229ED9 0%, #0088CC 100%);
}

.floating-chat-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.floating-chat-link-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.floating-chat-link-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--soft-gray);
    z-index: 1000;
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--charcoal);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-weight: 700;
    font-size: 0.9rem;
}

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

.nav-link {
    position: relative;
    padding: 0.6rem 1rem;
    color: var(--dark-green);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--emerald);
    background: var(--cream);
}

.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--teal);
}

.nav-link.active::after,
.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.05rem;
    height: 2px;
    background: var(--emerald);
    border-radius: var(--radius-full);
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
}

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

.dropdown-category {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-muted);
    border-top: 1px solid var(--soft-gray);
    margin-top: 0.5rem;
}

.dropdown-category:first-child {
    border-top: none;
    margin-top: 0;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dark-green);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--teal);
}

.dropdown-item.active,
.dropdown-item[aria-current="page"] {
    background: var(--teal-fill);
    color: var(--teal);
}

/* Order Now Button */
.btn-order-nav {
    background: var(--emerald);
    border: 1px solid var(--emerald);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-order-nav:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--cream);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-navy);
    transition: all var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.mobile-menu-btn:focus-visible {
    outline: none;
    box-shadow: var(--shadow-glow);
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--deep-navy);
    border: 1px solid var(--soft-teal-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--cream);
    border-color: var(--soft-teal-border);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--emerald);
    color: white;
}

.btn-gold {
    background: var(--deep-navy);
    border-color: var(--deep-navy);
    color: white;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(15, 118, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-fill);
    color: var(--teal);
    border: 1px solid var(--soft-teal-border);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title span {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: var(--emerald);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--body-text);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--light-muted);
}

.trust-tag svg {
    width: 14px;
    height: 14px;
    color: var(--emerald);
}

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

.hero-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg);
    border: 1px solid var(--soft-gray);
    max-width: 380px;
    width: 100%;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--soft-gray);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-card-subtitle {
    font-size: 0.8rem;
    color: var(--light-muted);
}

.hero-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-gray);
}

.hero-pricing-row:last-child {
    border-bottom: none;
}

.hero-pricing-label {
    font-size: 0.85rem;
    color: var(--dark-green);
}

.hero-pricing-value {
    font-weight: 700;
    color: var(--teal);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-3xl) 0;
}

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

.section-cream {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-header::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: var(--soft-teal-border);
    border-radius: var(--radius-full);
    margin: var(--space-md) auto 0;
}

.section-label {
    display: inline-block;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    color: var(--emerald);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--body-text);
    font-size: 1.1rem;
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
    background: var(--deep-navy);
    padding: var(--space-xl) 0;
    text-align: center;
}

.intro-strip-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-strip h2 {
    color: white;
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
}

.intro-strip p {
    color: var(--footer-text);
    font-size: 1.05rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--emerald);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--body-text);
}

/* ============================================
   SERVICE UNIVERSE
   ============================================ */
.service-categories {
    display: grid;
    gap: var(--space-xl);
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid var(--soft-gray);
    box-shadow: var(--shadow-sm);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--soft-gray);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.category-icon svg {
    width: 20px;
    height: 20px;
}

.category-title {
    font-size: 1.2rem;
}

.category-count {
    margin-left: auto;
    background: var(--teal-fill);
    color: var(--teal);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.category-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-preview-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.82) 100%);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.service-preview-card:hover {
    transform: translateY(-3px);
    border-color: var(--emerald);
    box-shadow: var(--shadow-md);
}

.service-preview-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.service-preview-meta {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--light-muted);
}

.service-preview-price {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--emerald);
}

.category-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-services .extra-service {
    display: none;
}

.category-services.expanded .extra-service {
    display: inline-flex;
}

.category-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--emerald);
    background: var(--emerald);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.category-view-all:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--soft-gray);
}

.service-tag:hover {
    background: var(--cream);
    border-color: var(--soft-teal-border);
    color: var(--teal);
    transform: translateY(-2px);
}

.service-tag svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .category-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-header {
        flex-wrap: wrap;
    }

    .category-count {
        margin-left: 0;
    }

    .category-preview-grid {
        grid-template-columns: 1fr;
    }

    .category-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-view-all {
        width: 100%;
    }
}

/* ============================================
   POPULAR DESTINATIONS
   ============================================ */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.popular-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--soft-gray);
    transition: all var(--transition-base);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald);
}

.popular-icon {
    width: 64px;
    height: 64px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--emerald);
    font-size: 1.75rem;
    font-weight: 700;
}

.popular-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.popular-desc {
    font-size: 0.85rem;
    color: var(--body-text);
    margin-bottom: var(--space-md);
}

.popular-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.popular-btn:hover {
    color: var(--emerald);
}

.popular-btn:hover {
    gap: 0.6rem;
}

.popular-btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin: 0 auto var(--space-xl);
    padding: 0.55rem;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.96) 100%);
    border: 1px solid rgba(209, 250, 229, 0.95);
    border-radius: var(--radius-full);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pricing-tab {
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: var(--light-muted);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    color: white;
    border-color: rgba(15, 118, 110, 0.2);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
    transform: translateY(-1px);
}

.pricing-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(209, 250, 229, 0.95);
    color: var(--teal);
    transform: translateY(-1px);
}

.pricing-content {
    display: none;
}

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

/* Fresh Pricing */
.fresh-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
}

.outlook-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.9rem;
    max-width: 1040px;
    margin: 0 auto;
}

.outlook-pricing-grid .fresh-card {
    padding: 1.2rem;
    border-radius: 18px;
}

.outlook-pricing-grid .pricing-brand-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.7rem;
}

.outlook-pricing-grid .pricing-brand-icon svg {
    width: 46px;
    height: 46px;
}

.outlook-pricing-grid .fresh-quantity {
    font-size: clamp(1.55rem, 1.9vw, 1.95rem);
}

.outlook-pricing-grid .fresh-price {
    font-size: clamp(1.75rem, 2.2vw, 2.1rem);
    margin-bottom: 0.75rem;
}

.outlook-pricing-grid .pricing-features {
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.outlook-pricing-grid .pricing-features li {
    padding: 0.6rem 0.75rem 0.6rem 1.8rem;
    font-size: 0.8rem;
}

.fresh-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.96) 100%);
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.fresh-card::after,
.aged-card::after,
.ai-card::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.18) 0%, rgba(94, 234, 212, 0) 72%);
    pointer-events: none;
}

.fresh-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    border-color: var(--emerald);
}

.fresh-card.featured {
    background: linear-gradient(180deg, rgba(240, 253, 250, 1) 0%, rgba(255, 255, 255, 0.99) 100%);
    border-color: var(--emerald);
    position: relative;
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 118, 110, 0.18);
}

.fresh-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
    z-index: 2;
}

.pricing-brand-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.95) 100%);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow: 0 12px 28px rgba(0, 120, 212, 0.12);
}

.pricing-brand-icon svg {
    width: 52px;
    height: 52px;
    display: block;
}

.pricing-brand-icon--outlook {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(239, 246, 255, 0.98) 100%);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 14px 30px rgba(0, 120, 212, 0.16);
}

.pricing-brand-icon--dynamic,
.ai-icon--brand,
.pricing-service-badge {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-color: var(--brand-border);
    box-shadow: 0 12px 28px var(--brand-shadow);
    color: var(--brand-text);
}

.pricing-brand-glyph,
.pricing-service-badge-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-brand-glyph {
    font-size: 1rem;
}

.ai-icon--brand {
    border-color: var(--brand-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 24px var(--brand-shadow);
}

.pricing-service--with-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-service-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid var(--brand-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-service-badge-glyph {
    font-size: 0.7rem;
}

.pricing-service-label {
    min-width: 0;
}

.fresh-quantity {
    font-size: clamp(1.75rem, 2vw, 2.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin: 0.5rem 0 0.25rem;
}

.fresh-label {
    font-size: 0.78rem;
    color: var(--light-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fresh-price {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.fresh-price span {
    font-size: 0.85rem;
    color: var(--light-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.6rem;
    text-align: left;
}

.pricing-features li {
    position: relative;
    padding: 0.7rem 0.9rem 0.7rem 2rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--body-text);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--emerald);
    font-weight: 700;
}

.fresh-card .btn,
.ai-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Aged Pricing */
.aged-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
}

.aged-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.96) 100%);
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: all var(--transition-base);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.aged-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    border-color: rgba(15, 118, 110, 0.3);
}

.aged-header {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--soft-gray);
    margin-bottom: var(--space-md);
}

.aged-age {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.aged-subtitle {
    font-size: 0.8rem;
    color: var(--light-muted);
}

.aged-options {
    display: grid;
    gap: 0.75rem;
}

.aged-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(248, 250, 252, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.85);
    transition: all var(--transition-fast);
}

.aged-option:hover {
    background: rgba(236, 253, 245, 0.9);
    border-color: rgba(15, 118, 110, 0.22);
    transform: translateX(4px);
}

.aged-option-quantity {
    font-size: 0.85rem;
    color: var(--dark-green);
}

.aged-option-price {
    font-weight: 700;
    color: var(--emerald);
}

/* AI Pricing */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
}

.fresh-card,
.aged-card,
.ai-card {
    min-width: 0;
}

.ai-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.96) 100%);
    border-radius: 22px;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.ai-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    border-color: var(--emerald);
}

.ai-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(236, 253, 245, 1) 0%, rgba(204, 251, 241, 1) 100%);
    border: 1px solid rgba(209, 250, 229, 0.95);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--emerald);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 24px rgba(15, 118, 110, 0.12);
}

.ai-name {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.ai-type {
    font-size: 0.8rem;
    color: var(--light-muted);
    margin-bottom: var(--space-md);
}

.ai-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.ai-price span {
    font-size: 1rem;
    color: var(--light-muted);
    font-weight: 500;
}

.ai-period {
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-bottom: var(--space-md);
}

/* Service Pricing Table */
.pricing-table {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.97) 100%);
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--teal) 100%);
    color: white;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    align-items: center;
    font-size: 0.9rem;
    color: var(--body-text);
    transition: all var(--transition-fast);
}

.pricing-table-row:nth-child(even) {
    background: rgba(248, 250, 252, 0.72);
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row:hover {
    background: rgba(236, 253, 245, 0.9);
    transform: translateX(6px);
}

.pricing-service {
    font-weight: 600;
    color: var(--charcoal);
}

.pricing-unit {
    color: var(--emerald);
    font-weight: 600;
}

.pricing-package {
    color: var(--dark-green);
}

/* Order Contact Modal */
body.order-modal-open {
    overflow: hidden;
}

.order-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    z-index: 2000;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(7px);
}

.order-modal-card {
    position: relative;
    width: min(100%, 460px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(209, 250, 229, 0.95);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
    transform: translateY(20px) scale(0.98);
    transition: transform var(--transition-base), opacity var(--transition-base);
    z-index: 1;
    overflow: hidden;
}

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

.order-modal-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 50%, var(--teal) 100%);
}

.order-modal-close {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: var(--deep-navy);
    transition: all var(--transition-fast);
}

.order-modal-close:hover {
    background: var(--cream);
    color: var(--emerald);
    transform: rotate(90deg);
}

.order-modal-close span {
    font-size: 1.5rem;
    line-height: 1;
}

.order-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-full);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-modal-title {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin-bottom: 0.6rem;
}

.order-modal-text {
    font-size: 0.95rem;
    color: var(--body-text);
    margin-bottom: 1.25rem;
}

.order-modal-summary {
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(209, 250, 229, 0.95);
}

.order-modal-summary-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-muted);
    margin-bottom: 0.35rem;
}

.order-modal-summary-value {
    display: block;
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.5;
}

.order-modal-actions {
    display: grid;
    gap: 0.9rem;
}

.order-modal-action {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: all var(--transition-fast);
}

.order-modal-action::after {
    content: '↗';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: currentColor;
    opacity: 0.7;
}

.order-modal-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.order-modal-action.whatsapp {
    color: #0f8f63;
    border-color: rgba(15, 143, 99, 0.16);
    background: linear-gradient(180deg, rgba(240, 253, 244, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.order-modal-action.telegram {
    color: #0b88c2;
    border-color: rgba(11, 136, 194, 0.16);
    background: linear-gradient(180deg, rgba(239, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.order-modal-action-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-modal-action-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-right: 1.5rem;
}

/* Nested Aged Pricing Tabs */
.aged-pricing-shell {
    display: grid;
    gap: 1.25rem;
}

.aged-pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    padding: 0.7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.aged-pricing-tab {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid transparent;
    color: var(--light-muted);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.aged-pricing-tab.active {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--teal) 100%);
    color: white;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}

.aged-pricing-tab:hover:not(.active) {
    background: rgba(236, 253, 245, 0.9);
    border-color: rgba(209, 250, 229, 0.95);
    color: var(--teal);
}

.aged-pricing-content {
    display: none;
}

.aged-pricing-content.active {
    display: block;
    animation: fadeIn 0.35s ease forwards;
}

.aged-fresh-grid {
    gap: var(--space-lg);
}

.aged-fresh-card {
    min-height: 100%;
}

.aged-fresh-eyebrow {
    display: inline-flex;
    align-self: center;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.12);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   ORDER FLOW
   ============================================ */
.order-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--soft-gray);
    z-index: 0;
}

.flow-number {
    width: 56px;
    height: 56px;
    background: var(--emerald);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.flow-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.flow-desc {
    font-size: 0.8rem;
    color: var(--body-text);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.why-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--emerald);
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.why-content p {
    font-size: 0.9rem;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--emerald);
}

.faq-item.active {
    background: var(--cream);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--emerald);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

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

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

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

.faq-answer-content {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
    background: var(--deep-navy);
    padding: var(--space-3xl) 0;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid rgba(51, 65, 85, 0.9);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(94, 234, 212, 0.4);
    transform: translateY(-4px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--emerald);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: var(--footer-text);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald);
    border: 1px solid var(--emerald);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.contact-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.contact-message {
    text-align: center;
    color: rgba(203, 213, 225, 0.88);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--deep-navy);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--navy-border);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--footer-text);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    border: 1px solid var(--navy-border);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--deep-navy);
    border-color: var(--gold);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #E2E8F0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--navy-border);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--footer-text);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--footer-text);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-hero {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--soft-gray);
}

.service-hero-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: var(--emerald);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.service-hero-subtitle {
    font-size: 1.1rem;
    color: var(--body-text);
    max-width: 600px;
}

/* Benefits Row */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--soft-gray);
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--emerald);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-green);
}

/* Service Content */
.service-content {
    padding: var(--space-2xl) 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.service-main h3 {
    margin-bottom: var(--space-md);
}

.service-main p {
    margin-bottom: var(--space-md);
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--soft-gray);
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--soft-gray);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-green);
    padding: 0.4rem 0;
    transition: all var(--transition-fast);
}

.sidebar-links a:hover {
    color: var(--emerald);
    padding-left: 0.5rem;
}

.sidebar-links a svg {
    width: 14px;
    height: 14px;
}

/* Order CTA Box */
.order-box {
    background: var(--deep-navy);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    color: white;
}

.order-box-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.order-box-text {
    font-size: 0.9rem;
    color: var(--footer-text);
    margin-bottom: var(--space-md);
}

.order-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--emerald);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.order-box-btn:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    padding: var(--space-2xl) 0;
    background: var(--deep-navy);
    text-align: center;
}

.about-hero h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

.about-hero p {
    color: var(--footer-text);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-image {
    background: var(--off-white);
    border: 1px solid var(--soft-gray);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-muted);
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

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

.value-icon {
    width: 36px;
    height: 36px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--soft-gray);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.contact-info-title {
    font-size: 1.1rem;
}

.contact-info-detail {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
}

.contact-info-note {
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-top: 0.5rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--soft-gray);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.blog-image {
    aspect-ratio: 16/10;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-muted);
}

.blog-content {
    padding: var(--space-md);
}

.blog-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.blog-category {
    background: var(--teal-fill);
    color: var(--teal);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--light-muted);
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--body-text);
    margin-bottom: var(--space-md);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: var(--space-xl);
}

.policy-section h3 {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--soft-teal-border);
}

.policy-section p,
.policy-section ul {
    margin-bottom: var(--space-sm);
}

.policy-section ul {
    padding-left: var(--space-md);
    list-style: disc;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--body-text);
}

/* ============================================
   ORDER NOW PAGE
   ============================================ */
.order-hero {
    background: var(--deep-navy);
    padding: var(--space-2xl) 0;
    text-align: center;
    color: white;
}

.order-hero h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

.order-hero p {
    color: var(--footer-text);
    max-width: 600px;
    margin: 0 auto;
}

.order-options {
    padding: var(--space-2xl) 0;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.order-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--soft-gray);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.order-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald);
}

.order-card-icon {
    width: 80px;
    height: 80px;
    background: var(--soft-teal);
    border: 1px solid var(--soft-teal-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--emerald);
}

.order-card-icon svg {
    width: 36px;
    height: 36px;
}

.order-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.order-card-info {
    font-size: 0.9rem;
    color: var(--body-text);
    margin-bottom: var(--space-md);
}

.order-card-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: var(--space-lg);
}

/* ============================================
   FORMS / BADGES / TABLE UTILITIES
   ============================================ */
label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--dark-green);
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--charcoal);
    padding: 0.875rem 1rem;
    font: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
    color: var(--placeholder);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

th,
td {
    padding: 0.9rem 1rem;
    border: 1px solid var(--soft-gray);
}

th {
    background: var(--off-white);
    color: var(--deep-navy);
    text-align: left;
}

td {
    color: var(--body-text);
}

tbody tr:hover {
    background: var(--cream);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-best-seller {
    background: var(--teal-fill);
    color: var(--teal);
}

.badge-popular {
    background: var(--soft-teal);
    color: var(--emerald);
}

.badge-new {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-premium {
    background: var(--deep-navy);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .fresh-grid,
    .aged-grid,
    .ai-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-table-header,
    .pricing-table-row {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .section-header {
        margin-bottom: var(--space-xl);
        padding: 0 0.25rem;
    }

    .section-subtitle {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .fresh-grid,
    .aged-grid,
    .ai-grid {
        grid-template-columns: 1fr;
    }

    .outlook-pricing-grid {
        max-width: 420px;
        gap: 0.75rem;
    }

    .outlook-pricing-grid .fresh-card {
        padding: 1rem;
    }

    .outlook-pricing-grid .pricing-brand-icon {
        width: 52px;
        height: 52px;
    }

    .outlook-pricing-grid .pricing-brand-icon svg {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid var(--soft-gray);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 200px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        width: 100%;
        justify-content: stretch;
        border-radius: 22px;
    }

    .pricing-tab {
        flex: 1 1 calc(50% - 0.6rem);
        min-width: 140px;
        text-align: center;
    }

    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px;
    }
    
    .pricing-table-header,
    .pricing-table-row {
        min-width: 720px;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 0.5rem;
    }

    .pricing-table-row:hover,
    .aged-option:hover {
        transform: none;
    }
    
    .pricing-table-header span:nth-child(3),
    .pricing-table-header span:nth-child(4),
    .pricing-table-header span:nth-child(5),
    .pricing-table-row span:nth-child(3),
    .pricing-table-row span:nth-child(4),
    .pricing-table-row span:nth-child(5) {
        display: block;
    }
    
    .flow-step:not(:last-child)::after {
        display: none;
    }
    
    .service-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .floating-chat-links {
        left: 0.75rem;
        bottom: 0.75rem;
        gap: 0.625rem;
    }

    .floating-chat-link {
        min-height: 52px;
        padding: 0.7rem 0.9rem;
        gap: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.92rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        border-radius: 22px;
    }
    
    .pricing-tab {
        width: 100%;
        max-width: none;
        min-width: 0;
        flex: 1 1 100%;
    }

    .outlook-pricing-grid {
        max-width: 100%;
        gap: 0.7rem;
    }

    .outlook-pricing-grid .fresh-card {
        padding: 0.9rem;
        border-radius: 16px;
    }

    .outlook-pricing-grid .fresh-quantity {
        font-size: 1.35rem;
    }

    .outlook-pricing-grid .fresh-price {
        font-size: 1.55rem;
    }

    .outlook-pricing-grid .pricing-features li {
        font-size: 0.78rem;
        padding: 0.55rem 0.7rem 0.55rem 1.7rem;
    }

    .pricing-table {
        margin: 0 -0.35rem;
    }

    .pricing-table-header,
    .pricing-table-row {
        min-width: 680px;
        padding: 0.95rem 1rem;
    }

    .aged-pricing-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .aged-pricing-tab {
        width: 100%;
    }

    .order-modal-card {
        padding: 1.5rem 1rem 1rem;
        border-radius: 24px;
    }

    .order-modal-action {
        padding: 0.95rem 0.95rem;
    }

    .floating-chat-link {
        min-height: 48px;
        padding: 0.7rem;
    }

    .floating-chat-link-label {
        display: none;
    }
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--soft-gray);
    border-radius: var(--radius-full);
}

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

/* Selection */
::selection {
    background: var(--teal-fill);
    color: var(--teal);
}
