:root {
    /* Color Palette - Poppy Friendly Light Mode */
    --bg-color: #fcfcfc;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --primary: #ff7f50;
    /* Coral Poppy */
    --primary-hover: #ff6b35;
    --secondary: #a29bfe;
    /* Soft Purple */
    --accent: #fdcb6e;
    /* Sunny Yellow */

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.15rem;
    /* Larger base font for balance */
}

h1,
h2,
h3,
.btn,
.price {
    font-family: 'Outfit', sans-serif;
}

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

ul {
    list-style: none;
}

/* Global Spacing Updates */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    /* More breathing room */
}

/* Specific Section Adjustments */
.hero-section {
    padding: 160px 0 120px;
    /* Taller hero */
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.nav-container {
    padding: 24px 0;
}

/* Background Gradients/Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffecd2 0%, #fcb69f 100%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #a1c4fd 0%, #c2e9fb 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(10deg);
    }
}

/* Glassmorphism Utilities */
.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* Header */
nav {
    padding: 20px 0;
}

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

.nav-container.centered-nav {
    justify-content: center;
}

/* Logo Styling - Fixed */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    line-height: 1;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.brand-logo.sm {
    height: 30px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    display: inline-block;
}

.logo-text .highlight {
    color: var(--primary);
}

.center-logo {
    justify-content: center;
    margin-bottom: 20px;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4);
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.9rem;
    background: var(--text-main);
    color: white;
}

.btn-sm:hover {
    background: black;
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff0eb;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 127, 80, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-tag .amount {
    font-size: 2.5rem;
    color: var(--primary);
}

.guarantee {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Comparison */
.comparison {
    padding: 60px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card {
    padding: 40px;
}

.pain-point h3 {
    color: #e17055;
    margin-bottom: 20px;
}

.solution h3 {
    color: #00b894;
    margin-bottom: 20px;
}

.card ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pain-point ul li::before {
    content: "•";
    color: #e17055;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution ul li::before {
    content: "✓";
    color: #00b894;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution {
    border: 2px solid rgba(0, 184, 148, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

/* Services */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    padding: 32px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Workflow */
.workflow {
    padding: 80px 0;
    text-align: center;
}

.workflow h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #fff0eb;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card hr {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 32px 0;
}

.benefits {
    text-align: left;
    margin-bottom: 40px;
}

.benefits li {
    margin-bottom: 16px;
    font-size: 1.25rem;
    /* Larger list items */
}

.full-width {
    width: 100%;
    text-align: center;
}

.micro-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

details {
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

details[open] {
    background: rgba(255, 255, 255, 0.9);
}

summary {
    font-weight: 600;
    font-size: 1.3rem;
    /* Larger FAQ questions */
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.2rem;
    /* Larger FAQ answers */
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.5);
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.copyright {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
}

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

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 10px 0;
    }

    .pricing-card {
        padding: 30px;
    }
}

/* --- Funnel & Form Styles --- */

/* Hero Form Container */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-form-container {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Apple-style soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    text-align: center;
}

.lead-form .form-group {
    margin-bottom: 15px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.micro-trust {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Audit Page */
.audit-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.audit-form-card {
    max-width: 600px;
    width: 100%;
    padding: 50px;
    background: white;
    border-radius: var(--radius-lg);
}

.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}

/* Success Page */
.success-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.success-card {
    max-width: 600px;
    padding: 60px;
    text-align: center;
    background: white;
}

.check-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.calendar-embed {
    margin-top: 30px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    background: #fafafa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form-container {
        margin-top: 40px;
    }
}


/* --- Conversion & Polish Styles --- */

/* Hero Pulse Animation */
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.4);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 80, 0);
    }
}

.pulse-main {
    animation: pulse-shadow 2s infinite;
}

.micro-cta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: block;
    width: 100%;
}

.hero-proof {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    background-size: cover;
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-proof p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.testimonial-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 240, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: serif;
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.05;
    pointer-events: none;
    line-height: 1;
}

.stars {
    font-size: 1.2rem;
    color: #fdcb6e;
}

.quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.7;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 235, 0.9));
    border-radius: var(--radius-lg);
}

