/**
 * Best Year Yet - Main Website Styles
 * ====================================
 * Site: bestyearyet.com
 * Migrated from WordPress/Elementor
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Brand Colors */
    --byy-coral-pink: #E8625C;
    --byy-light-blue: #5ABCDC;
    --byy-sage-green: #A9CA90;
    --byy-peach-orange: #F6BC5B;
    --byy-bright-blue: #268AB2;
    
    /* Neutral Colors */
    --byy-dark-text: #2D3748;
    --byy-medium-text: #4A5568;
    --byy-light-text: #718096;
    --byy-white: #FFFFFF;
    --byy-off-white: #F7FAFC;
    --byy-light-gray: #EDF2F7;
    --byy-border-gray: #E2E8F0;
    
    /* Gradients */
    --byy-gradient-primary: linear-gradient(135deg, var(--byy-coral-pink) 0%, var(--byy-peach-orange) 100%);
    --byy-gradient-accent: linear-gradient(135deg, var(--byy-bright-blue) 0%, var(--byy-light-blue) 100%);
    
    /* Shadows */
    --byy-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --byy-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --byy-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --byy-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --byy-shadow-primary: 0 4px 15px rgba(232, 98, 92, 0.3);
    
    /* Transitions */
    --byy-transition-fast: 150ms ease;
    --byy-transition-base: 200ms ease;
    --byy-transition-slow: 300ms ease;
    
    /* Layout */
    --header-height: 60px;
    --header-total-height: 60px; /* Top only on mobile */
    --container-max: 1200px;
}

@media (min-width: 1024px) {
    :root {
        --header-total-height: 104px; /* 60px top + 44px nav bar */
    }
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--byy-dark-text);
    background: var(--byy-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--byy-dark-text);
    color: var(--byy-white);
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 10000;
    transition: top var(--byy-transition-fast);
}

.skip-link:focus {
    top: 10px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--byy-dark-text);
}

.brand-text {
    background: var(--byy-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--byy-transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--byy-gradient-primary);
    color: white;
    box-shadow: var(--byy-shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 98, 92, 0.4);
}

.btn-secondary {
    background: var(--byy-white);
    color: var(--byy-coral-pink);
    border: 2px solid var(--byy-coral-pink);
}

.btn-secondary:hover {
    background: var(--byy-coral-pink);
    color: var(--byy-white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-login {
    padding: 10px 24px;
    font-weight: 600;
    color: var(--byy-medium-text);
    background: var(--byy-light-gray);
    border-radius: 25px;
    transition: all var(--byy-transition-fast);
}

.btn-login:hover {
    background: var(--byy-coral-pink);
    color: var(--byy-white);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Header Row (White) */
.header-top {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--byy-border-gray);
}

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
}

.header-logo .logo-img {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .btn-login {
    display: none;
    background: transparent;
    color: rgb(204, 51, 102);
    padding: 0;
    border-radius: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    transition: color var(--byy-transition-fast);
}

.header-actions .btn-login:hover {
    color: rgb(171, 37, 84);
}

@media (min-width: 768px) {
    .header-actions .btn-login {
        display: inline-block;
    }
}

/* Sub Header Row (Blue Navigation Bar) */
.header-nav-bar {
    background: var(--byy-bright-blue);
    display: none;
}

@media (min-width: 1024px) {
    .header-nav-bar {
        display: block;
    }
}

.header-nav-container {
    max-width: none;
    margin: 0;
    padding: 0 0 0 15px;
}

.header-nav {
    display: block;
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.nav-list li {
    text-align: center;
}

.nav-link {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--byy-white);
    transition: color var(--byy-transition-fast), background var(--byy-transition-fast);
    padding: 13px 20px 13px 0;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--byy-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--byy-dark-text);
    transition: all var(--byy-transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 60px; /* Below header-top */
    left: 0;
    right: 0;
    background: var(--byy-white);
    border-bottom: 1px solid var(--byy-border-gray);
    box-shadow: var(--byy-shadow-lg);
}

.mobile-nav.is-open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-list {
    padding: 16px 24px;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--byy-border-gray);
}

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

.mobile-nav-list a {
    display: block;
    padding: 16px 0;
    font-weight: 500;
    color: var(--byy-medium-text);
    transition: color var(--byy-transition-fast);
}

.mobile-nav-list a:hover {
    color: var(--byy-coral-pink);
}

.btn-login-mobile {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px !important;
    background: var(--byy-gradient-primary);
    color: var(--byy-white) !important;
    border-radius: 25px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding-top: var(--header-total-height);
    padding-bottom: 0;
    background-color: var(--byy-bright-blue); /* Dark teal/blue #268AB2 */
    background-image: url('assets/backgrounds/hero-bg.png');
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
}

.hero-content {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2; /* Above the image */
    /* Transparent - lets hero background image show through */
}

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
        min-width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        padding-right: 0;
    }
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--byy-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-headline::after {
    content: '';
    display: block;
    width: 83%;
    height: 3px;
    background: var(--byy-peach-orange);
    margin-top: 12px;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--byy-white);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--byy-white);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-cta-primary {
    display: block;
}

