/**
 * Homepage specific styles - Landing page layout
 */

/* Landing page layout - 2 column grid like VitePress */
.landing-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 4rem 3rem 2rem 3rem;
    box-sizing: border-box;
}

.hero-content {
    max-width: 550px;
    justify-self: center;
    padding-right: 1rem;
    text-align: left;
}

.built-for {
    color: #0d3b66;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #0d3b66 0%, #1e88e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.5em;
    color: #4a5568;
    margin-bottom: 24px;
    font-weight: 500;
}

.description {
    font-size: 1.1em;
    color: #718096;
    max-width: 600px;
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.2s;
    display: inline-block;
}

.cta-primary {
    background: #0d3b66;
    color: white;
    border: 2px solid #0d3b66;
}

.cta-primary:hover {
    background: #1a4d7a;
    transform: translateY(-1px);
}

.cta-secondary {
    background: transparent;
    color: #0d3b66;
    border: 2px solid #0d3b66;
}

.cta-secondary:hover {
    background: #0d3b66;
    color: white;
    transform: translateY(-1px);
}

/* Demo section - right column */
.demo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: stretch;
    padding-left: 1rem;
    width: 100%;
    max-width: none;
}

.demo-viewer {
    width: 100%;
    height: 650px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 80px rgba(13, 59, 102, 0.4);
    transition: transform 0.3s ease;
}

.demo-viewer:hover {
    transform: translateY(-5px);
}

.demo-controls {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9em;
    color: #718096;
}

/* Key Features section - new section above the workflow features */
.key-features-section {
    grid-column: 1 / -1;
    margin-top: 4rem;
    padding: 3rem 1rem;
    margin-left: 0;
    margin-right: 0;
}

.featured-highlight-desktop {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 5rem;
    border: none;
}

.featured-highlight-desktop .feature-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-highlight-desktop .feature-text {
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    position: static;
    transform: none;
    z-index: auto;
    max-width: none;
}

.featured-highlight-desktop .feature-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: #2c3e50;
    line-height: 1.1;
    text-shadow: none;
    letter-spacing: 0;
}

.featured-highlight-desktop .feature-text p {
    font-size: 1.3rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    text-shadow: none;
    font-weight: 400;
}

.featured-highlight-desktop .feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(13, 59, 102, 0.3);
    height: 500px;
    width: 100%;
}

.featured-highlight-desktop .feature-image::before {
    display: none;
}

.featured-highlight-desktop .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 1080px;
    margin: 0 auto;
    transform: scale(0.9);
}

/* Style mobile version identical to other feature cards */
.featured-highlight-mobile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 59, 102, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 300px;
    background: white;
    margin-bottom: 1.5rem;
    display: none; /* Hidden by default on desktop */
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.featured-highlight-mobile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 59, 102, 0.15);
}

.featured-highlight-mobile .feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-highlight-mobile .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-highlight-mobile .feature-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.featured-highlight-mobile .feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.featured-highlight-mobile .feature-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

@media (max-width: 960px) {
    /* ONLY handle regular feature cards here */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        transform: none !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        display: grid !important;
    }
    
    .feature-card {
        aspect-ratio: unset !important;
        height: 300px !important;
        display: block !important;
        position: relative !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 24px rgba(13, 59, 102, 0.08) !important;
        background: white !important;
        width: 100% !important;
        max-width: 400px !important;
    }
}

@media (max-width: 480px) {
    .features-grid {
        max-width: 320px !important;
    }
    
    .feature-card {
        max-width: 320px !important;
        height: 300px !important;
    }
}


.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 59, 102, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 59, 102, 0.15);
}

.feature-card .feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card .feature-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.feature-card .feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.feature-card .feature-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Features section - spans full width below grid */
.features-section {
    grid-column: 1 / -1;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 16px;
    margin-left: 3rem;
    margin-right: 3rem;
    border: 1px solid #f1f5f9;
}

.features-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.features-main h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem 0;
    border-bottom: 1px solid #e4e4e7;
    transition: all 0.2s ease;
}

