/* Global Styles & Variables */
:root {
    /* Colors */
    --primary-orange: #FF8C00;
    --primary-orange-dark: #E67E00;
    --primary-orange-light: #FFF3E0;
    --secondary-green: #4CAF50;
    --secondary-green-dark: #388E3C;
    --neutral-dark: #333333;
    --neutral-gray: #666666;
    --neutral-light: #F5F5F5;
    --white: #FFFFFF;
    --error-red: #D32F2F;
    --border-color: #E0E0E0;

    /* Typography */
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-section: 50px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}
body {
    font-family: var(--font-body);
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-section) 0;
}
.d-f-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-primary-orange{
    color: var(--primary-orange);
}
.bold{
    font-weight: bold;
}
.m-t-30{
    margin-top: 3rem;
}
.m-t-20{
    margin-top: 2rem;
}
.m-r-10{
    margin-right: 1rem;
}
/* Typography Helpers */
.text-center { text-align: center; }
.text-primary { color: var(--primary-orange); }
.text-muted { color: var(--neutral-gray); }

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    border: 1px solid #CCCCCC;
}

.btn-secondary:hover {
    background-color: #E0E0E0;
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

.btn-ghost:hover {
    background-color: var(--primary-orange-light);
}

.btn-full {
    width: 100%;
}
.final-cta {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}
@media (max-width: 768px) {
    .pricing-card.highlight { transform: scale(1); }
    .final-cta h2 { font-size: 28px; }
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: var(--spacing-lg);
}
.om-features-section {
    padding: var(--spacing-section) 0;
}

.om-section-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}


.om-section-header h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #1f2933;
}

.om-section-header p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #5f6b7a;
}

.om-how-it-works {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 0 0 34px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(31, 41, 51, .08);
}

.om-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: #fff3e3;
}

.om-step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff8c00;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex: 0 0 auto;
}

.om-step strong {
    font-size: 14px;
    color: #263238;
}

.om-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.om-features-grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.om-feature-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--primary-orange);
    box-shadow: 0 14px 35px rgba(31, 41, 51, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.om-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(31, 41, 51, .11);
}

.om-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

.om-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.om-feature-card h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.25;
    color: #1f2933;
    padding-right: 3rem;
}

.om-feature-card ul {
    margin: 0;
    padding-left: 20px;
    color: #5f6b7a;
    line-height: 1.65;
    font-size: 15px;
}
.om-feature-card ul{
    list-style: disc;
}
.om-feature-card li::marker {
    color: var(--primary-orange);
}

.om-feature-card li + li {
    margin-top: 6px;
}
.om-auth-popup {
    width: min(560px, 100%);
    max-height: 92vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.om-auth-popup .om-popup-close {
    top: -16px;
    right: -16px;
    z-index: 3;
}

.om-auth-popup .om-login-card {
    margin: 0;
    width: 100%;
}

.om-auth-popup .om-card-inner {
    position: relative;
}

.om-hidden {
    display: none !important;
}
.hero {
    padding: var(--spacing-4xl) 0;
    background-color: var(--neutral-light);
    padding: var(--spacing-section) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.hero-text{
    padding: 1rem 2rem 1rem 0;
}

.hero-text h1 {
    font-size: 2.7rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;

}
.pricing-hero {
    background-color: var(--neutral-light);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 40px;
    margin-bottom: var(--spacing-md);
}

.pricing-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--neutral-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card.highlight {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    z-index: 1;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: var(--spacing-md) 0;
    color: var(--primary-orange);
}

.price span {
    font-size: 18px;
    color: var(--neutral-gray);
    font-weight: 400;
}

.pricing-features {
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.pricing-features li::before {
    content: "✓";
    color: var(--secondary-green);
    font-weight: bold;
    margin-top: 2px;
}

.comparison-table-section {
    padding: 0 0 var(--spacing-xxl) 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-xxl);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 768px;
}

.comparison-table img{
    width: 2rem;
    height: 2rem;
}

.comparison-table th, .comparison-table td {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--neutral-light);
    font-weight: 700;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    background-color: var(--neutral-light);
    width: 30%;
}
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: #fff3e3;
    border-radius: 999px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 999px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e67d00;
}
.comparison-table-wrapper {
    scrollbar-color: #ff8c00 #fff3e3;
    scrollbar-width: thin;
}

.check { color: var(--secondary-green); font-weight: bold; }
.cross { color: var(--error-red); font-weight: bold; }

.billing-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 14px;
    color: var(--neutral-gray);
}

@media (max-width: 768px) {
    .pricing-card.highlight { transform: scale(1);}
    .comparison-table-section { overflow-x: auto; }
    .comparison-table {
        min-width: 768px;
        margin-top: 0;
    }
    .pricing-hero{
        padding-top: 1rem;
    }
    .pricing-hero h1{
        font-size: 2rem;
    }
}
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text{
        padding: 1rem;
    }
}

.hero-text p {
    font-size: var(--font-size-lg);
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.compare-hero {
    background-color: var(--neutral-light);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.compare-hero h1 {
    font-size: 40px;
    margin-bottom: var(--spacing-md);
}

.compare-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--neutral-gray);
}
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: #fff3e3;
    border-radius: 999px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 999px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e67d00;
}
.comparison-table-wrapper {
    scrollbar-color: #ff8c00 #fff3e3;
    scrollbar-width: thin;
}
.compare-table-section {
    padding: var(--spacing-xxl) 0;
}

