@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - GrowthNest Digital Modern Tech */
    --background: #020617;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --popover: #020617;
    --popover-foreground: #f8fafc;
    --primary: #0ea5e9;
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #334155;
    --accent-foreground: #f8fafc;
    --destructive: #ef4444;
    --destructive-foreground: #f8fafc;
    --border: #1e293b;
    --input: #1e293b;
    --ring: #0ea5e9;
    
    /* Gradients - GrowthNest Digital Blue-to-Cyan */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #2dd4bf 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    
    /* Spacing & Radius */
    --radius: 1rem;
    --container-width: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px rgba(14, 165, 233, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main-content {
    min-height: calc(100vh - 4.5rem);
}

.section {
    padding: 6rem 0;
}

.section-header-centered { text-align: center; margin-bottom: 4rem; }
.section-title-lg { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.section-title-md { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }

/* Legal Pages Styles */
.legal-modern-section {
    padding: 3rem 0 6rem;
    position: relative;
}

.legal-header-v2 {
    max-width: 800px;
    margin-bottom: 2rem;
}

.legal-title-v2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.legal-last-updated-v2 {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-grid-v2 {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
}

.legal-sidebar-v2 {
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.legal-nav-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-nav-link-v2 {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.legal-nav-link-v2:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.legal-nav-link-v2.active {
    color: var(--primary);
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1) 0%, transparent 100%);
    border-left: 2px solid var(--primary);
    font-weight: 600;
}

.legal-content-v2 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.legal-section-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.legal-text-v2 {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-list-v2 {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.legal-list-v2 li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.legal-list-v2 li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.legal-contact-card-v2 {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border);
    border-radius: 2rem;
}

.contact-info-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item-v2 h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.contact-info-item-v2 p {
    font-weight: 600;
    color: white;
}

.contact-info-item-v2 a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .legal-grid-v2 {
        grid-template-columns: 1fr;
    }
    .legal-sidebar-v2 {
        display: none;
    }
}

/* Premium Fixed Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar-scrolled {
    height: 4.5rem;
    background: rgba(2, 6, 23, 0.9);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.navbar-scrolled::after {
    opacity: 0.5;
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

/* Ultra-Modern Abstract Logo */
.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    group: hover;
}

.abstract-logo {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2.5px solid var(--primary);
    border-radius: 12px;
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-shape-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: 6px;
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.logo-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: -3px;
    right: -3px;
    box-shadow: 0 0 10px white;
    animation: pulse 2s infinite;
}

.brand-logo-wrapper:hover .logo-shape {
    transform: rotate(225deg);
    border-color: white;
}

.brand-logo-wrapper:hover .logo-shape-inner {
    transform: rotate(135deg) scale(1.2);
}

.brand-text-v2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name-main {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.nav-menu { 
    display: flex; 
    gap: 1rem; 
    align-items: center; 
}

.nav-link { 
    text-decoration: none; 
    color: var(--muted-foreground); 
    font-weight: 600; 
    font-size: 0.9rem; 
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover { 
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    border-radius: 100px;
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    filter: blur(8px);
}

.btn-glow:hover::before {
    opacity: 0.6;
    inset: -4px;
}

.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--accent); }

.btn-xl { padding: 1rem 2rem; font-size: 1rem; }
.w-full { width: 100%; }

/* Glassmorphism Components */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-10px);
}

/* Product Detail Sections */
.product-hero-section { padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.product-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }

.category-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.product-title-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.product-lead { font-size: 1.25rem; line-height: 1.6; max-width: 600px; margin-bottom: 3rem; }

.product-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.meta-icon {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
}

.meta-text { display: flex; flex-direction: column; }
.meta-label { font-size: 0.7rem; color: var(--muted-foreground); text-transform: uppercase; }
.meta-value { font-size: 0.9rem; font-weight: 700; }

.glass-preview-window {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
}

