/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Albert Sans', sans-serif;
    color: #2D2D2D;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Urgency Banner */
.urgency-banner {
    background-color: #FF9E0D;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 101;
    box-shadow: 0 2px 10px rgba(255, 158, 13, 0.3);
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        background-color: #FF9E0D;
    }
    50% {
        background-color: #FFB84D;
    }
}

.urgency-text {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(91, 9, 155, 0.1);
    position: sticky;
    top: 48px;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5B099B;
}

.nav-cta {
    background-color: #FF9E0D;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: #FFB84D;
    color: #FFFFFF;
}

.logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(91, 9, 155, 0.2));
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(91, 9, 155, 0.3));
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3E5F5 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-overline {
    font-size: 14px;
    font-weight: 600;
    color: #5B099B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0;
    animation: slideUpFade 0.8s ease 0.2s forwards;
}

.hero-headline {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: #2D2D2D;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    opacity: 0;
    animation: slideUpFade 0.8s ease 0.4s forwards;
}

.hero-subheadline {
    font-size: clamp(20px, 2.8vw, 28px);
    color: #2D2D2D;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 600;
    opacity: 0;
    animation: slideUpFade 0.8s ease 0.6s forwards;
}

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

.benefit-ticker {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUpFade 0.8s ease 0.8s forwards;
}

.benefit-item {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.arrow-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-button {
    background-color: #FF9E0D;
    color: #FFFFFF;
    border: none;
    padding: 24px 52px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Albert Sans', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(255, 158, 13, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 158, 13, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 158, 13, 0.6);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 158, 13, 0.6);
    background-color: #FFB84D;
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-svg,
.mockup-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(91, 9, 155, 0.2));
    transform: rotate(-8deg);
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(91, 9, 155, 0.3);
    border-radius: 20px;
}

.mockup-svg:hover,
.mockup-image:hover {
    transform: rotate(-8deg) scale(1.05);
}

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

