/* SoSheets Landing Page - Hormozi Style */
/* High-contrast, outcome-focused design */

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

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue: #0059FF;
    --color-yellow: #FFD400;
    --color-grey-light: #F5F5F5;
    --color-grey-dark: #333333;
    --color-grey-medium: #666666;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-grey-dark);
    background: var(--color-white);
}

/* NAVIGATION */
.landing-nav {
    background: var(--color-black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.landing-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.landing-nav__logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.landing-nav__buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    display: flex;
}

.landing-nav__btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    display: inline-flex;
    align-items: center;
    display: flex;
    justify-content: center;
}

.landing-nav__btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.landing-nav__btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.landing-nav__btn--primary {
    background: var(--color-blue);
    color: var(--color-white);
}

.landing-nav__btn--primary:hover {
    background: #0047CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 89, 255, 0.4);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 24px;
    text-align: center;
}

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

.hero__headline {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.hero__headline--stop {
    color: #FFD400;
}

.hero__subheadline {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #D1D1D1;
    margin-bottom: 48px;
}

.hero__tagline {
    font-size: 16px;
    color: #A9A9A9;
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.hero__value {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    margin-top: 32px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* CTA BUTTONS */
.cta-button {
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    padding: 20px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 89, 255, 0.3);
    display: inline-block;
}

.cta-button:hover {
    background: #0066FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 89, 255, 0.5);
}

.cta-button--large {
    font-size: 24px;
    padding: 20px 48px;
}

.cta-button--medium {
    font-size: 20px;
    padding: 16px 40px;
}

.cta-button--final {
    background: var(--color-white);
    color: var(--color-blue);
    font-size: 24px;
}

.cta-button--final:hover {
    background: var(--color-grey-light);
    color: #0047CC;
}

/* PROBLEM SECTION */
.problem {
    background: var(--color-black);
    color: var(--color-white);
    padding: 100px 24px;
    text-align: center;
}

.problem__container {
    max-width: 800px;
    margin: 0 auto;
}

.problem__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-yellow);
}

.problem__intro {
    font-size: 24px;
    margin-bottom: 24px;
}

.problem__list {
    list-style: none;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 2;
}

.problem__statement {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 600;
}

.problem__truth {
    margin: 40px 0;
}

.problem__truth p {
    font-size: 20px;
    margin: 16px 0;
    font-style: italic;
    opacity: 0.9;
}

.problem__emphasis {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0;
    color: var(--color-yellow);
}

.problem__closing {
    font-size: 22px;
    line-height: 1.6;
    margin-top: 40px;
}

/* SOLUTION SECTION */
.solution {
    background: var(--color-white);
    padding: 100px 24px;
    text-align: center;
}

.solution__container {
    max-width: 1000px;
    margin: 0 auto;
}

.solution__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-black);
}

.solution__description {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--color-grey-dark);
}

.solution__value {
    font-size: 20px;
    margin-bottom: 48px;
    color: var(--color-grey-medium);
}

/* AUTOMATION SECTION */
.automation {
    background: var(--color-grey-light);
    padding: 100px 24px;
}

.automation__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.automation__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--color-black);
}

.automation__examples {
    margin-bottom: 60px;
}

.automation__example {
    margin-bottom: 40px;
}

.automation__trigger {
    font-size: 22px;
    color: var(--color-grey-medium);
    margin-bottom: 8px;
}

.automation__result {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
}

.automation__channels {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--color-grey-dark);
}

.automation__benefits p {
    font-size: 28px;
    font-weight: 700;
    margin: 16px 0;
    color: var(--color-black);
}

/* COMPARISON SECTION */
.comparison {
    background: var(--color-yellow);
    padding: 100px 24px;
}

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

.comparison__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-black);
}

.comparison__tagline {
    font-size: 24px;
    margin-bottom: 60px;
    color: var(--color-black);
}

.comparison__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison__column {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.comparison__column--digital {
    border: 4px solid var(--color-blue);
}

.comparison__column-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-black);
    text-align: center;
}

.comparison__rows-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.comparison__row {
    padding: 20px;
    margin-bottom: 0;
    background: var(--color-grey-light);
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.comparison__row--cost {
    font-size: 28px;
    font-weight: 800;
    padding: 24px;
}

.comparison__row--highlight {
    background: #E3F2FD;
    font-weight: 700;
    color: var(--color-blue);
}

.comparison__value {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 48px;
    color: var(--color-black);
    font-weight: 600;
}

/* USE CASES SECTION */
.use-cases {
    background: var(--color-white);
    padding: 100px 24px;
}

.use-cases__container {
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases__title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-black);
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.use-cases__card {
    background: var(--color-grey-light);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.use-cases__card--highlight {
    background: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.use-cases__card--highlight .use-cases__card-title {
    color: var(--color-white);
    margin-bottom: 16px;
}

.use-cases__card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-black);
}

.use-cases__card-statement {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-white);
}

