/* Scooper Landing Page Specific Styles */

/* Animated elements */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 168, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 168, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 168, 38, 0);
    }
}

@keyframes shake {
    0%, 100% {transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
    20%, 40%, 60%, 80% {transform: translateX(5px);}
}

@keyframes count-up {
    from {
        content: "0";
    }
    to {
        content: attr(data-count);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Hero section enhancements */
.hero {
    background: linear-gradient(135deg, var(--light) 0%, #e8f1fe 100%);
    padding: var(--space-89) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="20" height="20" opacity="0.05"><circle cx="50" cy="50" r="5" fill="%234A8FE7"/></svg>');
    transform: rotate(30deg);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(74, 143, 231, 0.1);
    color: var(--primary);
    padding: var(--space-8) var(--space-13);
    border-radius: var(--radius-large);
    font-weight: 600;
    margin-bottom: var(--space-21);
    gap: var(--space-8);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.animated-headline {
    font-size: var(--font-size-4xl);
    line-height: 1.2;
    margin-bottom: var(--space-21);
    transition: transform var(--transition-medium);
}

.highlight-text {
    color: var(--primary);
    font-weight: 800;
    position: relative;
    white-space: nowrap;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: skewX(-15deg);
}

.hero-benefits {
    list-style: none;
    margin: var(--space-34) 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-13);
    margin-bottom: var(--space-13);
    font-size: var(--font-size-large);
    font-weight: 500;
}

.hero-benefits i {
    color: var(--secondary);
    font-size: var(--font-size-large);
}

.animated-button {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    animation: highlight-pulse 2s infinite;
}

.animated-button:hover {
    transform: translateY(-3px) scale(1.05) !important;
}

.animated-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s;
}

.animated-button:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all var(--transition-medium);
    border: 3px solid white;
    width: 100%;
    height: auto;
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.income-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-large);
    padding: var(--space-13) var(--space-21);
    display: flex;
    align-items: center;
    gap: var(--space-13);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.income-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(52, 199, 89, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: var(--font-size-xl);
}

.income-value {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--secondary-dark);
}

.income-label {
    font-size: var(--font-size-small);
    color: var(--gray);
}

.floating-badge {
    position: absolute;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-large);
    padding: var(--space-8) var(--space-13);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-weight: 600;
    z-index: 2;
}

.floating-badge.top {
    top: 20px;
    left: -20px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-badge.bottom {
    bottom: 30px;
    left: 20px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-badge i {
    color: var(--primary);
}

/* Proof bar */
.proof-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: var(--space-34) 0;
}

.proof-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-34);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-13);
}

.proof-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
}

.proof-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
}

.proof-text {
    font-size: var(--font-size-body);
    opacity: 0.9;
}

/* How it works section enhancements */
.animated-icon {
    transition: transform 0.5s;
}

.step:hover .animated-icon {
    transform: scale(1.3);
    color: var(--accent);
}

/* Earnings section */
.earnings-section {
    padding: var(--space-89) 0;
    background-color: var(--light);
}

.earnings-cards {
    display: flex;
    gap: var(--space-34);
    margin-bottom: var(--space-55);
}

.earnings-card {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-large);
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
}

.earnings-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.earnings-card.featured {
    border: 3px solid var(--primary);
}

.earnings-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--space-21);
    display: flex;
    align-items: center;
    gap: var(--space-13);
}

.earnings-card.featured .earnings-header {
    background-color: var(--primary);
}

.earnings-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-large);
}

.earnings-header h3 {
    margin: 0;
    color: var(--white);
}

.earnings-details {
    padding: var(--space-21);
}

.earnings-stat {
    display: flex;
    justify-content: space-between;
    padding: var(--space-13) 0;
    border-bottom: 1px solid var(--light);
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    color: var(--dark);
}

.earnings-stat.highlight {
    background-color: rgba(74, 143, 231, 0.1);
    margin: var(--space-13) -var(--space-21);
    padding: var(--space-13) var(--space-21);
    border-bottom: none;
}

.earnings-stat.highlight .stat-value {
    color: var(--primary);
    font-size: var(--font-size-large);
    font-weight: 800;
}

.earnings-footer {
    padding: var(--space-21);
    background-color: var(--light);
    font-size: var(--font-size-small);
    text-align: center;
}

.earnings-footer p {
    margin: 0;
}

