/* ==========================================
   Global Styles & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav a {
    color: #666;
    font-weight: 500;
    position: relative;
}

.nav a:hover {
    color: #7c3aed;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7c3aed;
    transition: width 0.3s ease;
}

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

.nav-signin {
    background-color: #f0f0f0;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #333;
}

.nav-signin:hover {
    background-color: #e0e0e0;
}

.nav-signin::after {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 50%, #f5f0ff 100%);
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.4rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: white;
    padding: 0.5rem 0.95rem;
    border-radius: 25px;
    font-size: 0.75rem;
    color: #555;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.btn-large {
    padding: 1rem 2.8rem;
    font-size: 1rem;
    border-radius: 10px;
}

.btn {
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: white;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-secondary:hover {
    background: #f5f3ff;
}

.btn-wide {
    width: 100%;
}

.hero-subtext {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
    font-weight: 500;
}

.stats {
    color: #7c3aed;
    font-weight: 700;
}

/* ==========================================
   Sections
   ========================================== */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f8f7ff;
}

.section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #999;
    margin-bottom: 3rem;
}

/* ==========================================
   Why Grid
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
    border-color: #e9d5ff;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

.example {
    background: #f5f3ff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7c3aed;
}

.example em {
    font-style: italic;
    font-weight: 500;
}

/* ==========================================
   What Section
   ========================================== */
.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.what-text h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.what-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dimensions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dimension-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.dimension-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dimension-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.dimension-item p {
    color: #666;
    font-size: 0.95rem;
}

.what-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visualization {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 3px solid #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-inner {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.viz-note {
    text-align: center;
    color: #999;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* ==========================================
   Misconceptions Grid
   ========================================== */
.misconceptions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.misconceptions h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.misconception-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.misconception {
    padding: 1.5rem;
    background: #f5f3ff;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.misconception h4 {
    color: #7c3aed;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.misconception p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   Test Demo
   ========================================== */
.test-demo {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.test-question {
    margin-bottom: 2rem;
}

.test-question:last-of-type {
    margin-bottom: 2rem;
}

.test-question h4 {
    color: #7c3aed;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-question p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.test-options {
    display: grid;
    gap: 0.75rem;
}

.option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f7ff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option:hover {
    background: #f0f0ff;
}

.option input[type="radio"] {
    accent-color: #7c3aed;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.option span {
    color: #666;
    flex: 1;
}

.option input[type="radio"]:checked + span {
    color: #7c3aed;
    font-weight: 600;
}

.test-note {
    text-align: center;
    color: #999;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

/* ==========================================
   Stories Carousel
   ========================================== */
.stories-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.story-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.story-info {
    flex: 1;
}

.story-info h4 {
    color: #1a1a1a;
    margin: 0;
    font-size: 1rem;
}

.story-role {
    color: #999;
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
}

.story-rating {
    font-size: 0.9rem;
}

.story-text {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================
   Benefits Grid
   ========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #e9d5ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.pricing-featured {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #f5f3ff 0%, white 100%);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: #7c3aed;
    font-weight: 700;
}

.price-note {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.plan-note {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    padding: 1.5rem;
    background: #f8f7ff;
    border-radius: 8px;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f7ff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0ff;
}

.faq-question::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    display: none;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.section-final-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: #7c3aed;
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #a855f7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
    }

    .hero-features {
        margin-bottom: 1.8rem;
        gap: 0.8rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .btn-large {
        padding: 0.95rem 2.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .why-card,
    .benefit-card,
    .story-card,
    .change-card,
    .safety-item {
        padding: 1.5rem;
    }

    .what-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visualization {
        width: 100%;
    }

    .viz-circle {
        width: 200px;
        height: 200px;
    }

    .viz-inner {
        width: 150px;
        height: 150px;
        font-size: 1.2rem;
    }

    .misconceptions {
        padding: 1.5rem;
    }

    .misconception-grid {
        grid-template-columns: 1fr;
    }

    .test-demo {
        padding: 1.5rem;
    }

    .test-question p {
        font-size: 1rem;
    }

    .why-grid,
    .benefit-grid,
    .pricing-grid,
    .stories-carousel {
        grid-template-columns: 1fr;
    }

    .misconception-grid {
        grid-template-columns: 1fr;
    }

    .what-text h3,
    .misconceptions h3 {
        font-size: 1.2rem;
    }

    .dimension-item {
        gap: 1rem;
    }

    .dimension-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }
}

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

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

    .header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
        width: 100%;
        text-align: center;
    }

    .btn-large {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-subtext {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .why-grid,
    .benefit-grid,
    .stories-carousel,
    .change-card {
        grid-template-columns: 1fr;
    }

    .why-card,
    .benefit-card,
    .story-card,
    .change-card {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .why-number {
        font-size: 2rem;
    }

    .card-icon,
    .benefit-icon,
    .change-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .why-card h3,
    .benefit-card h3,
    .story-card h4,
    .change-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .why-card p,
    .benefit-card p,
    .change-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .story-header {
        flex-direction: column;
        text-align: center;
    }

    .story-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .story-role {
        font-size: 0.8rem;
    }

    .story-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .misconceptions {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .misconceptions h3 {
        font-size: 1.1rem;
    }

    .misconception-grid {
        grid-template-columns: 1fr;
    }

    .misconception {
        padding: 1rem;
        border-radius: 6px;
    }

    .misconception h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .misconception p {
        font-size: 0.85rem;
    }

    .what-content {
        gap: 1.5rem;
    }

    .what-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .what-text p {
        font-size: 0.9rem;
    }

    .dimension-item {
        gap: 0.8rem;
    }

    .dimension-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .dimension-item h4 {
        font-size: 0.95rem;
    }

    .dimension-item p {
        font-size: 0.85rem;
    }

    .visualization {
        margin: 1rem auto;
    }

    .viz-circle {
        width: 150px;
        height: 150px;
    }

    .viz-inner {
        width: 110px;
        height: 110px;
        font-size: 1rem;
    }

    .viz-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .test-demo {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .test-question h4 {
        font-size: 0.85rem;
    }

    .test-question p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .option input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .test-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-item {
        border-radius: 6px;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0.9rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .faq-answer p {
        margin-bottom: 0.6rem;
    }

    .cta-box {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .cta-box h2 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .cta-box p {
        font-size: 0.9rem;
    }

    .cta-subtext {
        font-size: 0.85rem;
        margin-bottom: 1.2rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
}
