/* Manual update to style.css from Antigravity */
/* Version Check Test: 2026-02-01 (Run 2) */
:root {
    --primary-red: #FF3B30;
    --secondary-coral: #FF6B58;
    --accent-orange: #FF9500;
    --bg-white: #FFFFFF;
    --bg-light: #FFF5F5;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --border-grey: #E5E7EB;
    --success-green: #10B981;
    --disabled-grey: #C4C8D4;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: #F3F4F6;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

    /* Native App Constraints */
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    height: 100%;
    overscroll-behavior: none;
    /* Disables "pull to refresh" / rubber-banding */
}

body {
    font-family: var(--font-main);
    background: #F3F4F6;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

    /* Native App Constraints */
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* Allow scrolling by default (Landing Page) */
    overflow-x: hidden;
    /* Prevent body scroll, handle scroll in views */
    touch-action: manipulation;
    /* Disables double-tap zoom */
}

button,
input,
select,
textarea,
a {
    touch-action: manipulation;
    /* Enforce no double-tap zoom */
}

button {
    font-family: inherit;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* View Management */
.view {
    display: none;
}

.view.active {
    display: block;
}

/* ==================== LANDING PAGE - MOBILE FIRST ==================== */

/* Hero Section */
.hero {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    /* Increased padding for breathing room */
    text-align: center;
    background: transparent;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 59, 48, 0.2));
}

.logo-text {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 1.85rem;
    /* Increased font size */
    font-weight: 700;
    line-height: 1.3;
    /* Better spacing between lines */
    margin-bottom: 1.25rem;
    /* More space below title */
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.6;
    /* More breathing room for text */
    margin-bottom: 2rem;
    /* Increased margin */
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    /* More space before CTA */
}

.hero-img {
    width: 95px;
    /* Increased for better visibility of certificates */
    height: 125px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.img-pos-right {
    object-position: 80% center;
    /* Focus on the person with the certificate on the right */
}

.btn-cta {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.35), 0 2px 8px rgba(255, 59, 48, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-cta::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: left 0.5s;
}

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

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 59, 48, 0.4), 0 4px 12px rgba(255, 59, 48, 0.3);
}

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

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.badge-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.badge-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Statistics Section */
.stats-section {
    padding: 3rem 2rem;
    background: #F9FAFB;
    text-align: center;
    border-top: 1px solid #F3F4F6;
}

.stats-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stats-text:last-child {
    margin-bottom: 0;
}

.highlight-blue {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 59, 48, 0.1);
}

/* How It Works Timeline - "SEXY" PREMIUM DESIGN */
.how-it-works {
    padding: 3rem 2rem;
    background: transparent;
}

.timeline-container {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Connecting Line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 17px;
    /* Center of 36px circle (18px) - half line width (1px) */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(255, 59, 48, 0) 0%,
            rgba(255, 59, 48, 0.4) 15%,
            rgba(255, 59, 48, 0.4) 85%,
            rgba(255, 59, 48, 0) 100%);
    display: block;
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-number {
    /* No absolute position needed with flexbox */
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px #fff, 0 4px 12px rgba(255, 59, 48, 0.4);
    /* White ring creates separation from line */
    margin-top: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.timeline-item:hover .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 0 0 4px #fff, 0 8px 24px rgba(255, 59, 48, 0.6);
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
    padding-right: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 2rem;
    background: #F9FAFB;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-grey);
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0.5rem 0;
}

.laurel {
    font-size: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.price-subtitle {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-check {
    color: white;
    background: #3B82F6;
    /* Blue like original */
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature:last-child .feature-check {
    background: #10B981;
    /* Green for last one */
}

.feature-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-note {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    font-weight: 400;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.review {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 59, 48, 0.1);
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.1);
}

.review:last-child {
    margin-bottom: 0;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-stars {
    color: #3B82F6;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.faq {
    border-bottom: 1px solid var(--border-grey);
    padding: 1.25rem 0;
}

.faq summary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '›';
    font-size: 1.5rem;
    color: var(--text-grey);
    transform: rotate(90deg);
    transition: transform 0.2s;
}

.faq[open] summary::after {
    transform: rotate(270deg);
}

.faq p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 1.25rem 1rem;
    background: #FFF;
    color: var(--text-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-grey);
    margin: 0;
}

.footer-legal a {
    color: var(--text-grey);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-red);
}