.earnings-note {
    display: flex;
    align-items: center;
    gap: var(--space-13);
    background-color: rgba(74, 143, 231, 0.1);
    padding: var(--space-13) var(--space-21);
    border-radius: var(--radius-large);
    max-width: 800px;
    margin: 0 auto;
}

.earnings-note i {
    color: var(--primary);
    font-size: var(--font-size-large);
}

.earnings-note p {
    margin: 0;
    font-size: var(--font-size-small);
    color: var(--gray-dark);
}

/* Calculator section */
.calculator-section {
    background-color: var(--lighter);
    padding: var(--space-34) 0;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('images/money-pattern.svg');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.calculator-section h2 {
    text-align: center;
    margin-bottom: var(--space-34);
}

.calculator-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-21);
    background-color: white;
    border-radius: var(--radius-large);
    padding: var(--space-34);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-columns {
    display: flex;
    justify-content: space-between;
    gap: var(--space-21);
    width: 100%;
}

.calculator-column {
    flex: 1;
    min-width: 200px;
}

/* New calculator row styling for compact layout */
.calculator-row {
    display: flex;
    gap: var(--space-13);
    margin-bottom: var(--space-13);
}

.calculator-row .form-group {
    flex: 1;
    min-width: 0; /* Allow flex items to shrink below content size */
}

.calculator-row .form-group label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Make form groups in rows more compact */
.calculator-row .form-group {
    margin-bottom: var(--space-8);
}

.calculator-row input[type="number"] {
    padding-right: 45px; /* Make sure the icons don't overlap with spinner controls */
}

.calculator-column .section-header {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-size-large);
    margin-bottom: var(--space-13);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--lighter);
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.calculator-column .section-header i {
    color: var(--primary);
    font-size: var(--font-size-xl);
    opacity: 0.8;
}

.form-group {
    position: relative;
    margin-bottom: var(--space-21);
    transition: all var(--transition-fast);
}

.form-group:hover {
    transform: translateY(-2px);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-5);
    color: var(--dark);
    font-size: var(--font-size-small);
    transition: color 0.3s ease;
}

.form-group:hover label {
    color: var(--primary);
}

.form-group input {
    width: 100%;
    padding: var(--space-8) var(--space-13);
    border: 2px solid var(--light);
    border-radius: var(--radius-medium);
    font-size: var(--font-size-body);
    background-color: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    outline: none;
}

/* Form group icons */
.time-input::before,
.days-input::before,
.minutes-input::before, 
.subscription-input::before,
.percentage-input::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 32px;
    right: 25px; /* Move icons much further left to avoid overlap */
    color: var(--secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.form-group:hover::before {
    opacity: 1;
}

.time-input::before {
    content: '\f017'; /* clock */
}

.days-input::before {
    content: '\f783'; /* calendar-day */
}

.minutes-input::before {
    content: '\f252'; /* hourglass */
}

.subscription-input::before {
    content: '\f155'; /* dollar-sign */
}

.percentage-input::before {
    content: '\f541'; /* percent */
}

/* Tooltip position adjustment */
.tooltip-container .info-icon {
    margin-left: 5px;
    position: relative;
    z-index: 5; /* Ensure icons are above inputs */
}

.tooltip-container .tooltip-text {
    right: 45px; /* Adjust tooltip position as well */
}

.calculate-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: var(--space-21);
}

.calculate-btn {
    padding: var(--space-13) var(--space-34);
    font-size: var(--font-size-large);
    font-weight: 700;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    transition: all 0.3s ease;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    border: none;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.4);
}

.calculate-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.calculate-btn i {
    font-size: var(--font-size-large);
}

/* Results styling */
#results {
    margin-top: var(--space-21);
    opacity: 0;
    transform: translateY(10px);
    animation: fade-in 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    text-align: center;
    margin-bottom: var(--space-21);
}

.results-header h3 {
    color: var(--dark);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.income-result {
    background-image: linear-gradient(135deg, #21a179 0%, #13614a 100%);
    color: white;
    padding: var(--space-21);
    border-radius: var(--radius-large);
    text-align: center;
    margin-bottom: var(--space-21);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.income-result::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.income-result::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.income-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.income-value::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.animate-income {
    animation: pulse 2s infinite;
}

.income-label {
    font-size: var(--font-size-large);
    opacity: 0.9;
    font-weight: 500;
}

.yearly-income {
    font-size: var(--font-size-body);
    opacity: 0.7;
    margin-top: var(--space-8);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-21);
    margin-bottom: var(--space-21);
}

.result-card {
    background-color: white;
    border-radius: var(--radius-medium);
    padding: var(--space-21);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--lighter);
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-13);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--lighter);
}

