/* Season Font Family - Sans */
@font-face {
    font-family: "Season";
    src: url("/assets/fonts/Season/SeasonSans-TRIAL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Season";
    src: url("/assets/fonts/Season/SeasonSans-TRIAL-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Season";
    src: url("/assets/fonts/Season/SeasonSans-TRIAL-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Season";
    src: url("/assets/fonts/Season/SeasonSans-TRIAL-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Season Mix - for headings with slight serif */
@font-face {
    font-family: "SeasonMix";
    src: url("/assets/fonts/Season/SeasonMix-TRIAL-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SeasonMix";
    src: url("/assets/fonts/Season/SeasonMix-TRIAL-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SeasonMix";
    src: url("/assets/fonts/Season/SeasonMix-TRIAL-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Season", Georgia, "Times New Roman", serif;
    background-color: #f5f5f5 !important;
    color: #111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* App Layout */
.app {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Fixed Left */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 30%;
    height: 100vh;
    padding: 210px 0 40px 0;
    background: #f5f5f5 !important;
    z-index: 100;
}

.sidebar-inner {
    padding-left: 280px;
}

/* Logo */
.logo {
    margin-bottom: 24px;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Menu */
.menu {
    display: flex;
    flex-direction: column;
}

.menu a {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    margin-bottom: -3px;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #111;
}

.menu a.active {
    color: #111;
    font-weight: 600;
}

.menu hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 20px 0;
    width: 50px;
}

/* Main Content */
.content {
    margin-left: 380px;
    flex: 1;
    padding: 00px 0 150px 0;
    background-color: #f5f5f5 !important;
}

.content-inner {
    max-width: 600px;
    margin-left: 15%;
    padding-right: 60px;
}

/* Top Bar */
.top-bar {
    margin-top: 50px;
    margin-bottom: 50px;
}

.top-bar small {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.6);
    font-family: "Season", Georgia, serif;
}

/* Typography - Matching sesame.com */
.text-h1 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0.1em;
    color: #0a0a0a;
    margin-bottom: 48px;
    font-family: "SeasonMix", "Season", Georgia, serif;
}

.text-h2 {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: #0a0a0a;
    margin-bottom: 20px;
    font-family: "SeasonMix", "Season", Georgia, serif;
}

.text-h3 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: #0a0a0a;
    margin-bottom: 10px;
    font-family: "SeasonMix", "Season", Georgia, serif;
}

.text-body {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.4;
    color: #555;
    margin-bottom: 20px;
}

.text-body strong {
    color: #0a0a0a;
    font-weight: 600;
}

.text-body-strong {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.text-link {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #111;
}

/* Section Divider - Longer like sesame.com */
.section-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 64px;
    width: 100%;
    max-width: 600px;
}

.section-divider-wide {
    max-width: none !important;
}

/* Hero Section */
.hero {
    padding-bottom: 0;
}

/* Numbered Sections */
.numbered-section {
    position: relative;
    margin: 80px 0;
}

.section-number {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #999;
    margin-top: 64px;
    margin-bottom: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 32px 0;
}

.feature-list li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    color: #555;
    padding-left: 18px;
    position: relative;
}

.feature-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #999;
}

/* Business & Owner Section */
.business-owner-section {
    margin: 80px 0;
    min-width: 690px;
}

.business-owner-section .section-number,
.steps-section .section-number,
.testimonials-section .section-number {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #999;
    margin-top: 64px;
    margin-bottom: 0;
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 24px;
    align-items: start;
}

.owner-info {
    padding-right: 20px;
}

.owner-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

/* Steps Section */
.steps-section {
    margin: 80px 0;
    min-width: 690px;
}

.testimonials-section {
    margin: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.steps-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-btn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.step-btn:last-child {
    border-bottom: none;
}

.step-btn .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 0.8125rem;
    font-weight: 500;
    color: #111;
    flex-shrink: 0;
}

.step-btn .step-info h4 {
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: #0a0a0a;
    margin-bottom: 4px;
    font-family: "SeasonMix", "Season", Georgia, serif;
}

.step-btn .step-info p {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.steps-content {
    position: relative;
}

.step-panel {
    display: none;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.step-panel.active {
    display: block;
}

.panel-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    display: block;
    margin-bottom: 16px;
}

.step-panel h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: #0a0a0a;
    margin-bottom: 12px;
    font-family: "SeasonMix", "Season", Georgia, serif;
}

.step-panel p {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.step-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-panel li {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    padding-left: 18px;
    position: relative;
}

.step-panel li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #999;
}

.steps-conclusion {
    margin-top: 32px;
}

/* Carousel */
.carousel-wrapper {
    margin-top: 40px;
}

.glider-contain {
    position: relative;
}

.glider {
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.glider-slide {
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 6px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.glider-slide:hover {
    transform: scale(1.02);
}

.glider-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 14px solid #111;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.glider-prev,
.glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    color: #111;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.glider-prev:hover,
.glider-next:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.glider-prev {
    left: -19px;
}

.glider-next {
    right: -19px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90vw;
    max-width: 860px;
    aspect-ratio: 16 / 9;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: -44px;
    right: 0;
    font-size: 1.75rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

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

/* Responsive */
@media (max-width: 1400px) {
    .sidebar-inner {
        padding-left: 140px;
    }

    .content-inner {
        margin-left: 8%;
    }
}

@media (max-width: 1200px) {
    .sidebar-inner {
        padding-left: 80px;
    }

    .content-inner {
        margin-left: 6%;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        width: 220px;
    }

    .sidebar-inner {
        padding-left: 50px;
    }

    .content {
        margin-left: 220px;
        background-color: #f5f5f5 !important;
    }

    .content-inner {
        margin-left: 5%;
        padding-right: 40px;
    }
}

/* Mobile Header - Hidden on desktop */
.mobile-header {
    display: none;
}

.menu-overlay {
    display: none;
}

.menu-button {
    display: none;
}

@media (max-width: 767px) {
    /* Mobile base styles */
    body {
        background-color: #f6f6f6;
        color: #111111;
        font-size: 16px;
    }

    .text-h1 {
        font-size: 35px;
        line-height: 32px;
        font-weight: 530;
        color: #111111;
        margin-bottom: 24px;
    }

    .text-body {
        font-size: 16px;
        line-height: 22px;
        color: rgba(17, 17, 17, 0.6);
    }

    /* Mobile Header - Glass effect */
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15.7px);
        -webkit-backdrop-filter: blur(15.7px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.31);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        padding: 0px 24px;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
    }

    .mobile-logo img {
        height: 80px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: #111;
    }

    .menu-toggle .hamburger-icon {
        display: block;
    }

    .menu-toggle .close-icon {
        display: none;
    }

    .menu-toggle.active .hamburger-icon {
        display: none;
    }

    .menu-toggle.active .close-icon {
        display: block;
    }

    /* Menu Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 500;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Sidebar as Mobile Menu */
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 70vh;
        padding: 80px 24px 30px 24px;
        background: #fff;
        z-index: 900;
        overflow-y: auto;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .sidebar.active {
        display: block;
    }

    .sidebar-inner {
        padding-left: 0;
    }

    .sidebar .logo {
        display: none;
    }

    .sidebar .menu a {
        font-size: 18px;
        margin-bottom: 16px;
        color: #111;
    }

    .sidebar .menu a.active {
        font-weight: 600;
    }

    /* Main content */
    .content {
        margin-left: 0;
        padding: 90px 0 40px 0;
        max-width: 100%;
    }

    .content-inner {
        margin-left: 0;
        padding-left: 24px;
        padding-right: 24px;
        max-width: 100%;
    }

    .hero {
        margin-top: 20px !important;
    }

    .text-h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .section-number {
        margin-top: 40px;
    }

    .section-divider {
        margin-bottom: 40px;
    }

    .numbered-section,
    .business-owner-section,
    .steps-section,
    .testimonials-section {
        margin: 40px 0;
    }

    .business-owner-section,
    .steps-section {
        min-width: auto;
    }

    .owner-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .owner-image {
        order: -1;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-divider-wide {
        max-width: 100% !important;
    }

    .glider-prev,
    .glider-next {
        display: flex !important;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .glider-prev {
        left: 5px;
    }

    .glider-next {
        right: 5px;
    }

    /* Video carousel mobile */
    .carousel-wrapper {
        margin-top: 24px;
        margin-left: -24px;
        margin-right: -24px;
        overflow: hidden;
    }

    .glider-contain {
        padding: 0 24px;
    }

    .glider-slide {
        margin: 0 4px;
        min-width: 280px;
    }

    .testimonials-section {
        overflow: hidden;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .mobile-header {
        display: none;
    }
}