.hero-cta-primary .btn {
    display: inline-block;
    align-items: normal;
    justify-content: normal;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 17px;
    padding: 12px 24px;
    border-radius: 3px;
    background: rgb(83, 141, 34);
    color: #fff;
    box-shadow: none;
}

.hero-cta-primary .btn:hover {
    transform: none;
    background: rgb(75, 127, 31);
    box-shadow: none;
    color: #fff;
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: flex;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        position: relative;
        overflow: hidden;
        align-items: stretch;
        justify-content: flex-end;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        min-height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
    }
}

@media (min-width: 1200px) {
    .hero-container {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .hero-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

/* ==========================================
   POSSIBILITIES SECTION
   ========================================== */
.possibilities-section {
    padding: 45px;
    background-color: #E8F4FC;
    background-image: url('assets/backgrounds/light-blue-cloud-background.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.possibilities-heading-wrap {
    margin-bottom: 20px;
}

.possibilities-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #484849;
    margin-bottom: 0;
}

.possibilities-divider {
    width: 85%;
    max-width: 1000px;
    height: 3px;
    background: #C93F2F;
    margin: 14px auto 0;
}

.possibilities-grid-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.possibilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 390px));
    justify-content: center;
    gap: 32px;
    margin: 0;
}

@media (max-width: 767px) {
    .possibilities-section {
        padding: 30px 20px;
    }

    .possibilities-section .section-title {
        font-size: 30px;
    }

    .possibilities-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 12px;
    }
}

.possibilities-list {
    list-style: disc;
    padding-left: 24px;
    color: #484849;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

.possibilities-list li {
    margin-bottom: 10px;
}

/* ==========================================
   ACCESS SECTION
   ========================================== */
.access-section {
    padding: 0;
}

.access-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .access-container {
        flex-direction: row;
    }
}

.access-image {
    flex: 1 1 50%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
}

.access-image .elementor-widget-container,
.access-image picture {
    width: 100%;
}

.access-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    border: none;
}

.access-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background-color: #C93F2F;
    background-image: url('assets/backgrounds/dark-red-clouds-background.png');
    background-position: center center;
    background-repeat: repeat;
    background-size: auto;
    color: var(--byy-white);
}

.access-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.access-divider {
    width: 85%;
    height: 3px;
    background: #EFBC34;
    margin: 0 0 18px;
}

.access-content p {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #fff;
}

@media (max-width: 767px) {
    .access-content {
        padding: 22px 18px;
    }

    .access-content h2 {
        font-size: 30px;
    }
}

/* ==========================================
   RESULTS SECTION
   ========================================== */
.results-section {
    padding: 0;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .results-container {
        flex-direction: row;
    }
}

