/* ===========================
   GENERAL STYLES & VARIABLES
   =========================== */

:root {
    --aleph-blue: #0000FF;
    --aleph-dark-blue: #0000CC;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --dark-gray: #333333;
    --white: #FFFFFF;
    --black: #000000;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #F3F3F3;
    max-width: 100vw;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent horizontal scroll on mobile */
section {
    overflow-x: hidden;
    max-width: 100%;
}

.container,
.container-fluid {
    overflow-x: hidden;
}

/* Global button styles */
.btn {
    border-radius: 12px;
}

.btn-lg {
    border-radius: 14px;
}

.btn-primary {
    background-color: var(--aleph-blue);
    border-color: var(--aleph-blue);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--aleph-dark-blue);
    border-color: var(--aleph-dark-blue);
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--aleph-blue);
    color: var(--aleph-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--aleph-blue);
    border-color: var(--aleph-blue);
    color: var(--white);
}

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

.navbar {
    transition: all 0.3s ease;
    background-color: var(--white);
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-aleph {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--aleph-blue);
    font-style: italic;
}

.brand-divider {
    color: var(--text-gray);
    margin: 0 0.5rem;
}

.brand-bookkeeping {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: normal;
}

.follow-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.social-icon {
    color: var(--aleph-blue);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--aleph-dark-blue);
}

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

.hero-section {
    background-image: url('images/bg-header.png');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 120px;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 255, 0.03);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark-gray);
}

.text-aleph {
    color: var(--aleph-blue);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--aleph-blue);
    margin-bottom: 0.5rem !important;
    line-height: .7;
}

