:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A07830;
    --dark: #0A0A0B;
    --dark2: #111114;
    --dark3: #18181D;
    --dark4: #22222A;
    --text: #F5F0E8;
    --muted: #8A8490;
    --accent: #C9A84C;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none; /* Shown via JS */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

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

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: none;
}

.btn-cookie-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: none;
}

/* GUARANTEE SECTION */
.guarantee-section {
    padding: 4rem 4rem;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.guarantee-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.guarantee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
}

.guarantee-badge {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQ SECTION */
.faq-section {
    padding: 8rem 4rem;
    background: var(--dark);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .logo, .footer-logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 em {
    color: var(--gold);
    font-style: normal;
}

.subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* CUSTOM CURSOR */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor.active {
    width: 16px;
    height: 16px;
}

.cursor-ring.active {
    width: 52px;
    height: 52px;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 1; }
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,11,0.95) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-weight: 700;
}

.logo span {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.nav-cta {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark) !important;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
    z-index: -2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: -1;
}

.floater {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.f1 { width: 300px; height: 300px; top: 10%; right: -5%; background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%); }
.f2 { width: 200px; height: 200px; bottom: 20%; left: -3%; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); animation-delay: -4s; }

.hero-inner { max-width: 900px; text-align: center; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(201,168,76,0.05);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease-out forwards;
}

.pulse-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.8rem; }
.hero .strike { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(201,168,76,0.5); }
.hero em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 auto 3rem; line-height: 1.8; font-weight: 300; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; }
.btn-primary, .btn-ghost { padding: 1rem 2.5rem; border-radius: 2px; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.1em; font-weight: 500; transition: 0.3s; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.12); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }

/* STATS BAR */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.12);
    margin: 5rem 0;
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.stat {
    background: var(--dark);
    padding: 2.5rem;
    text-align: center;
    transition: background 0.3s;
}

.stat:hover { background: var(--dark3); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }

/* HOW IT WORKS */
.how-it-works { padding: 6rem 4rem; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.08);
    margin-top: 4rem;
}

.step {
    background: var(--dark2);
    padding: 2.5rem 2rem;
    position: relative;
    transition: 0.3s;
}

