/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-input: #141414;

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    --accent: #FF0000;
    --accent-hover: #ff1a1a;
    --accent-secondary: #cc0000;
    --accent-glow: rgba(255, 0, 0, 0.5);

    --gold: #ffd700;
    --gold-dark: #b8860b;

    --success: #22c55e;
    --error: #ef4444;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-width: 1100px;
    --section-padding: 100px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   CTA BUTTON - FANCY VERSION
   ============================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: var(--text-primary);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow:
        0 0 20px var(--accent-glow),
        0 0 40px rgba(255, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: buttonPulse 3s ease-in-out infinite;
}

/* Shine effect overlay */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
    z-index: -1;
}

/* Border glow effect */
.cta-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--accent));
    background-size: 200% 200%;
    z-index: -2;
    animation: borderGlow 3s ease infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 30px var(--accent-glow),
        0 0 60px rgba(255, 0, 0, 0.35),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Arrow animation on hover */
.cta-button svg {
    transition: transform var(--transition-normal);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-full {
    width: 100%;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 0 20px var(--accent-glow),
            0 0 40px rgba(255, 0, 0, 0.2),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 30px var(--accent-glow),
            0 0 50px rgba(255, 0, 0, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: calc(100vh - 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-primary);
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.announcement-bar strong {
    font-weight: 700;
    color: var(--text-primary);
}

.announcement-icon {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
}

/* Main content scrolls over the announcement bar */
body {
    padding-top: 44px;
}

.hero,
.showcase,
.pricing,
.about,
.contact,
.footer {
    position: relative;
    z-index: 10;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 0, 0, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 0, 0, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(255, 215, 0, 0.08), transparent);
    z-index: 1;
}

/* ============================================
   BEFORE/AFTER THUMBNAIL SHOWCASE
   ============================================ */
.thumbnail-showcase {
    width: 100%;
    max-width: 900px;
    margin: 64px auto;
}

.showcase-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

.thumbnail-container {
    position: relative;
    width: 420px;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.thumbnail-before,
.thumbnail-after {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: opacity 0.8s ease;
}

.thumbnail-before {
    opacity: 1;
    z-index: 2;
}

.thumbnail-after {
    opacity: 0;
    z-index: 1;
}

/* After state active */
.thumbnail-showcase.show-after .thumbnail-before {
    opacity: 0;
}

.thumbnail-showcase.show-after .thumbnail-after {
    opacity: 1;
}

/* Rotating glow effect - Apple Intelligence style */
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.thumbnail-container::before,
.thumbnail-container::after {
    content: '';
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

/* Outer soft glow */
.thumbnail-container::before {
    inset: -20px;
    background: conic-gradient(
        from var(--glow-angle),
        rgba(255, 255, 255, 0.25),
        rgba(120, 160, 255, 0.2),
        rgba(255, 255, 255, 0.08),
        rgba(255, 180, 100, 0.2),
        rgba(255, 255, 255, 0.25)
    );
    filter: blur(30px);
    z-index: -2;
    animation: rotateGlow 6s linear infinite;
}

/* Inner sharper glow */
.thumbnail-container::after {
    inset: -8px;
    background: conic-gradient(
        from var(--glow-angle),
        rgba(255, 255, 255, 0.4),
        rgba(100, 150, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        rgba(255, 160, 80, 0.3),
        rgba(255, 255, 255, 0.4)
    );
    filter: blur(12px);
    z-index: -1;
    animation: rotateGlow 6s linear infinite reverse;
}

.thumbnail-showcase.show-after .thumbnail-container::before,
.thumbnail-showcase.show-after .thumbnail-container::after {
    opacity: 1;
}

@keyframes rotateGlow {
    to {
        --glow-angle: 360deg;
    }
}

/* Placeholder styling */
.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

.thumbnail-placeholder.before {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.thumbnail-placeholder.after {
    background: linear-gradient(135deg, var(--bg-card) 0%, #2a1a1a 100%);
    color: var(--text-secondary);
}

.thumbnail-placeholder .placeholder-icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.thumbnail-placeholder.before .placeholder-icon {
    stroke: var(--text-muted);
}

.thumbnail-placeholder.after .placeholder-icon {
    stroke: var(--accent);
}

/* Real thumbnail images (when added) */
.thumbnail-before img,
.thumbnail-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   STATS & CONTROLS (beside thumbnail)
   ============================================ */
.showcase-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.stats-row {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* After state for stats - highlight color */
.thumbnail-showcase.show-after .stat-value {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .showcase-layout {
        flex-direction: column;
        gap: 24px;
    }

    .thumbnail-container {
        width: 100%;
        max-width: 500px;
    }

    .showcase-side {
        align-items: center;
        gap: 20px;
    }

    .stats-row {
        justify-content: center;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* ============================================
   TOGGLE BUTTON (secondary style)
   ============================================ */
.toggle-container {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.toggle-btn {
    padding: 6px 16px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.toggle-btn:hover {
    color: var(--text-secondary);
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    transition: transform var(--transition-normal);
}

.showcase-item:hover {
    transform: scale(1.02);
}

.thumbnail-wrapper {
    width: 100%;
    height: 100%;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    height: 1200px;
    background: radial-gradient(
        ellipse,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.05),
        inset -1px 0 0 rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%
    );
    -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;
    pointer-events: none;
}

/* Featured card (middle) */
.pricing-card.featured {
    background: var(--bg-card);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.08),
        inset -1px 0 0 rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.15) 0%, rgba(255, 150, 0, 0.1) 100%);
    border: 1px solid rgba(255, 200, 0, 0.3);
    color: #ffd54f;
    font-size: 0.75rem;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
    overflow: visible;
}

.offer-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 200, 0, 0.3) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

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

.offer-badge i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.offer-badge strong {
    color: #ffec80;
}

.price-tag.has-offer {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.price-tag.has-offer .price-label {
    width: 100%;
}

.price-tag.has-offer .current-price {
    background: linear-gradient(
        90deg,
        #d4a574 0%,
        #f5d69c 25%,
        #fffacd 50%,
        #f5d69c 75%,
        #d4a574 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(180, 140, 80, 0.3));
    animation: goldShimmer 10s ease-in-out infinite alternate;
}

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

.original-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-tier {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-tag {
    margin-bottom: 8px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

.tier-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Secondary CTA button style */
.cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    animation: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.cta-secondary::before,
.cta-secondary::after {
    display: none;
}

/* Tier-specific styling for visual hierarchy */
.pricing-card.tier-basic {
    opacity: 0.7;
    transform: scale(0.95);
}

.pricing-card.tier-basic:hover {
    opacity: 0.85;
}

.pricing-card.tier-value {
    transform: scale(1);
}

.value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-icon {
    margin-bottom: 16px;
}

.about-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    stroke-width: 1.5;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.contact .container {
    max-width: 600px;
    text-align: center;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15), 0 0 20px rgba(255, 0, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

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

/* Honeypot - hidden from users */
.honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.submit-btn {
    margin-top: 8px;
}

.submit-btn .btn-loading {
    display: none;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-arrow {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 24px;
    text-align: left;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
}

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

.form-message p {
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 80px 0 60px;
    min-height: calc(100vh - 120px);
}

.legal-page .container {
    max-width: 800px;
}

.legal-page .back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.legal-page .back-link:hover {
    color: var(--text-secondary);
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   MOBILE CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: linear-gradient(to top, var(--bg-primary) 60%, transparent);
    z-index: 100;
}

.mobile-cta .cta-button {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 100px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        min-height: calc(100vh - 100px);
        padding-top: 60px;
    }

    .launch-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .current-price {
        font-size: 3rem;
    }

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .hero-content,
    .showcase-item,
    .pricing-card,
    .about-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .showcase-item:nth-child(2) {
        animation-delay: 0.1s;
    }

    .about-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .about-card:nth-child(3) {
        animation-delay: 0.2s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