.footer-company {
    font-weight: 600;
}

/* SEO Section */
.seo-section {
    padding: 2rem 1.25rem 6rem;
    /* Extra bottom padding for sticky bar */
    background: #FAFAFA;
    border-top: 1px solid var(--border-grey);
}

.seo-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.seo-heading:first-child {
    margin-top: 0;
}

.seo-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 1rem;
}

.seo-text strong {
    color: #555;
    font-weight: 600;
}

/* Desktop Responsive for Footer */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-legal {
        max-width: 50%;
    }

    .footer-nav {
        max-width: 40%;
    }
}

/* ==================== QUESTIONNAIRE ==================== */

/* Main card for the landing page (flexible height) */
.app-card {
    background: white;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

/* Specific card for the questionnaire (fixed height for internal scrolling) */
.questionnaire-card {
    background: white;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Fill remaining vertical space */
    max-height: none;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.q-standalone-logo {
    padding: 1.25rem 0 1rem 0;
    /* Reduced from 2rem 0 1.5rem 0 */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Locked Full Screen View */
#view-questionnaire.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Mobile browser friendly */
    overflow: hidden;
    background: #F3F4F6;
    z-index: 50;
}

.questionnaire-bg {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    margin: 0;
    overflow: hidden;
}

@media (max-width: 500px) {
    .questionnaire-bg {
        padding: 0;
    }

    .questionnaire-card {
        border-radius: 0;
        height: 100%;
    }

    .q-standalone-logo {
        padding: 0.75rem 0;
        flex-shrink: 0;
    }
}

.q-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.q-logo .logo-text {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Content */
.q-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    /* Reduced bottom padding */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.q-step {
    display: none;
}

.q-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.q-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    text-align: center;
}

.q-subtitle {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Step 1: Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.option-btn {
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s;
    text-align: left;
}

.option-btn:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.option-btn.selected {
    border-color: var(--primary-red);
    background: rgba(255, 59, 48, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.opt-icon {
    font-size: 1.25rem;
    width: 24px;
    display: flex;
    justify-content: center;
}

.opt-text {
    flex: 1;
}

/* Step 2: Test Centres */
.search-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.search-input:focus {
    outline: 2px solid var(--primary-red);
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.selection-counter {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
}

.selected-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.chip {
    background: rgba(255, 59, 48, 0.08);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--primary-red);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 0.2s ease-out;
}

.chip-remove {
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.chip-remove:hover {
    opacity: 1;
}

.centres-list {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.centre-item {
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.1s;
}

.centre-item:hover {
    background: #F9FAFB;
}

.centre-item.selected {
    border-color: var(--primary-red);
    background: rgba(255, 59, 48, 0.05);
}

.centre-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-grey);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.centre-item.selected .centre-checkbox {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.centre-item.selected .centre-checkbox::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Step 3: Months */
.months-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.month-btn {
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.month-btn:hover {
    background: #F9FAFB;
}

.month-btn.selected {
    border-color: var(--primary-red);
    background: rgba(255, 59, 48, 0.05);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.15);
}

.month-name {
    font-weight: 800;
    font-size: 1.2rem;
}

.month-year {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* ==================== STEP 4: HIGH TOUCH SEARCH ==================== */
.search-animation-container {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 2rem;
    text-align: left;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.progress-track {
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    border-radius: 3px;
    transition: width 0.3s ease-out;
}

/* Checking List */
.checking-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.checking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #4B5563;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.checking-item.active {
    font-weight: 600;
    color: var(--text-dark);
}

.status-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid #E5E7EB;
    border-top: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.check-icon {
    color: var(--success-green);
    font-weight: bold;
}

/* Social Proof */
.stat-highlight {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.highlight-number {
    color: var(--primary-red);
    font-weight: 700;
}

.reassurance-text {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

/* Mini Testimonials */
.mini-testimonials {
    margin-bottom: 2.5rem;
}

.mini-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mini-review {
    margin-bottom: 1.5rem;
}

.mini-review p {
    font-size: 0.9rem;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.mini-stars {
    color: var(--accent-orange);
    /* Orange stars */
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Live Activity */
.live-activity {
    margin-bottom: 2.5rem;
}

.activity-sub {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.activity-item {
    font-size: 0.85rem;
    animation: slideUp 0.5s ease-out;
}

.act-centre {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.act-time {
    color: var(--text-grey);
    font-size: 0.8rem;
}

/* Next Step Teaser */
.next-step-teaser {
    background: var(--bg-light);
    /* Light red tint */
    padding: 1rem;
    border-radius: 8px;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Step 5: Results (Good News) */
.results-container {
    text-align: center;
}

.leader-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cup {
    font-size: 1.5rem;
    color: #C0C0C0;
    /* Silver/Laurel color */
}

.leader-text {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.stars-blue {
    color: var(--accent-orange);
    /* Changed to Orange */
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.stat-blue {
    font-size: 0.9rem;
    color: #4B5563;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.highlight-blue {
    color: var(--primary-red);
    /* Changed to Red */
}

.alert-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ==================== TICKET DESIGN (Step 5) ==================== */
.ticket-container {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.ticket-segment {
    background: #86EFAC;
    /* Bright Light Green */
    padding: 1.25rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.segment-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px dashed rgba(6, 78, 59, 0.15);
}

.segment-middle {
    border-bottom: 2px dashed rgba(6, 78, 59, 0.15);
    padding: 1.5rem 1rem;
    font-weight: 500;
    color: #064E3B;
    font-size: 0.95rem;
}

.segment-bottom {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Notches - Circular cutouts */
.notch {
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    /* Cutout color matches page bg */
    border-radius: 50%;
    z-index: 10;
    bottom: -11px;
    /* Center on the dashed line */
}

.notch-left {
    left: -11px;
}

.notch-right {
    right: -11px;
}

.ticket-centre-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #064E3B;
    margin-bottom: 1.5rem;
}

.warning-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    text-align: left;
    font-size: 0.78rem;
    color: #064E3B;
    /* Added back */
    line-height: 1.35;
}

.warning-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    /* Prevent icon from being squashed */
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #064E3B;
    font-weight: 500;
}

.stat-row.highlight {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.stat-val {
    font-weight: 500;
}

.ticket-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #064E3B;
    opacity: 0.8;
}

/* Red Continue Button Style (for Step 5) */
.btn-continue-step-5 {
    background: #FF5A44 !important;
    /* Coral Red from screenshot */
    color: white !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.25rem !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(255, 90, 68, 0.3) !important;
}

/* Step 6: Email (Refined) */
.email-step-container {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    text-align: left;
}

.input-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.email-input::placeholder {
    color: #9CA3AF;
}

.email-input:focus {
    border-color: var(--primary-red);
    outline: none;
}

.input-icon-red {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.red-box {
    background: #FF5A44;
    width: 24px;
    height: 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots {
    color: white;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    margin-top: -4px;
}

.privacy-note-simple {
    font-size: 0.85rem;
    color: #10B981;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-simple {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 2rem 0;
}

.testimonial-simple p {
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.stars-orange {
    color: #FBBF24;
    /* Bright Orange/Gold */
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Step 7: Process - ENHANCED PREMIUM DESIGN */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Reduced gap */
    padding: 0.5rem 0;
}

.process-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    /* Reduced padding */
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    /* Subtle shadow */
    transition: all 0.3s ease;
    align-items: center;
    /* Vertically center */
}

.process-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #D1D5DB;
}

.process-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.35);
    position: relative;
    transition: all 0.3s ease;
}

.process-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.process-item:hover .process-num {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 59, 48, 0.5);
}

.process-item:hover .process-num::after {
    inset: -8px;
    opacity: 0.3;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, #1a1a1b 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-text p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation for process items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.process-item:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.process-item:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.process-item:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ==================== STEP 8: PREMIUM PAYMENT PAGE ==================== */
.p-logo-circle {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-logo-circle .logo-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin: 0;
}

.pricing-premium-container {
    padding: 1.5rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.p-premium-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1b;
    text-align: center;
    margin-bottom: 2rem;
}

.p-premium-box {
    background: #fbfbfb;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.p-price-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 0.25rem;
}

.p-price-main .old-price {
    text-decoration: line-through;
    color: #888;
    font-weight: 400;
    margin-right: 0.2rem;
}

.p-guarantee-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.p-timer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.p-timer-val {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.p-discount-badge {
    background: #c3ffda;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Add-ons Section */
.p-addons-section {
    margin-bottom: 1.5rem;
}

.p-addons-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
    text-align: left;
}

.p-addon-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 1rem;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.p-addon-card.selected {
    background: #f0f7ff;
    border-color: #3b82f6;
}

.p-addon-check {
    flex-shrink: 0;
}

.p-custom-check {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    background: #fff;
}

.p-addon-card.selected .p-custom-check {
    background: #3b82f6;
    border-color: #3b82f6;
}

.p-addon-card.selected .p-custom-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.p-addon-icon-box {
    width: 48px;
    height: 48px;
    background: #f3f3f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.p-addon-info {
    flex-grow: 1;
}

.p-addon-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 0.1rem;
}

.p-addon-price {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.p-how-works {
    font-size: 0.8rem;
    color: #666;
    text-decoration: underline;
}

/* Stripe Payment Element Container */
#payment-element-container {
    margin: 1.5rem 0;
    padding: 0;
}

/* Ensure Stripe elements have proper spacing */
#payment-element-container .p-Element {
    margin-bottom: 1rem;
}

/* Google Pay Section Refinement */
.p-method-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: auto !important;
}

.p-method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.p-method-icon-img {
    height: 18px;
}

.p-method-label-blue {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3b82f6;
}

.p-method-label-grey {
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
}

.p-instruction-box {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.p-instr-icon {
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

.p-instr-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    text-align: left;
}

/* Card Section Refinement */
.p-card-header-only {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.p-card-icon-grey {
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Card Section */
.p-card-section {
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    background: white;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.p-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #2563EB;
    font-weight: 700;
    font-size: 1rem;
}

.p-card-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.p-input-group label {
    display: block;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.p-input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    background: #F9FAFB;
}

.p-input-with-icons {
    position: relative;
    display: flex;
    align-items: center;
}

.p-card-logos {
    position: absolute;
    right: 12px;
    display: flex;
    gap: 6px;
}

.p-logo {
    font-size: 0.65rem;
    font-weight: 800;
    background: #FFF;
    border: 1px solid #E5E7EB;
    padding: 2px 4px;
    border-radius: 4px;
    color: #6B7280;
}

.p-cvc-icon {
    position: absolute;
    right: 12px;
    font-size: 1.25rem;
    opacity: 0.4;
}

.p-select-wrapper {
    position: relative;
}

.p-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #9CA3AF;
    pointer-events: none;
}

/* Payment Footer */
.p-payment-footer {
    padding-bottom: 1rem;
    text-align: center;
}

.p-footer-info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.p-secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

.p-lock-icon {
    font-size: 0.9rem;
}

/* Questionnaire Footer (Sticky at Bottom) */
.q-footer {
    background: white;
    padding: 1rem 1.5rem;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: center;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    /* iOS Home Bar Safe Area */
}

.btn-continue {
    width: 100%;
    max-width: 440px;
    /* Match card width roughly */
    padding: 1.25rem;
    background: var(--disabled-grey);
    color: white;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-continue:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-coral) 100%);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.35);
    border-bottom: 4px solid #D12E24;
    /* Darker red bottom for 3D effect */
}

.btn-continue:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(255, 59, 48, 0.45);
    border-bottom-width: 5px;
    /* Enhance 3D on hover */
}

.btn-continue:not(:disabled):active {
    transform: translateY(1px);
    border-bottom-width: 2px;
    /* Flatten on click */
}


/* Add padding to card to avoid being obscured by sticky footer */


/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==================== STICKY BOTTOM CTA ==================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.75rem 1rem 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-grey);
}

.sticky-cta-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #FF3B30;
    /* Your brand red */
    color: white;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 0 #D12E24;
    /* Solid bottom shadow in red */
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* Main subtle pulse animation */
    animation: cta-breathe 4s ease-in-out infinite;
}

.sticky-cta-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    /* Wider shimmer for softness */
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: cta-shine 8s infinite;
    /* Much slower shimnmer */
}

@keyframes cta-breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

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

@keyframes cta-shine {
    0% {
        left: -150%;
    }

    15% {
        left: 200%;
    }

    /* Fast slide over button */
    100% {
        left: 200%;
    }

    /* Long pause (85% of 4s) */
}


.sticky-cta-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #D12E24;
}

.sticky-cta-btn::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: left 0.5s;
}

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

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 59, 48, 0.4), 0 4px 12px rgba(255, 59, 48, 0.3);
}

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

.sticky-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.sticky-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-learners {
    color: #4B5563;
}

.badge-learners .highlight-blue-alt {
    color: #FF3B30;
    /* Your brand red */
    font-weight: 700;
}

.badge-guarantee {
    color: #10B981;
    /* Keep green for guarantee */
}

.badge-icon-svg {
    display: flex;
    align-items: center;
}

.badge-icon svg circle {
    fill: #FF3B30;
    /* Your brand red */
}

.sticky-trust-badge .badge-icon {
    color: var(--primary-red);
    font-size: 1rem;
}

.sticky-trust-badge .badge-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Add bottom padding to prevent content from being hidden behind sticky CTA */
#view-landing {
    padding-bottom: 160px;
}

/* ==================== DESKTOP RESPONSIVE ==================== */
@media (min-width: 768px) {
    body {
        background: linear-gradient(135deg, var(--bg-light) 0%, #FFF 100%);
    }

    #view-landing {
        max-width: 500px;
        margin: 0 auto;
        background: transparent;
        /* Card background is on the sections */
        box-shadow: none;
        border-radius: 0;
        padding-bottom: 130px;
    }

    .sticky-cta-bar {
        left: 50%;
        transform: translateX(-50%);
        max-width: 500px;
        border-radius: 12px 12px 0 0;
        border-left: 1px solid var(--border-grey);
        border-right: 1px solid var(--border-grey);
    }
}

/* Sexy Comparison Table */
.comparison-section {
    padding: 3.5rem 1.2rem;
    background: #F8F9FA;
}

.comparison-container {
    background: white;
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0;
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    padding: 1rem 0 1.5rem;
    align-items: center;
}



.header-dvsa,
.header-finder {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9CA3AF;
}

.header-finder {
    color: #FF3B30;
}

.premium-comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    background: #FFF;
    margin-bottom: 6px;
    border-radius: 14px;
    align-items: stretch;
    transition: transform 0.2s ease;
}

.p-feature-info {
    display: flex;
    align-items: center;
    padding-left: 1.2rem;
}

.p-feature-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
}