.result-card-header i {
    color: var(--secondary);
    font-size: var(--font-size-large);
}

.result-card-header h4 {
    color: var(--dark);
    font-size: var(--font-size-large);
    font-weight: 700;
    margin: 0;
}

.time-stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-stat-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-8) 0;
    border-bottom: 1px dashed var(--lighter);
}

.time-stat-item:last-child {
    border-bottom: none;
}

.time-stat-label {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    color: var(--dark);
    font-size: var(--font-size-small);
}

.time-stat-label i {
    color: var(--secondary);
    opacity: 0.7;
}

.time-stat-value {
    font-weight: 700;
    color: var(--dark);
}

.time-stat-value.highlight {
    color: var(--primary);
    position: relative;
}

.capacity-highlight {
    margin-top: var(--space-13);
    padding: var(--space-13);
    background-color: var(--secondary-lighter);
    border-radius: var(--radius-medium);
    text-align: center;
}

.hourly-rate {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--secondary);
}

.hourly-rate-label {
    font-size: var(--font-size-small);
    color: var(--secondary);
    opacity: 0.8;
}

.results-footer {
    text-align: center;
    margin-top: var(--space-21);
    padding-top: var(--space-21);
    border-top: 1px solid var(--lighter);
}

.results-cta {
    font-weight: 700;
    font-size: var(--font-size-large);
    margin-bottom: var(--space-13);
    color: var(--dark);
}

.results-cta span {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .calculator-columns {
        flex-direction: column;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        padding: var(--space-21);
    }
    
    .income-value {
        font-size: var(--font-size-2xl);
    }

    /* Make calculator rows stack on smaller screens */
    .calculator-row {
        flex-direction: column;
        gap: var(--space-13);
    }
    
    .calculator-row .form-group {
        width: 100%;
    }
}

/* Additional mobile refinements */
@media (max-width: 576px) {
    .form-group label {
        font-size: 13px;
    }
    
    .calculate-btn {
        width: 100%;
        justify-content: center;
    }
    
    .time-stat-label {
        font-size: 12px;
    }
    
    .time-stat-value {
        font-size: 14px;
    }
    
    .hourly-rate {
        font-size: var(--font-size-large);
    }
    
    .income-result {
        padding: var(--space-13);
    }
    
    .results-cta {
        font-size: var(--font-size-body);
    }
    
    .results-footer .btn {
        width: 100%;
    }
}

/* Create a money pattern SVG as a background element */
@keyframes float-money {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* CTA section enhancements */
.early-bird-offer {
    background-color: rgba(249, 168, 38, 0.1);
    border-radius: var(--radius-large);
    padding: var(--space-21);
    margin: var(--space-21) auto;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--white);
    padding: var(--space-5) var(--space-13);
    border-radius: var(--radius-medium);
    font-weight: bold;
    font-size: var(--font-size-small);
}

.offer-badge::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--accent);
}

.early-bird-offer p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.pulse-button {
    animation: pulse 1.5s infinite;
}

/* Final CTA section */
.final-cta {
    padding: var(--space-89) 0;
    background-color: var(--light);
}

.cta-card {
    background-color: var(--white);
    border-radius: var(--radius-large);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: var(--space-34);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
    background-size: 300% 100%;
    animation: gradient-move 6s linear infinite;
}

@keyframes gradient-move {
    0% {background-position: 0% 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0% 50%}
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-13);
    margin: var(--space-34) 0;
}

.timer-item {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--space-13);
    border-radius: var(--radius-medium);
    min-width: 80px;
}

.timer-value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: var(--font-size-small);
    opacity: 0.8;
}

