/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-menu a {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0066cc;
}

.nav-cta {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.nav-cta:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

/* ========================================
   SPLIT-SCREEN LAYOUTS (ARCHETYPE)
   ======================================== */

.hero-split,
.problem-split,
.solution-split,
.trust-split,
.about-split,
.experience-split,
.contact-split,
.faq-split,
.final-cta-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 4rem 1.5rem;
}

.hero-content,
.split-content {
    flex: 1;
    min-width: 280px;
}

.hero-visual,
.split-visual {
    flex: 1;
    min-width: 280px;
}

.hero-visual img,
.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-service {
    background-color: #28a745;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #218838;
}

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
}

.btn-submit:hover {
    background-color: #0052a3;
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.sticky-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
}

/* ========================================
   SECTIONS
   ======================================== */

.insight-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

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

.insight-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.25rem;
}

/* ========================================
   SERVICES
   ======================================== */

.services-preview {
    background-color: #ffffff;
    padding: 5rem 0;
}

.section-lead {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #0066cc;
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    padding: 2rem;
    position: relative;
}

.badge {
    display: inline-block;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #666;
    font-size: 0.9375rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #555;
}

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

.faq-split {
    background-color: #f8f9fa;
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-intro {
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

/* ========================================
   FORMS
   ======================================== */

.form-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 5rem 0;
    color: #ffffff;
}

.form-section h2 {
    color: #ffffff;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #e6f0ff;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9375rem;
}

.checkbox-group a {
    color: #0066cc;
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-col p {
    color: #b3b3b3;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #b3b3b3;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #0066cc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #808080;
    font-size: 0.9375rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* ========================================
   PAGE HERO (SUBPAGES)
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero .hero-lead {
    color: #e6f0ff;
}

/* ========================================
   SERVICES DETAILED PAGE
   ======================================== */

.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.service-detail-split.reverse {
    flex-direction: column;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-tag {
    display: inline-block;
    background-color: #e6f0ff;
    color: #0066cc;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.service-tag.featured {
    background-color: #0066cc;
    color: #ffffff;
}

.service-tag.premium {
    background-color: #ff6b35;
    color: #ffffff;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.feature-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.25rem;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
    color: #555;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.pricing-comparison {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background-color: #0066cc;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.services-cta {
    background-color: #0066cc;
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

.services-cta h2,
.services-cta p {
    color: #ffffff;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: #0066cc;
}

.team-approach {
    padding: 5rem 0;
}

.approach-split-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-text h3 {
    margin-top: 0;
}

.why-us {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.about-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

.about-cta h2,
.about-cta p {
    color: #ffffff;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-split {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: #0066cc;
    text-decoration: underline;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-cta-section {
    background-color: #f8f9fa;
    text-align: center;
    padding: 5rem 0;
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-content {
    margin-top: 4rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-text h3 {
    margin-top: 0;
}

.selected-service {
    background-color: #e6f0ff;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0066cc;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.thanks-additional {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 4rem 0;
}

.legal-date {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    color: #0066cc;
}

.legal-content h3 {
    margin-top: 2rem;
    color: #333;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

/* ========================================
   PREMIUM SERVICE STYLING
   ======================================== */

.premium-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f0ff 100%);
    padding: 3rem;
    border-radius: 16px;
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .nav-menu {
        gap: 2.5rem;
    }

    .hero-split,
    .problem-split,
    .solution-split,
    .trust-split,
    .about-split,
    .experience-split,
    .contact-split,
    .final-cta-split {
        flex-direction: row;
        gap: 4rem;
    }

    .problem-split.reverse,
    .trust-split.reverse,
    .experience-split.reverse {
        flex-direction: row-reverse;
    }

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1;
        min-width: 280px;
    }

    .services-split-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.25rem);
        min-width: 320px;
    }

    .faq-split {
        flex-direction: row;
        gap: 4rem;
    }

    .faq-intro {
        flex: 1;
        text-align: left;
    }

    .faq-list {
        flex: 1.5;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .service-detail-split {
        flex-direction: row;
        gap: 4rem;
    }

    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.667rem);
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }
}

/* ========================================
   MOBILE MENU (< 768px)
   ======================================== */

@media (max-width: 767px) {
    .nav-menu {
        width: 100%;
        order: 3;
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        margin-left: auto;
    }
}