/**
 * Turkotag Premium UI/UX
 * World-class visual effects and interactions
 */

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
    transition: width 0.1s ease-out;
}

/* ========================================
   ANIMATED GRADIENT BACKGROUND
   ======================================== */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5%, -5%) rotate(5deg);
    }

    50% {
        transform: translate(-10%, 5%) rotate(-5deg);
    }

    75% {
        transform: translate(5%, -10%) rotate(3deg);
    }
}

/* Grain texture overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   GLASSMORPHISM COMPONENTS
   ======================================== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 168, 83, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

/* Light mode glassmorphism */
[data-theme="light"] .glass {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ========================================
   GRADIENT BORDER EFFECT
   ======================================== */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(212, 168, 83, 0.5),
            rgba(16, 185, 129, 0.3),
            rgba(99, 102, 241, 0.3),
            rgba(212, 168, 83, 0.5));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 300% 300%;
    animation: gradientBorder 8s ease infinite;
}

@keyframes gradientBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ========================================
   NEON GLOW EFFECTS
   ======================================== */
.glow-gold {
    box-shadow:
        0 0 20px rgba(212, 168, 83, 0.3),
        0 0 40px rgba(212, 168, 83, 0.2),
        0 0 60px rgba(212, 168, 83, 0.1);
}

.glow-emerald {
    box-shadow:
        0 0 20px rgba(16, 185, 129, 0.3),
        0 0 40px rgba(16, 185, 129, 0.2),
        0 0 60px rgba(16, 185, 129, 0.1);
}

.text-glow-gold {
    text-shadow:
        0 0 10px rgba(212, 168, 83, 0.5),
        0 0 20px rgba(212, 168, 83, 0.3),
        0 0 40px rgba(212, 168, 83, 0.2);
}

/* Hover glow animation */
.hover-glow-gold {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hover-glow-gold:hover {
    box-shadow:
        0 0 30px rgba(212, 168, 83, 0.4),
        0 0 60px rgba(212, 168, 83, 0.2);
    transform: translateY(-4px);
}

/* ========================================
   PREMIUM HERO SECTION
   ======================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) 0;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Premium gradient title */
.hero-title-premium {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-6);
    background: linear-gradient(135deg,
            var(--text-primary) 0%,
            var(--accent-gold) 50%,
            var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero-subtitle-premium {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}

/* Floating badges */
.hero-badges {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

/* ========================================
   FLOATING MOCKUPS
   ======================================== */
.floating-mockups {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-phone {
    position: absolute;
    width: 200px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.floating-phone-1 {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.floating-phone-2 {
    right: 5%;
    top: 30%;
    animation-delay: -2s;
    transform: rotate(15deg);
}

.floating-phone-3 {
    left: 15%;
    bottom: 15%;
    animation-delay: -4s;
    transform: rotate(-10deg);
    opacity: 0.7;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-12deg);
    }
}

/* ========================================
   DOT GRID PATTERN
   ======================================== */
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Custom cursor removed - using default system cursor */

/* ========================================
   MAGNETIC BUTTONS
   ======================================== */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    transition: opacity 0.3s ease;
}

.btn-magnetic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-magnetic:hover::after {
    opacity: 1;
}

.btn-magnetic span {
    position: relative;
    z-index: 1;
    color: var(--bg-primary);
}

/* ========================================
   STATS COUNTER
   ======================================== */
.stats-section {
    padding: var(--space-16) 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-2);
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-section {
    padding: var(--space-20) 0;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-quote {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-6);
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Stars rating */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

/* ========================================
   3D PHONE MOCKUP
   ======================================== */
.phone-mockup-3d {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-12);
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 14px;
    z-index: 10;
}

/* ========================================
   PARALLAX LAYERS
   ======================================== */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-layer-back {
    z-index: 1;
}

.parallax-layer-middle {
    z-index: 2;
}

.parallax-layer-front {
    z-index: 3;
}

/* ========================================
   TEXT ANIMATIONS
   ======================================== */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textReveal {
    to {
        transform: translateY(0);
    }
}

/* Stagger text reveal */
.text-reveal-stagger .text-reveal-inner:nth-child(1) {
    animation-delay: 0ms;
}

.text-reveal-stagger .text-reveal-inner:nth-child(2) {
    animation-delay: 100ms;
}

.text-reveal-stagger .text-reveal-inner:nth-child(3) {
    animation-delay: 200ms;
}

.text-reveal-stagger .text-reveal-inner:nth-child(4) {
    animation-delay: 300ms;
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent-gold);
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent-gold);
    }
}

/* ========================================
   PAGE TRANSITIONS
   ======================================== */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: bottom;
}

.page-transition.active {
    animation: pageTransition 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageTransition {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    50% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    50.1% {
        transform-origin: top;
    }

    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .hero-title-premium {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .floating-mockups {
        display: none;
    }

    .phone-frame {
        transform: none;
        width: 240px;
        height: 500px;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .gradient-bg::before,
    .gradient-border::before,
    .hero-title-premium,
    .typewriter,
    .floating-phone {
        animation: none !important;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* ========================================
   VIDEO HERO
   ======================================== */
.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 14, 26, 0.7) 0%,
            rgba(10, 14, 26, 0.5) 50%,
            rgba(10, 14, 26, 0.9) 100%);
}

/* ========================================
   LOGO MARQUEE (PRESS)
   ======================================== */
.marquee-section {
    padding: var(--space-12) 0;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.marquee-title {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-8);
}

.marquee-track {
    display: flex;
    gap: var(--space-16);
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-logo {
    height: 32px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================================
   BENTO GRID (APPLE STYLE)
   ======================================== */
.bento-section {
    padding: var(--space-20) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-4);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--accent-gold-border);
    transform: scale(1.02);
    z-index: 10;
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold-muted), transparent);
    border-radius: var(--radius-lg);
    color: var(--accent-gold);
}

.bento-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    margin: var(--space-4) 0 var(--space-2);
}

.bento-description {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.bento-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    opacity: 0.1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }
}

/* ========================================
   MANIFESTO SECTION
   ======================================== */
.manifesto-section {
    padding: var(--space-32) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold-muted) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-eyebrow {
    font-size: var(--text-sm);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-6);
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-8);
}

.manifesto-text {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   AWARDS & RECOGNITION
   ======================================== */
.awards-section {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.award-item {
    text-align: center;
    padding: var(--space-6);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold-muted), var(--accent-emerald-muted));
    border-radius: var(--radius-2xl);
    font-size: 2rem;
}

.award-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.award-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ========================================
   HORIZONTAL SCROLL SECTION
   ======================================== */
.horizontal-scroll-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.horizontal-scroll-container {
    display: flex;
    height: 100%;
    width: max-content;
}

.horizontal-scroll-panel {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
}

.horizontal-scroll-content {
    max-width: 600px;
    text-align: center;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    padding: var(--space-20) 0;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.newsletter-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--text-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-muted);
}

.newsletter-btn {
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}