.spots-left {
    margin-top: var(--space-21);
    color: var(--accent);
    font-size: var(--font-size-body);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .earnings-cards {
        flex-direction: column;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .hero-badge {
        font-size: var(--font-size-small);
    }
    
    .animated-headline {
        font-size: var(--font-size-3xl);
    }
    
    .proof-items {
        flex-direction: column;
        gap: var(--space-21);
        align-items: center;
    }
}

/* Counter animation */
.counter {
    display: inline-block;
    animation: countUp 2s forwards ease-out;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip styling */
.tooltip-container {
    position: relative;
}

.info-icon {
    font-size: 12px;
    color: var(--primary);
    margin-left: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tooltip-container:hover .info-icon {
    opacity: 1;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark);
    color: white;
    text-align: center;
    border-radius: var(--radius-medium);
    padding: 8px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark) transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 0.95;
}

@media (max-width: 480px) {
    .tooltip-text {
        width: 160px;
        left: auto;
        right: 0;
        transform: none;
    }
    
    .tooltip-text::after {
        left: 85%;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: var(--space-34) 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e6f0ff 100%);
    position: relative;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a8fe7' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--light);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--space-13) var(--space-21);
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    font-weight: 700;
}

.pricing-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-8);
}

.pricing-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
}

.pricing-unit {
    font-size: var(--font-size-body);
    opacity: 0.9;
}

.pricing-scale {
    font-size: var(--font-size-small);
    opacity: 0.8;
    margin-bottom: 0;
    margin-top: var(--space-5);
}

.pricing-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-5) var(--space-13);
    border-radius: var(--radius-medium);
    font-weight: 600;
    display: inline-block;
    margin-top: var(--space-5);
    font-size: var(--font-size-small);
}

.pricing-content {
    padding: var(--space-21);
}

.pricing-features-container {
    display: flex;
    gap: var(--space-13);
    margin-bottom: var(--space-13);
}

.pricing-features-column {
    flex: 1;
}

.pricing-content h4 {
    color: var(--dark);
    font-size: var(--font-size-body);
    margin-bottom: var(--space-13);
    text-align: center;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-13);
}

.mt-0 {
    margin-top: 34px; /* Align with the first column that has a heading */
}

.pricing-features li,
.pricing-not-included li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--light);
    font-size: var(--font-size-small);
}

.pricing-features li:last-child,
.pricing-not-included li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-features i,
.pricing-not-included i {
    margin-right: var(--space-8);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features i {
    color: var(--secondary);
}

.pricing-not-included i {
    color: #E53E3E;
}

.pricing-features span,
.pricing-not-included span {
    font-weight: 600;
}

.pricing-not-included {
    list-style: none;
    margin-bottom: var(--space-13);
    background-color: var(--lighter);
    padding: var(--space-13);
    border-radius: var(--radius-medium);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.pricing-not-included li {
    flex: 1;
    min-width: 180px;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: var(--space-13);
}

.pricing-footer p {
    font-size: var(--font-size-body);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-13);
}

.pricing-footer .btn {
    padding: var(--space-8) var(--space-21);
    font-size: var(--font-size-body);
}

/* Animated Star Discount Label */
@keyframes star-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8); }
    100% { box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5); }
}

.pricing-label-container {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 10;
    overflow: visible;
}

.pricing-label-star {
    width: 100px;
    height: 100px;
    background: #FF5722;
    position: relative;
    text-align: center;
    transform: rotate(20deg);
    animation: star-pulse 2s ease-in-out infinite;
}

.pricing-label-star:before, .pricing-label-star:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF5722;
}

.pricing-label-star:before {
    transform: rotate(30deg);
}

.pricing-label-star:after {
    transform: rotate(60deg);
}

.star-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 50%;
    background: #FF5722;
    box-shadow: 0 0 10px 3px rgba(255, 87, 34, 0.3);
    animation: pulse-glow 2s infinite;
}

.star-content span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.star-content .blink {
    animation: blink 1.5s infinite;
    font-weight: 800;
}

/* Original pricing label styles can be removed */
.pricing-label {
    display: none;
}

.pricing-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: var(--font-size-body);
    color: #F5A623;
    display: block;
    margin-bottom: 5px;
    font-weight: 800;
}

.pricing-limited {
    font-size: var(--font-size-small);
    color: var(--secondary-dark);
    background-color: var(--secondary-lighter);
    padding: var(--space-8) var(--space-13);
    border-radius: var(--radius-small);
    display: inline-block;
    margin-top: var(--space-13);
    font-weight: 600;
    animation: pulse-limited-offer 2s infinite ease-in-out;
}

