/* V2 Theme - Light Blue Accent Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-v2: #4F46E5;
    --primary-mid-v2: #6366F1;
    --primary-light-v2: #818CF8;
    --accent-pale-v2: #EEF2FF;
    --accent-ultra-v2: #E0E7FF;
    --surface-neutral-v2: #F5F7FF;
    --text-dark-v2: #1C1E2D;
    --text-medium-v2: #4A4F72;
    --text-muted-v2: #6B7090;
    --border-v2: #CBD5FF;
    --white-v2: #FFFFFF;
    --card-surface-v2: #FFFFFFF2;
    --input-bg-v2: #EEF1FF;
    --shadow-soft-v2: 0 12px 36px rgba(79,70,229,0.09);
    --shadow-medium-v2: 0 16px 48px rgba(79,70,229,0.12);
    --shadow-float-v2: 0 20px 60px rgba(79,70,229,0.15);
    --shadow-indigo-v2: 0 8px 32px rgba(79,70,229,0.2);
    --radius-xl-v2: 28px;
    --radius-lg-v2: 24px;
    --radius-md-v2: 18px;
    --radius-sm-v2: 14px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark-v2);
    line-height: 1.6;
    background: var(--white-v2);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar-v2 {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border-v2);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.3s ease;
}

.navbar-v2.scrolled {
    box-shadow: var(--shadow-soft-v2);
    background: rgba(255, 255, 255, 0.98);
}

.nav-content-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-v2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark-v2);
}

.logo-v2 i {
    font-size: 1.75rem;
    color: var(--primary-v2);
}

.nav-links-v2 {
    display: flex;
    gap: 2rem;
}

.nav-links-v2 a {
    color: var(--text-medium-v2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links-v2 a:hover {
    color: var(--primary-v2);
}

/* Hero Section - Premium Softer Gradient */
.hero-v2 {
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, #6A67FF 0%, #8B88FF 50%, #C5C4FF 100%);
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-v2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--white-v2);
    border-radius: 50% 50% 0 0 / 120% 120% 0 0;
    pointer-events: none;
}

.hero-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left-v2 {
    padding-left: 20px;
    padding-top: 30px;
}

.hero-left-v2 h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white-v2);
    line-height: 1.08;
    margin-bottom: 2.25rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-v2 {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.65;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    font-weight: 400;
}

.hero-bullets-v2 {
    list-style: none;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-bullets-v2 li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.1rem;
    font-weight: 500;
}

.hero-bullets-v2 i {
    color: var(--primary-light-v2);
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hero-cta-v2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn-primary-v2, .btn-secondary-v2 {
    padding: 1rem 1.75rem;
    border-radius: var(--radius-md-v2);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-v2 {
    background: var(--white-v2);
    color: var(--primary-v2);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
    font-weight: 700;
}

.btn-primary-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.95);
}

.btn-secondary-v2 {
    background: rgba(255,255,255,0.15);
    color: var(--white-v2);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-v2:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-right-v2 {
    position: relative;
}

.hero-visual-v2 {
    width: 100%;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    background: var(--white-v2);
    border-radius: var(--radius-xl-v2);
    padding: 2.5rem;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 40px 100px rgba(106,103,255,0.3), 0 0 60px rgba(139,136,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-2deg);
}

.hero-visual-v2::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(106,103,255,0.15), transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-visual-v2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg-v2);
}

.hero-visual-v2:hover {
    transform: rotate(-1deg) translateY(-12px);
    box-shadow: 0 50px 120px rgba(106,103,255,0.4), 0 0 80px rgba(139,136,255,0.3);
}

/* Pain Section - Why Switch */
.pain-section-v2 {
    padding: 7rem 0;
    background: linear-gradient(135deg, #F7F9FF 0%, #EEF1FF 100%);
    position: relative;
}

.pain-section-v2 h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark-v2) 0%, var(--primary-v2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pain-block-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white-v2);
    border-radius: 20px;
    border: 2px solid var(--border-v2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pain-block-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(106,103,255,0.15);
    border-color: #8B88FF;
}