.step:hover { background: var(--dark3); }
.step-bg-num { position: absolute; top: 1rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(201,168,76,0.1); font-weight: 700; }
.step-icon { width: 48px; height: 48px; border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.step p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* BEFORE & AFTER */
.reviews-section { padding: 6rem 4rem; }

.review-demo {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.review-card {
    background: var(--dark2);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
}

.review-card.bad { border: 1px solid rgba(220,60,60,0.25); }
.review-card.good { border: 1px solid rgba(60,200,120,0.25); }

.card-label {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.bad .card-label { background: rgba(220,60,60,0.15); color: #FF6B6B; border: 1px solid rgba(220,60,60,0.2); }
.good .card-label { background: rgba(60,200,120,0.12); color: #5DDBA4; border: 1px solid rgba(60,200,120,0.2); }

.reviewer { display: flex; gap: 12px; align-items: center; margin-bottom: 1.5rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--dark4); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 500; }
.reviewer-name { font-size: 0.9rem; font-weight: 500; }
.bad .reviewer-name { color: #FF6B6B; }
.good .reviewer-name { color: #5DDBA4; }
.reviewer-sub { font-size: 0.75rem; color: var(--muted); }

.stars { font-size: 0.8rem; margin-bottom: 1rem; }
.faded-stars { color: rgba(255,255,255,0.1); }
.review-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.arrow-icon { font-size: 2rem; color: var(--gold); text-align: center; animation: arrowPulse 2s infinite; }

/* OTHER SERVICES */
.other-services { padding: 8rem 4rem; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); border-radius: 4px; padding: 2.5rem 1.8rem; transition: 0.3s; }
.service-card:hover { border-color: var(--gold); background: var(--dark3); transform: translateY(-5px); }
.service-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--gold); }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* GUIDE PAGE */
.guide-page nav { background: var(--dark); }
.guide-hero { padding: 12rem 4rem 6rem; text-align: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.guide-hero .subtitle { margin: 0 auto; }

.article-content { padding: 6rem 4rem; }
.article-content .container { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; }
.article-section-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.article-section-content h3 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--gold); }
.article-section-content p { font-size: 1rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }
.article-section-content ul { margin: 1.5rem 0; padding-left: 1.5rem; }
.article-section-content li { color: var(--muted); margin-bottom: 0.8rem; list-style-type: disc; }

.article-cta { position: sticky; top: 120px; height: fit-content; }
.cta-card { background: var(--dark2); border: 1px solid var(--gold); padding: 2.5rem; border-radius: 4px; text-align: center; }
.cta-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.cta-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }

/* CALCULATOR */
.calculator-section { background: var(--dark2); padding: 6rem 4rem; }
.calc-box { background: var(--dark); border: 1px solid rgba(201,168,76,0.18); border-radius: 6px; overflow: hidden; margin: 3rem auto 0; max-width: 860px; }

.calc-header {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    padding: 1.8rem 2.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.calc-icon { font-size: 1.8rem; }
.calc-header-text h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.calc-header-sub { font-size: 0.75rem; color: var(--muted); opacity: 0.8; }

.calc-body { padding: 2.5rem; }

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 140px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    background: var(--dark2);
    margin-bottom: 1rem;
    transition: 0.3s;
}

.calc-row:hover { border-color: rgba(201,168,76,0.2); background: var(--dark3); }
.calc-label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
.calc-desc { font-size: 0.78rem; color: var(--muted); }
.calc-price { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

.calc-qty {
    display: flex;
    gap: 8px;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    align-items: center;
    padding: 4px;
}

.calc-qty button {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: none;
    border-radius: 2px;
    transition: 0.2s;
}

.calc-qty button:hover { background: rgba(201,168,76,0.12); }

.calc-qty input {
    width: 36px;
    background: transparent;
    border: none;
    color: var(--text);
    text-align: center;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.calc-divider { border-top: 1px solid rgba(255,255,255,0.06); margin: 2rem 0; }
.calc-breakdown { font-size: 0.8rem; color: var(--muted); min-height: 1.4rem; text-align: center; margin-bottom: 1.5rem; }

.calc-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.total-label { display: block; font-size: 0.95rem; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; }
.total-sub { font-size: 0.75rem; color: var(--muted); opacity: 0.7; }
.total-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); }

.calc-cta-btn {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 1.2rem;
    border-radius: 2px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* MARQUEE */
.marquee-section { background: var(--dark2); padding: 4rem 0; border-top: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08); }
.marquee-label { display: block; text-align: center; font-size: 0.72rem; text-transform: uppercase; color: var(--gold); letter-spacing: 0.18em; margin-bottom: 2rem; }
.marquee-container { overflow: hidden; }
.marquee-track { display: flex; gap: 1.5rem; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.marquee-card {
    width: 300px;
    flex-shrink: 0;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 1.5rem 1.8rem;
}

.marquee-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.marquee-text { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.marquee-author { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text); }
.marquee-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--dark); font-weight: 600; }

/* PRICING */
.pricing-section { padding: 6rem 4rem; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.08); margin-top: 4rem; }
.plan { background: var(--dark2); padding: 3.5rem 2.5rem; position: relative; transition: 0.3s; display: flex; flex-direction: column; }
.plan.featured { background: var(--dark3); border: 1px solid rgba(201,168,76,0.3); z-index: 1; margin: -1px; }
.plan-badge { position: absolute; top: 1.5rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-size: 0.7rem; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.05em; }

.plan-name { font-size: 1.5rem; margin-bottom: 1.5rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); font-weight: 700; margin-bottom: 2rem; }
.price-sub { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-top: -0.5rem; }

.plan-features { margin-bottom: 2.5rem; flex-grow: 1; }
.plan-features li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.plan-features li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1px solid rgba(201,168,76,0.4); border-radius: 50%; color: var(--gold); font-size: 0.6rem; }

