/* ============================================
   ADA SOFTWARE - LUXURY LANDING PAGE STYLES
   ============================================ */

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

:root {
    --primary: #0a0a0a;
    --secondary: #141414;
    --tertiary: #1c1c1c;
    --card-bg: rgba(28, 28, 28, 0.6);
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #b8860b 100%);
    --gold-shimmer: linear-gradient(135deg, #b8860b 0%, #d4af37 25%, #f4d03f 50%, #d4af37 75%, #b8860b 100%);
    --ivory: #f5f0e8;
    --cream: #e8dcc4;
    --copper: #c87533;
    --text: #e8e8e8;
    --text-muted: #a0a0a0;
    --border: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Vazirmatn', 'Cormorant Garamond', serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Custom Cursor === */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.15s ease, opacity 0.3s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--gold);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s, height 0.3s;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(212, 175, 55, 0.3);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

/* Hide default cursor on interactive elements */
a, button, input, textarea, select, label {
    cursor: none;
}

/* === Canvas Background === */
#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* === Container === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.logo-fa {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(50%);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(212, 175, 55, 0.5);
    background-position: 100% 100%;
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

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

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(200, 117, 51, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary) 0%, #0d0d0d 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: inline-block;
}

.hero-title-gold {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
    padding: 0 0.3rem;
}

@keyframes shimmerText {
    to { background-position: -200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
    font-weight: 700;
    position: relative;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gold);
    border-radius: 14px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s infinite;
}

@keyframes wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* === Sections === */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* === About / Pillars === */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.5) 100%);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.pillar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s;
}

.pillar:hover .pillar-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.pillar-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillar-features {
    list-style: none;
}

.pillar-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pillar-features i {
    color: var(--gold);
    font-size: 0.85rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.about-feature {
    text-align: center;
}

.about-feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.about-feature:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ivory);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === Products === */
.products {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, transparent 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-featured {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--card-bg) 100%);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-gold);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}

.product-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.product-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: all 0.4s;
}

.product-card:hover .product-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-features {
    flex: 1;
    margin-bottom: 2rem;
}

.feature-group h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.feature-group ul {
    list-style: none;
    max-height: 350px;
    overflow-y: auto;
    padding-left: 0.25rem;
}

.feature-group ul::-webkit-scrollbar {
    width: 4px;
}

.feature-group ul::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 2px;
}

.feature-group ul::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.feature-group ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.feature-group ul li i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-pricing {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.price-max {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
}

/* === Pricing Section === */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.5) 100%);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--card-bg) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-gold);
}

.pricing-card-header {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pricing-card-title h3 {
    font-size: 1.4rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.pricing-card-title p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gold-gradient);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-card-body {
    padding: 2rem 2.5rem;
}

.base-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.base-price-info h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.base-price-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.base-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.addons-section {
    margin-bottom: 2rem;
}

.addons-title {
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.addons-title i {
    color: var(--gold);
}

.addons-counter {
    font-size: 0.8rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.addons-grid {
    display: grid;
    gap: 0.75rem;
}

.addon-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: none;
}

.addon-item:hover {
    border-color: var(--border-hover);
    background: rgba(212, 175, 55, 0.05);
}

.addon-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.addon-checkbox {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.addon-checkbox input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: none;
}

.addon-checkmark {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    transition: all 0.3s;
}

.addon-checkbox input:checked ~ .addon-checkmark {
    background: var(--gold-gradient);
    border-color: var(--gold);
}

.addon-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s;
}

.addon-checkbox input:checked ~ .addon-checkmark::after {
    transform: rotate(45deg) scale(1);
}

.addon-content {
    flex: 1;
}

.addon-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.2rem;
}

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

.addon-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.addon-price-suffix {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.total-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.total-final {
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
    padding-top: 1rem;
}

.total-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-final .total-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
}

.total-value {
    color: var(--text);
    font-weight: 600;
}

.total-final .total-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-actions .btn {
    flex: 1;
    justify-content: center;
}

.pricing-note {
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--gold);
}

.pricing-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.pricing-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateX(-5px);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-feature-card h4 {
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

/* === Ecosystem === */
.ecosystem {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, transparent 100%);
    overflow: hidden;
}

.ecosystem-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.eco-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.eco-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.eco-card:hover .eco-glow {
    opacity: 1;
}

.eco-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.eco-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.eco-card:hover .eco-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: rotate(-10deg) scale(1.05);
}

.eco-card h4 {
    font-size: 1rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.eco-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* === Orbit Visual === */
.ecosystem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

.eco-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}

.eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
    animation: centerPulse 3s ease-in-out infinite;
}

.eco-center-inner {
    text-align: center;
    color: var(--primary);
}

.eco-center-inner i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.eco-center-inner span {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 80px rgba(212, 175, 55, 0.7); }
}

.eco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.eco-ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.eco-ring-2 {
    width: 300px;
    height: 300px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.eco-ring-3 {
    width: 400px;
    height: 400px;
    animation-duration: 35s;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.eco-orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--secondary);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    box-shadow: var(--shadow);
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    transform-origin: center center;
}