.pain-icon-v2 {
    color: #6A67FF !important;
    font-size: 2rem;
}

.pain-block-v2 i {
    font-size: 2rem;
    flex-shrink: 0;
}

.pain-block-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark-v2);
    margin-bottom: 0.25rem;
}

.pain-block-v2 p {
    font-size: 0.95rem;
    color: var(--text-medium-v2);
}

/* Solution Strip - Utiliko Advantage */
.solution-strip-v2 {
    padding: 6rem 0;
    background: var(--white-v2);
    position: relative;
}

.solution-strip-v2 h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark-v2) 0%, var(--primary-v2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.solution-icon-v2 {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2), var(--primary-light-v2));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2.25rem;
    box-shadow: var(--shadow-indigo-v2);
    transition: transform 0.3s ease;
    position: relative;
}

.solution-icon-v2::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-light-v2));
    opacity: 0.2;
    z-index: -1;
}

.solution-item-v2:hover .solution-icon-v2 {
    transform: translateY(-6px) scale(1.08);
}

.solution-item-v2 {
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-item-v2:hover {
    transform: translateY(-4px);
}

.solution-item-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark-v2);
    margin-bottom: 0.75rem;
}

.solution-item-v2 p {
    font-size: 1.05rem;
    color: var(--text-medium-v2);
    line-height: 1.6;
}

/* What You Replace Section */
.replace-section-v2 {
    padding: 7rem 0;
    background: #F5F7FF;
    text-align: center;
}

.replace-section-v2 h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark-v2) 0%, var(--primary-v2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-v2 {
    font-size: 1.15rem;
    color: var(--text-medium-v2);
    margin-bottom: 3rem;
    font-weight: 400;
}

.replace-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.replace-tool-v2 {
    background: var(--card-surface-v2);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md-v2);
    border: 1px solid var(--border-v2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.replace-tool-v2 i {
    font-size: 2rem;
    color: #6A67FF;
    opacity: 0.8;
}

.replace-tool-v2:hover i {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.replace-tool-v2 span {
    font-weight: 600;
    color: var(--text-dark-v2);
    font-size: 0.95rem;
}

.replace-tool-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-v2);
}

.replace-arrow-v2 {
    margin: 2rem 0;
}

.replace-arrow-v2 i {
    font-size: 2.5rem;
    color: var(--primary-v2);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.replace-utiliko-v2 {
    max-width: 500px;
    margin: 0 auto;
}

.utiliko-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-indigo-v2);
    margin-bottom: 1rem;
}

.utiliko-badge-v2 i {
    font-size: 2rem;
}

.replace-utiliko-v2 p {
    color: var(--text-medium-v2);
    font-size: 1.1rem;
}

/* Pricing Section - Tier Ribbon Layout */
.pricing-v2 {
    padding: 7rem 0;
    background: var(--white-v2);
    position: relative;
}

.pricing-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #F5F7FF;
    border-radius: 0 0 50% 50%;
    transform: translateY(-50px);
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-v2 h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark-v2) 0%, var(--primary-v2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-v2 p {
    font-size: 1.1rem;
    color: var(--text-medium-v2);
}

.pricing-scroll-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.pricing-pill-v2 {
    background: var(--white-v2);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    box-shadow: 0 16px 36px rgba(0,0,0,0.07);
    border: 2px solid var(--border-v2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-pill-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(106,103,255,0.15);
    border-color: #8B88FF;
}

.pricing-pill-v2.featured-v2 {
    border: 2px solid rgba(124,118,255,0.5);
    box-shadow: 0 20px 48px rgba(106,103,255,0.2);
    transform: scale(1.04);
    background: linear-gradient(135deg, rgba(106,103,255,0.02), rgba(139,136,255,0.02));
    position: relative;
}

.pricing-pill-v2.featured-v2::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6A67FF, #8B88FF, #C5C4FF);
    z-index: -1;
    opacity: 0.2;
    filter: blur(24px);
}

.pricing-pill-v2.featured-v2:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 56px rgba(106,103,255,0.25);
}