.results-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background-color: var(--byy-bright-blue);
    background-image: url('assets/backgrounds/hero-bg.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    order: 1;
}

@media (min-width: 768px) {
    .results-content {
        order: 1;
    }
}

.results-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    line-height: 35px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.results-divider {
    width: 86.5%;
    height: 2px;
    background: #EFBC34;
    margin: 0 0 40px;
}

.results-content p {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 0;
}

.results-image {
    flex: 1 1 50%;
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    padding: 0;
    background: none;
    order: 2;
}

@media (min-width: 768px) {
    .results-image {
        order: 2;
    }
}

.results-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .results-content {
        padding: 25px;
    }

    .results-content h2 {
        font-size: 30px;
    }
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: var(--byy-white);
}

.stats-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--byy-bright-blue);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--byy-peach-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 400;
    color: #484849;
}

/* ==========================================
   FOUNDING SPONSOR CTA FULL
   ========================================== */
.sponsor-cta-full {
    padding: 80px 0;
    background: #962F23;
    text-align: center;
}

.sponsor-cta-full .sponsor-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.sponsor-cta-full h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--byy-white);
    margin-bottom: 24px;
}

.sponsor-divider {
    width: 85%;
    height: 3px;
    background: var(--byy-peach-orange);
    margin: 0 auto 24px;
}

.sponsor-cta-full p {
    font-size: 1.125rem;
    color: var(--byy-white);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sponsor-cta-full .btn-accent {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    background: rgb(83, 141, 34);
    color: #fff;
    border-radius: 3px;
    padding: 12px 24px;
    margin-top: 24px;
}

.sponsor-cta-full .btn-accent:hover {
    background: rgb(75, 127, 31);
    color: #fff;
}

/* ==========================================
   SCREENSHOTS CAROUSEL (Swiper.js Coverflow)
   ========================================== */
.screenshots-section {
    padding: 60px 0 80px;
    background: rgb(234, 142, 72);
    overflow: hidden;
}

.screenshots-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.screenshots-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--byy-white);
    margin-bottom: 8px;
}

.screenshots-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.screenshots-swiper {
    width: 100%;
    padding: 30px 0 60px !important;
}

.screenshots-swiper .swiper-slide {
    width: 280px;
    aspect-ratio: 297 / 207;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .screenshots-swiper .swiper-slide {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    .screenshots-swiper .swiper-slide {
        width: 360px;
    }
}

.screenshots-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.screenshots-swiper .swiper-button-prev,
.screenshots-swiper .swiper-button-next {
    color: var(--byy-white);
}

.screenshots-swiper .swiper-button-prev:after,
.screenshots-swiper .swiper-button-next:after {
    font-size: 1.5rem;
    font-weight: 700;
}

.screenshots-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.screenshots-swiper .swiper-pagination-bullet-active {
    background: var(--byy-white);
}

.screenshot-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 32px;
}

.screenshot-lightbox.is-open {
    display: flex;
}

.screenshot-lightbox-image {
    max-width: min(95vw, 1400px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.screenshot-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* ==========================================
   GIFT SECTION
   ========================================== */
.gift-section {
    padding: 80px 0;
    background: rgb(49, 84, 19);
    text-align: center;
}

.gift-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.gift-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--byy-white);
    margin-bottom: 20px;
}

.gift-divider {
    width: 80px;
    height: 3px;
    background: var(--byy-peach-orange);
    margin: 0 auto 30px;
}

.btn-gift {
    display: inline-block;
    background: rgb(201, 63, 47);
    color: var(--byy-white);
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 30px;
    transition: background var(--byy-transition-fast);
}

.btn-gift:hover {
    background: #b03829;
    color: var(--byy-white);
}

.gift-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: left;
}

.gift-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.gift-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.75;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

.gift-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--byy-peach-orange);
}

/* ==========================================
   SPONSOR CTA SECTION
   ========================================== */
.sponsor-cta {
    padding: 60px 0;
    background: var(--byy-off-white);
}

