/* Color Palette Variables */
:root {
    --dark-navy: #102937;
    --teal-dark: #124d54;
    --burnt-orange: #f9744b;
    --light-gray: #e1d9cf;
    --pale-gray: #ede9d4;
    --darker-navy: #091d26;
    --darker-teal: #094044;
    --orange-muted: #d84f2a;
    --warm-beige: #d6c4b0;
    --cream-white: #ede9d4;
    
    /* Computed colors for design */
    --text-light: #e1d9cf;
    --text-dark: #102937;
    --glass-overlay: rgba(225, 217, 207, 0.03);
}
/*test test*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-navy);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Background with rotating box */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--darker-navy) 50%, var(--dark-navy) 100%);
    z-index: -2;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(18, 77, 84, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 116, 75, 0.04) 0%, transparent 50%);
    z-index: -1;
}

/* Rotating Box Animation */
.rotating-box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.box {
    width: 100%;
    height: 100%;
    border: 2px solid var(--teal-dark);
    border-radius: 20px;
    animation: rotate3d 20s linear infinite;
    position: relative;
}

.box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--burnt-orange);
    border-radius: 15px;
    animation: rotate3d 15s linear infinite reverse;
}

.box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    animation: rotate3d 10s linear infinite;
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    33% { transform: rotateX(120deg) rotateY(120deg) rotateZ(0deg); }
    66% { transform: rotateX(240deg) rotateY(240deg) rotateZ(120deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Floating Particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--teal-dark);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(16, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(18, 77, 84, 0.15);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-image {
    height: 60px;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--light-gray);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--teal-dark) 50%, var(--burnt-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--warm-beige);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--orange-muted) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 116, 75, 0.25);

    /* Added for alignment with secondary CTA */
    min-width: 160px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }


.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 116, 75, 0.35);
}

/* CTA secondary container: vertical stack (coming soon) on the Litepaper*/
.cta-secondary-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 160px;
}

/*old cta*/

/* .cta-secondary {
    border: 2px solid var(--teal-dark);
    color: var(--teal-dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.7;
    cursor: not-allowed;
}


.coming-soon {
    background: #666666;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coming-soon-inline {
    background: #666666;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    display: inline-block;
}

*/ 



/* Litepaper button with subtle arrow */
.cta-secondary {
    border: 2px solid var(--burnt-orange);
    color: var(--burnt-orange);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease, transform 0.2s;
    opacity: 1;
    cursor: default;
    background: rgba(249, 116, 75, 0.08);
    position: relative;
}

/* Add small arrow after text */
.cta-secondary::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: transform 0.2s;
}

/* Hover effect: arrow moves slightly */
.cta-secondary:hover::after {
    transform: translateX(4px);
}

/* Subtle hover background */
.cta-secondary:hover {
    background: rgba(249, 116, 75, 0.15);
}

/* Coming Soon label under button */
.coming-soon-inline {
    background: transparent;
    color: var(--warm-beige);
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.6;
    margin-left: 0;
}



/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(225, 217, 207, 0.02) 100%);
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--light-gray);
}

.stat-item {
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--burnt-orange);
    margin-bottom: 0.5rem;
}

.adrena-section {
    margin-top: 3rem;
}

.adrena-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--warm-beige);
}

.adrena-highlight {
    color: var(--burnt-orange);
    font-weight: 600;
}

.adrena-brand {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--orange-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    height: 60px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partnership-x {
    font-size: 2rem;
    color: var(--teal-dark);
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--glass-overlay);
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--warm-beige);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 116, 75, 0.02) 0%, rgba(18, 77, 84, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal-dark);
    box-shadow: 0 20px 40px rgba(18, 77, 84, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.feature-card p {
    color: var(--warm-beige);
    line-height: 1.6;
    font-size: 1rem;
}

/* Backed By Section */
.backed-by {
    padding: 2rem;
    text-align: center;
    background: rgba(144, 238, 144, 0.15);  /* Light green background */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(144, 238, 144, 0.4);  /* Light green border */
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 400px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.2);  /* Light green glow */
}

.backed-by-content {
    max-width: 1200px;
    margin: 0 auto;
}

.backed-by-text {
    font-size: 1.2rem;
    color: var(--warm-beige);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.techstars-logo {
    height: 70px;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

.techstars-logo:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--dark-navy);
    border-top: 1px solid rgba(18, 77, 84, 0.15);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(18, 77, 84, 0.3);  /* More opaque background */
    border: 2px solid rgba(18, 77, 84, 0.5);  /* Stronger border */
    border-radius: 50%;
    color: var(--light-gray);  /* Much lighter color */
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--burnt-orange);
    border-color: var(--burnt-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 116, 75, 0.25);
}

.social-link svg {
    width: 22px;  /* Slightly larger icon */
    height: 22px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rotating-box {
        width: 150px;
        height: 150px;
        opacity: 0.05;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column; /*stacks vertically on mobile*/
        gap: 1rem;
        align-items:center;
    }


    .cta-primary,
    .cta-secondary-container {
        min-width: auto; /* allow buttons to shrink on small screens */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .partnership-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Additional Animations */
.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Scroll Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-container {
    animation: slideInFromLeft 0.8s ease-out;
}

/*padding top*/

@media (max-width: 768px) {
    body {
      padding-top: 100px; /* a little extra space for smaller devices */
    }
  }



/*CSS for product page*/

/* Code styling for endpoints and technical terms */
.code-endpoint {
    display: inline-block;
    background: rgba(18, 77, 84, 0.2);
    border: 1px solid rgba(18, 77, 84, 0.4);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    color: var(--burnt-orange);
    font-weight: 500;
    white-space: nowrap;
}

/* Products page specific styles */
.products-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.products-hero {
    padding: 48px 32px;
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.2);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(18, 77, 84, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 40px;
}

.products-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(18, 77, 84, 0.15);
    color: var(--burnt-orange);
    border: 1px solid rgba(18, 77, 84, 0.3);
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 13px;
    margin-bottom: 18px;
}

.products-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: var(--light-gray);
}