.popular-tag-v2 {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2));
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-indigo-v2);
    border: 2px solid rgba(255,255,255,0.3);
}

.pill-header-v2 {
    margin-bottom: 1.5rem;
}

.pill-header-v2 h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark-v2);
    margin-bottom: 0.5rem;
}

.pill-seats-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium-v2);
    font-size: 0.95rem;
}

.pill-price-v2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-display-v2 {
    text-align: center;
}

.price-amount-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark-v2);
    margin-bottom: 0.25rem;
}

.price-label-v2 {
    font-size: 0.9rem;
    color: var(--text-medium-v2);
    font-weight: 500;
}

/* Legacy styles kept for compatibility */
.price-locked-v2 {
    position: relative;
    margin-bottom: 0.5rem;
}

.price-blur-v2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark-v2);
    filter: blur(6px);
    user-select: none;
}

.unlock-badge-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-v2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md-v2);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill-features-v2 {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pill-features-v2 li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark-v2);
    margin-bottom: 0.75rem;
}

.pill-features-v2 i {
    color: #10B981;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.btn-pill-v2 {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2));
    color: white;
    text-align: center;
    padding: 1.2rem;
    border-radius: var(--radius-md-v2);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-indigo-v2);
}

.btn-pill-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(79,70,229,0.35);
    background: linear-gradient(135deg, var(--primary-mid-v2), var(--primary-light-v2));
}

.pricing-note-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    color: var(--text-medium-v2);
    font-size: 0.95rem;
}

.pricing-note-v2 i {
    color: var(--primary-v2);
}

/* Upgrade Possibilities Section */
.upgrade-section-v2 {
    padding: 6rem 0;
    background: var(--white-v2);
}

.upgrade-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.upgrade-card-v2 {
    background: var(--white-v2);
    border: 2px solid var(--border-v2);
    border-radius: var(--radius-lg-v2);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.upgrade-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(106,103,255,0.12);
    border-color: #8B88FF;
}

.upgrade-icon-v2 {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(106,103,255,0.2);
}

.upgrade-card-v2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark-v2);
    margin-bottom: 0.75rem;
}

.upgrade-card-v2 p {
    font-size: 1rem;
    color: var(--text-medium-v2);
    line-height: 1.6;
}

/* Scarcity Counter */
.scarcity-counter {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Waitlist Section - Glassmorphic Card */
.waitlist-section-v2 {
    padding: 8rem 0;
    background: linear-gradient(135deg, #9B98FF 0%, #B8B6FF 50%, #D5D3FF 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-section-v2::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.02'%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.3;
    pointer-events: none;
}

.waitlist-card-v2 {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: var(--radius-xl-v2);
    padding: 4rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

.waitlist-card-v2::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-xl-v2);
    padding: 3px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
    -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;
}

.waitlist-header-v2 {
    text-align: center;
    margin-bottom: 2rem;
}

.waitlist-header-v2 h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.waitlist-header-v2 p {
    font-size: 1.15rem;
    color: var(--text-medium-v2);
}

.form-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-field-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-v2.full-width-v2 {
    grid-column: 1 / -1;
}

.form-field-v2 label {
    font-weight: 600;
    color: var(--text-dark-v2);
    font-size: 0.95rem;
}

.form-field-v2 label {
    color: var(--text-dark-v2);
    font-weight: 600;
}

.form-field-v2 input,
.form-field-v2 select {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #CBD5FF;
    background: #EEF1FF;
    color: var(--text-dark-v2);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field-v2 input:focus,
.form-field-v2 select:focus {
    outline: none;
    border-color: #6A67FF;
    background: var(--white-v2);
    box-shadow: 0 0 0 4px rgba(106,103,255,0.1);
    transform: translateY(-2px);
}

.field-error {
    color: #EF4444;
    font-size: 0.85rem;
    min-height: 1.1em;
}

.btn-submit-v2 {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-hover-v2));
    color: white;
    border: none;
    border-radius: var(--radius-md-v2);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-v2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-v2);
}

