:root {
    /* Light Theme Colors */
    --bg-color: #fafafa;
    --bg-secondary: #f0f0f5;
    --bg-white: #ffffff;
    --text-main: #0f0f0f;
    --text-secondary: #606060;
    --text-muted: #9a9a9a;

    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-light: rgba(99, 102, 241, 0.1);
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);

    /* UI Elements */
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.06);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 12px 40px rgba(99, 102, 241, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    z-index: 1000;
    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");
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(99, 102, 241, 0.08));
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    bottom: -100px;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(3deg);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 6rem 0;
    position: relative;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-dot {
    color: var(--accent-primary);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--text-main);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

/* Rotating Text Animation */
.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    min-width: 280px;
    text-align: left;
}

.rotating-text {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.rotating-text::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 10%;
    height: 80%;
    width: 3px;
    background: var(--accent-gradient);
    animation: cursor-blink 0.8s ease-in-out infinite;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes typeIn {
    from {
        max-width: 0;
    }

    to {
        max-width: 500px;
    }
}

@keyframes typeOut {
    from {
        max-width: 500px;
    }

    to {
        max-width: 0;
    }
}

.rotating-text.typing-in {
    max-width: 0;
    animation: typeIn 0.8s ease-out forwards;
}

.rotating-text.typing-out {
    animation: typeOut 0.6s ease-in forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   CREATOR FORM
   ============================================ */
.creator-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.form-header {
    background: var(--accent-gradient-soft);
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--card-border);
}

.form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.form-body {
    padding: 2rem 2.5rem 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-secondary);
    background: var(--bg-color);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 200px;
    line-height: 1.6;
}

.input-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    background: var(--accent-gradient);
    color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
}

.btn-submit .btn-text {
    transition: opacity 0.3s ease;
}

.btn-submit .btn-icon {
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-submit .btn-loader {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

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

/* Success State */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success .success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce-in 0.5s ease;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================
   WAITING SCREEN
   ============================================ */
.waiting-screen {
    text-align: center;
    padding: 3rem 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waiting-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.waiting-spinner {
    width: 100%;
    height: 100%;
    border: 4px solid var(--bg-secondary);
    border-top: 4px solid var(--accent-primary);
    border-right: 4px solid var(--accent-secondary);
    border-radius: 50%;
    animation: waiting-spin 1s linear infinite;
}

.waiting-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.3;
    animation: waiting-pulse 2s ease-in-out infinite;
}

@keyframes waiting-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes waiting-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.waiting-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.waiting-site-name {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.waiting-progress-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.waiting-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.waiting-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 100px;
    transition: width 0.5s ease-out;
    position: relative;
}

.waiting-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.waiting-progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.waiting-message {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    min-height: 1.5em;
    transition: opacity 0.3s ease;
}

.waiting-fun-fact {
    background: var(--accent-gradient-soft);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.waiting-fun-fact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

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

/* Success State */
.waiting-screen.success {
    animation: success-appear 0.5s ease;
}

@keyframes success-appear {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce-in 0.6s ease;
}

.waiting-screen.success h3 {
    font-size: 1.75rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-url {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.success-url span {
    font-size: 1.2rem;
}

.success-url a {
    color: var(--accent-primary);
    font-weight: 500;
    word-break: break-all;
}

.success-url a:hover {
    text-decoration: underline;
}

/* Timeout State */
.waiting-screen.timeout {
    animation: timeout-shake 0.5s ease;
}

@keyframes timeout-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }
}

.timeout-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.waiting-screen.timeout h3 {
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.waiting-screen.timeout p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.timeout-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: var(--bg-white);
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-light);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-color);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(99, 102, 241, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    background: var(--bg-color);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background: var(--accent-gradient);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: var(--accent-primary);
    position: relative;
}

.cta-box .btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-white);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-main p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

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

.footer-bottom a {
    color: var(--accent-primary);
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-200 {
    transition-delay: 0.2s;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-color);
    border-radius: var(--radius-xl);
    border: 2px solid var(--card-border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card-featured {
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card-featured:hover {
    box-shadow: 0 16px 50px rgba(99, 102, 241, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features .check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-features .check.highlight {
    color: var(--accent-primary);
}

.pricing-features .cross {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.1rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--card-border);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-light);
}

.pricing-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-help {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--card-shadow);
}

.pricing-help.contact-section {
    text-align: left;
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-secondary);
    background: var(--bg-color);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-contact {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-contact .btn-loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.8s linear infinite;
}

.btn-contact.loading .btn-text,
.btn-contact.loading .btn-icon {
    opacity: 0;
}

.btn-contact.loading .btn-loader {
    opacity: 1;
}

.contact-success {
    text-align: center;
    padding: 1.5rem;
}

.contact-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-success h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

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

.pricing-help p {
    color: var(--text-main);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: calc(var(--header-height) + 1rem);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-header,
    .form-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .step-arrow {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

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

    .footer-links {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .section {
        padding: 4rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

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

    .benefit-card {
        padding: 1.75rem;
    }

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

    .pricing-help {
        padding: 1.5rem;
    }

    .rotating-text-wrapper {
        min-width: 200px;
        display: block;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}