.products-sub {
    font-size: 20px;
    color: var(--warm-beige);
    margin-bottom: 18px;
    line-height: 1.4;
}

.tech-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tech-chip {
    background: rgba(18, 77, 84, 0.2);
    color: var(--light-gray);
    border: 1px solid rgba(18, 77, 84, 0.4);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    margin-top: 28px;
}

.product-card {
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.15);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal-dark);
    box-shadow: 0 20px 40px rgba(18, 77, 84, 0.1);
}

.product-card .product-badge {
    background: var(--burnt-orange);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.product-card .product-badge.beta {
    background: var(--warm-beige);
    color: var(--dark-navy);
}

.product-card h3 {
    margin: 6px 0 8px;
    font-size: 18px;
    color: var(--light-gray);
    font-weight: 700;
}

.product-card .product-tag {
    font-size: 13px;
    color: var(--warm-beige);
    margin-bottom: 12px;
    font-style: italic;
}

.product-card ul {
    margin: 0 0 0 18px;
    color: var(--warm-beige);
    line-height: 1.5;
}

.product-card ul li {
    margin-bottom: 4px;
}

.products-section {
    margin-top: 44px;
}

.products-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--light-gray);
    font-weight: 700;
}


/* Products CTA Section */
.products-cta-section {
    margin-top: 64px;
    text-align: center;
    padding: 48px 32px;
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.products-cta-content h3 {
    font-size: 24px;
    color: var(--light-gray);
    margin-bottom: 12px;
    font-weight: 700;
}

.products-cta-content p {
    font-size: 16px;
    color: var(--warm-beige);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .products-cta-section {
        margin-top: 48px;
        padding: 32px 20px;
    }
    
    .products-cta-content h3 {
        font-size: 20px;
    }
}

.how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.how-it-works .step {
    display: grid;
    gap: 12px;
    grid-template-columns: 220px 1fr;
    background: var(--glass-overlay);
    border: 1px solid rgba(18, 77, 84, 0.15);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.how-it-works .step strong {
    color: var(--light-gray);
    font-weight: 600;
}

.how-it-works .step .step-desc {
    color: var(--warm-beige);
    font-size: 14px;
    line-height: 1.4;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: var(--glass-overlay);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(18, 77, 84, 0.15);
}

.feature-table th,
.feature-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(18, 77, 84, 0.1);
    text-align: left;
}

.feature-table th {
    color: var(--light-gray);
    font-weight: 600;
    background: rgba(18, 77, 84, 0.1);
}

.feature-table td {
    color: var(--warm-beige);
}

.feature-table tr:last-child td {
    border-bottom: none;
}

.why-autonom ul,
.get-involved ul {
    color: var(--warm-beige);
    line-height: 1.6;
}

.why-autonom ul li,
.get-involved ul li {
    margin-bottom: 8px;
}

.products-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(18, 77, 84, 0.2);
    color: var(--warm-beige);
    font-size: 13px;
    line-height: 1.5;
}

.products-footer .disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(214, 196, 176, 0.7);
}

@media (max-width: 768px) {
    .products-container {
        padding: 100px 16px 60px;
    }
    
    .products-hero {
        padding: 32px 20px;
    }
    
    .products-hero h1 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works .step {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tech-chips {
        gap: 6px;
    }
    
    .tech-chip {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* PRODUCT SECTION: Feature Matrix Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-available {
    background: var(--burnt-orange);
    box-shadow: 0 0 6px rgba(249, 116, 75, 0.3);
}

.status-beta {
    background: var(--warm-beige);
    box-shadow: 0 0 6px rgba(214, 196, 176, 0.3);
}

.status-text {
    font-weight: 500;
}

.status-text.available {
    color: var(--burnt-orange);
}

.status-text.beta {
    color: var(--warm-beige);
}

/*CSS FOR BOTTOM SECTION PRODUCT*/
/* Quick Links */
.hero-quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 77, 84, 0.2);
}

.quick-links-label {
    color: var(--warm-beige);
    font-size: 14px;
    font-weight: 500;
}

.hero-quick-link {
    color: var(--burnt-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(249, 116, 75, 0.3);
    background: rgba(249, 116, 75, 0.05);
    transition: all 0.3s ease;
}

.hero-quick-link:hover {
    background: rgba(249, 116, 75, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Bottom Sections - Specific container to avoid affecting product grid */
.bottom-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    /* This ensures it doesn't affect other grids */
}

.bottom-section {
    background: linear-gradient(135deg, rgba(249, 116, 75, 0.1) 0%, rgba(18, 77, 84, 0.05) 100%);
    border: 1px solid rgba(249, 116, 75, 0.2);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(249, 116, 75, 0.08);
}

.bottom-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--burnt-orange);
    font-weight: 800;
    text-align: center;
    position: relative;
}

.bottom-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--burnt-orange), var(--orange-muted));
    border-radius: 2px;
}

.bottom-section ul {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 15px;
}

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

/* Responsive for bottom sections only */
@media (max-width: 768px) {
    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .bottom-sections {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .bottom-section {
        padding: 24px;
    }
}