.btn-submit-v2 {
    width: 100%;
    padding: 1.4rem;
    background: linear-gradient(135deg, #6A67FF, #8B88FF);
    color: var(--white-v2);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(106,103,255,0.3);
}

.btn-submit-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(106,103,255,0.4);
    background: linear-gradient(135deg, #8B88FF, #C5C4FF);
}

.form-reassurance-v2 {
    text-align: center;
    color: var(--text-medium-v2);
    font-size: 1rem;
    margin-top: 1rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg-v2);
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: var(--text-dark-v2);
    margin-top: 2rem;
    border: 2px solid #86EFAC;
    box-shadow: 0 8px 24px rgba(16,185,129,0.2);
    animation: slideInSuccess 0.5s ease-out;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success i {
    color: #10B981;
    font-size: 2rem;
    flex-shrink: 0;
}

.form-success strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark-v2);
}

.form-success p {
    font-size: 1rem;
    color: var(--text-medium-v2);
    margin: 0;
}

/* Multiselect */
.multiselect {
    position: relative;
}

.multiselect-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #CBD5FF;
    background: #EEF1FF;
    color: var(--text-dark-v2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.multiselect-toggle:focus {
    outline: none;
    border-color: #6A67FF;
    background: var(--white-v2);
    box-shadow: 0 0 0 4px rgba(106,103,255,0.1);
    transform: translateY(-2px);
}

.multiselect-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--card-surface-v2);
    border: 1px solid var(--border-v2);
    border-radius: var(--radius-md-v2);
    box-shadow: var(--shadow-float-v2);
    padding: 0.75rem;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.multiselect.open .multiselect-list {
    display: block;
}

.multiselect-placeholder {
    color: var(--text-muted-v2);
}

.multiselect-selected {
    color: var(--text-dark-v2);
    font-weight: 600;
}

.multiselect-toggle i {
    color: var(--text-medium-v2);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.checkbox-item:hover {
    background: var(--accent-pale-v2);
}

.checkbox-item input {
    accent-color: var(--primary-v2);
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-item span {
    color: var(--text-dark-v2);
    font-size: 0.95rem;
}

/* Testimonials - Scrollable Carousel */
.testimonials-v2 {
    padding: 7rem 0;
    background: #F8F8FF;
}

.testimonials-v2 h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark-v2);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.testimonial-slider-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-pill-v2 {
    background: linear-gradient(135deg, #F0F2FF, #E8EBFF);
    border-radius: var(--radius-xl-v2);
    padding: 2.75rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 24px rgba(106,103,255,0.08);
    border: 2px solid rgba(106,103,255,0.1);
    transition: all 0.3s ease;
}

.testimonial-pill-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(106,103,255,0.15);
    border-color: #8B88FF;
}

.testimonial-avatar-v2 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-v2), var(--primary-mid-v2), var(--primary-light-v2));
    flex-shrink: 0;
    box-shadow: var(--shadow-indigo-v2);
    border: 3px solid white;
}

.testimonial-content-v2 p {
    color: var(--text-dark-v2);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-weight: 500;
}

.testimonial-content-v2 span {
    color: var(--text-medium-v2);
    font-size: 0.95rem;
}

/* FAQ - Modern Indigo Accordions */
.faq-v2 {
    padding: 7rem 0;
    background: #F7F9FF;
}

.faq-accordion-v2 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item-v2 {
    background: var(--white-v2);
    border-radius: var(--radius-lg-v2);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 2px solid var(--border-v2);
    border-left: 4px solid #6A67FF;
    transition: all 0.3s ease;
}

.faq-accordion-item-v2:hover {
    box-shadow: 0 8px 24px rgba(106,103,255,0.12);
    border-color: #8B88FF;
    background: #F3F4FF;
}

.faq-accordion-item-v2.active {
    border-left-color: #6A67FF;
    box-shadow: 0 8px 24px rgba(106,103,255,0.15);
    background: #F3F4FF;
}

