/* ==========================================
   CORE Offer Blueprint Generator - CSS
   Professional, conversion-optimized design
   Target audience: 45-65 years old
   ========================================== */

/* CSS Variables */
:root {
    /* Colors - Professional & Trustworthy */
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --light-blue: #dbeafe;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    
    /* CTA Colors - High Conversion */
    --cta-orange: #f97316;
    --cta-orange-hover: #ea580c;
    --cta-red: #dc2626;
    
    /* Success/Error */
    --success-green: #16a34a;
    --error-red: #dc2626;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 60px 20px;
}

/* ==========================================
   Global Styles
   ========================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--secondary-blue);
    transition: color 0.3s ease;
}

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

/* Section Headlines */
.section-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-subheadline {
    text-align: center;
    font-size: 1.5rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    font-weight: 500;
}

/* ==========================================
   CTA Buttons - Optimized for Conversion
   ========================================== */

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    background: linear-gradient(135deg, var(--cta-orange) 0%, var(--cta-red) 100%);
    color: var(--white);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--cta-orange-hover) 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-large {
    font-size: 1.5rem;
    padding: 22px 50px;
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-headline {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    font-size: 1.1rem;
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.hero-benefits i {
    color: var(--success-green);
    font-size: 1.3rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.mockup-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ==========================================
   Problem Section
   ========================================== */

.problem-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.problem-list {
    margin: 40px 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--error-red);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.problem-item i {
    color: var(--error-red);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.problem-item p {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--medium-gray);
}

.emphasis-text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--error-red);
    margin: 50px 0;
}

.problem-explanation {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.problem-explanation h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.problem-explanation ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.problem-explanation li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-style: italic;
}

.problem-explanation li::before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--medium-gray);
    font-size: 1.5rem;
}

.highlight {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-blue);
    font-weight: 600;
    margin: 30px 0;
}

.big-text {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 20px;
}

.solution-intro {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin: 40px 0;
}

.final-hook {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-gray);
    margin-top: 30px;
}

/* ==========================================
   Solution Section
   ========================================== */

.solution-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

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

.step {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cta-orange) 0%, var(--cta-red) 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin: 20px 0;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-time {
    color: var(--cta-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.step li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.step li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 700;
}

.solution-closing {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-gray);
    margin: 60px 0 40px;
}

/* ==========================================
   Deliverables Section
   ========================================== */

.deliverables-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.main-deliverable {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto 60px;
    max-width: 800px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.main-deliverable i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.main-deliverable h3 {
    color: var(--white);
    margin: 0;
    font-size: 2rem;
}

.blueprint-sections {
    display: grid;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.blueprint-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

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

.blueprint-header {
    background: var(--light-blue);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--secondary-blue);
}

.blueprint-header i {
    color: var(--secondary-blue);
    font-size: 1.5rem;
}

.blueprint-header h4 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.blueprint-content {
    padding: 20px 25px;
}

.blueprint-content p {
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.value-statement {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 60px auto 40px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.total-value {
    font-size: 1.5rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.your-investment {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.your-investment span {
    color: var(--cta-orange);
    font-size: 3.5rem;
}

/* ==========================================
   Qualification Section
   ========================================== */

.qualification-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.qualification-column {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.yes-column {
    border-top: 5px solid var(--success-green);
}

.no-column {
    border-top: 5px solid var(--error-red);
}

.qualification-column h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.yes-column h3 {
    color: var(--success-green);
}

.no-column h3 {
    color: var(--error-red);
}

.qualification-column h3 i {
    font-size: 1.75rem;
}

.qualification-column ul {
    list-style: none;
    padding: 0;
}

.qualification-column li {
    padding: 15px 0 15px 35px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

.qualification-column li:last-child {
    border-bottom: none;
}

.yes-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.5rem;
}

.no-column li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-red);
    font-weight: 700;
    font-size: 1.5rem;
}

.qualification-bottom {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 40px;
}

/* ==========================================
   Authority Section
   ========================================== */

.authority-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.authority-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.authority-intro h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.authority-intro p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.authority-results h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.authority-results ul {
    list-style: none;
    padding: 0;
}

.authority-results li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1rem;
}

.authority-results li i {
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-size: 1.3rem;
}

.authority-story {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-blue);
    border-radius: 8px;
}

.authority-story p {
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.authority-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-top: 30px !important;
}

.authority-guarantee {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--success-green);
}

.authority-guarantee h4 {
    color: var(--success-green);
    margin-bottom: 15px;
}

.authority-guarantee p {
    font-size: 1.15rem;
    font-weight: 600;
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.faq-item {
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

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

.faq-question h4 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.faq-question i {
    color: var(--secondary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    background: var(--light-gray);
}

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

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==========================================
   Guarantee Section
   ========================================== */

.guarantee-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--success-green) 0%, #15803d 100%);
    color: var(--white);
}

.guarantee-section .section-headline {
    color: var(--white);
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content p {
    font-size: 1.25rem;
    color: var(--white);
}

.guarantee-intro {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.guarantee-main {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0;
}

.guarantee-refund {
    font-size: 1.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.guarantee-why {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.guarantee-why h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.guarantee-closing {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0;
}

/* ==========================================
   Final CTA Section
   ========================================== */

.final-cta-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.next-steps {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.next-steps h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.next-steps ol {
    text-align: left;
    padding-left: 25px;
    margin: 0;
}

.next-steps li {
    font-size: 1.25rem;
    padding: 15px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.next-steps li:last-child {
    border-bottom: none;
}

.urgency-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 40px 0 20px;
}

.alternative-text {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin: 10px 0;
}

.choice-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 20px 0 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    font-size: 1.1rem;
    color: var(--medium-gray);
    flex-wrap: wrap;
}

.trust-badges i {
    color: var(--success-green);
    margin-right: 8px;
}

.ps-section {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ps-section p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.ps-section p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer a {
    color: var(--white);
    margin: 0 10px;
}

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

/* ==========================================
   Exit Intent Popup
   ========================================== */

.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--error-red);
}

.exit-popup-content h3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.exit-popup-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.exit-offer {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cta-orange);
}

.exit-guarantee {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--success-green);
}

/* ==========================================
   Animations
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ==========================================
   Responsive Design - Mobile Optimization
   ========================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    html {
        font-size: 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.4rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .section-subheadline {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .cta-large {
        font-size: 1.25rem;
        padding: 18px 35px;
    }
    
    .problem-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .authority-content {
        padding: 30px 25px;
    }
    
    .exit-popup-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .next-steps {
        padding: 30px 25px;
    }
    
    .next-steps h3 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .next-steps ol {
        padding-left: 20px;
    }
    
    .next-steps li {
        font-size: 1.1rem;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 18px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .next-steps {
        padding: 25px 20px;
    }
    
    .next-steps h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .next-steps ol {
        padding-left: 18px;
    }
    
    .next-steps li {
        font-size: 1.05rem;
        padding: 12px 0;
    }
}