/* ============================================
   SUNGLASS — Premium Ray-Ban Affiliate Site
   Midnight Dark Theme with Electric Blue Accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette — Midnight Dark + Electric Blue */
    --bg-void: #07090f;
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-card: #111827;
    --bg-card-hover: #1a2438;
    --bg-elevated: #1e2d45;
    
    --text-bright: #f0f4ff;
    --text-primary: #c8d4f0;
    --text-secondary: #8899bb;
    --text-muted: #4a5a7a;
    
    --accent: #00c6ff;
    --accent-glow: rgba(0, 198, 255, 0.15);
    --accent-muted: rgba(0, 198, 255, 0.08);
    --accent-hover: #00e5ff;
    --accent-dim: #0099cc;
    
    --highlight: #7c3aed;
    --highlight-muted: rgba(124, 58, 237, 0.1);
    
    --border: rgba(136, 153, 187, 0.08);
    --border-accent: rgba(0, 198, 255, 0.25);
    --border-bright: rgba(0, 198, 255, 0.5);
    
    --gradient-dark: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-primary) 100%);
    --gradient-hero: radial-gradient(ellipse at 60% 40%, rgba(0, 198, 255, 0.06) 0%, transparent 60%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    --gradient-card: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.7s;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(0, 198, 255, 0.08);
    --shadow-accent: 0 0 40px rgba(0, 198, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.default-element-a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

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

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

.default-element-ul { list-style: none; }

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-void);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 32px;
    position: relative;
}

.preloader-icon::before {
    content: '◇';
    font-size: 2.5rem;
    color: var(--accent);
    animation: preloaderPulse 1.2s ease-in-out infinite;
    display: block;
    line-height: 60px;
    text-align: center;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: rgba(136, 153, 187, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-progress {
    height: 100%;
    background: var(--gradient-accent);
    animation: loading 3s var(--ease-out) forwards;
    border-radius: 2px;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

.preloader-status {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.announcement-bar {
    background: var(--accent);
    color: var(--bg-void);
    text-align: center;
    padding: 9px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.header-main {
    background: rgba(7, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .header-main {
    background: rgba(7, 9, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--border-accent);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
}

.brand-name span {
    color: var(--accent);
}

.brand:hover .brand-name {
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-bright);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1001;
    padding: 100px 32px 32px;
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active { right: 0; }

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--duration-fast) var(--ease-out);
}

.mobile-close:hover { color: var(--accent); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: color var(--duration-fast) var(--ease-out);
}

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

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

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

@media (max-width: 860px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
    background: var(--accent);
    color: var(--bg-void);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 198, 255, 0.25);
}

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

.btn-secondary:hover {
    background: var(--accent-muted);
    border-color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
}

.btn-large { padding: 16px 36px; font-size: 0.88rem; }
.btn-full { width: 100%; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-bright);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    animation: floatBg 10s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500;
    color: var(--text-bright);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-bright);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-accent);
    background: var(--bg-card);
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-img {
    width: 100%;
    transition: transform var(--duration-slow) var(--ease-out);
}

.hero-image-wrap:hover .hero-img { transform: scale(1.03); }

.float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(10, 14, 26, 0.9);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-bright);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    animation: floatBadge 5s ease-in-out infinite;
    z-index: 2;
}

.float-tag .tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.tag-1 { top: 12%; right: -8%; animation-delay: 0s; }
.tag-2 { bottom: 18%; left: -8%; animation-delay: 2.5s; }

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

@media (max-width: 1000px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-content { max-width: 100%; order: 2; }
    .hero-visual { order: 1; max-width: 480px; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .float-tag { display: none; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    padding: 20px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-style: italic;
}

.marquee-track span::after {
    content: '✦';
    margin-left: 60px;
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT SECTION
   ============================================ */
.products {
    padding: var(--space-3xl) 0;
}

.products-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    border-top: 2px solid var(--accent);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery { position: sticky; top: 100px; }

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    margin-bottom: 14px;
    border: 1px solid var(--border);
}

.gallery-main img {
    width: 100%;
    transition: opacity 0.25s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.thumb {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    background: none;
}

.thumb:hover, .thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-xs);
}

.product-name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: var(--space-md);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
}

.stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: var(--space-lg);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-bright);
}

.product-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-tax {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.product-specs {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.product-specs li:last-child { border-bottom: none; }

.spec-label { color: var(--text-muted); }
.spec-value { color: var(--text-primary); font-weight: 500; }

.product-actions { text-align: left; }

.buy-benefits {
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; gap: 36px; }
    .product-gallery { position: static; }
}

/* ============================================
   PHILOSOPHY / ABOUT SECTION
   ============================================ */
.philosophy {
    padding: var(--space-3xl) 0;
    position: relative;
}

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-visual {
    position: relative;
}

.philosophy-img-stack {
    position: relative;
    height: 460px;
}

.philosophy-img-stack img {
    position: absolute;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
}

.philosophy-img-stack .stack-1 {
    width: 72%;
    height: 80%;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-lg);
}

.philosophy-img-stack .stack-2 {
    width: 58%;
    height: 65%;
    bottom: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
}

.philosophy-img-stack .accent-line {
    position: absolute;
    top: 20%;
    right: 30%;
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 1px;
}

.philosophy-content .section-title { text-align: left; }

.philosophy-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.philosophy-points {
    margin-top: var(--space-xl);
}

.point {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.point-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    min-width: 40px;
}

.point-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.point-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .philosophy-inner { grid-template-columns: 1fr; gap: 50px; }
    .philosophy-content .section-title { text-align: center; }
    .philosophy-img-stack { height: 360px; max-width: 360px; margin: 0 auto; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.author-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-3xl) 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color var(--duration-fast) var(--ease-out);
}