.preview-header-bar {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls { display: flex; gap: 0.5rem; }
.window-controls span { width: 10px; height: 10px; border-radius: 50%; }
.window-controls span:nth-child(1) { background: #ff5f56; }
.window-controls span:nth-child(2) { background: #ffbd2e; }
.window-controls span:nth-child(3) { background: #27c93f; }

.window-url {
    margin-left: 2rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    background: rgba(0,0,0,0.3);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    flex-grow: 1; text-align: center;
}

.preview-content-area { position: relative; height: 400px; }
.preview-main-img { width: 100%; height: 100%; object-fit: cover; }
.preview-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.6) 100%); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.benefit-icon-box {
    width: 60px; height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); margin-bottom: 1.5rem;
}

/* Pricing Modern */
.pricing-modern-section { position: relative; padding: 8rem 0; }
.pricing-bg-orb {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    filter: blur(100px); z-index: 0;
}

.pricing-flex-grid {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    position: relative; z-index: 1;
}

.pricing-glass-card {
    flex: 1; min-width: 320px; max-width: 380px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-tier { background: rgba(14, 165, 233, 0.05); border-color: rgba(14, 165, 233, 0.3); transform: scale(1.05); }
.featured-badge {
    position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: white;
    padding: 0.5rem 1.5rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
}

.tier-header { margin-bottom: 2.5rem; text-align: center; }
.tier-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.tier-price { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.currency { font-size: 1.5rem; font-weight: 600; color: var(--primary); }
.amount { font-size: 4rem; font-weight: 800; line-height: 1; }
.period { font-size: 0.8rem; color: var(--muted-foreground); }

.tier-highlight {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem; background: rgba(14, 165, 233, 0.1);
    border-radius: 1rem; margin-bottom: 2rem;
    font-weight: 700; color: var(--primary);
}

.tier-features { list-style: none; display: grid; gap: 1rem; margin-bottom: 3rem; }
.tier-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.tier-features li i { color: #22c55e; flex-shrink: 0; }

.btn-modern-pricing {
    width: 100%; padding: 1.25rem;
    background: var(--secondary); border: 1px solid var(--border);
    border-radius: 1rem; color: white; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}

.featured-tier .btn-modern-pricing { background: var(--gradient-primary); border: none; }

/* Steps */
.bg-darker { background: #010410; }
.detail-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 8rem 0; }
.steps-visual-box {
    position: relative; height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border); border-radius: 2rem;
    display: flex; align-items: center; justify-content: center;
}

.step-card-float {
    position: absolute; background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem; border-radius: 1rem;
    display: flex; align-items: center; gap: 1rem; font-weight: 700;
}

.step-item-detail { display: flex; gap: 2rem; margin-top: 3rem; }
.step-count {
    width: 60px; height: 60px;
    background: rgba(14, 165, 233, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: var(--primary);
}

/* Guarantee */
.guarantee-card { display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: center; padding: 4rem; }

/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.cookie-banner.d-none {
    display: none;
}

.cookie-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cookie-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.cookie-content {
    position: relative;
    z-index: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cookie-title-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 700;
}

.cookie-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.cookie-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.cookie-controls {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-controls-group {
    display: grid;
    gap: 1rem;
}

.cookie-settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.cookie-setting-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.cookie-setting-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.cookie-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cookie-controls-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cookie-action-btn {
    padding: 0.875rem;
    font-size: 0.9rem;
}

.cookie-controls-footer {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    text-align: center;
}

@media (max-width: 768px) {
    .cookie-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

/* Ultra-Modern Contact Page Styles */
.contact-hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
}

.contact-hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
}

.contact-hero-desc {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.contact-form-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.5rem;
    padding: 4rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.contact-info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.02);
}

.contact-info-icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

.contact-info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-content p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.contact-info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    pointer-events: none;
    transition: all 0.2s;
}

.form-control {
    width: 100%;
    padding: 1.5rem 1.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}

.form-control:placeholder-shown + .form-label {
    top: 1.15rem;
    font-size: 1rem;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary);
}

textarea.form-control {
    padding-top: 1.75rem;
    min-height: 150px;
}

.contact-submit-btn {
    width: 100%;
    height: 4rem;
    font-size: 1.125rem;
    border-radius: 1.25rem;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.5);
}

/* Bento FAQ Grid */
.faq-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

.faq-bento-item {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.3s;
}