/* Offer Banner */
.offer-banner {
    background-color: #F3E5F5;
    padding: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 158, 13, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-text {
    font-size: 18px;
    font-weight: 600;
    color: #5B099B;
    margin: 0;
    position: relative;
    z-index: 1;
    animation: pulse-text 2s ease-in-out infinite;
}

.counter-highlight {
    color: #FF9E0D;
    font-weight: 700;
    font-size: 20px;
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Social Proof Strip */
.social-proof-strip {
    padding: 30px 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(91, 9, 155, 0.1);
    border-bottom: 1px solid rgba(91, 9, 155, 0.1);
}

.social-proof-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.avatar-group {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    background: linear-gradient(135deg, #5B099B 0%, #FF9E0D 100%);
    margin-left: -12px;
    position: relative;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 { background: linear-gradient(135deg, #5B099B 0%, #7B3FA0 100%); }
.avatar-2 { background: linear-gradient(135deg, #FF9E0D 0%, #FFB84D 100%); }
.avatar-3 { background: linear-gradient(135deg, #E1306C 0%, #F56040 100%); }
.avatar-4 { background: linear-gradient(135deg, #5B099B 0%, #7B3FA0 100%); }
.avatar-5 { background: linear-gradient(135deg, #FF9E0D 0%, #FFB84D 100%); }
.avatar-6 { background: linear-gradient(135deg, #E1306C 0%, #F56040 100%); }

.social-proof-text {
    font-size: 16px;
    color: #2D2D2D;
    font-weight: 500;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: #F3E5F5;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 60px auto 0;
}

.comparison-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(91, 9, 155, 0.1);
}

.comparison-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.comparison-item p {
    font-size: 18px;
    color: #2D2D2D;
    margin: 0;
    font-weight: 500;
}

.old-way .comparison-item {
    border-left: 4px solid #E0E0E0;
}

.new-way .comparison-item {
    border-left: 4px solid #5B099B;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #FFFFFF 0%, #F3E5F5 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(91, 9, 155, 0.15);
    border-color: #5B099B;
}

.feature-icon {
    margin-bottom: 24px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #2D2D2D;
    opacity: 0.8;
    line-height: 1.6;
}

/* See It In Action */
.see-in-action {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.action-description {
    font-size: 24px;
    font-weight: 600;
    color: #5B099B;
    text-align: center;
    margin-bottom: 50px;
}

.action-phones-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    padding: 40px 20px;
    overflow-x: auto;
}

.phone-mockup-horizontal {
    width: 320px;
    height: auto;
    flex-shrink: 0;
}

.phone-svg,
.action-phone-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(91, 9, 155, 0.25));
    transition: transform 0.3s ease;
    border-radius: 0;
    background: transparent;
}

.phone-mockup-horizontal:hover .phone-svg,
.phone-mockup-horizontal:hover .action-phone-image {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 45px rgba(91, 9, 155, 0.35));
}

.arrow-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    flex-shrink: 0;
}

.arrow-right svg {
    width: 40px;
    height: 40px;
}

.action-details {
    font-size: 18px;
    color: #2D2D2D;
    line-height: 1.6;
    opacity: 0.9;
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background-color: #F3E5F5;
    position: relative;
    overflow: hidden;
}

.pain-points-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300"><rect fill="%23F3E5F5"/><text x="50%25" y="50%25" text-anchor="middle" fill="%235B099B" opacity="0.05" font-size="100" font-family="Arial">✂️</text></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.pain-points .container {
    position: relative;
    z-index: 1;
}

.section-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    color: #2D2D2D;
    margin-bottom: 60px;
    line-height: 1.3;
}

.pain-points-list {
    max-width: 700px;
    margin: 0 auto;
}

.pain-point-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
}

.pain-point-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #5B099B;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pain-point-item:hover::after {
    transform: scaleY(1);
}

.pain-point-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(91, 9, 155, 0.15);
    border-left-color: #5B099B;
}

.checkmark {
    flex-shrink: 0;
    animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pain-point-item p {
    font-size: 18px;
    color: #2D2D2D;
    margin: 0;
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3E5F5 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M20 20 L40 20 L30 40 Z" fill="%235B099B" opacity="0.05"/><path d="M60 60 L80 60 L70 80 Z" fill="%23FF9E0D" opacity="0.05"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><circle cx="60" cy="60" r="40" fill="none" stroke="%235B099B" stroke-width="2" opacity="0.08"/></svg>');
    background-size: 300px 300px, 200px 200px;
    background-position: top left, bottom right;
    opacity: 0.4;
    z-index: 0;
}

.social-proof::after {
    content: '✂️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 80px;
    opacity: 0.05;
    z-index: 0;
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .social-proof::after {
        font-size: 60px;
        top: 5%;
        right: 2%;
    }
}

.social-proof .container {
    position: relative;
    z-index: 1;
}

.social-proof-subhead {
    text-align: center;
    font-size: 20px;
    color: #5B099B;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 20px;
}

.testimonials-carousel-wrapper {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3E5F5 100%);
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: #5B099B;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background-color: #5B099B;
    color: #FFFFFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.carousel-btn:hover {
    background-color: #7B3FA0;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D0D0D0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #5B099B;
    transform: scale(1.2);
}


.quote-icon-small {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.4;
}

.testimonial-text-small {
    font-size: 16px;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 10px;
    font-style: normal;
}

.testimonial-author-small {
    font-size: 15px;
    color: #5B099B;
    font-weight: 600;
    margin: 0;
}

/* Example Posts */
.example-posts {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.post-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5B099B;
    font-weight: 600;
    margin-bottom: 50px;
}

.example-promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.promo-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.promo-full-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(91, 9, 155, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-full-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(91, 9, 155, 0.25);
}

.promo-caption {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    color: #5B099B;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
}

.post-mockup {
    transition: transform 0.3s ease;
}

.post-mockup:hover {
    transform: translateY(-10px);
}

.post-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91, 9, 155, 0.1);
    border: 1px solid rgba(91, 9, 155, 0.1);
    transition: all 0.3s ease;
}

.post-mockup:hover .post-card {
    box-shadow: 0 8px 30px rgba(91, 9, 155, 0.2);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #5B099B 0%, #7B3FA0 100%);
    color: #FFFFFF;
}

.post-icon {
    font-size: 24px;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Albert Sans', sans-serif;
}

.post-image-placeholder {
    width: 100%;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, #F3E5F5 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-1 {
    background: linear-gradient(135deg, #FF9E0D 0%, #FFB84D 100%);
}

.post-2 {
    background: linear-gradient(135deg, #5B099B 0%, #7B3FA0 100%);
}

.post-3 {
    background: linear-gradient(135deg, #E1306C 0%, #F56040 100%);
}

.post-overlay {
    text-align: center;
    color: #FFFFFF;
}

.post-discount {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.post-subtitle {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.95;
}

.post-footer {
    padding: 20px;
    background-color: #F9F9F9;
    text-align: center;
}

.post-caption {
    font-size: 14px;
    color: #5B099B;
    font-weight: 500;
    margin: 0;
}

/* Email Capture Form */
.email-capture {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3E5F5 100%);
}

.form-counter-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.form-counter-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF9E0D 0%, #FFB84D 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 158, 13, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    font-weight: 600;
    width: fit-content;
}

.counter-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.counter-text {
    font-size: 16px;
    font-weight: 600;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 158, 13, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 158, 13, 0.4);
    }
}

.form-headline {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    color: #2D2D2D;
    margin-bottom: 40px;
}

.form-visual-comparison {
    margin-bottom: 40px;
}

.comparison-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-image {
    flex: 0 0 auto;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stressed-placeholder {
    filter: grayscale(0.7) brightness(0.9);
    opacity: 0.8;
}

.happy-placeholder {
    filter: brightness(1.1);
}

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow-text {
    font-size: 14px;
    color: #5B099B;
    font-weight: 600;
    margin: 0;
}

.exit-intent-text {
    text-align: center;
    font-size: 14px;
    color: #5B099B;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.signup-form input,
.signup-form textarea {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    font-family: 'Albert Sans', sans-serif;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background-color: #FFFFFF;
    color: #2D2D2D;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    position: relative;
}

.signup-form input:focus,
.signup-form textarea:focus {
    border-color: #5B099B;
    box-shadow: 0 0 0 4px rgba(91, 9, 155, 0.15), 0 4px 12px rgba(91, 9, 155, 0.1);
    transform: translateY(-3px);
    background-color: #FFFFFF;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
    color: #999;
    transition: opacity 0.3s ease;
}

.signup-form input:focus::placeholder,
.signup-form textarea:focus::placeholder {
    opacity: 0.5;
}

.signup-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background-color: #FF9E0D;
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Albert Sans', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 158, 13, 0.3);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 158, 13, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #2D2D2D;
    opacity: 0.7;
    margin-top: 16px;
}

.form-success {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: #2D2D2D;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 10px;
}

.logo-small {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 158, 13, 0.3));
}

.logo-small:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(255, 158, 13, 0.5));
}

.footer p {
    margin: 0;
}

.footer-text {
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer a {
    color: #FF9E0D;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: #FFB84D;
}

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

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

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

.fade-in.visible,
.fade-in-delay.visible,
.fade-in-delay-2.visible,
.fade-in-delay-3.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .mockup-svg,
    .mockup-image {
        max-width: 320px;
        height: auto;
        transform: rotate(-5deg);
    }

    .mockup-svg:hover,
    .mockup-image:hover {
        transform: rotate(-5deg) scale(1.05);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .pain-point-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pain-point-item:hover {
        transform: translateY(-5px);
    }

    .header-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 14px;
    }

    .action-phones-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .phone-mockup-horizontal {
        width: 300px;
        max-width: 90%;
        margin: 0 auto;
    }

    .arrow-right {
        transform: rotate(90deg);
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }

    .arrow-right svg {
        width: 35px;
        height: 35px;
    }

    .example-promos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-example {
        gap: 15px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .form-counter-wrapper {
        margin-bottom: 25px;
    }

    .form-counter-badge {
        padding: 10px 20px;
    }

    .counter-number {
        font-size: 24px;
    }

    .counter-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .cta-button,
    .submit-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .how-it-works,
    .pain-points,
    .social-proof,
    .email-capture {
        padding: 60px 0;
    }

    .urgency-banner {
        padding: 10px 0;
    }

    .urgency-text {
        font-size: 14px;
    }

    .site-header {
        padding: 15px 0;
        top: 40px;
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    .hero-overline {
        font-size: 12px;
    }

    .benefit-ticker {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .social-proof-strip .container {
        flex-direction: column;
        gap: 15px;
    }

    .avatar-group {
        margin-right: 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-image-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .image-placeholder {
        width: 150px;
        height: 150px;
    }

    .logo-small {
        width: 60px;
        height: 60px;
    }
}