.sponsor-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* ==========================================
   TESTIMONIALS CAROUSEL
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--byy-white) url('assets/backgrounds/testimonials-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.testimonials-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-swiper {
    position: relative;
    padding-bottom: 28px;
}

.testimonials-swiper .swiper-slide {
    width: 100%;
}

.testimonial-slide {
    width: 100%;
    max-width: none;
}

.testimonial-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: rgb(72, 72, 73);
    line-height: 30px;
    margin-bottom: 24px;
}

.testimonial-quote::before {
    content: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: rgb(122, 122, 122);
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    color: rgb(122, 122, 122);
    font-size: 13px;
}

.testimonials-swiper .swiper-pagination {
    bottom: 3px !important;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgb(0, 0, 0);
    opacity: 0.2;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: rgb(72, 72, 73);
    color: var(--byy-white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 767px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-logo-col {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-links-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--byy-white);
    margin-bottom: 16px;
}

.footer-nav {
    margin: 0;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color var(--byy-transition-fast);
}

.footer-nav-list a:hover {
    color: var(--byy-white);
}

.footer-workshop {
    text-align: left;
}

.footer-workshop p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-workshop a {
    color: var(--byy-peach-orange);
    font-weight: 600;
}

.footer-workshop a:hover {
    color: var(--byy-coral-pink);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */
@media (max-width: 767px) {
    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
    }
    
    .hero-cta-primary .btn {
        font-size: 1rem;
        padding: 16px 32px;
    }
    
    .screenshots-section,
    .testimonials-section {
        padding: 40px 0;
    }
    
    .sponsor-cta {
        padding: 40px 0;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

/* ==========================================
   PAGE HERO (Interior Pages)
   ========================================== */
.page-hero {
    padding-top: calc(var(--header-total-height) + 60px);
    padding-bottom: 60px;
    background: var(--byy-off-white);
    text-align: center;
}

.page-hero-compact {
    padding-bottom: 40px;
}

.page-hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--byy-medium-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 48px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 80px 0;
    background: var(--byy-white);
}

.features-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.feature-card {
    background: var(--byy-off-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform var(--byy-transition-base), box-shadow var(--byy-transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--byy-shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--byy-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--byy-white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--byy-medium-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================
   PREVIEW SECTION (Registration)
   ========================================== */
.preview-section {
    padding: 80px 0;
    background: var(--byy-white);
}

.preview-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.preview-card {
    background: var(--byy-off-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--byy-shadow-lg);
}

.preview-card img {
    width: 100%;
    display: block;
}

.preview-caption {
    padding: 24px;
    text-align: center;
}

.preview-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.preview-caption p {
    color: var(--byy-medium-text);
    margin: 0;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    padding: 80px 0;
    background: var(--byy-gradient-primary);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--byy-white);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.final-cta .btn {
    background: var(--byy-white);
    color: var(--byy-coral-pink);
}

.final-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 60px 0 100px;
    background: var(--byy-white);
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--byy-dark-text);
}

.form-group .required {
    color: var(--byy-coral-pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--byy-border-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color var(--byy-transition-fast), box-shadow var(--byy-transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--byy-coral-pink);
    box-shadow: 0 0 0 3px rgba(232, 98, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--byy-medium-text);
}

.form-submit {
    width: 100%;
}

@media (min-width: 640px) {
    .form-submit {
        width: auto;
        align-self: flex-start;
    }
}

.form-note {
    font-size: 0.875rem;
    color: var(--byy-light-text);
    margin: 0;
}

/* Form Success/Error Messages */
.form-success,
.form-error {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
}

.form-success {
    background: rgba(169, 202, 144, 0.1);
    border: 1px solid var(--byy-sage-green);
}

.form-error {
    background: rgba(232, 98, 92, 0.1);
    border: 1px solid var(--byy-coral-pink);
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.success-icon {
    color: var(--byy-sage-green);
}

.error-icon {
    color: var(--byy-coral-pink);
}

.form-success h3,
.form-error h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p,
.form-error p {
    color: var(--byy-medium-text);
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--byy-off-white);
    padding: 30px;
    border-radius: 16px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--byy-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--byy-white);
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-content p {
    color: var(--byy-medium-text);
    font-size: 0.9375rem;
    margin: 0;
}

.info-content a {
    color: var(--byy-coral-pink);
    font-weight: 500;
}

.quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--byy-medium-text);
    font-weight: 500;
    transition: color var(--byy-transition-fast);
}

.quick-links a:hover {
    color: var(--byy-coral-pink);
}

.quick-links i {
    color: var(--byy-coral-pink);
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-section {
    padding: 60px 0 100px;
    background: var(--byy-white);
}

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

.faq-category {
    margin-bottom: 20px;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--byy-border-gray);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--byy-off-white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--byy-transition-fast);
}

.accordion-header:hover {
    background: var(--byy-light-gray);
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--byy-dark-text);
}