.faq-accordion-btn-v2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark-v2);
    transition: background 0.2s ease;
}

.faq-accordion-btn-v2:hover {
    background: var(--accent-ultra-v2);
}

.faq-accordion-btn-v2 i {
    color: var(--primary-v2);
    transition: transform 0.3s ease;
}

.faq-accordion-item-v2.active .faq-accordion-btn-v2 i {
    transform: rotate(180deg);
}

.faq-accordion-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item-v2.active .faq-accordion-content-v2 {
    max-height: 500px;
}

.faq-accordion-content-v2 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium-v2);
    line-height: 1.7;
}

/* Final CTA - Strong Gradient Block */
.final-cta-v2 {
    padding: 8rem 0;
    background: linear-gradient(135deg, #6A67FF 0%, #8B88FF 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: #F7F9FF;
    border-radius: 0 0 50% 50%;
    transform: translateY(-75px);
}

.final-cta-v2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.final-cta-content-v2 {
    text-align: center;
}

.final-cta-content-v2 {
    position: relative;
    z-index: 1;
}

.final-cta-content-v2 h2 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--white-v2);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.15);
    position: relative;
}

.final-cta-content-v2 h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.final-cta-content-v2 p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
}

.final-cta-subtext-v2 {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    font-weight: 500;
}

.final-cta-buttons-v2 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-large-v2 {
    padding: 1.4rem 2.5rem !important;
    font-size: 1.15rem !important;
}

/* Footer */
.footer-v2 {
    background: var(--accent-ultra-v2);
    padding: 3rem 0;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-v2), var(--primary-hover-v2)) 1;
}

