/* ===================================
   CROWDLIFT - PREMIUM GOFUNDME PROMOTION AGENCY
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson-primary: #DC143C;
    --crimson-dark: #B91C1C;
    --crimson-darker: #991B1B;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gray-light: #F3F4F6;
    --gray: #6B7280;
    --gray-dark: #374151;
    --black: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* INTRO ANIMATION OVERLAY */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--crimson-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOutOverlay 0.8s ease-in-out 2.5s forwards;
}

.intro-content {
    text-align: center;
    color: var(--white);
}

.intro-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out 0.3s forwards;
}

.intro-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: clipPathReveal 1s ease-out 1s forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes clipPathReveal {
    to { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes fadeOutOverlay {
    to { opacity: 0; visibility: hidden; }
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--crimson-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover {
    color: var(--crimson-dark);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--crimson-primary); }

.nav-cta {
    background: var(--crimson-primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--crimson-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 35px -5px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* HERO SECTION - SPLIT SCREEN DESIGN */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-split {
    background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--crimson-darker) 100%);
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: calc(85vh - 70px);
    position: relative;
}

.parallax-section { position: relative; }

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--crimson-darker) 100%);
    z-index: -2;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    transform: skewY(-2deg);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.stat-highlight {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* LEFT SIDE - CONTENT */
.hero-left {
    padding: 2.5rem 2rem 2.5rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 550px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out 3s forwards;
    opacity: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title-split {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight-split {
    position: relative;
    display: inline-block;
    color: var(--white);
}

.highlight-split::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.hero-stats-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.stat-compact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
}

.stat-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    color: var(--white);
    font-size: 1.1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number-compact {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label-compact {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.primary-cta-hero {
    background: var(--white);
    color: var(--crimson-primary);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
}

.primary-cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.secondary-cta-hero {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.secondary-cta-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.trust-badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.trust-badge i {
    color: #10B981;
    font-size: 1rem;
}

/* RIGHT SIDE - CAMPAIGN SHOWCASE */
.hero-right {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.campaign-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.campaign-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.campaign-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    animation: fadeInSmooth 0.6s ease-in-out 3.5s forwards;
}

@keyframes fadeInSmooth {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.campaign-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #10B981;
    color: var(--white);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.campaign-details {
    padding: 1.25rem;
}

.campaign-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.85rem;
}

.campaign-progress {
    margin-bottom: 0.85rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background: var(--gray-light);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 50px;
    transition: width 2s ease-out;
    width: 0;
    animation: fillProgress 2s ease-out 4s forwards;
}

@keyframes fillProgress {
    to { width: var(--progress-width); }
}

.campaign-card.active .progress-bar {
    width: 0;
}

.campaign-card.active .progress-bar[data-progress="147"] {
    animation: fillProgress147 2s ease-out 4s forwards;
}

.campaign-card.active .progress-bar[data-progress="128"] {
    animation: fillProgress128 2s ease-out 4s forwards;
}

.campaign-card.active .progress-bar[data-progress="143"] {
    animation: fillProgress143 2s ease-out 4s forwards;
}

@keyframes fillProgress147 {
    to { width: 100%; }
}

@keyframes fillProgress128 {
    to { width: 100%; }
}

@keyframes fillProgress143 {
    to { width: 100%; }
}

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

.progress-amount {
    font-weight: 700;
    color: var(--crimson-primary);
    font-size: 1rem;
}

.progress-percentage {
    font-weight: 800;
    color: var(--crimson-primary);
    font-size: 1.35rem;
}

.campaign-quote {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 0.85rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.campaign-package {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gray-light);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--crimson-primary);
}

.campaign-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 26px;
    border-radius: 50px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* DIAGONAL DIVIDER */
.hero-diagonal-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) skewX(-5deg);
}

/* SOCIAL PROOF TICKER */
.social-proof-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-item i {
    color: #FFA500;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* ANIMATION CLASSES */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 3s forwards;
}

.delay-1 { animation-delay: 3.2s; }
.delay-2 { animation-delay: 3.4s; }
.delay-3 { animation-delay: 3.6s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* CTA BUTTONS */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-cta {
    background: var(--white);
    color: var(--crimson-primary);
    box-shadow: var(--shadow-lg);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.secondary-cta {
    background: var(--crimson-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.secondary-cta:hover {
    background: var(--crimson-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.urgency-cta {
    background: linear-gradient(135deg, #FFA500 0%, #FF6B00 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: urgencyPulse 2s infinite;
}

.urgency-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 30px -5px rgba(255, 107, 0, 0.4);
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
}

.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* VALUE PROPOSITION SECTION */
.value-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson-primary), var(--crimson-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.value-card:hover::before { transform: scaleX(1); }

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* PRICING SECTION */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-header-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

.toggle-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--gray-light);
    overflow: visible;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson-primary), var(--crimson-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
    border-color: var(--crimson-primary);
}

.pricing-card.popular {
    border: 3px solid var(--crimson-primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(220, 20, 60, 0.02) 100%);
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.25);
    min-height: 680px;
}

.pricing-card.popular::before {
    transform: scaleX(1);
    height: 6px;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 45px rgba(220, 20, 60, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.popular-badge i {
    font-size: 0.85rem;
}


.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.premium-badge i {
    font-size: 0.85rem;
}

.urgency-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFA500, #FF6B00);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.urgency-badge i {
    font-size: 0.85rem;
}


.pricing-card.urgency {
    border: 3px solid #FFA500;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), rgba(255, 107, 0, 0.08));
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
    overflow: visible;
}

.pricing-card.urgency::before {
    background: linear-gradient(90deg, #FFA500, #FF6B00);
    transform: scaleX(1);
    height: 6px;
}

.pricing-card.urgency:hover {
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.25);
}

/* PACKAGE ICONS */
.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.package-icon i {
    font-size: 2rem;
    color: var(--white);
}

.package-icon.featured {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-darker));
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4);
}

.package-icon.featured i {
    font-size: 2.5rem;
}

.package-icon.urgency-icon {
    background: linear-gradient(135deg, #FFA500, #FF6B00);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.pricing-card:hover .package-icon {
    transform: scale(1.05) rotate(3deg);
}

.pricing-card.popular:hover .package-icon.featured {
    transform: scale(1.08) rotate(-3deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--crimson-primary);
}

.package-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--crimson-primary);
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--crimson-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-darker));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF6B00;
    text-align: center;
    background: linear-gradient(135deg, #FFA500, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* PACKAGE HIGHLIGHTS */
.package-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gray-light);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.package-highlight i {
    color: var(--crimson-primary);
    font-size: 0.9rem;
}

.package-highlight.featured {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.15));
    color: var(--crimson-dark);
}