.accordion-icon {
    transition: transform var(--byy-transition-base);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 24px;
}

.faq-item {
    margin-bottom: 24px;
}

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

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--byy-dark-text);
}

.faq-item p {
    color: var(--byy-medium-text);
    margin: 0;
    line-height: 1.7;
}

.faq-item a {
    color: var(--byy-coral-pink);
    font-weight: 500;
}

/* Questions CTA */
.questions-cta {
    padding: 80px 0;
    background: var(--byy-off-white);
    text-align: center;
}

.questions-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.questions-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.questions-cta p {
    color: var(--byy-medium-text);
    margin-bottom: 24px;
}

/* ==========================================
   LEGAL PAGE (Terms & Privacy)
   ========================================== */
.legal-section {
    padding: 60px 0 100px;
    background: var(--byy-white);
}

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

.legal-notice {
    background: var(--byy-off-white);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.legal-notice p {
    margin: 0;
    color: var(--byy-medium-text);
}

.legal-notice p:first-child {
    margin-bottom: 8px;
}

.legal-article {
    margin-bottom: 60px;
}

.legal-article:last-child {
    margin-bottom: 0;
}

.legal-article h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--byy-coral-pink);
}

.legal-article h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-article p {
    color: var(--byy-medium-text);
    line-height: 1.8;
}

.legal-article ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-article li {
    color: var(--byy-medium-text);
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.legal-article a {
    color: var(--byy-coral-pink);
    font-weight: 500;
}

/* ==========================================
   SPONSOR PAGE
   ========================================== */
.sponsor-hero {
    background: var(--byy-gradient-primary);
    color: var(--byy-white);
}

.sponsor-hero .page-title,
.sponsor-hero .page-subtitle {
    color: var(--byy-white);
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sponsor-benefits {
    padding: 80px 0;
    background: var(--byy-white);
}

.benefits-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.benefit-card {
    background: var(--byy-off-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform var(--byy-transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--byy-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--byy-white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--byy-medium-text);
    margin: 0;
}

.sponsor-showcase {
    padding: 80px 0;
    background: var(--byy-off-white);
}

.showcase-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.showcase-card {
    background: var(--byy-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--byy-shadow-lg);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: var(--byy-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.showcase-icon i {
    font-size: 2rem;
    color: var(--byy-white);
}

.showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.showcase-card p {
    color: var(--byy-medium-text);
    max-width: 400px;
    margin: 0 auto;
}

.sponsor-cta-section {
    padding: 100px 0;
    background: var(--byy-dark-text);
}

.sponsor-cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.sponsor-cta-content h2 {
    font-size: 2.5rem;
    color: var(--byy-white);
    margin-bottom: 16px;
}

.sponsor-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.sponsor-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .sponsor-cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.sponsor-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.sponsor-note i {
    margin-right: 8px;
}

/* Sponsor Vision Section */
.sponsor-vision {
    padding: 80px 0;
    background: var(--byy-off-white);
}

.vision-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.vision-content {
    text-align: center;
}

.vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--byy-medium-text);
    margin-bottom: 30px;
}

.vision-text strong {
    color: var(--byy-dark-text);
}

.founder-quote {
    background: var(--byy-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--byy-shadow-md);
    margin: 40px 0;
    border-left: 4px solid var(--byy-coral-pink);
}

.founder-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--byy-dark-text);
    margin-bottom: 16px;
}

.founder-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--byy-coral-pink);
    font-weight: 600;
}