.use-cases__list {
    list-style: none;
    font-size: 18px;
    line-height: 2;
    flex-grow: 1;
}

.use-cases__list li::before {
    content: "✓ ";
    color: var(--color-blue);
    font-weight: 700;
    margin-right: 8px;
}

.use-cases__closing {
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: var(--color-grey-dark);
}

/* PRICING SECTION */
.pricing {
    background: var(--color-grey-light);
    padding: 100px 24px;
}

.pricing__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-black);
}

.pricing__intro {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: var(--color-grey-dark);
}

.pricing__details {
    background: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pricing__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.pricing__item:last-child {
    margin-bottom: 0;
}

.pricing__label {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-grey-medium);
    margin-bottom: 8px;
}

.pricing__value {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-blue);
}

.pricing__note {
    font-size: 16px;
    color: var(--color-grey-medium);
    margin-top: 8px;
}

.pricing__billing-note {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin: 40px 0;
}

.pricing__benefits p {
    font-size: 20px;
    margin: 16px 0;
    color: var(--color-grey-dark);
}

/* FAQ SECTION */
.faq {
    background: var(--color-white);
    padding: 100px 24px;
}

.faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq__title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-black);
}

.faq__grid {
    display: grid;
    gap: 40px;
}

.faq__item {
    padding: 32px;
    background: var(--color-grey-light);
    border-radius: 12px;
}

.faq__question {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-black);
}

.faq__answer {
    font-size: 20px;
    color: var(--color-grey-dark);
    line-height: 1.6;
}

/* FINAL CTA SECTION */
.final-cta {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047CC 100%);
    padding: 120px 24px;
    text-align: center;
}

.final-cta__container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 48px;
}

.final-cta__closing {
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-white);
    margin-top: 40px;
    opacity: 0.9;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal--active {
    display: flex;
}

.modal__content {
    background: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-grey-medium);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal__close:hover {
    color: var(--color-black);
}

.modal__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-black);
}

.modal__text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-grey-dark);
}

.modal__contact {
    font-size: 18px;
    margin: 12px 0;
    color: var(--color-grey-dark);
}

/* ============================================
   BOOKING FORM STYLES (BEM)
   ============================================ */

.booking-form {
    margin-top: 24px;
}

.booking-form__group {
    margin-bottom: 16px;
}

.booking-form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-grey-dark);
    font-size: 14px;
}

.booking-form__input,
.booking-form__select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
    height: 52px;
    background: var(--color-white);
}

.booking-form__input:focus,
.booking-form__select:focus {
    outline: none;
    border-color: var(--color-blue);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form__submit {
    margin-top: 20px;
    width: 100%;
}

/* Booking Form Error State */
.booking-form__error {
    display: none;
    background: #ffe6e6;
    border: 2px solid #ff4444;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.booking-form__error--visible {
    display: block;
}

.booking-form__error p {
    color: #cc0000;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Privacy Notice */
.booking-form__privacy {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--color-blue);
}

.booking-form__privacy-text {
    font-size: 12px;
    color: var(--color-grey-medium);
    line-height: 1.5;
    margin: 0;
}

.booking-form__privacy-text a {
    color: var(--color-blue);
    text-decoration: underline;
}

.booking-form__privacy-text a:hover {
    text-decoration: none;
}

/* Success State */
.booking-form__success {
    display: none;
}

.booking-form__success--visible {
    display: block;
}

.booking-form__success-content {
    text-align: center;
    padding: 60px 40px;
}

.booking-form__success-icon {
    font-size: 80px;
    margin-bottom: 32px;
    line-height: 1;
}

.booking-form__success-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-black);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.booking-form__success-text {
    font-size: 20px;
    color: var(--color-grey-dark);
    margin: 0 0 16px 0;
    font-weight: 500;
}

.booking-form__success-subtext {
    font-size: 18px;
    color: var(--color-grey-medium);
    margin: 0 0 48px 0;
}

.booking-form__done-btn {
    background: var(--color-blue);
    color: var(--color-white);
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.booking-form__done-btn:hover {
    background: #0047CC;
}

/* Legacy form-group for backward compatibility */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-grey-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 18px;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
    height: 56px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: var(--color-white);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 99998;
}

.cookie-consent--visible {
    display: block;
}