.pricing-dates {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

/* Responsive pricing styles */
@media (max-width: 768px) {
    .pricing-card {
        margin: 0 var(--space-13);
    }
    
    .pricing-header {
        padding: var(--space-13);
    }
    
    .pricing-content {
        padding: var(--space-13);
    }
    
    .pricing-number {
        font-size: var(--font-size-xl);
    }
    
    .pricing-features-container {
        flex-direction: column;
        gap: 0;
    }
    
    .mt-0 {
        margin-top: 0;
    }
    
    /* Responsive star label */
    .pricing-label-star {
        width: 80px;
        height: 80px;
    }
    
    .star-content {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pricing-content h4 {
        font-size: var(--font-size-small);
    }
    
    .pricing-features li,
    .pricing-not-included li {
        font-size: 12px;
    }
    
    .pricing-not-included {
        flex-direction: column;
    }
    
    .pricing-not-included li {
        min-width: 0;
    }
    
    /* Even smaller star on mobile */
    .pricing-label-container {
        top: -8px;
        right: -8px;
    }
    
    .pricing-label-star {
        width: 70px;
        height: 70px;
    }
    
    .star-content {
        font-size: 10px;
    }
}

/* Social Proof Section */
.social-proof {
    padding: var(--space-55) 0;
    background-color: var(--white);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.1;
}

.media-quotes {
    max-width: 700px;
    margin: 0 auto var(--space-34);
    text-align: center;
}

.quote {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-21);
    background: var(--lighter);
    border-radius: var(--radius-large);
    margin-bottom: var(--space-21);
    position: relative;
}

.quote p {
    font-size: var(--font-size-xl);
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    margin: 0 var(--space-13);
    text-align: center;
    line-height: 1.4;
}

.quote i {
    color: var(--primary);
    font-size: var(--font-size-large);
    opacity: 0.5;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-21);
    margin-bottom: var(--space-34);
}

.social-proof-card {
    background: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid var(--light);
    display: flex;
    flex-direction: column;
}

.social-proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 180px; /* Control maximum height */
}

.social-proof-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-xl);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.social-proof-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: var(--space-13) var(--space-21);
    flex: 1; /* Allow info section to fill available space */
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    margin: 0 0 var(--space-8);
    font-size: var(--font-size-large);
    color: var(--dark);
}

.video-description {
    font-size: var(--font-size-small);
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: var(--space-13);
    max-height: 60px; /* Changed to max-height instead of fixed height */
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: var(--space-13);
    color: var(--primary);
    font-size: var(--font-size-small);
    font-weight: 600;
    margin-top: auto; /* Push to bottom of flex container */
}

.video-stats i {
    opacity: 0.7;
}

.social-proof-cta {
    text-align: center;
    max-width: 600px;
    margin: var(--space-34) auto 0;
    padding: var(--space-21);
    background: var(--lighter);
    border-radius: var(--radius-large);
}

.social-proof-cta p {
    font-size: var(--font-size-large);
    font-weight: 600;
    margin-bottom: var(--space-13);
    color: var(--dark);
}

/* Responsive styles for social proof */
@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-13); /* Reduce gap on smaller screens */
    }
    
    .quote p {
        font-size: var(--font-size-large);
    }
    
    .video-thumbnail {
        padding-bottom: 52%; /* Slightly reduce aspect ratio on medium screens */
    }
    
    .video-thumbnail img {
        max-height: 160px; /* Slightly smaller on medium screens */
    }
}

@media (max-width: 576px) {
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: var(--space-21);
    }
    
    .social-proof-card {
        max-width: 100%;
    }
    
    .video-thumbnail {
        padding-bottom: 50%; /* Further adjust aspect ratio for mobile */
        max-height: 180px; /* Control max height on mobile */
    }
    
    .video-thumbnail img {
        max-height: 180px; /* Control image height on mobile */
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-large);
    }
    
    .quote p {
        font-size: var(--font-size-body);
    }
    
    .video-info h3 {
        font-size: calc(var(--font-size-body) + 1px);
    }
    
    .video-description {
        font-size: calc(var(--font-size-small) - 1px);
        max-height: 54px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .video-thumbnail {
        max-height: 160px;
    }
    
    .video-thumbnail img {
        max-height: 160px;
    }
}

/* Add keyframes for the pulse animation */
@keyframes pulse-limited-offer {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 5px 10px rgba(52, 199, 89, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
    }
}