* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d6a4f;
    --primary-blue: #1b4965;
    --accent-green: #40916c;
    --accent-blue: #5fa8d3;
    --light-green: #d8f3dc;
    --light-blue: #caf0f8;
    --text-dark: #1b263b;
    --text-medium: #415a77;
    --text-light: #778da9;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fefae0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo svg {
    color: var(--primary-green);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.phone-link {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.phone-link:hover {
    background: var(--accent-green);
    color: var(--bg-white);
}

.hero {
    background: #c5d5e8;
    color: var(--text-dark);
    padding: 0;
    text-align: center;
    position: relative;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 0 1rem;
}

.hero-promo-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1b4965;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #2d4a5f;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.trust-strip {
    background: var(--bg-light);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-weight: 500;
}

.trust-item svg {
    color: var(--accent-green);
}

.quiz-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
}

.quiz-header {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    transition: width 0.4s ease;
    border-radius: 100px;
}

.step-indicator {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

.step-indicator #currentStep {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-content {
    min-height: 400px;
}

.quiz-step {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quiz-option {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quiz-option:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quiz-option.selected {
    border-color: var(--primary-green);
    background: var(--light-green);
}

.quiz-option.multi-select.selected {
    background: var(--light-green);
    border-color: var(--primary-green);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.option-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.option-sublabel {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.quiz-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.vpn-toggle {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-blue);
}

.vpn-toggle label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.vpn-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.results-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.results-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.recommendation-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.package-speed {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.package-price-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.package-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.addons-section {
    margin-bottom: 3rem;
}

.addons-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.addon-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
}

.addon-card.addon-selected {
    border-color: var(--primary-green);
    background: var(--light-green);
}

.addon-card.addon-selected::after {
    content: '✓ Added';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-green);
    color: var(--bg-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.addon-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-green);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.addon-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.addon-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.addon-price.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.addon-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.decision-tree-accordion {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.accordion-trigger {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-trigger:hover {
    background: var(--bg-light);
}

.accordion-trigger svg {
    transition: var(--transition);
}

.accordion-trigger.active svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 1000px;
}

.decision-tree-content {
    padding: 2rem;
    background: var(--bg-light);
}

.decision-reason {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.decision-reason:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.decision-reason svg {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.decision-reason-text {
    color: var(--text-dark);
    line-height: 1.6;
}

.lead-capture {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.lead-capture h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-note {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.lead-form input {
    padding: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-question.active svg {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .trust-items {
        gap: 2rem;
    }

    .quiz-container {
        padding: 2rem 1.5rem;
    }

    .quiz-question {
        font-size: 1.5rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .recommendation-card {
        padding: 2rem;
    }

    .package-name {
        font-size: 2rem;
    }

    .package-price {
        font-size: 2.5rem;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .phone-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .results-header h2 {
        font-size: 2rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: firework-launch 1s ease-out forwards;
}

@keyframes firework-launch {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-400px) scale(0);
        opacity: 0;
    }
}

.firework-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: particle-explode 1.5s ease-out forwards;
}

@keyframes particle-explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

.celebration-banner {
    position: relative;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: var(--radius-lg);
    border: 3px solid var(--accent-green);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(64, 145, 108, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(64, 145, 108, 0.6);
        transform: scale(1.02);
    }
}

.celebration-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.celebration-banner .subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 1rem;
    animation: fade-in-up 1s ease-out 0.3s both;
}

.celebration-banner .message {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    animation: fade-in-up 1s ease-out 0.6s both;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    animation: confetti-fall 3s linear forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: sparkle-twinkle 1.5s ease-in-out infinite;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-button-large {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1b263b;
    border: none;
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: cta-pulse 2s ease-in-out infinite;
}

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

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

.cta-button-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.6);
}

.cta-button-large:active {
    transform: translateY(-2px) scale(1.01);
}

.cta-main-text {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-sub-text {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.9;
}

.cta-button-large svg {
    margin-top: 0.5rem;
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 48px rgba(255, 215, 0, 0.7);
    }
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@media (max-width: 768px) {
    .cta-button-large {
        padding: 1.5rem 2rem;
    }
    
    .cta-main-text {
        font-size: 1.25rem;
    }
    
    .cta-sub-text {
        font-size: 0.9rem;
    }
}

.addon-toggle-card {
    background: linear-gradient(135deg, rgba(64, 145, 108, 0.05), rgba(95, 168, 211, 0.05));
    border: 3px solid var(--accent-green) !important;
}

.addon-toggle-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent-green);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--accent-green);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.addon-selected {
    animation: addon-pulse 0.5s ease-out;
}

@keyframes addon-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.replay-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 38, 59, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.replay-container {
    max-width: 600px;
    width: 90%;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.replay-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    transition: color 0.5s ease;
}

.replay-items {
    margin-bottom: 2rem;
    min-height: 300px;
}

.replay-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    animation: replay-item-appear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes replay-item-appear {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.replay-item-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.replay-item-content {
    flex: 1;
}

.replay-item-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.replay-item-value {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 700;
}

.replay-progress {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 100px;
    overflow: hidden;
}

.replay-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .replay-container {
        padding: 2rem 1.5rem;
    }
    
    .replay-title {
        font-size: 1.5rem;
    }
    
    .replay-item {
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .replay-item-icon {
        font-size: 2rem;
    }
    
    .replay-item-value {
        font-size: 1rem;
    }
}

.addon-quantity-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quantity-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-green);
    background: var(--bg-white);
    color: var(--accent-green);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--accent-green);
    color: var(--bg-white);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 40px;
    text-align: center;
}

.quantity-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

.addon-optional {
    border: 2px dashed var(--accent-blue) !important;
    background: linear-gradient(135deg, rgba(95, 168, 211, 0.05), rgba(64, 145, 108, 0.05));
}

.addon-optional::before {
    content: 'Optional Upgrade';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-blue);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.package-addons-summary {
    margin-top: 2rem;
}

.package-addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-addon-item:last-child {
    border-bottom: none;
}

.addon-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.addon-item-name {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.addon-item-price {
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.9;
}

.package-total-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.total-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.total-price-row.onetime {
    padding-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bg-white);
}

.total-price-row.onetime .total-label,
.total-price-row.onetime .total-amount {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .package-addon-item {
        gap: 0.75rem;
    }
    
    .addon-item-icon {
        font-size: 1.25rem;
    }
    
    .addon-item-name {
        font-size: 0.9rem;
    }
    
    .addon-item-price {
        font-size: 0.9rem;
    }
    
    .total-label {
        font-size: 1.125rem;
    }
    
    .total-amount {
        font-size: 1.75rem;
    }
}

.postcode-input-container {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.postcode-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: 3px solid var(--accent-green);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.postcode-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.1);
}

.postcode-message {
    margin-top: 1rem;
    text-align: center;
}

.postcode-message p {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.success-message {
    background: rgba(64, 145, 108, 0.1);
    color: var(--primary-green);
    border: 2px solid var(--accent-green);
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

.info-message {
    background: rgba(95, 168, 211, 0.1);
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.waitlist-message {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.waitlist-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.privacy-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.waitlist-success {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.waitlist-success .success-message {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.contact-info {
    font-size: 1rem;
    color: var(--text-medium);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .postcode-input {
        font-size: 1.125rem;
        padding: 0.875rem 1rem;
    }
    
    .waitlist-form {
        padding: 1.5rem;
    }
    
    .waitlist-icon {
        font-size: 3rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
}

.address-selector-container {
    max-width: 700px;
    margin: 0 auto;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.address-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(64, 145, 108, 0.15);
}

.address-item.status-available {
    border-left: 4px solid var(--primary-green);
}

.address-item.status-eoi {
    border-left: 4px solid var(--accent-blue);
}

.address-item.status-unavailable {
    border-left: 4px solid #f59e0b;
}

.address-details {
    flex: 1;
}

.address-line {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.address-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.status-icon {
    font-size: 1.125rem;
}

.status-text {
    font-weight: 500;
}

.address-arrow {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.address-item:hover .address-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .address-item {
        padding: 1rem;
    }
    
    .address-line {
        font-size: 1rem;
    }
    
    .address-status {
        font-size: 0.85rem;
    }
}

/* ===== NEW STYLES FOR POC ENHANCEMENTS ===== */

/* Promo Badge and Hero Enhancements */
.promo-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.promo-badge-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1b263b;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-headline {
    font-size: 4rem;
    font-weight: 900;
    color: #1b4965;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.promo-subheadline {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d4a5f;
    margin-bottom: 1.5rem;
}

.promo-terms {
    font-size: 0.875rem;
    color: #415a77;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Hero Postcode Checker */
.postcode-checker-hero {
    max-width: 500px;
    margin: 2rem auto 0;
}

.postcode-form {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.postcode-form .postcode-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
}

.postcode-form .postcode-input:focus {
    outline: none;
    box-shadow: none;
}

.btn-check {
    white-space: nowrap;
    background: var(--primary-green);
    color: var(--bg-white);
}

.btn-check:hover {
    background: var(--accent-green);
}

.postcode-helper {
    font-size: 0.875rem;
    color: #415a77;
    margin-top: 0.75rem;
    text-align: center;
}

.postcode-result {
    margin-top: 1rem;
    text-align: center;
}

.postcode-result.success {
    background: rgba(64, 145, 108, 0.15);
    color: var(--primary-green);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.postcode-result.error {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.postcode-result.loading {
    color: #415a77;
    padding: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

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

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* One Touch Switch Banner */
.one-touch-switch-banner {
    background: linear-gradient(135deg, #1b4965, #2d6a4f);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.one-touch-switch-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.switch-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.switch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1b263b;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.switch-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.switch-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.switch-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.switch-feature {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .promo-headline {
        font-size: 2.5rem;
    }
    
    .promo-subheadline {
        font-size: 1.25rem;
    }
    
    .postcode-form {
        flex-direction: column;
    }
    
    .postcode-form .postcode-input {
        text-align: center;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .switch-title {
        font-size: 1.5rem;
    }
    
    .switch-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .one-touch-switch-banner {
        padding: 1.5rem;
    }
}

/* ===== UI/UX IMPROVEMENTS ===== */

/* 1. Compare Packages Toggle */
.compare-packages-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.compare-toggle-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.compare-toggle-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.compare-packages-content {
    margin-top: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: slide-down 0.4s ease-out;
    display: none; /* Hidden by default, toggled via JS */
}

.compare-packages-content.show {
    display: block;
}

@keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table tr.highlighted {
    background: rgba(64, 145, 108, 0.05);
}

.comparison-table tr.highlighted td {
    font-weight: 700;
    color: var(--primary-green);
    border-top: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

/* 2. Contextual Tooltips */
.tooltip-trigger {
    cursor: help;
    border-bottom: 1px dotted var(--text-light);
    position: relative;
    display: inline-block;
}

.tooltip-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    width: max-content;
    max-width: 250px;
    white-space: normal;
    text-align: center;
}

.tooltip-trigger:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 135%;
}

/* 3. Speed Visualizer */
.speed-visualizer {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    color: var(--bg-white);
}

.visualizer-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 700;
}

.device-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.device-item.active {
    opacity: 1;
    transform: scale(1.1);
}

.device-item svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.device-label {
    font-size: 0.75rem;
    font-weight: 600;
}

/* 4. Floating Callback Button */
.floating-callback-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.callback-fab {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.callback-fab:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--accent-green);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.5);
}

.callback-icon {
    font-size: 1.25rem;
}

/* Callback Modal */
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.callback-modal.open {
    opacity: 1;
    visibility: visible;
}

.callback-modal-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.callback-modal.open .callback-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.callback-modal h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.callback-modal p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.callback-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.callback-form button {
    width: 100%;
}

@media (max-width: 768px) {
    .callback-text {
        display: none;
    }
    
    .callback-fab {
        padding: 1rem;
        border-radius: 50%;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ===== BOOKING GRID & ORDER FORMS ===== */

/* Overlay Base */
.booking-overlay,
.order-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

/* Modal Base */
.booking-modal,
.order-modal {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.booking-close,
.order-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.booking-close:hover,
.order-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Booking Header */
.booking-header,
.order-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-header h2,
.order-header h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.booking-header p,
.order-header p {
    color: var(--text-medium);
}

/* Booking Address */
.booking-address {
    background: var(--light-green);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Booking Grid */
.booking-grid {
    margin-bottom: 1.5rem;
}

.booking-grid-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.85rem;
}

.booking-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-date {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.booking-date:hover {
    border-color: var(--primary-green);
    background: var(--light-green);
}

.booking-date.selected {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-white);
}

.booking-date .date-day {
    font-size: 1.25rem;
    font-weight: 700;
}

.booking-date .date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Booking Info */
.booking-info {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.booking-continue {
    width: 100%;
}

.booking-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Order Summary */
.order-summary {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.highlight {
    background: var(--light-green);
    margin: 0.5rem -1rem -1rem;
    padding: 1rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    color: var(--primary-green);
    font-weight: 600;
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 1.5rem;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Direct Debit Section */
.dd-info {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dd-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.dd-logo {
    height: 40px;
    width: auto;
}

.dd-guarantee p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.dd-guarantee a {
    color: var(--primary-green);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-green);
}

.checkbox-label a {
    color: var(--primary-green);
}

.order-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Lead Status Info */
.lead-status-info {
    background: linear-gradient(135deg, var(--light-blue), rgba(95, 168, 211, 0.1));
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-status-info .status-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.lead-status-info p {
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.lead-status-info .timeline {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 3rem 2rem;
}

.success-modal .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-modal h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.success-modal p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.success-detail {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    text-align: left;
}

.success-modal .contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .booking-modal,
    .order-modal {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .booking-header h2,
    .order-header h2 {
        font-size: 1.5rem;
    }
    
    .booking-date {
        padding: 0.5rem 0.25rem;
    }
    
    .booking-date .date-day {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dd-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ORDER RECEIPT STYLES ===== */

.order-modal-wide {
    max-width: 900px;
}

.order-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.order-form-column {
    min-width: 0;
}

.order-receipt-column {
    position: sticky;
    top: 1rem;
    align-self: start;
}

.order-receipt {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.receipt-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #ddd;
    margin-bottom: 1rem;
}

.receipt-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.receipt-title {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.receipt-section {
    margin-bottom: 1rem;
}

.receipt-section-title {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.receipt-line-detail {
    font-size: 0.75rem;
    color: var(--text-light);
    padding-left: 0.5rem;
}

.receipt-divider {
    border-top: 1px dashed #ccc;
    margin: 1rem 0;
}

.receipt-divider.thick {
    border-top: 2px dashed #999;
}

.receipt-section.totals {
    background: var(--light-green);
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.receipt-line.total {
    font-weight: 700;
    font-size: 1rem;
}

.receipt-total-amount {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.receipt-line.onetime {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.receipt-promo {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    margin: 1rem -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    text-align: center;
}

.promo-tag {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.promo-saving {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Mobile responsive for receipt */
@media (max-width: 768px) {
    .order-content-grid {
        grid-template-columns: 1fr;
    }
    
    .order-receipt-column {
        order: -1;
        position: relative;
        top: 0;
    }
    
    .order-modal-wide {
        max-width: 100%;
    }
}

/* ===== PROPERTY PREVIEW STYLES ===== */

.property-preview {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.property-preview-content {
    position: relative;
}

.property-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.property-street-view {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.property-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-address {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .property-image-container {
        height: 180px;
    }
}

/* Service Available Banner */
.service-available-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 50%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.service-available-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.service-banner-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
}

.service-check-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    border: 3px solid white;
}

.service-banner-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-banner-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .service-check-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-banner-title {
        font-size: 1.4rem;
    }
    
    .service-banner-subtitle {
        font-size: 1rem;
    }
}