.feature-item:hover {
    color: #0d3b66;
    transform: translateX(2px);
}

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

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-text strong {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-text span {
    color: #718096;
    line-height: 1.5;
}

/* Stats section */
.features-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    align-self: center;
    justify-self: center;
    max-width: 280px;
    width: 100%;
}

.stat-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.stat-item:hover {
    color: #0d3b66;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d3b66;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.3;
}

/* Hide mobile buttons and description on desktop */
.cta-buttons-mobile,
.description-mobile {
    display: none;
}

/* Style demo credit link consistently */
.demo-controls-credit a {
    color: inherit;
    text-decoration: underline;
}

/* Hide first feature card on desktop (two-column layout) */
.feature-card-first {
    display: none;
}

/* Hero Feature Section - Desktop Only */
.hero-feature-section {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 2rem 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
    text-align: left;
}

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

.hero-feature-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.hero-feature-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-feature-text p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.hero-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(13, 59, 102, 0.15);
    height: 400px;
}

.hero-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fresh Feature Cards Section */
.feature-cards-section {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 2rem 1rem;
    margin-left: 3rem;
    margin-right: 3rem;
    text-align: center;
}

.feature-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card-item {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(13, 59, 102, 0.1);
    height: 300px;
}

.feature-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    color: white;
}

.feature-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.3;
}

.feature-card-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    margin: 0;
}