/* ==========================================
   FOUNDING SPONSORS LIVE PAGE
   ========================================== */
.founding-live-page .founding-main {
    padding-top: 0;
}

@media (min-width: 1024px) {
    .founding-live-page .founding-main {
        padding-top: 0;
    }
}

.founding-live-page .header {
    position: static;
}

.founding-live-page .founding-content {
    background: #fff;
    padding: 0;
}

.founding-live-page .founding-container {
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.founding-live-page .founding-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .founding-live-page .founding-layout {
        grid-template-columns: 1fr 20px 1fr;
    }
}

.founding-live-page .founding-copy {
    background: rgb(150, 47, 35);
    height: 100%;
}

.founding-live-page .founding-copy-inner {
    padding: 73px 111px 0;
}

.founding-live-page .founding-divider {
    width: 100%;
    max-width: 533px;
    border-top: 3px solid rgb(234, 142, 72);
    margin: 0 0 38px;
}

.founding-live-page .founding-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 35px;
    color: #fff;
    text-align: center;
    margin: 0 0 22px;
    max-width: 523px;
}

.reg-mark {
    font-family: "Times New Roman", serif;
    font-size: 0.62em;
    font-style: italic;
    font-weight: 400;
    vertical-align: super;
    line-height: 0;
}

.founding-live-page .founding-label {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: rgb(227, 227, 227);
    margin: 0;
}

.founding-live-page .founding-intro-text,
.founding-live-page .founding-combined-lead {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: rgb(227, 227, 227);
    margin: 0;
    max-width: 533px;
}

.founding-live-page .founding-intro-text {
    margin: 0 0 27px;
}

.founding-live-page .founding-combined-lead {
    margin: 0 0 12px;
    font-weight: 700;
}

.founding-live-page .founding-ordered-list {
    margin: 0;
    padding-left: 40px;
    max-width: 533px;
    list-style: decimal outside;
    margin-bottom: 27px;
}

.founding-live-page .founding-ordered-list li {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: rgb(227, 227, 227);
    margin-bottom: 0;
    display: list-item;
}

.founding-live-page .founding-list {
    margin: 0;
    padding-left: 0;
    max-width: 533px;
    list-style: none;
}

.founding-live-page .founding-check-list li {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: rgb(227, 227, 227);
    margin: 0;
    position: relative;
    padding-left: 30px;
}

.founding-live-page .founding-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(227, 227, 227);
    font-weight: 700;
}

.founding-live-page .founding-layout-gap {
    display: none;
}

@media (min-width: 1024px) {
    .founding-live-page .founding-layout-gap {
        display: block;
    }
}

.founding-live-page .founding-form-column {
    width: 100%;
    background: #fff;
}

.founding-live-page .founding-form-column .ep-wrapper {
    border-radius: 3px;
}

.founding-live-page .founding-form-column iframe {
    width: 100%;
    min-height: 1098px;
    border: 0;
    border-radius: 3px;
    display: block;
    overflow: auto;
}

.founding-live-page .founding-testimonials-section {
    background: var(--byy-white) url('assets/backgrounds/testimonials-bg.jpg') center center / cover no-repeat;
    padding: 0;
    margin-top: 0;
}

.founding-live-page .founding-testimonials-container {
    max-width: none;
    margin: 0 auto;
}

.founding-live-page .founding-testimonials-swiper {
    --edge: 47px;
    width: calc(100% - (var(--edge) * 2));
    margin: 0 auto;
    padding: 20px 0 40px;
}