.eco-orbit-1 { animation: orbit1 15s linear infinite; }
.eco-orbit-2 { animation: orbit1 15s linear infinite; animation-delay: -5s; }
.eco-orbit-3 { animation: orbit2 25s linear infinite; animation-delay: -8s; }
.eco-orbit-4 { animation: orbit2 25s linear infinite; animation-delay: -15s; }
.eco-orbit-5 { animation: orbit3 35s linear infinite; animation-delay: -12s; }
.eco-orbit-6 { animation: orbit3 35s linear infinite; animation-delay: -25s; }

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes orbit3 {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

/* === Stats Section === */
.stats-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: 5rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.75rem;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === Roadmap === */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-right: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding: 2rem 3rem 2rem 0;
    margin-bottom: 1rem;
}

.timeline-dot {
    position: absolute;
    top: 2.5rem;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-dot-final {
    width: 30px;
    height: 30px;
    top: 2.3rem;
    right: -15px;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--border-hover);
    transform: translateX(-5px);
}

.timeline-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === Consultation Form === */
.consultation {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.5) 100%);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.consultation-info .section-title {
    text-align: right;
    margin-bottom: 1rem;
}

.consultation-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    border-color: var(--border-hover);
    transform: translateX(-5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

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

.contact-text strong {
    font-size: 1rem;
    color: var(--ivory);
    font-weight: 600;
    direction: ltr;
    text-align: right;
}

.consultation-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.required {
    color: var(--copper);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

.form-group select option {
    background: var(--secondary);
    color: var(--text);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: none;
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    cursor: none;
}

.form-check a {
    color: var(--gold);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* === Footer === */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(5px);
    transition: all 0.3s;
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.footer-newsletter:focus-within {
    border-color: var(--gold);
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter button {
    width: 45px;
    background: var(--gold-gradient);
    border: none;
    color: var(--primary);
    cursor: none;
    transition: all 0.3s;
}

.footer-newsletter button:hover {
    transform: scale(1.05);
}

/* === Trust Badges (Enamad / نماد اعتماد الکترونیکی) === */
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    line-height: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.trust-badge:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.trust-badge a {
    display: block;
    line-height: 0;
}

.trust-badge img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 110px;
    border-radius: 6px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px -10px rgba(212, 175, 55, 0.5);
}

/* === Reveal Animations === */
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .pillars {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ecosystem-showcase {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button, input, textarea, select, label {
        cursor: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s;
        border-left: 1px solid var(--border);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .eco-orbit {
        width: 300px;
        height: 300px;
    }

    .eco-ring-3 {
        width: 300px;
        height: 300px;
    }

    .eco-orbit-5, .eco-orbit-6 {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-trust {
        justify-content: flex-start;
    }

    .trust-badge img {
        max-height: 95px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 4rem 0;
    }

    .pricing-card-header {
        flex-direction: column;
        text-align: center;
    }

    .base-price-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-card-body,
    .pricing-card-header {
        padding: 1.5rem;
    }

    .consultation-form-wrapper {
        padding: 1.5rem;
    }

    .product-card,
    .pillar {
        padding: 1.5rem;
    }
}


/* ============================================
   FAQ SECTION - ACCORDION STYLE
   ============================================ */

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    user-select: none;
    position: relative;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4,
.faq-item.active .faq-question h4 {
    color: var(--gold);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.privacy-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.privacy-section:hover .privacy-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    border-color: var(--gold);
    transform: scale(1.05);
}

.privacy-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
}

.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.privacy-footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.privacy-footer strong {
    color: var(--gold);
    font-weight: 700;
}

.privacy-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-footer a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
}


/* Newsletter Message Styles */
.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.newsletter-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.newsletter-message-success::before {
    content: "✓ ";
    font-weight: bold;
}

.newsletter-message-error::before {
    content: "✕ ";
    font-weight: bold;
}

/* Loading state for newsletter button */
.footer-newsletter button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-newsletter button:disabled:hover {
    transform: none;
}

/* === Legal Pages (Terms / Privacy) === */
/* ============================================
   LUXURY LEGAL PAGES — TERMS & PRIVACY
   ============================================ */

/* Reading Progress Bar */
.legal-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold-shimmer);
    background-size: 200% 200%;
    z-index: 1100;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
    transition: width 0.1s ease-out;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Legal Hero */
.legal-hero {
    position: relative;
    padding: 11rem 0 5rem;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(ellipse at 20% 100%, rgba(184, 134, 11, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.06), transparent 50%),
        linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    border-bottom: 1px solid var(--border);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.legal-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero .legal-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.75rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    box-shadow:
        0 20px 50px -15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    animation: floatIcon 4s ease-in-out infinite;
}

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

.legal-hero .legal-icon::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-light));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.legal-hero .section-tag {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    border: 1px solid var(--border-hover);
    color: var(--gold-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.legal-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.legal-hero .legal-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.legal-hero .legal-updated i {
    color: var(--gold);
    font-size: 0.85rem;
}

.legal-hero .legal-updated strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Legal Layout - 2 column with sticky TOC */
.legal-section {
    padding: 4rem 0 6rem;
    position: relative;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

/* Sticky TOC Sidebar */
.legal-toc {
    position: sticky;
    top: 110px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.legal-toc::-webkit-scrollbar {
    width: 4px;
}

.legal-toc::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

.legal-toc-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.legal-toc-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 2px solid transparent;
    line-height: 1.5;
}

.legal-toc-list a:hover {
    background: rgba(212, 175, 55, 0.06);
    color: var(--gold-light);
    border-right-color: var(--gold);
    transform: translateX(-3px);
}

.legal-toc-list a.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), transparent);
    color: var(--gold);
    border-right-color: var(--gold);
    font-weight: 600;
}

.legal-toc-list .toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 0.4rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.legal-toc-list a:hover .toc-num,
.legal-toc-list a.active .toc-num {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--gold);
}