.cookie-consent__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent__text {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent__link {
    color: #4da6ff;
    text-decoration: underline;
}

.cookie-consent__link:hover {
    text-decoration: none;
}

.cookie-consent__button {
    background: var(--color-blue);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--font-family);
    transition: background 0.3s ease;
}

.cookie-consent__button:hover {
    background: #0047CC;
}

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

.landing-footer {
    background: #2c2c2c;
    color: var(--color-white);
    padding: 20px;
    text-align: center;
}

.landing-footer__text {
    margin: 0;
    font-size: 14px;
}

.landing-footer__link {
    color: var(--color-white);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.landing-footer__link:hover {
    color: #4da6ff;
}

/* ============================================
   FLATPICKR CUSTOM STYLES
   ============================================ */

.flatpickr-calendar {
    font-size: 16px !important;
    width: 360px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 12px !important;
    z-index: 10000000 !important;
}

.flatpickr-day {
    height: 42px !important;
    line-height: 42px !important;
    max-width: 42px !important;
    font-size: 15px !important;
}

.flatpickr-months {
    height: 52px !important;
}

.flatpickr-current-month {
    font-size: 18px !important;
    padding: 10px 0 !important;
}

.flatpickr-weekdays {
    height: 44px !important;
}

.flatpickr-weekday {
    font-size: 14px !important;
}

/* ============================================
   HERO HIGHLIGHT (moved from inline)
   ============================================ */

.hero__headline-highlight {
    color: #ffd400;
}

/* ============================================
   HONEYPOT (Bot Protection)
   ============================================ */

.booking-form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .modal__content {
        width: 95%;
        padding: 32px 24px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero__headline {
        font-size: 40px;
    }
    
    .hero__subheadline {
        font-size: 20px;
    }
    
    .hero__tagline {
        font-size: 14px;
    }
    
    .hero__value {
        font-size: 18px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .cta-button--large {
        font-size: 20px;
        padding: 16px 32px;
        width: 100%;
    }
    
    .cta-button--medium {
        font-size: 18px;
        padding: 14px 28px;
        width: 100%;
    }
    
    .problem__title,
    .solution__title,
    .automation__title,
    .comparison__title,
    .use-cases__title,
    .pricing__title,
    .faq__title {
        font-size: 36px;
    }
    
    .comparison__table {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison__row {
        min-height: 60px;
    }
    
    .use-cases__grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases__card {
        min-height: auto;
    }
    
    .final-cta__title {
        font-size: 28px;
    }
    
    .landing-nav {
        padding: 10px 0;
    }
    
    .landing-nav__container {
        padding: 0 12px;
    }
    
    .landing-nav__logo-img {
        height: 26px;
    }
    
    .landing-nav__buttons {
        gap: 6px;
    }
    
    .landing-nav__btn {
        padding: 6px 10px;
        font-size: 12px;
        height: 32px;
        white-space: nowrap;
    }
    
    .landing-nav__btn--secondary {
        padding: 5px 8px;
    }
    
    .landing-nav__btn--primary {
        padding: 6px 12px;
    }
    
    .landing-nav__btn {
        padding: 8px 12px;
        font-size: 13px;
        height: 36px;
        white-space: nowrap;
        min-width: auto;
    }
    
    .landing-nav__btn--secondary {
        padding: 6px 10px;
        border-width: 1px;
    }
    
    .landing-nav__btn--primary {
        padding: 8px 14px;
    }
    
    .hero,
    .problem,
    .solution,
    .automation,
    .comparison,
    .use-cases,
    .pricing,
    .faq,
    .final-cta {
        padding: 60px 16px;
    }
}



/* Updated Hero Two-Column Layout - Better Proportions */
.hero__content-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__video-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero__video-wrapper {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero__video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__cta-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

.hero__cta-column .cta-button {
    width: auto;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 400px;
}

.hero__cta-column .hero__value {
    text-align: center;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero__content-grid {
        gap: 28px;
        margin-top: 48px;
    }

    .hero__video-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero__cta-column {
        gap: 20px;
    }

    .hero__cta-column .cta-button {
        width: 90%;
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero__cta-column .hero__value {
        font-size: 15px;
        max-width: 90%;
    }
}

/* Mobile Navigation - Stack Buttons Below Logo */
@media (max-width: 768px) {
    .landing-nav__container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .landing-nav__logo {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .landing-nav__buttons {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .landing-nav__btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 14px;
        height: 42px;
        white-space: nowrap;
        text-align: center;
        min-width: 0;
    }

    .landing-nav__btn--secondary {
        padding: 11px 8px;
        border-width: 2px;
    }

    .landing-nav__btn--primary {
        padding: 12px 10px;
    }
}