.full-width { width: 100%; text-align: center; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark2); padding: 6rem 4rem; }
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.test-card { background: var(--dark); border: 1px solid rgba(201,168,76,0.1); border-radius: 4px; padding: 3rem 2.5rem; position: relative; }
.test-card::before { content: '"'; position: absolute; top: 1rem; left: 1rem; font-family: 'Playfair Display', serif; font-size: 8rem; color: rgba(201,168,76,0.08); line-height: 1; }
.test-text { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 2rem; position: relative; z-index: 1; }
.test-author { display: flex; gap: 15px; align-items: center; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--dark); font-weight: 600; }
.test-name { display: block; font-size: 0.95rem; font-weight: 500; }
.test-role { font-size: 0.8rem; color: var(--muted); }

/* SEO ARTICLE */
.article-section { padding: 6rem 4rem; max-width: 900px; margin: 0 auto; }
.article-body h3 { font-size: 1.4rem; margin: 3rem 0 1.2rem; }
.article-body p { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }
.article-body strong { color: var(--text); font-weight: 500; }

.article-highlight { border-left: 3px solid var(--gold); padding: 1.5rem 2rem; background: rgba(201,168,76,0.04); border-radius: 0 4px 4px 0; margin: 2.5rem 0; font-size: 1rem; line-height: 1.8; color: var(--text); font-style: italic; }

.article-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2.5rem 0; }
.article-stat-box { border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 1.8rem; background: var(--dark2); }
.article-stat-box .big { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.article-stat-box .lbl { font-size: 0.8rem; color: var(--muted); line-height: 1.4; display: block; }

.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 3rem 0; }
.platform-badge { border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 1.2rem; background: var(--dark2); display: flex; gap: 12px; align-items: center; transition: 0.3s; }
.platform-badge:hover { border-color: rgba(201,168,76,0.35); background: var(--dark3); }
.platform-icon { font-size: 1.5rem; }
.platform-name { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.1rem; }
.platform-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.3; display: block; }

/* CONTACT SECTION */
.contact-section { padding: 8rem 4rem; text-align: center; position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }

.contact-section h2 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 800px; margin: 0 auto 1.5rem; }
.contact-section .subtitle { margin: 0 auto 3.5rem; }

.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
.form-row { display: flex; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; padding: 1rem 1.2rem; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(201,168,76,0.4); }
.contact-form textarea { min-height: 120px; resize: vertical; }

.email-status { display: none; padding: 1rem; border-radius: 2px; margin-top: 1rem; font-size: 0.9rem; text-align: left; }
.email-status.sending { display: block; background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.email-status.success { display: block; background: rgba(60,200,120,0.1); color: #5DDBA4; border: 1px solid rgba(60,200,120,0.2); }
.email-status.error { display: block; background: rgba(220,60,60,0.1); color: #FF6B6B; border: 1px solid rgba(220,60,60,0.2); }

.footer-note { font-size: 0.8rem; color: var(--muted); margin-top: 2rem; opacity: 0.8; }

/* CONTACT INFO ROW */
.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 6px;
    min-width: 160px;
    transition: 0.3s;
}

.contact-info-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.1);
}

.contact-icon { font-size: 1.8rem; }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* FOOTER */
footer { background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.1); padding: 3rem 4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-logo { font-size: 1.2rem; color: var(--gold); }
.footer-logo span { color: var(--muted); }
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-owner { font-size: 0.75rem; color: var(--muted); }
.copyright { font-size: 0.8rem; color: var(--muted); }
.footer-contact { display: flex; gap: 1.5rem; }
.footer-contact a { font-size: 0.8rem; color: var(--muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }
    
    .hero { padding: 6rem 2rem; }
    .hero h1 { font-size: 3.2rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }

    .stats { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .review-demo { grid-template-columns: 1fr; gap: 1rem; }
    .arrow-icon { transform: rotate(90deg); margin: 1rem 0; }
    
    .calc-row { grid-template-columns: 1fr; gap: 1rem; }
    .calc-total-box { flex-direction: column; gap: 1.5rem; text-align: center; }
    
    .plans { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    
    .article-content .container { grid-template-columns: 1fr; }
    .article-section { padding: 4rem 2rem; }
    .article-stat-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-section { padding: 5rem 2rem; }
    .form-row { flex-direction: column; }
    
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { gap: 1.5rem; }
}
