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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #1D1F1F;
    color: #E5E7EB;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(29, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
}

.nav-item {
    text-decoration: none;
    color: #9CA3AF;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-item:hover {
    color: #E5E7EB;
    background-color: rgba(55, 65, 81, 0.5);
}

.nav-item.active {
    color: #FFFFFF;
    background-color: rgba(55, 65, 81, 0.8);
}

.nav-cta-btn {
    background-color: #EF4444;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.nav-cta-btn:hover {
    background-color: #DC2626;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

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

.hero-card {
    background-color: rgba(55, 65, 81, 0.4);
    border-radius: 24px;
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.6);
    backdrop-filter: blur(10px);
}

.hero-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    border-radius: 24px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #E5E7EB;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.hero-logo {
    position: absolute;
    bottom: 2px;
    right: 2px;
    z-index: 3;
}

.hero-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.5;
}

/* Animated streaks */
.hero-streak {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #F7E55C, transparent);
    border-radius: 1px;
    opacity: 0;
    z-index: 1;
}

.hero-streak-1 {
    left: 120px;
    top: 80px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-streak-2 {
    left: 240px;
    top: 160px;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 3.6s;
}

.hero-streak-3 {
    left: 360px;
    top: 120px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 8.4s;
}

.hero-streak-4 {
    left: 480px;
    top: 200px;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 1.4s;
}

.hero-streak-5 {
    left: 80px;
    top: 40px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 6.2s;
}

.hero-streak-6 {
    left: 320px;
    top: 80px;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 11s;
}

.hero-streak-7 {
    left: 560px;
    top: 160px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 4.6s;
}

.hero-streak-8 {
    left: 160px;
    top: 240px;
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 2.1s;
}

.hero-streak-9 {
    left: 440px;
    top: 40px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 12.8s;
}

.hero-streak-10 {
    left: 280px;
    top: 200px;
    width: 110px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 7.3s;
}

.hero-streak-11 {
    left: 200px;
    top: 120px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 9.7s;
}

.hero-streak-12 {
    left: 400px;
    top: 160px;
    width: 85px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 5.9s;
}

.hero-streak-13 {
    left: 600px;
    top: 80px;
    animation: streak-vertical 16s ease-in-out infinite;
    animation-delay: 13.5s;
}

.hero-streak-14 {
    left: 520px;
    top: 120px;
    width: 95px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F7E55C, transparent);
    animation: streak-horizontal 16s ease-in-out infinite;
    animation-delay: 14.2s;
}

@keyframes streak-vertical {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    5% {
        opacity: 1;
        transform: translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateY(80px);
    }
    100% {
        opacity: 0;
        transform: translateY(120px);
    }
}

@keyframes streak-horizontal {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    5% {
        opacity: 1;
        transform: translateX(0);
    }
    85% {
        opacity: 1;
        transform: translateX(80px);
    }
    100% {
        opacity: 0;
        transform: translateX(120px);
    }
}

.section {
    padding: 1.5rem 0;
    min-height: auto;
}


h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F3F4F6;
    margin: 1.5rem 0 0.75rem 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

