:root {
    --primary-blue: #0056b3; /* Adjust based on exact screenshot if needed, standard confident blue */
    --secondary-blue: #004494;
    --gold: #f4c150;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --section-padding: 60px 0;
    --container-width: 1100px;
    --form-input-bg: #f5f5f5; /* Light gray for inputs */
    --form-input-border: #e0e0e0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    /* Subtle outer glow effect wrapper could be added here if main content is boxed, 
       but typically applied to a container wrapper. Assuming full width sections for now based on standard landing pages. */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.btn-nav {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: var(--secondary-blue);
}

/* Burger Menu (Hidden by default) */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    padding: 80px 0; /* Adjust padding for visual balance */
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* Subtle gradient backing */
}

.hero-content h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,86,179,0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,86,179,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0,86,179,0.5);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(0,86,179,0.1);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
}

.hero-subtext {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Pricing */
.pricing-container {
    text-align: center;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-blue);
}

.price-highlight {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.price-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Contact Form */
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(0,86,179,0.2);
}

.progress-step.completed .step-circle {
    background-color: #22c55e;
    color: var(--white);
}

.step-label {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.progress-step.active .step-label {
    color: var(--primary-blue);
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.progress-line.completed {
    background-color: var(--primary-blue);
}

/* Form Steps */
.form-step {
    display: none;
}

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

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

.form-step h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

/* Review Options */
.review-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.review-option input[type="radio"] {
    display: none;
}

.option-card {
    padding: 30px 20px;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--white);
}

.review-option input[type="radio"]:checked + .option-card {
    border-color: var(--primary-blue);
    background-color: rgba(0,86,179,0.05);
    box-shadow: 0 4px 15px rgba(0,86,179,0.2);
}

.option-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.option-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.option-text {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--form-input-bg);
    border: 1px solid var(--form-input-border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    background-color: var(--white);
    border-color: var(--primary-blue);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: #e0e0e0;
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.btn-next, .btn-prev {
    min-width: 150px;
}

.privacy-note {
    text-align: center;
    margin: 20px 0;
    color: var(--text-light);
}

/* Sticky CTA for Mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    text-align: center;
}

.sticky-cta .btn-primary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #222;
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content h3 {
    color: var(--white);
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #777;
}

/* Legal Pages Styling - Unified Font Sizes */
.section .container h1 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: left;
    color: var(--text-dark);
}

.section .container h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.section .container p,
.section .container ul li {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section .container p strong {
    font-weight: 700;
}

.section .container ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.section .container ul li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide for now, requires JS for burger toggle */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.nav-active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Process Icons & Guarantee */
.process-step {
    position: relative;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Testimonials Stars */
.testimonial .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .review-options {
        grid-template-columns: 1fr;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        display: block;
    }

    .option-number {
        font-size: 2.5rem;
    }

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

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

    .pricing-box {
        padding: 30px 20px;
    }
}

/* Success Page Styling */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(34,197,94,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(34,197,94,0.4);
    }
}

.success-card h1 {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.success-message {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.success-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0,86,179,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.success-actions {
    margin: 40px 0 30px;
}

.success-actions .btn-primary {
    display: inline-block;
    padding: 15px 40px;
}

.success-footer {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.success-footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.success-footer a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.success-footer a:hover {
    color: var(--secondary-blue);
}

/* Mobile Responsive for Success Page */
@media (max-width: 768px) {
    .success-card {
        padding: 40px 30px;
    }

    .success-card h1 {
        font-size: 1.5rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .success-info {
        grid-template-columns: 1fr;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* New Hero Styles */
.hero-content .highlight {
    color: var(--primary-blue);
}

.hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-subtext-small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
}

.highlight-big {
    font-size: 1.3em;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    background-color: #fff8f0;
}

.problem-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.problem-item h3 {
    color: #d32f2f;
    font-size: 1.2rem;
}

.problem-consequence {
    text-align: center;
    font-size: 1.15rem;
    margin: 40px 0 20px;
}

.problem-warning {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
}

/* Solution Section */
.solution-subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.solution-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.highlight-box {
    background-color: rgba(0,86,179,0.08);
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

/* Step Count */
.step-count {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: 400;
}

/* Risk Reversal Section */
.risk-section {
    padding: 60px 0;
}

.guarantee-badge-large {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 50px 60px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(34,197,94,0.3);
    text-align: center;
}

.guarantee-badge-large .guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-badge-large h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.guarantee-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
}

.guarantee-list li {
    padding: 10px 0;
    font-weight: 600;
}

.guarantee-statement {
    font-size: 1.2rem;
    margin-top: 30px;
}

/* Trust Section */
.trust-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

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

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.trust-statement {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

/* Final CTA Statement */
.final-cta-statement {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0,86,179,0.3);
}

.final-cta-statement h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.final-cta-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

/* Button Large */
.btn-large {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .hero-subheadline {
        font-size: 1rem;
    }

    .problem-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-badge-large {
        padding: 40px 30px;
    }

    .guarantee-badge-large h2 {
        font-size: 1.7rem;
    }

    .final-cta-statement {
        padding: 40px 20px;
    }

    .final-cta-statement h3 {
        font-size: 1.5rem;
    }

    .final-cta-statement p {
        font-size: 1rem;
    }

    .solution-text {
        font-size: 1rem;
    }
}

/* Centered Elements */
.centered {
    text-align: center !important;
}

.guarantee-list.centered {
    text-align: center !important;
    list-style: none;
    padding: 0;
}

.guarantee-list.centered li {
    text-align: center;
}

/* Guarantee Points (without bullets) */
.guarantee-points {
    text-align: center;
    margin: 30px 0;
}

.guarantee-points p {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px 0;
    margin: 0;
}

/* White Text for CTA */
.white-text {
    color: var(--white) !important;
}