.compare-table img{
    width: 2rem;
    height: 2rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.compare-table th, .compare-table td {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background-color: var(--neutral-light);
    font-weight: 700;
    font-family: var(--font-headings);
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 700;
    background-color: var(--neutral-light);
    width: 25%;
}

.om-col {
    background-color: rgba(255, 140, 0, 0.05);
    border-left: 1px solid var(--primary-orange);
    border-right: 1px solid var(--primary-orange);
}

.om-col-header {
    background-color: var(--primary-orange) !important;
    color: var(--white);
}

.differentiators {
    background-color: var(--neutral-light);
    padding: var(--spacing-xxl) 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.diff-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.diff-icon {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .compare-table-section { overflow-x: auto; }
    .compare-table { min-width: 800px; }

}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-trust {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.hero-image {
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-image {
        display: flex;
    }
}

.hero-placeholder {
    width: 100%;
    height: 24rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0px 0px 5px var(--neutral-gray);
    overflow: hidden;
}

.hero-placeholder-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.hero-placeholder p {
    margin: 0;
    color: var(--gray-700);
}

.features-grid {
    display: flex;
    margin-top: var(--spacing-xxl);
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-card {
    padding: var(--spacing-xl);
    width: calc(33% - 1rem);
    border: 1px solid var(--primary-orange);
    margin-bottom: 2rem;
    border-radius: 1rem;
    text-align: left;
    position: relative;
}

.feature-card p{
    margin: 0;
}
.feature-card h3{
    padding-right: 3rem;
}

.feature-card::before{
    content: attr(data-number);
    position: absolute;
    right: 1rem;
    top: -0.5rem;
    font-size: 5rem;
    color: var(--primary-orange);
    opacity: 0.5;
    font-weight: bold;
}
.feature-card:last-child{
    width: 100%;
}

.pricing-preview {
    background-color: var(--neutral-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.highlight {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-orange);
}

.price span {
    font-size: 16px;
    color: var(--neutral-gray);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.pricing-features li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pricing-features li::before {
    content: "✓";
    color: var(--secondary-green);
    font-weight: bold;
}

.trust-section {
    background-color: var(--white);
    text-align: center;
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
    opacity: 0.8;
}





.logo-strip {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logo-marquee 25s linear infinite;
}

.logo-cloud {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
    margin-right: 30px;
    margin-left: 30px;
}

.logo-cloud img {
    width: auto;
    max-width: 20rem;
    object-fit: contain;
    display: block;
}
.om-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(31, 41, 51, 0.65);
}

.om-popup-overlay.is-active {
    display: flex;
}

.om-popup {
    position: relative;
    width: min(900px, 100%);
    max-height: 86vh;
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.om-popup h2 {
    margin: 0 50px 20px 0;
    color: #1f2933;
    font-size: 32px;
    line-height: 1.2;
}

.om-popup-content {
    max-height: calc(86vh - 120px);
    overflow-y: auto;
    padding-right: 14px;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.65;
}

.om-popup-content h3 {
    margin: 24px 0 8px;
    color: #1f2933;
    font-size: 20px;
}

.om-popup-content p {
    margin: 0 0 10px;
}

.om-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
    background: transparent;
}

.om-popup-close:hover {
    transform: rotate(90deg);
}

.om-popup-content::-webkit-scrollbar {
    width: 8px;
}

.om-popup-content::-webkit-scrollbar-track {
    background: #fff3e3;
    border-radius: 999px;
}

.om-popup-content::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 999px;
}

@media (max-width: 640px) {
    .om-popup-overlay {
        padding: 14px;
    }

    .om-popup {
        padding: 24px;
        border-radius: 18px;
    }

    .om-popup h2 {
        font-size: 26px;
    }
}
@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.logo-strip:hover .logo-track {
    animation-play-state: paused;
}
@keyframes omAuthFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .om-auth-popup {
        max-height: 94vh;
        overflow-y: auto;
    }

    .om-auth-popup .om-popup-close {
        top: 10px;
        right: 10px;
    }

    .om-auth-popup .om-login-card {
        padding-top: 0;
    }
}
@media (max-width: 991px) {
    .om-how-it-works,
    .om-features-grid,
    .om-features-grid-2{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .om-features-section {
        padding: 54px 0;
    }

    .om-how-it-works,
    .om-features-grid,
    .om-features-grid-2{
        grid-template-columns: 1fr;
    }

    .om-feature-card {
        padding: 24px;
    }
}
/* Card Styles */
.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

.logo img{
    width: 2rem;
    height: auto;
    margin-bottom: 0.3rem;
}

.logo span {
    color: var(--neutral-dark);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

/* Footer */
footer {
    background-color: var(--primary-orange-light);
    padding: var(--spacing-xxl) 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--primary-orange);
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    color: #AAA;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-dark);
    border-radius: 2px;
}
.faq-section {
    background-color: var(--neutral-light);
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    display: none;
    color: var(--neutral-gray);
}

.faq-item.active .faq-answer {
    display: block;
}
/* Responsive Styles */
.scroll-hint {
    display: none;
}

@media (max-width: 767px) {
    .scroll-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px 0;
        pointer-events: none;
    }

    .scroll-hint img {
        width: 5rem;
        height: auto;
        opacity: 0.85;
        animation: swipeHint 1.6s ease-in-out infinite;
    }
}

@keyframes swipeHint {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.65;
    }

    50% {
        transform: translateX(12px);
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .footer-accordion h4 {
        cursor: pointer;
        position: relative;
        padding-right: 30px;
    }

    .footer-accordion h4::after {
        content: "+";
        position: absolute;
        right: 0;
        top: -0.4rem;
        font-size: 1.5rem;
    }
    .footer-accordion{
        border-bottom: 1px solid var(--primary-orange);
    }
    .footer-accordion h4{
        margin-bottom: 1rem;
    }
    .footer-grid{
        gap: 1rem;
    }

    .footer-accordion.is-open h4::after {
        content: "−";
    }

    .footer-accordion ul {
        display: none !important;
    }

    .footer-accordion.is-open ul {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}