.p-dvsa-col,
.p-finder-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.25rem;
}

.p-finder-col {
    background: #FFF;
    border-radius: 16px;
    border: 2px solid #FF3B30;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.08);
    transform: scale(1.05);
    z-index: 2;
}

/* Red Dot Indicator */
.p-finder-col::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #FF3B30;
    border-radius: 50%;
    border: 2px solid white;
}

.p-status {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 4px;
}

.p-status.check {
    color: #FF3B30;
}

.p-status.cross {
    color: #D1D5DB;
}

/* Payment Button (Blue) */
.btn-payment {
    background: linear-gradient(180deg, #4b89ff 0%, #2563eb 100%) !important;
    height: 60px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    border-bottom: 4px solid #1d4ed8 !important;
    border-radius: 10px !important;
    margin-bottom: 0.5rem;
    color: white;
    width: 100%;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2) !important;
}

.p-gpay-box img {
    margin-right: 2px;
}

.p-card-header .p-card-icon {
    font-size: 1.25rem;
    color: #2563EB;
}

.p-card-label {
    margin-top: 2px;
}

/* Ensure card form inputs look correct */
.p-card-input {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem;
    width: 100%;
}

/* ==================== HERO CTA OPTIMAIZATION ==================== */
.btn-primary-pulse {
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B58 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    animation: pulse-red 2s infinite;
}

.btn-primary-pulse:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(255, 59, 48, 0.5);
    background: linear-gradient(135deg, #FF2014 0%, #FF503D 100%);
}

.btn-primary-pulse:active {
    transform: translateY(-1px);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 59, 48, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.trustpilot-mini strong {
    font-weight: 700;
    color: #111827;
}

.p-card-form input {
    font-family: 'Inter', sans-serif;
    color: #111827;
}

.p-input-with-icons input {
    padding-right: 80px;
}