.badge-icon {
    font-size: 4rem;
}

.guarantee-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Lead Magnet */
.lead-magnet {
    padding: 100px 0;
}

.magnet-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.magnet-layout::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0.1;
}

.badge-magnet {
    background: var(--text-main);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.magnet-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.1;
}

.bonus-list {
    margin: 30px 0;
}

.bonus-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.bonus-list .check {
    background: #eefbf5;
    color: #00b894;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.magnet-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.magnet-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    padding-left: 20px;
}

.magnet-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-stack {
    position: relative;
    width: 250px;
    height: 350px;
}

.pack-item {
    position: absolute;
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    border-radius: 12px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid white;
}

.item-1 {
    transform: rotate(-10deg) translate(-20px, 0);
    background: #a29bfe;
    z-index: 1;
}

.item-2 {
    transform: rotate(5deg) translate(20px, -10px);
    transform: rotate(0deg) translate(0, 20px);
    z-index: 3;
}

/* --- REDESIGN: Big & Bold Hero + Logo --- */

/* Full Logo Styling */
.brand-logo-img {
    height: 48px;
    /* Slightly taller for text readabilty */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Hero Badge */
.brand-logo-full {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text-full {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    /* Extra Bold */
    font-size: 1.8rem;
    color: #000;
    /* Deep black as per image */
    letter-spacing: -0.5px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.3);
    color: #e05d39;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section {
    padding: 180px 0 140px;
    /* Massive spacing */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.headline {
    font-size: 4.5rem;
    /* Massive, bold font */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #1a1a1a;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #FF7F50 0%, #a29bfe 100%);
    /* Orange to Soft Purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.4rem;
    /* Larger subheadline */
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 750px;
    /* Wider for bigger text */
    margin-left: auto;
    margin-right: auto;
}

/* --- FORM STYLING: Big & Simple --- */

/* Hero Form Container */
.hero-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    margin: 40px auto 0;
    max-width: 1000px;
    /* Wide enough for horizontal on desktop */
}

/* Horizontal Hero Form (Desktop) */
@media (min-width: 900px) {
    #lead-form-step-1 {
        display: flex;
        align-items: flex-end;
        /* Align inputs with button */
        gap: 15px;
    }

    #lead-form-step-1 .form-group {
        flex: 1;
        margin-bottom: 0;
        /* Remove margin in flex row */
    }

    #lead-form-step-1 button {
        flex: 0 0 auto;
        /* Button shouldn't shrink */
        width: auto;
        padding-left: 30px;
        padding-right: 30px;
        white-space: nowrap;
    }
}

/* Audit Form Specifics */
.audit-container {
    max-width: 800px;
    /* Wider for comfort */
    margin: 0 auto;
    padding: 60px 40px;
}

#lead-form-step-2.compact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Generous spacing between questions */
}

#lead-form-step-2 .form-group label {
    font-size: 1.2rem;
    /* Big readable labels */
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

#lead-form-step-2 input,
#lead-form-step-2 select {
    padding: 18px 24px;
    /* Big touch targets */
    font-size: 1.05rem;
    border-radius: 12px;
    border: 2px solid #eee;
    background: #fdfdfd;
    transition: all 0.2s ease;
}

#lead-form-step-2 input:focus,
#lead-form-step-2 select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.1);
}

/* General Form Tweaks */
.form-group {
    margin-bottom: 20px;
    text-align: left;
    /* Always left align labels */
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

input,
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero-form-container {
        padding: 24px;
        max-width: 500px;
        /* Reset on mobile */
    }

    #lead-form-step-1 {
        flex-direction: column;
    }

    #lead-form-step-1 .form-group {
        margin-bottom: 15px;
    }

    #lead-form-step-1 button {
        width: 100%;
    }

    .audit-container {
        padding: 40px 20px;
    }
}

/* Premium Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 180, 123, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    right: -100px;
}

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

    100% {
        transform: translate(20px, 40px) rotate(5deg);
    }
}

/* --- GRAPHICS & ICONS --- */
.icon-graphic {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7F50 0%, #FEB47B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
}

.center-icon {
    margin: 0 auto 20px;
}