.package-highlight.featured i {
    color: var(--crimson-primary);
}

.package-highlight.premium {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.15));
    color: #6366F1;
}

.package-highlight.premium i {
    color: #8B5CF6;
}

.package-highlight.urgency-highlight {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 107, 0, 0.2));
    color: #FF6B00;
}

.package-highlight.urgency-highlight i {
    color: #FFA500;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.65rem 0;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.features-list li:hover {
    padding-left: 0.5rem;
    color: var(--black);
}

.features-list li strong {
    color: var(--black);
    font-weight: 600;
}

.features-list i {
    color: var(--crimson-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.features-list li:hover i {
    transform: scale(1.2);
}

/* PACKAGE STATS */
.package-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--crimson-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-stats.urgency-stats {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 107, 0, 0.1));
}

.urgency-stats .stat-value {
    color: #FF6B00;
}

.pricing-card .cta-button {
    width: 100%;
    justify-content: center;
}

.package-cta {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}


.package-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4);
}

.package-cta span,
.package-cta i {
    position: relative;
    z-index: 1;
}

.package-cta.featured {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-darker));
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4);
}

.package-cta.featured:hover {
    box-shadow: 0 20px 45px rgba(220, 20, 60, 0.5);
}

.package-cta.urgency-cta {
    background: linear-gradient(135deg, #FFA500, #FF6B00);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.package-cta.urgency-cta:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.5);
}

/* POPULAR RIBBON */
.popular-ribbon {
    position: absolute;
    bottom: 1.5rem;
    right: -2.8rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    padding: 0.5rem 3.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(-45deg);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

/* SUCCESS STORIES SECTION */
.success-section {
    padding: 6rem 0;
    position: relative;
    min-height: 600px;
}

.success-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1920&h=1080&fit=crop') center/cover;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.1);
    z-index: 0;
}

.success-section .section-title,
.success-section .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.success-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    cursor: pointer;
}

.success-card.clickable:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.success-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.success-card:hover .success-image img {
    transform: scale(1.1);
}

.success-overlay-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.success-card:hover .success-overlay-card {
    opacity: 1;
}

.success-overlay-card i {
    font-size: 3rem;
    color: var(--white);
}

.success-content {
    padding: 2rem;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.success-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 10px;
}

.success-stats .stat {
    display: flex;
    flex-direction: column;
}

.success-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.success-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.success-amount {
    color: var(--crimson-primary) !important;
}