.faq-bento-item:hover {
    border-color: rgba(14, 165, 233, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.faq-bento-item.large {
    grid-column: span 2;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    .faq-bento-grid {
        grid-template-columns: 1fr;
    }
    .faq-bento-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    max-width: 500px;
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.modal-content {
    position: relative;
    z-index: 1;
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #22c55e;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.modal-close-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 1.25rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}

/* Ultra-Modern About Page Styles */
.about-hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
}

.about-hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.stat-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-section {
    padding: 10rem 0;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-visual {
    position: relative;
}

.mission-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.mission-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3rem;
    padding: 4rem;
    position: relative;
    z-index: 1;
}

.mission-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-step:last-child {
    margin-bottom: 0;
}

.mission-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.mission-step-content h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.mission-step-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem;
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2.5rem;
    transition: all 0.3s;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(14, 165, 233, 0.3);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-stats-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Delivery Page Styles */
.delivery-section {
    padding: 10rem 0 6rem;
    min-height: 100vh;
}

.delivery-container {
    max-width: 900px !important;
}

.delivery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.delivery-success-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #22c55e;
}

.delivery-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.delivery-content-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.delivery-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.delivery-card-title-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.delivery-card-icon-box {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.delivery-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.delivery-items-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.delivery-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.delivery-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.delivery-item-counter {
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-family: monospace;
}

.delivery-code-box {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.delivery-code-content {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e2e8f0;
    white-space: pre-wrap;
    word-break: break-word;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-copy-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.delivery-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-action-buttons {
    display: flex;
    gap: 1rem;
}

.delivery-action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.delivery-action-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.delivery-action-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-action-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.animate-float { animation: float 6s ease-in-out infinite; }

.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@keyframes textReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-text-reveal {
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.text-shimmer {
    background: linear-gradient(90deg, #0ea5e9, #2dd4bf, #0ea5e9);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Footer */
.footer { 
    padding: 8rem 0 4rem; 
    border-top: 1px solid var(--border); 
    background: #010410; 
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 4rem; 
    margin-bottom: 6rem; 
}

.footer-brand { 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 2rem; 
}

.footer-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    transform: rotate(-10deg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3);
}

.footer-brand:hover .footer-brand-icon {
    transform: rotate(0deg) scale(1.1);
}

.footer-brand-name { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: white; 
    letter-spacing: -0.02em;
}

.footer-description { 
    color: var(--muted-foreground); 
    font-size: 1rem; 
    max-width: 320px; 
    line-height: 1.7;
    margin-bottom: 2.1rem;
    margin-top: .5rem;
}

.footer-heading { 
    color: white; 
    margin-bottom: 2rem; 
    font-size: 0.8rem; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
}

.footer-links { 
    list-style: none; 
    display: flex;
    flex-direction: column;
    gap: 1.25rem; 
}

.footer-link { 
    text-decoration: none; 
    color: var(--muted-foreground); 
    font-size: 0.95rem; 
    transition: all 0.2s; 
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-link:hover { 
    color: var(--primary); 
    transform: translateX(5px);
}

.footer-bottom { 
    padding-top: 3rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright { 
    font-size: 0.85rem; 
    color: var(--muted-foreground); 
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--muted-foreground);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.badge-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--muted-foreground);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-secondary i {
    color: var(--primary);
}

.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mt-4 { margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.text-lg { font-size: 1.125rem; }

/* Navbar Scrolled State */
.navbar-scrolled {
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Home Page Hero Section */
.hero-section {
    padding: 5.5rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
}

.hero-orb-2 {
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
}

.hero-orb-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge-wrapper {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 8rem 0 4rem;
        text-align: center;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-visual {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 4rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-icon-bg {
    opacity: 0.15;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Home Collections Grid */
.collections-section {
    position: relative;
    overflow: hidden;
}

.collections-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.collection-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.collection-glow-2 {
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.collections-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; 
    margin-top: 4rem; 
    position: relative;
    z-index: 1;
}

.collection-card { 
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem; 
    overflow: hidden; 
    position: relative; 
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -20px rgba(14, 165, 233, 0.3);
}

.collection-visual { 
    height: 240px; 
    position: relative; 
    overflow: hidden; 
}

.collection-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.collection-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.8));
}

.collection-icon-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 16px -4px rgba(14, 165, 233, 0.4);
    z-index: 2;
}

.collection-float-element {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-element-1 { bottom: 1.5rem; left: 1.5rem; }
.float-element-2 { top: 1.5rem; right: 1.5rem; animation-delay: -2s; }

.collection-content { 
    padding: 2.5rem; 
    display: flex;
    flex-direction: column;
    flex: 1;
}

.collection-title { 
    font-size: 1.5rem; 
    font-weight: 800; 
    margin-bottom: 1rem; 
    color: white;
    transition: color 0.3s;
}

.collection-card:hover .collection-title {
    color: var(--primary);
}

.collection-desc { 
    font-size: 0.95rem; 
    color: var(--muted-foreground); 
    margin-bottom: 2rem;
    flex: 1;
    line-height: 1.6;
}

.collection-cta {
    margin-top: auto;
}

/* How It Works Section */
.how-it-works {
    background: rgba(15, 23, 42, 0.2);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-visual {
    margin-bottom: 2.5rem;
    position: relative;
}

.step-image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.6);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.step-card:hover .step-image {
    opacity: 1;
    transform: scale(1.05);
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
    z-index: 1;
}

.step-number-badge {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .step-connector {
        display: none;
    }
}

/* Final CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-glow-left {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.cta-glow-right {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.cta-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: white;
    box-shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.5);
}

.cta-icon {
    width: 36px;
    height: 36px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-actions {
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-glow-right {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
}

.cta-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Success Page Modern Design */
.success-modern-section {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.success-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.success-orb-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.success-orb-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 10s ease-in-out infinite -3s;
}

.success-orb-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 12s ease-in-out infinite -6s;
}

.success-progress {
    margin-bottom: 5rem;
}

.success-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.success-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.success-icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

.success-icon-ring.delay-1 { animation-delay: 0.3s; }
.success-icon-ring.delay-2 { animation-delay: 0.6s; }

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.success-icon-inner {
    position: absolute;
    inset: 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.4);
}

.success-check-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.success-header-text {
    margin-bottom: 3rem;
}

.success-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.success-main-desc {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.success-main-desc strong { color: white; }

/* Order Card */
.success-order-card {
    margin-bottom: 4rem;
    text-align: left;
    padding: 3rem;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.order-product-display {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.order-product-img {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.order-product-img img { width: 100%; height: 100%; object-fit: cover; }

.order-product-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.order-tier-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.order-price-display {
    text-align: right;
}

.order-paid-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.order-paid-amount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.order-features-preview {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.text-primary { color: var(--primary); }

.order-card-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.order-card-actions .btn {
    flex: 1;
}

/* Next Steps */
.success-next-steps { margin-bottom: 3rem; margin-top: 1rem; }

.next-steps-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.next-step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.next-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
}

.next-step-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.next-step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.next-step-card p { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.5; }

/* Footer Note */
.success-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.success-footer-note a { color: var(--primary); text-decoration: none; }

/* Responsive Success */
@media (max-width: 768px) {
    .success-main-title { font-size: 2.5rem; }
    .order-card-header { flex-direction: column; gap: 1.5rem; text-align: center; }
    .order-price-display { text-align: center; }
    .next-steps-grid { grid-template-columns: 1fr; }
    .order-card-actions { flex-direction: column; }
}

/* Modern Checkout Layout */
.checkout-modern-section {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.checkout-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.checkout-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.progress-step.active {
    color: var(--primary);
}

.progress-step.completed {
    color: var(--primary);
}

.progress-divider.completed {
    background: var(--primary);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .step-num,
.progress-step.completed .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
}

.checkout-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.checkout-header-v2 {
    margin-bottom: 2.5rem;
}

.checkout-title-v2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.glass-checkout-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem;
}

.form-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group-v2 {
    margin-bottom: 1.5rem;
}

.input-group-v2 label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.input-wrapper-v2 {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper-v2 i {
    position: absolute;
    left: 1.25rem;
    color: var(--muted-foreground);
}

.input-wrapper-v2 input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-wrapper-v2 input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(2, 6, 23, 0.8);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.input-hint-v2 {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.policy-check-v2 {
    margin: 2rem 0;
}

.custom-checkbox-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.custom-checkbox-v2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark-v2 {
    width: 20px;
    height: 20px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.custom-checkbox-v2:hover input ~ .checkmark-v2 {
    border-color: var(--primary);
}

.custom-checkbox-v2 input:checked ~ .checkmark-v2 {
    background: var(--primary);
    border-color: var(--primary);
}

.checkmark-v2:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-v2 input:checked ~ .checkmark-v2:after {
    display: block;
}

.policy-text-v2 {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.policy-text-v2 a {
    color: var(--primary);
    text-decoration: none;
}

.security-badges-v2 {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.security-badge-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.security-badge-v2 i {
    color: var(--primary);
}

/* Summary Sidebar */
.summary-card-v2 {
    position: sticky;
    top: 6rem;
}

.summary-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.summary-product-v2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.summary-product-img {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.summary-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-product-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-tier-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.summary-features-v2 {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-feature-v2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.summary-feature-v2 i {
    color: var(--primary);
    flex-shrink: 0;
}

.text-primary { color: var(--primary); }
.text-cyan { color: #22d3ee; }

.summary-pricing-v2 {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-bottom: 2rem;
}

.pricing-row-v2 {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.pricing-total-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-weight: 800;
    font-size: 1.25rem;
}

.total-amount-v2 {
    color: white;
    font-size: 1.5rem;
}

.summary-guarantee-v2 {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.summary-guarantee-v2 i {
    color: var(--primary);
    flex-shrink: 0;
}

.summary-guarantee-v2 h5 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.summary-guarantee-v2 p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Responsive Checkout */
@media (max-width: 1200px) {
    .checkout-main-grid {
        grid-template-columns: 1fr;
    }
    .checkout-summary-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row-v2 {
        grid-template-columns: 1fr;
    }
    .glass-checkout-card {
        padding: 2rem 1.5rem;
    }
    .security-badges-v2 {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Responsive Detail */
@media (max-width: 1200px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-steps-grid { grid-template-columns: 1fr; gap: 4rem; }
    .guarantee-card { grid-template-columns: 1fr; text-align: center; }
    .guarantee-icon { margin: 0 auto; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .product-meta-grid { grid-template-columns: 1fr; }
    .pricing-glass-card { min-width: 100%; }
}

/* Responsive */
@media (max-width: 1200px) {
    .product-detail-grid { grid-template-columns: 1fr; text-align: center; }
    .product-lead { margin-left: auto; margin-right: auto; }
    .product-meta-grid { justify-content: center; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr; }
}
