:root {
    --primary: #ff5722;
    /* Vibrant Orange for high contrast CTA */
    --primary-hover: #e64a19;
    --bg-color: #fdfaf6;
    /* Warm light beige background */
    --surface-color: #ffffff;
    /* White cards */
    --surface-alt: #f1ede7;
    /* Slightly darker beige for sections */
    --text-primary: #1e1e24;
    /* Dark text */
    --text-secondary: #5a5a6a;
    /* Medium text */
    --accent: #10b981;
    /* Green for checks and trusted elements */
    --border-radius: 12px;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations - Hardware Accelerated for Speed */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.5);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.pulse-cta {
    animation: pulse-cta 2s infinite ease-in-out;
}

/* Typography & General */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #111;
}

h1 span {
    color: var(--primary);
}

#changing-word {
    display: inline-block;
    position: relative;
    min-height: 1.1em;
    min-width: 4px;
    /* Prevent vertical collapsing when text is fully erased */
}

#changing-word::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 1s step-end infinite;
    color: var(--primary);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #222;
}

h2 span {
    color: var(--primary);
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, #ffffff 0%, var(--bg-color) 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatShape 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 87, 34, 0.12);
    /* Orange */
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.08);
    /* Green */
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 40px) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .badge {
    animation-delay: 0.1s;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.3s;
}

.hero-content .hero-cta-wrapper {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    background: #fff5f0;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.90rem;
    margin-bottom: 1.5rem;
    border: 1.5px solid #ffccba;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    box-shadow: none;
}

.cta-button.outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: none;
}

.cta-outer-bg {
    background-color: #ffe6dd;
    padding: 0.65rem;
    border-radius: 20px;
    display: inline-block;
}

.btn-green {
    background-color: var(--accent);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    background-color: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hero-cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.safe-checkout {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Sections */
section {
    padding: 6rem 0;
}

.problem-section {
    background-color: var(--surface-alt);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.problem-text {
    max-width: 800px;
    margin: 0 auto;
}

.solution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.icon-check {
    background: var(--accent);
    color: #fff;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.benefit-list p {
    margin: 0;
    font-size: 1.1rem;
}

.benefit-list strong {
    color: var(--text-primary);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-color);
    padding: 6rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card.carousel-slide {
    min-width: 100%;
    background: var(--surface-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.author-avatar-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.author-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.author-details span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
    gap: 0.75rem;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-indicator:hover {
    background: rgba(0, 0, 0, 0.2);
}

.carousel-indicator.current-slide {
    background: var(--primary);
    transform: scale(1.2);
}

/* Pricing */
.pricing-section {
    background: var(--bg-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pricing-card.premium {
    background: #ffffff;
    border: 3px solid var(--primary);
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(255, 87, 34, 0.15);
}

.most-popular {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.pricing-card .description {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    flex-grow: 1;
}

.features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: auto;
}

.guarantee-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2.5rem;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    /* Subtle green border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.guarantee-seal {
    width: 220px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.guarantee-text {
    text-align: left;
    flex: 1;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guarantee-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .guarantee-text {
        text-align: center;
    }
}

footer {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--surface-color);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.comparison-card {
    background: var(--surface-alt);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.success {
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.comparison-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
}

.comparison-list li.positive {
    color: var(--text-primary);
}

.comparison-list li.negative {
    color: #ef4444;
}

.comparison-list li.neutral {
    color: var(--text-secondary);
}

.most-popular.comparison-badge {
    top: -15px;
    text-align: center;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        width: 92%;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-container,
    .solution-container,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
        padding-top: 4rem;
    }

    .hero-cta-wrapper {
        align-items: center;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.premium {
        transform: scale(1);
        border-width: 2px;
    }
}