.success-content p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-tag {
    display: inline-block;
    background: var(--crimson-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* PROCESS INDICATOR */
.process-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    position: relative;
}

.indicator-line {
    position: absolute;
    width: 300px;
    height: 2px;
    background: var(--gray-light);
    z-index: 0;
}

.indicator-dots {
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.indicator-dot {
    width: 16px;
    height: 16px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.indicator-dot::after {
    content: attr(data-step);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    opacity: 0;
    transition: all 0.3s ease;
}

.indicator-dot:hover::after {
    opacity: 1;
}

.indicator-dot.active {
    background: var(--crimson-primary);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.2);
    transform: scale(1.3);
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.process-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--gray-light);
    overflow: visible;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(220, 20, 60, 0.02));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
    border-color: var(--crimson-primary);
}

/* PROCESS NUMBER */
.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    z-index: 2;
}

.process-number span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(5deg);
}

/* PROCESS ICON */
.process-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.process-icon.success {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.icon-glow.success-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}

.process-card:hover .process-icon {
    transform: scale(1.08) rotate(5deg);
}

/* PROCESS CONTENT */
.process-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* PROCESS FEATURES */
.process-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-features li:hover {
    background: rgba(220, 20, 60, 0.1);
    padding-left: 1rem;
}

.process-features li i {
    color: var(--crimson-primary);
    font-size: 0.85rem;
}

/* PROCESS ARROW */
.process-arrow {
    position: absolute;
    top: 50%;
    right: -2.5rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.process-arrow i {
    color: var(--crimson-primary);
    font-size: 1.25rem;
}

.process-card:last-child .process-arrow {
    display: none;
}

/* PROCESS SUCCESS BADGE */
.process-success-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.process-success-badge i {
    font-size: 1rem;
}

/* PROCESS CTA */
.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-darker));
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-box .cta-button {
    position: relative;
    z-index: 1;
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--crimson-primary) 0%, var(--crimson-darker) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 1.5rem;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--crimson-primary);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--crimson-primary);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--crimson-primary);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--crimson-primary);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--crimson-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-title-split { font-size: 2.5rem; }
    .section-title { font-size: 2.5rem; }
    
    .hero-split-container {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 3rem 2rem;
    }
    
    .hero-right {
        padding: 2rem;
        min-height: 500px;
    }
    
    .hero-diagonal-divider {
        display: none;
    }
    
    .hero-stats-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        min-height: auto;
        margin-top: 25px;
    }
    
    .pricing-card.popular:hover {
        transform: scale(1) translateY(-6px);
    }
}

@media (max-width: 768px) {
    .nav-menu { 
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active { left: 0; }
    
    .mobile-toggle { display: flex; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-title-split { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
    
    .hero-left {
        padding: 2rem 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-compact {
        grid-template-columns: 1fr;
    }
    
    .stat-number-compact {
        font-size: 1.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .primary-cta-hero,
    .secondary-cta-hero {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-right {
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .campaign-showcase {
        max-width: 100%;
    }
    
    .campaign-image {
        height: 200px;
    }
    
    .social-proof-ticker {
        padding: 0.75rem 0;
    }
    
    .ticker-item {
        font-size: 0.85rem;
    }
    
    .cta-buttons { flex-direction: column; }
    .cta-button.large { width: 100%; }
    
    .pricing-section { padding: 4rem 0; }
    
    .pricing-header-section { margin-bottom: 3rem; }
    
    .pricing-toggle {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .toggle-label {
        font-size: 0.8rem;
    }
    
    .pricing-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }
    
    .pricing-card {
        min-height: auto;
    }
    
    .pricing-card.popular {
        min-height: auto;
    }
    
    .pricing-card { 
        padding: 1.5rem; 
    }
    
    .pricing-card.popular { 
        transform: scale(1); 
        margin-top: 0;
    }
    
    .pricing-card.popular:hover {
        transform: scale(1) translateY(-8px);
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
    }
    
    .package-icon i {
        font-size: 1.75rem;
    }
    
    .package-icon.featured {
        width: 70px;
        height: 70px;
    }
    
    .package-icon.featured i {
        font-size: 2rem;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .contact-price {
        font-size: 1.25rem;
    }
    
    .package-highlight {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .package-stats {
        padding: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .package-cta {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .package-cta.featured {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .popular-badge,
    .premium-badge,
    .urgency-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
        top: -12px;
    }
    
    .popular-ribbon {
        display: none;
    }
    
    .process-indicator {
        display: none;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .process-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .process-content h3 {
        font-size: 1.35rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
    
    .process-features li {
        font-size: 0.85rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .value-grid { grid-template-columns: 1fr; }
    
    .trust-indicators { flex-direction: column; gap: 1.5rem; }
    
    .footer-content { grid-template-columns: 1fr; }
}