.hero-subtitle strong {
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.hero-buttons .btn-primary {
    background-color: var(--aleph-blue);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--aleph-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 2px rgba(0, 0, 255, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--aleph-blue);
    color: var(--aleph-blue);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: var(--aleph-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 2px rgba(0, 0, 255, 0.3);
}

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

.testimonials-section {
    background-color: var(--aleph-blue);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: transparent;
    border: 3px solid var(--white);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--white);
    font-size: 0.9rem;
    text-align: right;
}

/* ===========================
   HUMAN TOUCH SECTION
   =========================== */

.human-touch-section {
    background-color: #DEE7FF;
    background-image: url('images/bg-the-human-touch.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.feature-card {
    background: var(--aleph-blue);
    color: var(--white);
    border-radius: 20px;
    padding: 1rem 2rem 2rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    -webkit-text-stroke: 1px currentColor;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.about-section-1,
.about-section-2 {
    padding: 5rem 0;
}

.about-section-1 {
    padding-bottom: 3rem !important;
}

.about-section-2 {
    padding-top: 3rem !important;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.about-section-1 img,
.about-section-2 img {
    border-radius: 24px !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark-gray);
}

/* ===========================
   CTA BANNER
   =========================== */

.cta-banner {
    padding-top: 0rem !important;
}

.cta-text {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-gray);
}

.cta-text .text-bold {
    font-weight: 600;
}

/* ===========================
   PRICING SECTION
   =========================== */

.pricing-section {
    background-color: var(--aleph-blue);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.95) 0%, rgba(0, 0, 200, 1) 100%);
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-section .row {
    margin-top: 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 8px 2px rgba(0, 0, 0, 0.25);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 4px rgba(0, 0, 0, 0.35);
}

.pricing-card-popular {
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #2495FF;
    color: var(--white);
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(36, 149, 255, 0.4);
    z-index: 10;
}

.pricing-card .card-body {
    padding: 2.5rem 2rem;
}

.plan-name {
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.plan-target {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.plan-features .bi-check-circle-fill {
    font-size: 1.1rem;
}

/* ===========================
   CATCH-UP SECTION
   =========================== */

.catchup-section {
    background-color: #DEE7FF;
    padding: 5rem 0;
}

.catchup-card {
    background: var(--aleph-blue);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.catchup-card:hover {
    transform: translateY(-8px);
}

.catchup-badge {
    background: var(--white);
    color: var(--aleph-blue);
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-block;
    margin: 1.5rem 0 0 1.5rem;
}

.catchup-card .card-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

.catchup-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.catchup-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
}

.catchup-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.catchup-type {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.catchup-card .btn-primary {
    background-color: var(--white);
    color: var(--aleph-blue);
    border: none;
    font-weight: 700;
}

.catchup-card .btn-primary:hover {
    box-shadow: 0 6px 2px rgba(2, 2, 119, 0.4);
    color: var(--aleph-blue);
    transform: translateY(-2px);
}

/* ===========================
   TEAM SECTION
   =========================== */

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

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .team-img {
    border-color: var(--aleph-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.2);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--aleph-blue);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ===========================
   WANT TO KNOW MORE SECTION
   =========================== */

.know-more-section {
    background-color: var(--aleph-blue);
    padding: 3rem 0;
}

.social-icon-white {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon-white:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* ===========================
   FINAL CTA SECTION
   =========================== */

.final-cta-section {
    background: linear-gradient(135deg, #f0f0ff 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.aleph-logo-art {
    max-width: 50rem;
    margin: 0 auto;
}

.aleph-logo-art img {
    width: 100%;
    height: auto;
}

.final-cta-text {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-gray);
}

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

.footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    font-style: italic;
}

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

.social-icon-footer {
    color: var(--aleph-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    color: rgba(0, 0, 255, 0.7);
    transform: translateY(-3px);
}

/* ===========================
   MODALS
   =========================== */

.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--aleph-blue) 0%, var(--aleph-dark-blue) 100%);
    color: var(--white);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--aleph-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 255, 0.1);
}

.modal-body .btn-primary {
    background-color: var(--aleph-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-body .btn-primary:hover {
    background-color: var(--aleph-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 255, 0.4);
}

/* Calendly Widget Customization */
.calendly-overlay .calendly-popup {
    border-radius: 24px !important;
    overflow: hidden !important;
}

.calendly-overlay .calendly-popup-content {
    border-radius: 24px !important;
}

/* Calendly mobile spacing */
@media (max-width: 768px) {
    .calendly-overlay .calendly-popup {
        margin: 1rem !important;
        max-width: calc(100vw - 2rem) !important;
        width: calc(100vw - 2rem) !important;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-aleph {
    color: var(--aleph-blue) !important;
}

.py-6 {
    padding: 5rem 0 6rem 0;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS (Desktop)
   =========================== */

@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }
}

/* ===========================
   MOBILE & TABLET RESPONSIVE STYLES
   =========================== */

/* Tablets and below (992px) */
@media (max-width: 991px) {
    /* Hero Section */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
        background-size: auto 100%;
        background-position: center center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .watermark-text {
        font-size: 10rem;
    }

    /* Pricing Cards */
    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: scale(1) translateY(-10px);
    }

    /* About Sections */
    .about-img {
        margin-bottom: 2rem;
    }

    /* Team Grid */
    .team-section .row {
        justify-content: center;
    }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    /* Typography adjustments */
    .section-title {
        font-size: 2rem;
    }

    /* Navbar */
    .navbar-logo {
        height: 40px;
    }

    .follow-text {
        font-size: 0.75rem;
    }

    .social-icon {
        font-size: 1rem;
        width: 32px;
        height: 32px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        background-size: auto 80%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }

    .watermark-text {
        font-size: 6rem;
        opacity: 0.5;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

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

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    /* About Sections */
    .about-section-1,
    .about-section-2 {
        padding: 3rem 0;
    }

    .about-img {
        margin-bottom: 2rem;
        max-width: 100%;
    }

    /* CTA Banner */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section .btn {
        padding: 0.875rem 2.5rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 3rem 0 4rem 0;
    }

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

    .pricing-card .card-body {
        padding: 2rem 1.5rem;
    }

    .plan-name {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 2rem;
    }

    /* Catch-up Section */
    .catchup-section {
        padding: 3rem 0;
    }

    .catchup-card {
        margin-bottom: 2rem;
    }

    .catchup-card .card-body {
        padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    }

    .catchup-title {
        font-size: 1.2rem;
    }

    .catchup-price {
        font-size: 2rem;
    }

    .catchup-badge {
        margin: 1.25rem 0 0 1.25rem;
        padding: 0.3rem 0.85rem;
        font-size: 0.8rem;
    }

    /* Team Section */
    .team-section {
        padding: 3rem 0;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    /* Know More Section */
    .know-more-section {
        padding: 3rem 0;
    }

    .know-more-section h2 {
        font-size: 1.75rem;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 3rem 0;
    }

    .final-cta-text {
        font-size: 1.5rem;
    }

    .aleph-logo-art {
        max-width: 35rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    /* Modals */
    .modal-dialog {
        margin: 1rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* Small mobile devices (576px and below) */
@media (max-width: 576px) {
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.75rem;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 90px;
        padding-bottom: 50px;
        background-size: cover;
        background-position: center center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem !important;
    }

    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .watermark-text {
        font-size: 4rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-logo {
        height: 35px;
    }

    .follow-text {
        display: none;
    }

    .social-icon {
        font-size: 0.9rem;
        width: 28px;
        height: 28px;
        margin-right: 0.25rem !important;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
    }

    /* Pricing Cards */
    .pricing-card .card-body {
        padding: 1.75rem 1.25rem;
    }

    .plan-name {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }

    .popular-badge {
        font-size: 0.65rem;
        padding: 0.35rem 1.75rem;
    }

    /* Catch-up Cards */
    .catchup-card .card-body {
        padding: 1rem 1.25rem 1.5rem 1.25rem;
    }

    .catchup-title {
        font-size: 1.1rem;
    }

    .catchup-description {
        font-size: 0.9rem;
    }

    .catchup-price {
        font-size: 1.85rem;
    }

    .catchup-type {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    /* Team Section */
    .team-img {
        width: 100px;
        height: 100px;
    }

    /* CTA Sections */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    /* Final CTA */
    .final-cta-text {
        font-size: 1.25rem;
    }

    .aleph-logo-art {
        max-width: 25rem;
    }

    /* Spacing utilities */
    .py-6 {
        padding: 3rem 0 4rem 0;
    }

    /* Modal adjustments */
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .modal-body .form-label {
        font-size: 0.9rem;
    }

    .modal-body .form-control,
    .modal-body .form-select {
        font-size: 0.95rem;
    }
}

/* Extra small devices (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .watermark-text {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .catchup-price {
        font-size: 1.65rem;
    }

    .final-cta-text {
        font-size: 1.1rem;
    }

    .aleph-logo-art {
        max-width: 20rem;
    }
}