.faq-item:has(.faq-question.active) {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    background: none;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--duration-fast) var(--ease-out);
    flex-shrink: 0;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

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

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-title em { color: var(--accent); font-style: italic; }

.cta-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.contact-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

a.contact-value:hover { color: var(--accent); }

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--duration-fast) var(--ease-out);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

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

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-void);
    border-top: 1px solid var(--border);
}

.footer-top { padding: var(--space-2xl) 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
    position: fixed;
    bottom: -600px;
    left: 20px;
    right: 20px;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    z-index: 9998;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 198, 255, 0.05);
    transition: bottom var(--duration-normal) var(--ease-out);
}

.cookie-popup.active { bottom: 20px; }

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

.cookie-icon { font-size: 1.2rem; }

.cookie-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-bright);
}

.cookie-popup > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-bottom: var(--space-sm);
}

.btn-cookie {
    flex: 1;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--duration-fast) var(--ease-out);
}

.btn-reject {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.btn-accept {
    background: var(--accent);
    color: var(--bg-void);
    border: 1px solid var(--accent);
}

.btn-accept:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.cookie-more {
    display: block;
    font-size: 0.82rem;
    color: var(--accent);
    text-align: center;
    opacity: 0.8;
}

.cookie-more:hover { opacity: 1; text-decoration: underline; }

/* ============================================
   INTERNAL PAGES (LEGAL)
   ============================================ */
.internal-page {
    padding: 150px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-bright);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-bright);
    margin: var(--space-xl) 0 var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.legal-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.highlight-box {
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.highlight-box p { margin-bottom: 0; }

.contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   REVIEW PAGE
   ============================================ */
.review-article { max-width: 900px; margin: 0 auto; }

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 20px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid var(--border-accent);
}

.article-image img { width: 100%; }

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-bright);
    margin: 50px 0 18px;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-bright);
    margin: 35px 0 12px;
}

.article-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
}

.article-content .lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.pull-quote {
    border-left: 3px solid var(--accent);
    padding: 24px 28px;
    margin: 36px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-bright);
    line-height: 1.65;
}

.article-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.article-images-grid img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.article-list { list-style: none; margin: 20px 0; }

.article-list li {
    padding: 10px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.article-list li:last-child { border-bottom: none; }

.article-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.feature-item .feature-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.rating-box {
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    margin: 50px 0;
}

.rating-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.rating-box .rating-stars {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.rating-box .rating-score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.rating-box .rating-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 380px;
    margin: 0 auto;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.pros, .cons {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pros { border-color: var(--border-accent); }

.pros h4, .cons h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pros h4 { color: var(--accent); }
.cons h4 { color: var(--text-muted); }

.pros ul li, .cons ul li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-top: 50px;
}

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .article-images-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
}

/* ============================================
   ORDER PAGE
   ============================================ */
.order-page { padding: 120px 0 80px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    font-size: 0.85rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-primary); }

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.order-product .product-images { position: sticky; top: 100px; }

.order-product .main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 14px;
}

.order-product .main-image img { width: 100%; transition: opacity 0.25s; }

.order-product .image-thumbnails { display: flex; gap: 10px; }

.order-product .thumb {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.order-product .thumb:hover, .order-product .thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.order-product .thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.order-details .product-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.order-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.order-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.order-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.order-rating .stars { color: var(--accent); font-size: 0.85rem; }
.order-rating .rating-count { font-size: 0.8rem; color: var(--text-muted); }

.order-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.order-price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-bright);
}

.order-tax { font-size: 0.85rem; color: var(--text-muted); }

.order-features { margin-bottom: 28px; }

.order-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-features .feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.product-specs-list {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 28px;
}

.product-specs-list h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.product-specs-list ul { list-style: none; }

.product-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.product-specs-list li:last-child { border-bottom: none; }
.product-specs-list .spec-label { color: var(--text-muted); }
.product-specs-list .spec-value { color: var(--text-primary); font-weight: 500; }

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.trust-icon { font-size: 1.4rem; }
.trust-item span:last-child { font-size: 0.72rem; color: var(--text-muted); }

.why-buy-section { padding: var(--space-3xl) 0; }

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.benefit-icon { font-size: 2.2rem; margin-bottom: var(--space-md); }

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-bright);
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.order-faq { padding: var(--space-3xl) 0; }

@media (max-width: 900px) {
    .order-grid { grid-template-columns: 1fr; gap: 36px; }
    .order-product .product-images { position: static; }
    .benefits-grid { grid-template-columns: 1fr; }
    .trust-badges { flex-wrap: wrap; gap: 16px; justify-content: center; }
}

/* ============================================
   THANK YOU MODAL
   ============================================ */
.thankyou-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-out), visibility var(--duration-normal) var(--ease-out);
}

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

.thankyou-modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.thankyou-modal-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 198, 255, 0.08);
    transform: scale(0.9);
    transition: transform var(--duration-normal) var(--ease-out);
}

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

.thankyou-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

.thankyou-modal-close:hover { color: var(--text-primary); }

.thankyou-icon-wrapper {
    width: 56px; height: 56px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--accent);
}

.thankyou-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.thankyou-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ============================================
   LEGAL PAGE ENHANCEMENTS
   ============================================ */
.legal-content .intro-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.important-box {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.important-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #f87171;
    margin-bottom: 12px;
}

.important-box ul { list-style: none; }

.important-box li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.important-box li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: bold;
}

.info-box {
    background: var(--highlight-muted);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-top: 24px;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}
