:root {
    --navy: #1a2332;
    --navy-light: #2c3e50;
    --navy-dark: #0f1419;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --accent-warm: #5a7a6f;
    --accent-steel: #4a6572;
    --text-color: #222222;
    --text-light: #666666;
    --light-gray: #e9ecef;
    --dark-gray: #555555;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    --shadow-strong: 0 8px 40px rgba(212, 175, 55, 0.3);
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--navy);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-nav {
    background-color: var(--gold);
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-nav:hover {
    background-color: var(--gold-light);
    color: var(--navy) !important;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a2332" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(to bottom, rgba(26, 35, 50, 0.03), rgba(255, 255, 255, 0));
    padding: 25px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(212, 175, 55, 0.5);
    animation: pulse-glow 1.5s infinite;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 50px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 12px 50px rgba(212, 175, 55, 0.7);
    }
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    width: 100%;
    box-shadow: var(--shadow-strong);
    font-size: 1.2rem;
    padding: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-footer-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Problem Section */
.problem-section {
    padding: 70px 0 75px;
    background-color: #f9f9f9;
    counter-reset: problem-counter;
}

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

.problem-content h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 25px;
    font-weight: 800;
}

.problem-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 0 1 350px;
    counter-increment: problem-counter;
    position: relative;
}

.problem-item::before {
    content: counter(problem-counter) ".";
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    min-width: 40px;
}

.problem-item i {
    display: none;
}

.problem-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

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

.solution-header h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 800;
}

.solution-header .subtitle {
    font-size: 1.3rem;
    color: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 28px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

/* Varied card styles to break symmetry */
.solution-card-large {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
}

.solution-card-wide {
    grid-column: span 2;
}

.solution-card-accent {
    background: linear-gradient(135deg, rgba(90, 122, 111, 0.1), rgba(255, 255, 255, 0.05));
    border-color: var(--accent-warm);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 2.5rem;
    color: var(--navy);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.solution-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 85px 0 80px;
    background-color: var(--white);
}

.who-we-serve h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--navy);
    font-weight: 800;
}

.serve-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.serve-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    display: block;
    flex: 0 1 350px;
}

.serve-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-strong);
}

.serve-card i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.serve-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 700;
}

.serve-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.serve-card .learn-more {
    color: var(--gold-light);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Analogy Section */
.analogy-section {
    padding: 75px 0 85px;
    background-color: #f9f9f9;
}

.analogy-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: var(--navy);
    font-weight: 800;
}

.analogy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.analogy-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--gold);
    flex: 0 1 450px;
    transition: all 0.3s ease;
}

.analogy-card:nth-child(1) {
    transform: rotate(-0.5deg);
}

.analogy-card:nth-child(2) {
    transform: rotate(0.3deg);
}

.analogy-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.analogy-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.analogy-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.analogy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--navy);
    font-weight: 700;
}

.analogy-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

/* Credentials Section */
.credentials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.credentials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--gold);
    font-weight: 800;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.credential-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    flex: 0 1 350px;
}

.credential-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.credential-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.credential-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.credential-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.credential-number {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
}

.about-image i {
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.3;
}

/* Objections Section */
.objections-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7f9 0%, #ffffff 100%);
}

.objections-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--navy);
    font-weight: 700;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.objection-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.objection-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-warm);
}

.objection-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.objection-item h3 i {
    color: var(--gold);
    font-size: 1.3rem;
}

.objection-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 3px solid var(--gold);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 800;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.privacy-note {
    font-size: 0.95rem;
    color: var(--accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: var(--gold);
}

/* What Happens Next */
.what-happens-next {
    background: linear-gradient(135deg, rgba(90, 122, 111, 0.08), rgba(212, 175, 55, 0.05));
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.what-happens-next h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-step p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 18px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 16px;
    background-color: var(--white);
    transition: all 0.3s ease;
    min-height: 50px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Occupation Radio Buttons */
.occupation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.occupation-btn {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 140px;
    position: relative;
    cursor: pointer;
}

.occupation-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.occupation-btn span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    min-height: 90px;
}

.occupation-btn span i {
    font-size: 1.8rem;
    color: var(--gold);
}

.occupation-btn input[type="radio"]:checked + span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(90, 122, 111, 0.05));
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.occupation-btn:hover span {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 5px;
    width: auto;
    height: 18px;
    width: 18px;
}

.checkbox-group label {
    font-size: 0.95rem;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Contact Info Bar */
.contact-info-bar {
    padding: 40px 0;
    background-color: var(--navy);
    color: var(--white);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--gold);
}

.contact-item .label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* Footer CTA alignment fix */
.footer-cta {
    text-align: center;
    margin: 20px 0;
}

.footer-cta .btn {
    display: inline-block;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(26, 35, 50, 0.98) 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
    margin: 0;
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--navy);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
    }

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

    .trust-items {
        gap: 25px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .problem-content h2,
    .solution-header h2,
    .who-we-serve h2,
    .analogy-section h2,
    .objections-section h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-grid,
    .serve-grid,
    .analogy-grid,
    .credentials-grid,
    .contact-info-grid,
    .objections-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-large,
    .solution-card-wide {
        grid-column: span 1;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

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

    .occupation-btn {
        flex: 1 1 calc(50% - 12px);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

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

    .btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
    }

    .solution-icon i {
        font-size: 2rem;
    }

    .serve-card i,
    .analogy-card i {
        font-size: 3rem;
    }
}