.footer-content-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand-v2 p {
    color: var(--text-medium-v2);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-links-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links-v2 a {
    color: var(--text-medium-v2);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-v2 a:hover {
    color: var(--primary-v2);
}

.footer-links-v2 span {
    color: var(--border-v2);
}

.footer-bottom-v2 {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-v2);
}

.footer-bottom-v2 p {
    color: var(--text-medium-v2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left-v2 {
        padding-left: 0;
        padding-top: 0;
    }
    
    .hero-cta-v2 {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-cta-v2 .btn-primary-v2,
    .hero-cta-v2 .btn-secondary-v2 {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .hero-bullets-v2 {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-bullets-v2 li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .nav-links-v2 {
        display: none;
    }
    
    .form-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-scroll-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pain-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .upgrade-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-slider-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-pill-v2 {
        flex-direction: column;
        text-align: center;
    }
    
    .replace-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .replace-arrow-v2 {
        margin: 1.5rem 0;
    }
    
    .utiliko-badge-v2 {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    .footer-content-v2 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-v2 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left-v2 h1 {
        font-size: 1.8rem;
    }
    
    .section-header-v2 h2 {
        font-size: 1.8rem;
    }
    
    .waitlist-card-v2 {
        padding: 1.75rem;
    }
}


/* Additional Modern SaaS Enhancements */
.pill-header-v2 h3 {
    background: linear-gradient(135deg, var(--text-dark-v2), var(--primary-v2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-pill-v2.featured-v2 .pill-header-v2 h3 {
    -webkit-text-fill-color: var(--text-dark-v2);
}

/* Smooth scroll reveal animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .fade-in-section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button interactions */
.btn-primary-v2,
.btn-secondary-v2,
.btn-pill-v2,
.btn-submit-v2 {
    position: relative;
    overflow: hidden;
}

.btn-primary-v2::before,
.btn-pill-v2::before,
.btn-submit-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-v2:hover::before,
.btn-pill-v2:hover::before,
.btn-submit-v2:hover::before {
    width: 300px;
    height: 300px;
}

/* Glassmorphism effect for cards */
.pricing-pill-v2.featured-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg-v2);
    background: linear-gradient(135deg, rgba(76,110,245,0.05), rgba(92,124,250,0.05));
    pointer-events: none;
}

/* Improved focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-v2);
    outline-offset: 2px;
}

/* Subtle parallax effect for hero */
@media (min-width: 769px) {
    .hero-v2 {
        transform-style: preserve-3d;
    }
}

/* Loading state for form submission */
.btn-submit-v2:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced shadow on scroll for pricing cards */
.pricing-pill-v2 {
    will-change: transform;
}

/* Smooth color transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

/* Override for elements that need specific transitions */
.btn-primary-v2,
.btn-secondary-v2,
.btn-pill-v2,
.btn-submit-v2,
.pricing-pill-v2,
.hero-visual-v2,
.solution-icon-v2 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved text rendering */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
}

/* Better image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Subtle gradient text for main headings */
.section-header-v2 h2,
.pain-section-v2 h2,
.solution-strip-v2 h2,
.testimonials-v2 h2 {
    background: linear-gradient(135deg, var(--text-dark-v2) 0%, var(--primary-v2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure gradient text works on all browsers */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .section-header-v2 h2,
    .pain-section-v2 h2,
    .solution-strip-v2 h2,
    .testimonials-v2 h2 {
        color: var(--text-dark-v2);
    }
}


/* Ripple effect for buttons */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    /* 1. HERO SECTION MOBILE FIXES */
    .hero-v2 {
        padding: 3rem 0 3.5rem;
    }
    
    .hero-v2::before,
    .hero-v2::after {
        display: none;
    }
    
    .hero-left-v2 h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-v2 {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-bullets-v2 {
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .hero-bullets-v2 li {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        gap: 0.85rem;
    }
    
    .hero-bullets-v2 i {
        font-size: 1.4rem;
        min-width: 28px;
        width: 28px;
    }
    
    .hero-cta-v2 {
        gap: 0.85rem;
        margin-top: 1.5rem;
    }
    
    .hero-visual-v2 {
        transform: scale(0.7) rotate(-2deg);
        margin-top: 2rem;
    }
    
    /* 2. WHY TEAMS SECTION MOBILE FIXES */
    .pain-section-v2 {
        padding: 4rem 0;
    }
    
    .pain-block-v2 {
        padding: 2rem 1.75rem;
        margin-bottom: 1rem;
    }
    
    .pain-icon-v2 {
        font-size: 2.25rem !important;
    }
    
    .pain-block-v2 h3 {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    
    .pain-block-v2 p {
        line-height: 1.6;
    }
    
    /* 3. UTILIKO ADVANTAGE MOBILE FIXES */
    .solution-strip-v2 {
        padding: 4rem 0;
    }
    
    .solution-strip-v2::before {
        display: none;
    }
    
    .solution-grid-v2 {
        gap: 3rem;
    }
    
    .solution-icon-v2 {
        margin-bottom: 2rem;
    }
    
    .solution-item-v2 h3 {
        margin-bottom: 1rem;
    }
    
    /* 4. REPLACE TECH STACK MOBILE FIXES */
    .replace-section-v2 {
        padding: 4rem 0;
    }
    
    .replace-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .replace-tool-v2 {
        padding: 1.75rem 1rem;
        background: linear-gradient(135deg, rgba(106,103,255,0.05), rgba(139,136,255,0.05));
        border: 2px solid var(--border-v2);
        border-radius: 16px;
    }
    
    .replace-tool-v2 i {
        font-size: 2.25rem;
    }
    
    /* 5. PRICING SECTION MOBILE FIXES */
    .pricing-v2 {
        padding: 4rem 0;
    }
    
    .pricing-v2::before {
        display: none;
    }
    
    .section-header-v2 {
        margin-bottom: 2.5rem;
    }
    
    .scarcity-counter {
        order: -1;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.05));
        border-radius: 12px;
        border: 2px solid rgba(239,68,68,0.2);
    }
    
    .pricing-pill-v2 {
        padding: 2.5rem 2rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 24px rgba(106,103,255,0.12);
        border-radius: 20px;
    }
    
    .pricing-pill-v2.featured-v2 {
        transform: scale(1);
        border: 3px solid #8B88FF;
        position: relative;
    }
    
    .pricing-pill-v2.featured-v2::before {
        content: 'Best Value';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #10B981, #059669);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    }
    
    .pill-features-v2 li {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .btn-pill-v2 {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    /* 6. UPGRADE POSSIBILITIES MOBILE FIXES */
    .upgrade-section-v2 {
        padding: 4rem 0;
        margin-top: 2rem;
    }
    
    .upgrade-grid-v2 {
        gap: 1.5rem;
    }
    
    .upgrade-card-v2 {
        padding: 2rem 1.75rem;
    }
    
    .upgrade-icon-v2 {
        width: 75px;
        height: 75px;
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .upgrade-card-v2 h3 {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }
    
    /* 7. FORM SECTION MOBILE FIXES */
    .waitlist-section-v2 {
        padding: 4rem 0;
    }
    
    .waitlist-card-v2 {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .waitlist-header-v2 {
        margin-bottom: 2rem;
    }
    
    .form-field-v2 {
        margin-bottom: 1.25rem;
    }
    
    .form-field-v2 label {
        font-weight: 700;
        margin-bottom: 0.65rem;
        font-size: 0.95rem;
    }
    
    .form-field-v2 input,
    .form-field-v2 select {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .btn-submit-v2 {
        padding: 1.15rem;
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    /* 8. TESTIMONIALS MOBILE FIXES */
    .testimonials-v2 {
        padding: 4rem 0;
    }
    
    .testimonial-slider-v2 {
        gap: 1.5rem;
    }
    
    .testimonial-pill-v2 {
        padding: 2rem 1.75rem;
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .testimonial-avatar-v2 {
        margin-bottom: 1rem;
    }
    
    .testimonial-content-v2 p {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }
    
    /* 9. FAQ MOBILE FIXES */
    .faq-v2 {
        padding: 4rem 0;
    }
    
    .faq-accordion-item-v2 {
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border-v2);
    }
    
    .faq-accordion-btn-v2 {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-accordion-btn-v2 i {
        font-size: 1.25rem;
    }
    
    .faq-accordion-content-v2 p {
        padding: 0 1.25rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* 10. FINAL CTA MOBILE FIXES */
    .final-cta-v2 {
        padding: 4rem 0;
    }
    
    .final-cta-v2::before {
        display: none;
    }
    
    .final-cta-content-v2 h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .final-cta-content-v2 p {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .final-cta-subtext-v2 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .final-cta-buttons-v2 {
        gap: 1rem;
    }
    
    .btn-cta-large-v2 {
        padding: 1.15rem 2rem !important;
        font-size: 1.05rem !important;
    }
    
    /* GLOBAL MOBILE FIXES */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    section {
        overflow-x: hidden;
    }
    
    .section-header-v2 h2,
    .pain-section-v2 h2,
    .solution-strip-v2 h2,
    .replace-section-v2 h2,
    .testimonials-v2 h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle-v2 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile refinements */
    .hero-left-v2 h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-bullets-v2 li {
        font-size: 0.95rem;
        gap: 0.75rem;
    }
    
    .hero-bullets-v2 i {
        font-size: 1.3rem;
        min-width: 26px;
        width: 26px;
    }
    
    .section-header-v2 h2,
    .pain-section-v2 h2,
    .solution-strip-v2 h2,
    .replace-section-v2 h2,
    .testimonials-v2 h2 {
        font-size: 1.65rem;
    }
    
    .waitlist-card-v2 {
        padding: 1.5rem 1.25rem;
    }
    
    .btn-primary-v2,
    .btn-secondary-v2 {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pricing-pill-v2 {
        padding: 2rem 1.5rem;
    }
    
    .pain-block-v2 {
        padding: 1.75rem 1.5rem;
    }
    
    .replace-tool-v2 {
        padding: 1.5rem 0.85rem;
    }
    
    .upgrade-card-v2 {
        padding: 1.75rem 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar-v2,
    .footer-v2,
    .btn-primary-v2,
    .btn-secondary-v2,
    .btn-pill-v2,
    .btn-submit-v2 {
        display: none;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-v2: #000000;
        --text-medium-v2: #000000;
    }
    
    .btn-primary-v2,
    .btn-pill-v2,
    .btn-submit-v2 {
        border: 2px solid #000000;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Keep light theme for now, but structure is ready for dark mode */
}


/* V2.5 PREMIUM ENHANCEMENTS */

/* Global spacing improvements */
section {
    margin-bottom: 2rem;
}

/* Smooth scroll animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.btn-primary-v2:hover,
.btn-pill-v2:hover,
.btn-submit-v2:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Improved typography hierarchy */
h2 {
    font-weight: 800;
    line-height: 1.15;
}

h3 {
    font-weight: 700;
    line-height: 1.3;
}

/* Premium card lift effect */
.pain-block-v2,
.solution-item-v2,
.pricing-pill-v2,
.testimonial-pill-v2,
.faq-accordion-item-v2 {
    will-change: transform;
}

/* Smooth transitions for all interactive elements */
a, button, input, select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states */
*:focus-visible {
    outline: 3px solid #6A67FF;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Improved whitespace */
.container {
    padding-left: 24px;
    padding-right: 24px;
}

/* Mobile-specific touch improvements */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn-primary-v2,
    .btn-secondary-v2,
    .btn-pill-v2,
    .btn-submit-v2 {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Smooth scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better tap highlight */
    * {
        -webkit-tap-highlight-color: rgba(106,103,255,0.1);
    }
    
    /* Improved input fields for mobile */
    input,
    select,
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Better multiselect on mobile */
    .multiselect-toggle {
        min-height: 48px;
    }
    
    .multiselect-list {
        max-height: 240px;
    }
    
    /* Pricing card enhancements */
    .pill-header-v2 h3 {
        font-size: 1.65rem;
    }
    
    .pill-seats-v2 {
        font-size: 0.95rem;
    }
    
    .price-amount-v2 {
        font-size: 2.5rem;
    }
    
    /* Better spacing for form success message */
    .form-success {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Navbar improvements */
    .navbar-v2 {
        padding: 1rem 0;
    }
    
    .logo-v2 {
        font-size: 1.35rem;
    }
    
    /* Footer improvements */
    .footer-v2 {
        padding: 2.5rem 0;
    }
    
    /* Popular tag positioning */
    .popular-tag-v2 {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Premium gradient overlays */
.hero-v2,
.final-cta-v2,
.waitlist-section-v2 {
    position: relative;
}

/* Smooth curve transitions */
.hero-v2::after,
.final-cta-v2::before,
.pricing-v2::before {
    transition: all 0.3s ease;
}

/* Enhanced shadow system */
.shadow-premium {
    box-shadow: 0 20px 60px rgba(106,103,255,0.12);
}

/* Improved mobile spacing */
@media (max-width: 768px) {
    section {
        padding: 4rem 0 !important;
    }
    
    .hero-v2 {
        padding: 5rem 0 6rem !important;
    }
    
    .hero-left-v2 {
        padding-left: 0;
        padding-top: 0;
    }
    
    .final-cta-content-v2 h2 {
        font-size: 2.2rem !important;
    }
    
    .btn-cta-large-v2 {
        padding: 1.2rem 2rem !important;
    }
}

/* Premium loading states */
.btn-submit-v2:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Improved text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced gradient text */
.section-header-v2 h2,
.pain-section-v2 h2,
.solution-strip-v2 h2,
.replace-section-v2 h2 {
    background: linear-gradient(135deg, #1C1E2D 0%, #6A67FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

/* Premium micro-interactions */
.pricing-pill-v2,
.pain-block-v2,
.solution-item-v2 {
    transform-origin: center;
}

/* Enhanced visual hierarchy */
.hero-left-v2 h1 {
    position: relative;
    z-index: 2;
}

/* Improved contrast */
.waitlist-header-v2 h2,
.final-cta-content-v2 h2 {
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