.founding-live-page .founding-testimonials-swiper .swiper-slide {
    height: auto;
}

.founding-live-page .founding-testimonial {
    text-align: center;
    padding: 20px 20px 20px;
}

.founding-live-page .founding-testimonial-text {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-style: italic;
    color: rgb(72, 72, 73);
    margin-bottom: 21px;
}

.founding-live-page .founding-testimonial-name {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: rgb(102, 51, 101);
    max-width: 278px;
    margin: 0 auto;
}

.founding-live-page .founding-testimonial-title {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: rgb(115, 116, 116);
    max-width: 278px;
    margin: 0 auto;
}

.founding-live-page .founding-testimonials-swiper .swiper-button-prev,
.founding-live-page .founding-testimonials-swiper .swiper-button-next {
    width: 20px;
    height: 20px;
    color: rgb(38, 138, 178);
    margin-top: -10px;
}

.founding-live-page .founding-testimonials-swiper .swiper-button-prev {
    left: -28px;
}

.founding-live-page .founding-testimonials-swiper .swiper-button-next {
    right: -28px;
}

.founding-live-page .founding-testimonials-swiper .swiper-button-prev:after,
.founding-live-page .founding-testimonials-swiper .swiper-button-next:after {
    font-size: 11px;
    font-weight: 700;
}

.founding-live-page .founding-testimonials-swiper .swiper-pagination {
    left: calc(var(--edge) * -1) !important;
    width: calc(100% + (var(--edge) * 2)) !important;
    bottom: 8px !important;
}

.founding-live-page .founding-testimonials-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(72, 72, 73, 0.35);
    opacity: 1;
}

.founding-live-page .founding-testimonials-swiper .swiper-pagination-bullet-active {
    background: rgb(72, 72, 73);
}

@media (max-width: 1279px) {
    .founding-live-page .founding-testimonials-swiper {
        --edge: 34px;
    }

    .founding-live-page .founding-testimonial {
        padding-bottom: 50px;
    }

    .founding-live-page .founding-copy-inner {
        padding: 70px 86px 0;
    }

    .founding-live-page .founding-container h1 {
        font-size: 35px;
        line-height: 35px;
        max-width: 321px;
    }

    .founding-live-page .founding-divider {
        max-width: 331px;
    }

    .founding-live-page .founding-list {
        max-width: 331px;
    }

    .founding-live-page .founding-intro-text,
    .founding-live-page .founding-combined-lead,
    .founding-live-page .founding-ordered-list,
    .founding-live-page .founding-list {
        max-width: 331px;
    }

}

@media (max-width: 767px) {
    .founding-live-page .founding-main { padding-top: 0; }

    .founding-live-page .founding-content {
        padding: 0;
    }

    .founding-live-page .founding-layout {
        display: block;
    }

    .founding-live-page .founding-copy-inner {
        padding: 73px 35px 22px;
    }

    .founding-live-page .founding-container h1 {
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 24px;
        max-width: 320px;
    }

    .founding-live-page .founding-list {
        max-width: 320px;
    }

    .founding-live-page .founding-intro-text,
    .founding-live-page .founding-combined-lead,
    .founding-live-page .founding-ordered-list,
    .founding-live-page .founding-list {
        max-width: 320px;
    }

    .founding-live-page .founding-intro-text,
    .founding-live-page .founding-combined-lead,
    .founding-live-page .founding-ordered-list li,
    .founding-live-page .founding-check-list li,
    .founding-live-page .founding-label {
        font-size: 18px;
        line-height: 27px;
    }

    .founding-live-page .founding-testimonials-swiper {
        --edge: 18px;
        width: calc(100% - (var(--edge) * 2));
        padding-top: 16px;
    }

    .founding-live-page .founding-testimonial-text {
        font-size: 20px;
        line-height: 30px;
    }

    .founding-live-page .founding-testimonials-section {
        margin-top: 156px;
    }
}
