/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --danger-color: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-warm: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    --gradient-success: linear-gradient(135deg, #11998E 0%, #38EF7D 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: linear-gradient(180deg, #F8FAFC 0%, #E0E7FF 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 60px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.special-badge svg {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.main-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-highlight {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-success);
    border-radius: 2px;
}

.sub-headline {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== BASIC PLAN SECTION ===== */
.basic-plan-section {
    padding: 80px 0;
    background: white;
}

.plan-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.plan-header h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    min-width: 250px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: var(--gradient-success);
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: white;
}

.price-tag .currency {
    font-size: 24px;
    font-weight: 600;
}

.price-tag .amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.price-tag .cents {
    font-size: 24px;
    font-weight: 600;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature.included {
    background: rgba(16, 185, 129, 0.05);
}

.feature.included:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(8px);
}

.feature.not-included {
    background: rgba(148, 163, 184, 0.05);
}

.feature span {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.feature.not-included span {
    color: var(--text-light);
}

.check-icon,
.x-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.empathy-message {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.empathy-message p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.comparison-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.comparison-card.basic-plan-highlight {
    border: 3px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, white 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-medium);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.special {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.comparison-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 16px 0 20px;
    color: var(--text-dark);
}

.comparison-price {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.comparison-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-features svg {
    flex-shrink: 0;
}

.comparison-note {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* ===== EMOTIONAL SECTION ===== */
.emotional-section {
    padding: 80px 0;
    background: white;
}

.emotional-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: 24px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    position: relative;
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 24px;
}

.emotional-text {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    color: var(--text-medium);
}

.emotional-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-primary,
.cta-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-primary::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.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

.cta-primary:active {
    transform: translateY(-2px);
}

.cta-secondary {
    background: white;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.cta-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.cta-text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-subtext {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-header {
        flex-direction: column;
        text-align: center;
    }

    .price-tag {
        padding: 12px 24px;
    }

    .price-tag .amount {
        font-size: 48px;
    }

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

    .emotional-card {
        padding: 32px 24px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 20px 32px;
    }

    .security-badges {
        gap: 16px;
    }

    .badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .logo-container img {
        width: 100px;
        height: 100px;
    }
}

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

    .special-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .feature {
        padding: 12px;
    }

    .feature span {
        font-size: 14px;
    }

    .logo-container img {
        width: 100px;
        height: 100px;
    }

    .logo-placeholder svg,
    .logo-img {
        width: 90px;
        height: 90px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== DYNAMIC ANIMATIONS ===== */

/* Floating Animation for Logo */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-container img {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Pulse Effect for Price Highlight */
@keyframes pulse-text {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.price-highlight {
    display: inline-block;
    animation: pulse-text 2s infinite ease-in-out;
}

/* Shimmer Effect for Primary CTA */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.cta-primary {
    background: linear-gradient(90deg, #10B981, #34D399, #10B981);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

/* Slide In for Features */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature {
    opacity: 0;
    /* Start hidden */
    animation: slideInRight 0.5s ease-out forwards;
}

.feature:nth-child(1) {
    animation-delay: 0.2s;
}

.feature:nth-child(2) {
    animation-delay: 0.4s;
}

.feature:nth-child(3) {
    animation-delay: 0.6s;
}

.feature:nth-child(4) {
    animation-delay: 0.8s;
}

.feature:nth-child(5) {
    animation-delay: 1.0s;
}

/* Bounce for Special Badge Icon */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.special-badge svg {
    animation: bounce 2s infinite;
}