/* ============================================
   ONE2INF - Green Sustainable Credit Cards
   Eco-Friendly Fintech Theme with Green Accents
   ============================================ */

:root {
    /* Color Palette - Clean Eco Green */
    --bg-primary: #f0fdf4;
    --bg-secondary: #dcfce7;
    --bg-card: #ffffff;
    --bg-card-hover: #f0fdf4;
    --bg-elevated: #ffffff;
    
    --text-primary: #14532d;
    --text-secondary: #166534;
    --text-muted: #15803d;
    
    --accent: #16a34a;
    --accent-hover: #15803d;
    --accent-muted: rgba(22, 163, 74, 0.1);
    --accent-glow: rgba(22, 163, 74, 0.08);
    
    --border: rgba(22, 163, 74, 0.15);
    --border-accent: rgba(22, 163, 74, 0.35);
    
    --gradient-dark: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --gradient-accent: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    --gradient-hero: radial-gradient(ellipse at 70% 50%, rgba(22, 163, 74, 0.07) 0%, transparent 60%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, 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: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --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.6s;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 32px rgba(22, 163, 74, 0.08);
    --shadow-lg: 0 20px 60px rgba(22, 163, 74, 0.12);
    --shadow-glow: 0 0 60px var(--accent-glow);
}

/* Reset & Base */
.site-elem, .site-elem::before, .site-elem::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-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img.site-elem, img {
    max-width: 100%;
    height: auto;
    display: block;
}

button.site-elem, button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul.site-elem, ul {
    list-style: none;
}

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

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

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

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

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.15em;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   HEADER
   ============================================ */
.announcement-bar {
    background: var(--accent);
    color: var(--bg-primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .header-main {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

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

.brand-logo {
    height: 32px;
    max-height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform var(--duration-fast) var(--ease-out);
}

.brand:hover .brand-logo {
    transform: scale(1.08);
}

.brand-icon {
    font-size: 1.6rem;
    color: var(--accent);
    transition: transform var(--duration-fast) var(--ease-out);
    display: flex;
    align-items: center;
}

.brand:hover .brand-icon {
    transform: rotate(90deg);
}

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

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

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

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

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

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

.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-primary);
    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: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1001;
    padding: 100px 40px 40px;
    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: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    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: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
}

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

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-muted);
}

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

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

.btn-white {
    background: var(--text-primary);
    color: var(--bg-primary);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    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-primary);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

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

/* Animation on scroll */
[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: 120px 0 80px;
    overflow: hidden;
}

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

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

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

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

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

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

.image-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, var(--accent-muted) 0%, transparent 70%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

.badge-icon {
    color: var(--accent);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@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: 500px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-badge {
        display: none;
    }
}

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

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.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: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

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

.feature-card p {
    font-size: 0.9rem;
    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;
    }
}

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

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

.product-main {
    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-primary);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

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

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

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

.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.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-sm);
}

.product-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--text-primary);
    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.9rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    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.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

.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: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.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: center;
}

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

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

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

.philosophy-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    z-index: -1;
}

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

.philosophy-images {
    position: relative;
}

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

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

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

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

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

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    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: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

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

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

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .philosophy-content .section-title {
        text-align: center;
    }
    
    .img-stack {
        height: 400px;
        max-width: 400px;
        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: 24px;
}

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

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

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

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

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

.author-name {
    font-weight: 500;
    color: var(--text-primary);
}

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

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

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

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

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    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: 20px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--duration-fast) var(--ease-out);
}

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

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

.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 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    z-index: -1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-muted) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.cta-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.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.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    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.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    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: 120px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    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.9rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    line-height: 1.7;
}

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

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.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.85rem;
    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: -500px;
    left: 20px;
    right: 20px;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    z-index: 9998;
    box-shadow: var(--shadow-lg);
    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.25rem;
    color: var(--accent);
}

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

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

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

.btn-cookie {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    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-primary);
}

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

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

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

/* ============================================
   INTERNAL PAGES
   ============================================ */
.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.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

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

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

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

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

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

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

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

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

.meta-divider {
    color: var(--border);
}

.article-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.article-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.pull-quote {
    border-left: 3px solid var(--accent);
    padding: 25px 30px;
    margin: 40px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

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

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

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

.article-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    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: 20px;
    margin: 40px 0;
}

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

.feature-item .feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: var(--accent);
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

.rating-box {
    background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.rating-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

@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 STYLES
   ============================================ */
.order-page {
    padding: 120px 0 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.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: 60px;
    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: 16px;
}

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

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

.order-product .thumb {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    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: 6px 16px;
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 20px;
}

.order-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

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

.order-rating .stars {
    color: var(--accent);
    font-size: 0.9rem;
}

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

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

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

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

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

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

.order-features .feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

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

.product-specs-list h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

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

.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: 12px;
    margin-bottom: 30px;
}

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

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

.trust-icon {
    font-size: 1.5rem;
}

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

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

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

.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(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

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

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9rem;
    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: 40px;
    }
    
    .order-product .product-images {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

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

.highlight-box {
    background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
}

.highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

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

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

.important-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #ef4444;
    margin-bottom: 15px;
}

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

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

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

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

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-box .note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-box {
    background: var(--accent-muted);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 30px;
}

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

.legal-content ul {
    padding-left: var(--space-lg);
    margin: 15px 0;
}

.legal-content ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   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.4);
    backdrop-filter: blur(4px);
}

.thankyou-modal-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    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: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    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: 64px;
    height: 64px;
    background: var(--accent-muted);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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