/* HPP Insurance Website Styles */

/* CSS Variables for Brand Colors */
:root {
    --primary-teal: #2D5A5A;
    --primary-teal-light: #4A7C7C;
    --primary-teal-dark: #1A3A3A;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E6C547;
    --accent-gold-dark: #B8941F;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6A6A6A;
    --background-white: #FFFFFF;
    --background-light: #F8F9FA;
    --background-gradient: linear-gradient(135deg, #2D5A5A 0%, #4A7C7C 100%);
    --shadow-light: 0 2px 10px rgba(45, 90, 90, 0.1);
    --shadow-medium: 0 4px 20px rgba(45, 90, 90, 0.15);
    --shadow-heavy: 0 8px 30px rgba(45, 90, 90, 0.2);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--primary-teal);
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--background-gradient);
    color: white;
    box-shadow: var(--shadow-light);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-mobile {
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(45, 90, 90, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-medium);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-cta .btn {
    padding: 0.5rem 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-dark);
    opacity: 0.9;
}rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.pyramid-image, .pyramid-hero {
    max-width: 350px;
    max-height: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

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

.section-subheadline {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* Problem Section */
.problem-section {
    background: var(--background-light);
}

.problem-grid {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.problem-points {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.problem-point p {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.problem-conclusion {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    background: white;
}

.pyramid-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.pyramid-interactive {
    max-width: 400px;
    max-height: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition);
}

.pyramid-interactive:hover {
    transform: scale(1.05);
}

.pyramid-layers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pyramid-layer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    padding: 1rem 0; /* Added consistent padding */
}

.layer-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-gradient);
    border-radius: 50%;
    color: white;
}

.layer-content {
    flex: 1; /* Ensure consistent content width */
}

.layer-content h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-size: 1.25rem; /* Consistent font size */
    font-weight: 600; /* Consistent font weight */
}

.layer-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0; /* Remove default margins for consistency */
}

.key-insight {
    background: var(--background-gradient);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    margin-top: 3rem;
}

.insight-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: white;
}

/* HPP Difference Section */
.hpp-difference {
    background: var(--background-light);
}

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

.pillar {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.pillar-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.pillar-content {
    text-align: left;
}
.pillar-benefits {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.pillar-benefits li {
    position: relative;
    padding-left: 32px; /* Increased from 24px to 32px for better spacing */
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.5;
}

.pillar-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 16px;
}

.trust-badges {
    margin-bottom: 3rem;
    text-align: center;
}

.trust-badges-image {
    max-width: 100%;
    height: auto;
}

.carrier-logos {
    margin-bottom: 4rem;
    text-align: center;
}

.carrier-logos-image {
    max-width: 100%;
    height: auto;
}

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

.testimonial {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--accent-gold);
}

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

.testimonial-author strong {
    color: var(--primary-teal);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background: var(--background-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--background-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-title {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: var(--background-gradient);
    color: white;
}

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

.cta-headline {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-guarantees {
    margin-top: 2rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.2);
}

.form-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1rem;
}

.alternative-cta {
    text-align: center;
    margin-top: 2rem;
}

.download-link {
    color: var(--accent-gold);
    font-weight: 500;
    text-decoration: underline;
}

.download-link:hover {
    color: var(--accent-gold-light);
}

/* Footer */
.footer {
    background: var(--primary-teal-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle:hover {
    color: #D4AF37;
}

/* Header responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav-menu {
        position: relative;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: c/* Mobile Optimization */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .header {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2D5A5A;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-headline {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pyramid-hero {
        width: 100%;
        height: auto;
    }
    
    /* Problem Section Mobile */
    .problem-section {
        padding: 60px 0;
    }
    
    .section-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .problem-intro {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .problem-points {
        gap: 20px;
    }
    
    .problem-point {
        padding: 20px;
    }
    
    .point-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .problem-point p {
        font-size: 16px;
    }
    
    /* Solution Section Mobile */
    .solution-section {
        padding: 60px 0;
    }
    
    .section-subheadline {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .pyramid-explanation {
        flex-direction: column;
    }
    
    .pyramid-visual {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .pyramid-interactive {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .pyramid-layers {
        gap: 20px;
    }
    
    .pyramid-layer {
        padding: 25px 20px;
    }
    
    .layer-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .pyramid-layer h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .pyramid-layer p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* HPP Difference Mobile */
    .hpp-difference {
        padding: 60px 0;
    }
    
    .difference-pillars {
        flex-direction: column;
        gap: 30px;
    }
    
    .pillar {
        padding: 30px 25px;
    }
    
    .pillar-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .pillar-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .pillar-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .pillar-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .pillar-benefits li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Trust Section Mobile */
    .trust-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        padding: 25px 20px;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 20px;
    }
    
    .step-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .step-description {
        font-size: 16px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        text-align: center;
        padding: 40px 25px;
    }
    
    .cta-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .cta-subheadline {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .cta-feature {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }
    
    /* Contact Form Styles */
.contact-form {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 12px;
    color: white;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form h3 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form form p {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #f4d03f;
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    line-height: 1.4;
}
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 15px;
        font-size: 16px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }
}

/* Small Mobile (320px and below) */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .section-headline {
        font-size: 28px;
    }
    
    .hero-subheadline,
    .section-subheadline {
        font-size: 16px;
    }
    
    .pillar {
        padding: 25px 20px;
    }
    
    .pyramid-layer {
        padding: 20px 15px;
    }
    
    .testimonial {
        padding: 20px 15px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
}   text-align: center;
    }
    
    .cta-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Mobile CTA */
    .mobile-cta {
        display: block;
    }
    
    /* Add bottom padding to body to account for mobile CTA */
    body {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
input:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-teal: #000000;
        --text-medium: #000000;
        --text-light: #333333;
    }
}