/* --- SECTION SPACING & ALIGNMENT --- */
.problem-section,
.benefits-section {
    padding: 100px 0;
    text-align: center;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.check-list-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.check-list-center li {
    background: rgba(255, 127, 80, 0.1);
    color: #e05d39;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
}

.benefit-bullets {
    text-align: left;
    margin: 40px auto;
    max-width: 700px;
    list-style: none;
}

.benefit-bullets li {
    font-size: 1.3rem;
    margin-bottom: 24px;
    position: relative;
    padding-left: 35px;
    color: var(--text-muted);
}

.benefit-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: 800;
}

.final-note {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 50px;
}

.story-section p {
    font-size: 1.3rem !important;
    line-height: 1.7;
    margin-bottom: 24px;
}

.story-quote {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.4;
    padding: 60px;
    background: rgba(255, 127, 80, 0.05);
    border-radius: var(--radius-md);
    margin: 60px auto;
    border-left: 8px solid var(--primary);
}

/* Adjust Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.8rem;
        /* Slightly smaller for mobile readability */
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    .check-list-center {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-section {
        padding: 140px 0 80px;
    }
}

.privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Secondary Button */
.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Adjustments for new sections */
@media (max-width: 900px) {
    .magnet-layout {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .magnet-visual {
        display: none;
    }

    .magnet-form {
        flex-direction: column;
    }

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

/* --- LATEST TWEAKS: PREMIUM POLISH --- */

/* 1. Global Typography & Spacing Update */
section {
    position: relative;
    overflow: hidden;
}

h1,
.headline {
    font-size: 4.5rem !important;
    letter-spacing: -2.5px;
    font-weight: 800;
}

h2,
.section-title {
    font-size: 3.5rem !important;
    letter-spacing: -1.5px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* 2. Problem Section - Big & Bold */
.problem-section {
    padding: 160px 0;
    text-align: center;
}

.problem-section h2 {
    margin-bottom: 30px;
}

.problem-section h3 {
    font-size: 2.2rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* 3. Who Section - Spacing & Alignment */
.who-section {
    padding: 140px 0;
}

.who-section .grid-3 {
    gap: 50px;
    /* Wider gap for premium feel */
}

.who-section .persona-card {
    padding: 60px 40px;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.7);
    /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
}

.who-section .persona-card h3 {
    font-size: 1.6rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.who-section .persona-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.persona-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.problem-graphic {
    max-width: 700px;
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 0 auto 60px;
    display: block;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.offer-visual-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

/* 4. Offer Section - Tags Above Title & Green Color */
.offer-section {
    padding: 140px 0;
}

.bonus-list li {
    display: block;
    margin-bottom: 40px;
}

.bonus-list li>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Restored Green/Blue Tag Color */
.bonus-list .check {
    display: inline-block;
    align-self: flex-start;
    background: #eefbf5;
    /* Soft Mint Green */
    color: #00b894;
    /* Vibrant Green/Teal */
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bonus-list strong {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.bonus-list p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* 5. Story Section - Centered */
.story-section {
    padding: 140px 0;
}


.story-section .container {
    text-align: center;
}

/* 5. FAQ Section - Centered Header */
.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

/* 6. Final CTA - Big & Bold */
.final-cta-section {
    padding: 120px 0;
    text-align: center;
}

/* Security: Honeypot Trap - Must stay invisible to humans */
.hp-trap {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.final-cta-section h2 {
    font-size: 3.5rem;
    /* Match Problem Section */
    margin-bottom: 20px;
    line-height: 1.1;
}

.final-cta-section p {
    font-size: 1.5rem;
    /* Large impact text */
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

.final-cta-section .btn-primary {
    padding: 22px 50px;
    /* Massive button */
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.4);
}

/* Audit & Thank You Tightening */
.audit-container {
    padding-top: 40px !important;
}

.hero-section.audit-hero {
    padding-top: 60px !important;
    min-height: auto;
}

.success-section {
    padding-top: 60px !important;
}

.hero-badge {
    margin-bottom: 20px;
}

.hero-form-container.glass-card {
    margin-top: 30px;
}