ul, ol {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

strong {
    color: #FFFFFF;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #F3F4F6;
}

a {
    color: #60A5FA;
    text-decoration: none;
}

a:hover {
    color: #93C5FD;
    text-decoration: underline;
}

/* Highlight styling */
.highlight {
    background-color: #EED988;
    color: #212121;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-blue {
    background-color: #3FD3EE;
    color: #212121;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Benefits cards */
.benefits-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-card {
    background-color: rgba(55, 65, 81, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(55, 65, 81, 0.6);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    background-color: rgba(55, 65, 81, 0.5);
    border-color: rgba(55, 65, 81, 0.8);
}

.benefit-card.revenue {
    position: relative;
    background-color: rgba(55, 65, 81, 0.4);
    border: 1px solid transparent;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.benefit-card.revenue::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 12px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.benefit-card.revenue:hover {
    background-color: rgba(55, 65, 81, 0.5);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.benefit-label {
    background-color: #EED988;
    color: #212121;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: 100px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Qualified Assets Cards */
.qualified-assets {
    margin: 2rem 0;
}

.qualified-headers {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.qualified-headers .qualified-header:first-child {
    visibility: hidden;
}

.qualified-header {
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
    font-size: 1.1rem;
    text-align: center;
}

.qualified-card {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    align-items: center;
    gap: 1rem;
    background-color: rgba(55, 65, 81, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.qualified-card:last-child {
    margin-bottom: 0.5rem;
}

.qualified-card:hover {
    background-color: rgba(55, 65, 81, 0.5);
}

.qualified-company {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
}

.qualified-hardware {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.qualified-collector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.ev-charger-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 44px;
}

.ev-charger-icon svg:first-child {
    width: 32px;
    height: 44px;
}

.ev-charger-icon .lightning-bolt {
    width: 12px;
    height: 16px;
}

.lightning-bolt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.axle-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.qualified-hardware span,
.qualified-collector span {
    font-size: 1.1rem;
    color: #E5E7EB;
}

.source-text {
    font-size: 0.85rem;
    font-style: italic;
    color: #9CA3AF;
    margin-bottom: 1rem;
}

/* Diagram images */
.diagram-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
}

/* Accuracy Requirements Cards */
.accuracy-requirements {
    margin: 2rem auto;
    max-width: 600px;
}

.accuracy-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.accuracy-header {
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
    font-size: 1rem;
    text-align: center;
}

.accuracy-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
    background-color: rgba(55, 65, 81, 0.4);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.accuracy-card:hover {
    background-color: rgba(55, 65, 81, 0.5);
}

.accuracy-card:last-child {
    margin-bottom: 0;
}

.accuracy-current,
.accuracy-pf,
.accuracy-error {
    font-size: 1rem;
    color: #E5E7EB;
    text-align: center;
}

.error-badge {
    background-color: #EED988;
    color: #212121;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Get Started Section */
.get-started-section {
    text-align: center;
    margin: 3rem 0 4rem 0;
}

.get-started-btn {
    display: inline-block;
    background-color: #EF4444;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.get-started-btn:hover {
    background-color: #DC2626;
}

/* Hero CTA Section */
.hero-cta-section {
    padding: 0.5rem 0;
    text-align: center;
}

.hero-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-cta-btn {
    display: inline-block;
    background-color: #EF4444;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hero-cta-btn:hover {
    background-color: #DC2626;
}

/* Qualification Process Cards */
.qualification-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.qualification-card {
    background-color: rgba(55, 65, 81, 0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem 2rem 2rem;
    transition: background-color 0.3s ease;
}

.qualification-card:hover {
    background-color: rgba(55, 65, 81, 0.5);
}

.qualification-header {
    margin-bottom: 1rem;
    text-align: center;
}

.qualification-badge {
    background-color: #EED988;
    color: #212121;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.qualification-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

.qualification-description {
    font-size: 1rem;
    color: #E5E7EB;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .qualification-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualification-card {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }
    
    .qualified-headers {
        grid-template-columns: 120px 1fr 1fr;
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .qualified-card {
        grid-template-columns: 120px 1fr 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .qualified-company {
        font-size: 1rem;
    }
    
    .qualified-hardware span,
    .qualified-collector span {
        font-size: 0.95rem;
    }
    
    .axle-logo {
        width: 28px;
        height: 28px;
    }
    
    .ev-charger-icon {
        width: 28px;
        height: 38px;
    }
    
    .ev-charger-icon svg:first-child {
        width: 28px;
        height: 38px;
    }
    
    .ev-charger-icon .lightning-bolt {
        width: 10px;
        height: 14px;
    }
    
    .accuracy-requirements {
        margin: 1.5rem 0;
    }
    
    .accuracy-card {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .accuracy-header {
        font-size: 0.9rem;
    }
    
    .qualified-header {
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background-color: rgba(17, 17, 17, 0.8);
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #1D1F1F;
    margin: 1% auto;
    padding: 60px 20px 20px 20px;
    border-radius: 12px;
    width: 95%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.6);
    height: 94vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-content iframe {
    width: 100%;
    height: calc(94vh - 80px);
    border-radius: 8px;
    flex: none;
}

.close {
    color: #E5E7EB;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    background-color: rgba(55, 65, 81, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.close:hover,
.close:focus {
    color: #FFFFFF;
    background-color: #EF4444;
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 950px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .nav-cta-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 98%;
        padding: 15px;
        max-height: 85vh;
    }
    
    .modal-content iframe {
        height: 550px;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0 2rem 0;
    }
    
    .hero-card {
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-grid-background {
        background-size: 32px 32px;
        background-position: 0 0;
    }
    
    .hero-logo {
        bottom: 1px;
        right: 1px;
    }
    
    .hero-logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem 0 1.5rem 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-card {
        padding: 3rem 1rem;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-grid-background {
        background-size: 24px 24px;
        background-position: 0 0;
        border-radius: 16px;
    }
    
    .hero-logo {
        bottom: 0px;
        right: 0px;
    }
    
    .hero-logo-img {
        height: 40px;
    }

    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 0.4rem;
    }
    
    .nav-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .nav-cta-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .modal-content {
        margin: 0;
        width: 100vw;
        height: 100vh;
        padding: 15px;
        max-height: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-content iframe {
        height: calc(100vh - 60px);
        flex: 1;
        border-radius: 0;
    }
    
    .close {
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
        font-size: 28px;
        background-color: rgba(55, 65, 81, 0.8);
        border-radius: 50%;
        z-index: 10;
    }
    
    h3 {
        font-size: 1.3rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    p {
        font-size: 1rem;
    }
    
    .benefit-label {
        width: 80px;
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .benefit-card {
        padding: 0.6rem 1rem;
        gap: 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .qualification-badge {
        font-size: 0.85rem;
        padding: 0.3rem 1rem;
    }
    
    .qualification-question {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .qualification-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .get-started-btn {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
    
    .get-started-section {
        margin: 2rem 0 3rem 0;
    }
    
    .hero-cta-section {
        padding: 0.5rem 0;
    }
    
    .hero-cta-btn {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
    
    .nav-brand {
        gap: 0.4rem;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .nav-title {
        font-size: 0.9rem;
    }
}