/* Responsive - matches VitePress breakpoints */
@media (max-width: 1200px) {
    .landing-page {
        padding: 4rem 1.5rem 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-content {
        padding-right: 0.5rem;
    }
    
    .demo-section {
        padding-left: 0.5rem;
    }
    
    .key-features-section {
        padding: 2rem 1rem;
    }
    
    .features-section {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 960px) {
    .landing-page {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 60vh;
        place-items: center;
    }
    
    .hero-content {
        justify-self: center;
        align-self: center;
        padding-right: 0;
        max-width: 600px;
        width: 100%;
    }
    
    .demo-section {
        justify-self: center;
        align-self: center;
        padding-left: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Hide original buttons, description, and demo instructions on mobile */
    .hero-content .cta-buttons,
    .hero-content .description,
    .demo-controls-instructions {
        display: none;
    }
    
    /* Tighten demo controls container on mobile */
    .demo-controls {
        margin-top: 0.5rem;
    }
    
    /* Style model credit on mobile - tuck closer to viewer */
    .demo-controls-credit {
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        text-align: center;
        color: #718096;
    }
    
    /* Show mobile buttons */
    .cta-buttons-mobile {
        display: flex;
        margin-top: 1rem;
        gap: 12px;
        justify-content: center;
        flex-direction: row;
    }
    
    .cta-buttons-mobile .cta-button {
        flex: 1;
        max-width: 110px;
        padding: 8px 12px;
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Show mobile description */
    .description-mobile {
        display: block;
        margin-top: 1.5rem;
        margin-bottom: 0;
        font-size: 0.95rem;
        color: #718096;
        line-height: 1.4;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }
    
    /* Mobile layout for new feature cards */
    .feature-cards-section {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-top: 0;
        padding-top: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .feature-cards-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: none;
        width: 100%;
    }
    
    .feature-card-item {
        height: 300px;
    }
    
    /* Hide hero feature section on mobile */
    .hero-feature-section {
        display: none;
    }
    
    /* Show first feature card on mobile (single column) */
    .feature-card-first {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .description {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .built-for {
        text-align: center;
    }
    
    .demo-viewer {
        height: 400px;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 140px;
        max-width: 160px;
        text-align: center;
    }
    
    
    .features-section {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .features-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-main h2 {
        text-align: center;
    }
    
    .feature-item:last-child {
        border-bottom: 1px solid #e4e4e7 !important;
        padding-bottom: 1.5rem;
    }
    
    .features-stats {
        background: transparent;
        border: none;
        padding: 1rem 0;
        gap: 1rem;
        border-radius: 0;
        max-width: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-text {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        place-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .demo-section {
        padding-left: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Hide original buttons, description, and demo instructions on mobile */
    .hero-content .cta-buttons,
    .hero-content .description,
    .demo-controls-instructions {
        display: none;
    }
    
    /* Extra tight demo controls container on small mobile */
    .demo-controls {
        margin-top: 0.3rem;
    }
    
    /* Style model credit on mobile - extra tight */
    .demo-controls-credit {
        margin-top: 0.2rem;
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
        text-align: center;
        color: #718096;
    }
    
    /* Show mobile buttons */
    .cta-buttons-mobile {
        display: flex;
        margin-top: 0.75rem;
        gap: 8px;
        justify-content: center;
        flex-direction: row;
    }
    
    .cta-buttons-mobile .cta-button {
        flex: 1;
        max-width: 95px;
        padding: 8px 8px;
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Show mobile description */
    .description-mobile {
        display: block;
        margin-top: 1.5rem;
        margin-bottom: 0;
        font-size: 0.9rem;
        color: #718096;
        line-height: 1.4;
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }
    
    /* Mobile layout for new feature cards - smaller screens */
    .feature-cards-section {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        padding: 0 0.25rem 1.5rem 0.25rem;
        margin-top: 0;
    }
    
    .feature-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: none;
        width: 100%;
    }
    
    .feature-card-item {
        height: 300px;
    }
    
    /* Hide hero feature section on mobile */
    .hero-feature-section {
        display: none;
    }
    
    /* Show first feature card on mobile (single column) */
    .feature-card-first {
        display: block;
    }
    
    .feature-card-content {
        padding: 1rem;
    }
    
    .feature-card-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-content p {
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .tagline {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin: 0 auto 1.5rem auto;
        text-align: center;
        max-width: 400px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .built-for {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .demo-viewer {
        height: 260px;
        border-radius: 12px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        max-width: 150px;
        text-align: center;
    }
    
    .key-features-section {
        padding: 1.5rem 1rem;
    }
    
    
    .features-section {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }

    .features-main h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .feature-text strong {
        font-size: 1rem;
        line-height: 1.3;
    }

    .feature-text span {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .feature-item:last-child {
        border-bottom: 1px solid #e4e4e7 !important;
        padding-bottom: 1.5rem;
    }
    
    .features-stats {
        background: transparent;
        border: none;
        padding: 0.75rem 0;
        gap: 0.75rem;
        border-radius: 0;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 3rem;
    margin-top: 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    align-items: start;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    line-height: 1.1;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(13, 59, 102, 0.04);
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #0d3b66;
    line-height: 1.2;
}

.faq-item p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0d3b66 0%, #1e88e5 100%);
    color: white;
    padding: 4rem 3rem;
    text-align: center;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: white;
    line-height: 1.2;
}

.final-cta-container p {
    font-size: 1.2rem;
    margin: 0 0 2.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    min-width: 160px;
}

.final-cta-buttons .btn-primary {
    background: white;
    color: #0d3b66;
    border: 2px solid white;
}

.final-cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-buttons .btn-secondary:hover {
    background: white;
    color: #0d3b66;
    transform: translateY(-2px);
}

.final-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive FAQ and CTA */
@media (max-width: 960px) {
    .faq-section {
        padding: 1.5rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1rem;
        text-align: left;
    }
    
    .final-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .final-cta-container h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1rem;
    }
    
    .faq-header h2 {
        font-size: 1.75rem;
    }
    
    .faq-item {
        padding: 0.75rem;
    }
    
    .faq-item h3 {
        font-size: 0.9rem;
    }
    
    .faq-item p {
        font-size: 0.8rem;
    }
    
    .final-cta-section {
        padding: 1.5rem 0.75rem;
    }
    
    .final-cta-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .final-cta-container h2 {
        font-size: 1.5rem;
        margin: 0 0 1rem 0;
        line-height: 1.1;
    }
    
    .final-cta-container p {
        font-size: 0.9rem;
        margin: 0 0 1.5rem 0;
        line-height: 1.4;
    }
    
    .final-cta-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: none;
        min-width: auto;
        box-sizing: border-box;
    }
    
    .final-cta-note {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}