/* Main article */
.legal-article {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 4rem);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.legal-article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-shimmer);
    background-size: 200% 200%;
    animation: shimmer 4s linear infinite;
}

.legal-content {
    color: var(--text);
    line-height: 2.1;
    font-size: 1.05rem;
}

.legal-content > p:first-child {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 2.1;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), transparent);
    border-right: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--ivory);
    margin: 3rem 0 1.25rem;
    padding-right: 3.5rem;
    position: relative;
    scroll-margin-top: 110px;
    line-height: 1.4;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h2 .section-num {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.6rem;
    background: var(--gold-gradient);
    color: var(--primary);
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow:
        0 8px 20px -8px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.legal-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: var(--gold-light);
    margin: 2rem 0 0.85rem;
    padding-right: 1.5rem;
    position: relative;
}

.legal-content h3::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.legal-content strong {
    color: var(--ivory);
    font-weight: 700;
}

.legal-content ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.legal-content li {
    position: relative;
    padding-right: 2rem;
    color: var(--text-muted);
    line-height: 1.95;
}

.legal-content li::before {
    content: "";
    position: absolute;
    right: 0.4rem;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.legal-content li strong {
    color: var(--gold-light);
    font-weight: 600;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px dashed var(--border-hover);
    transition: all 0.3s;
}

.legal-content a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

/* Ornamental divider */
.legal-divider {
    margin: 3rem auto;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0.7;
}

.legal-divider::before,
.legal-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.legal-divider i {
    color: var(--gold);
    font-size: 0.9rem;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Quick Info Cards (bottom of legal pages) */
.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.legal-info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.legal-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 70%);
    pointer-events: none;
}

.legal-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px -15px rgba(212, 175, 55, 0.25);
}

.legal-info-card .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-info-card .info-label {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.legal-info-card .info-value {
    font-size: 0.95rem;
    color: var(--ivory);
    line-height: 1.6;
    font-weight: 500;
}

.legal-info-card .info-value a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.3s;
}

.legal-info-card .info-value a:hover {
    border-bottom-color: var(--gold);
}

/* Related pages CTA */
.legal-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-hover);
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-light);
}

.legal-cta-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px rgba(212, 175, 55, 0.5);
}

.legal-cta-btn.primary {
    background: var(--gold-gradient);
    color: var(--primary);
}

.legal-cta-btn.primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.6);
}

/* Back to top button */
.legal-back-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(15px);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 900;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    font-size: 1rem;
}

.legal-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.legal-back-top:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -10px rgba(212, 175, 55, 0.5);
}

/* Mobile TOC toggle */
.legal-toc-toggle {
    display: none;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    color: var(--gold);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: space-between;
    cursor: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.legal-toc-toggle:hover {
    background: rgba(212, 175, 55, 0.08);
}

.legal-toc-toggle i {
    transition: transform 0.3s;
}

.legal-toc-toggle.open i {
    transform: rotate(180deg);
}

/* Footer link enhancement with icons */
.footer-links a.has-icon {
    gap: 0.6rem;
}

.footer-links a.has-icon i {
    color: var(--gold);
    font-size: 0.75rem;
    opacity: 0.7;
    transition: all 0.3s;
}

.footer-links a.has-icon:hover i {
    opacity: 1;
    transform: scale(1.15);
}

/* Print styles */
@media print {
    .legal-progress,
    .legal-toc,
    .legal-back-top,
    .navbar,
    .footer,
    .cursor,
    .cursor-follower,
    #particles {
        display: none !important;
    }
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-article {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    body {
        background: white;
        color: black;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .legal-toc {
        position: static;
        max-height: none;
        overflow: visible;
        display: none;
    }
    .legal-toc.open {
        display: block;
    }
    .legal-toc-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 8rem 0 3rem;
    }
    .legal-hero .legal-icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }
    .legal-content {
        font-size: 1rem;
        line-height: 1.95;
    }
    .legal-content h2 {
        padding-right: 3rem;
        font-size: 1.2rem;
    }
    .legal-content h2 .section-num {
        min-width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .legal-article {
        padding: 1.5rem;
        border-radius: 18px;
    }
    .legal-info-grid {
        grid-template-columns: 1fr;
    }
    .legal-back-top {
        bottom: 1rem;
        left: 1rem;
        width: 42px;
        height: 42px;
    }
}
