/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #333;
    letter-spacing: -0.02em;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
    50% { transform: translateX(-50%) scaleX(1.2); opacity: 0.8; }
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

h3:hover {
    transform: translateX(5px);
    color: #ff6b35;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: buttonGlow 2s ease-in-out infinite alternate;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes buttonGlow {
    0% { 
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 0 0 rgba(255, 107, 53, 0.7);
        background-position: 0% 50%;
    }
    100% { 
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 0 10px rgba(255, 107, 53, 0);
        background-position: 100% 50%;
    }
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 0 0 rgba(255, 107, 53, 0.7);
    animation: none;
}

.cta-button.secondary {
    background: transparent;
    color: #ff6b35;
    border: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.cta-button.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-button.secondary:hover::after {
    width: 100%;
}

.cta-button.secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b35 100%);
    background-size: 300% 300%;
    color: white;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: heroGradient 8s ease infinite;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: sparkle 10s linear infinite;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.code-screenshot, .app-screenshot {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    max-width: 280px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.code-screenshot:nth-child(1) {
    animation-delay: 0s;
}

.app-screenshot {
    animation-delay: 3s;
    transform: perspective(1000px) rotateY(5deg);
}

.code-screenshot:hover, .app-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@keyframes floatCard {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-10px); }
}

.app-screenshot {
    animation-name: floatCardRight;
}

@keyframes floatCardRight {
    0%, 100% { transform: perspective(1000px) rotateY(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(5deg) translateY(-10px); }
}

.code-header, .app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.code-dots {
    display: flex;
    gap: 5px;
}

.code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.code-title, .app-title {
    font-weight: 600;
    color: #333;
}

.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.code-line {
    margin-bottom: 5px;
}

.code-line.error {
    color: #e74c3c;
}

.keyword {
    color: #3498db;
    font-weight: bold;
}

.function {
    color: #e67e22;
}

.comment {
    color: #95a5a6;
}

.success-item {
    color: #27ae60;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.red-x, .green-check {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.arrow-icon {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

.hero-text h1 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    filter: none;
}

.hero-text .subheadline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    line-height: 1.4;
    max-width: 90%;
    filter: none;
}

.hero-copy {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    line-height: 1.5;
    max-width: 95%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.trust-signal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.guarantee-badge, .urgency-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    color: #333;
    text-shadow: none;
}
.guarantee-badge h3 {
    margin: 0 !important;
    color: navy !important;
}

.urgency-badge {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.split-screen {
    display: flex;
    gap: 20px;
}

.left-side, .right-side {
    flex: 1;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.left-side {
    background: #fef2f2;
    border: 3px solid #fca5a5;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.left-side:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.right-side {
    background: #f0fdf4;
    border: 3px solid #86efac;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.right-side:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.left-side h3,
.right-side h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    width: 100%;
    text-align: center;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-list, .success-list {
    list-style: none;
    margin-top: 20px;
}

.error-item, .success-item {
    margin-bottom: 10px;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.problem-list li {
    padding: 8px 0;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.stat-highlight {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    font-weight: 800;
    color: #92400e;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
    animation: statPulse 4s ease-in-out infinite;
}

.stat-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: statShine 3s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes statShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.01) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.01) 0%, transparent 50%);
    z-index: 1;
}

.solution-copy {
    margin-bottom: 30px;
}

.solution-copy p {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
    align-items: start;
}

.solution-note {
    font-style: italic;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    min-height: 120px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    background: rgba(255, 107, 53, 0.03);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.feature-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
}

.feature-content p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.roadmap-preview {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.roadmap-preview:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.roadmap-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #667eea, #4caf50);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.pdf-header {
    background: #f1f5f9;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.pdf-logo {
    font-size: 1.5rem;
}

.pdf-content {
    padding: 20px;
}

.roadmap-section {
    margin-bottom: 25px;
}

.roadmap-section h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.roadmap-section ul {
    list-style: none;
    padding-left: 0;
}

.roadmap-section li {
    padding: 5px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.roadmap-section li::before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: #ffffff;
}

.social-proof-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #fbbf24;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.testimonial-avatar {
    font-size: 3.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.testimonial:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}

.testimonial-content cite {
    font-weight: 700;
    color: #ff6b35;
    font-size: 0.9rem;
    line-height: 1.4;
}

.company {
    color: #4a5568;
    font-weight: 500;
    font-style: italic;
}

.guarantee {
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8f5e8;
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid #4caf50;
    font-weight: 600;
    color: #2e7d32;
}

.guarantee-badge h3 {
    margin: 0 !important;
}

.guarantee-text p{
    padding: 20px 20px;
    text-align: center;
    font-size: 1.5rem !important;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.5rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.process-note {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.4s ease;
    position: relative;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
    flex-shrink: 0;
}

.step:hover .step-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

.step h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    flex-shrink: 0;
}

.step p {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.step-arrow {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    align-items: center;
}

.process-cta {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border: 3px solid #f97316;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(249, 115, 22, 0.25);
    }
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.discount {
    background: #4caf50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    font-weight: 500;
}

.pricing-cta {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: #374151;
    font-weight: 500;
}

.pricing-note p {
    margin-bottom: 10px;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 100px 0;
    background: #f8fafc;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.checklist-preview {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.checklist-header {
    background: #f1f5f9;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.checklist-icon {
    font-size: 1.5rem;
}

.checklist-items {
    padding: 20px;
}

.checklist-item {
    padding: 8px 0;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
}

/* Lead Form Styles */
.lead-form {
    margin-top: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
    min-height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-privacy {
    font-size: 0.85rem;
    color: #4a5568;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.thank-you-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: successPulse 2s ease-in-out infinite;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

.thank-you-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.4;
}

.next-steps {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.next-steps h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.steps {
    display: grid;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.step-content p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-size: 0.95rem;
}

.upsell-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.upsell-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.upsell-section p {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    line-height: 1.4;
}

.mini-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.mini-testimonials p {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    font-style: italic;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-proof {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.social-proof h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ff8c42;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #ffffff;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.footer-content h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.contact-info p {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-visual {
        flex-direction: column;
        gap: 20px;
        order: 2;
    }
    
    .hero-text {
        order: 1;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text .subheadline {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero-copy {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-screen {
        flex-direction: column;
        gap: 15px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 20px;
        min-height: auto;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .step {
        max-width: 100%;
        min-width: auto;
        min-height: auto;
        padding: 20px 15px;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .cta-container {
        align-items: center;
    }
    
    .trust-signal {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-text .subheadline {
        font-size: 1.1rem;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .hero-copy {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero {
        padding: 50px 0;
        min-height: auto;
    }
    
    .problem, .solution, .social-proof, .process, .pricing, .lead-magnet, .faq {
        padding: 50px 0;
    }
    
    .footer-cta {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .section-content {
        gap: 25px;
    }
    
    .pricing-card, .testimonial {
        padding: 20px;
    }
    
    .feature {
        padding: 15px;
        min-height: auto;
    }
    
    .step {
        padding: 15px;
    }
    
    .code-screenshot, .app-screenshot {
        max-width: 100%;
        padding: 15px;
    }
    
    .split-screen {
        gap: 10px;
    }
    
    .left-side, .right-side {
        padding: 20px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step {
        padding: 15px;
        min-height: auto;
    }
    
    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .step h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 12px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .trust-signal {
        gap: 8px;
    }
    
    .guarantee-badge, .urgency-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
