/* =============================================
   New Landing Page Styles — Mobile First
   ============================================= */

/* Body overrides for lets-talk-seo */
body.lets-talk-seo {
    --lts-bg-dark: #0b0e1a;
    --lts-bg-dark-alt: #101325;
    --lts-text-light: #ffffff;
    --lts-text-muted: #b0b3c0;
    --lts-accent-1: #0dabff;
    --lts-accent-2: #8056ff;
    --lts-orange-start: #ffb347;
    --lts-orange-end: #ff6a3d;
    background: #ffffff !important;
    color: var(--lts-text-light);
    font-family: 'Geist', 'Manrope', sans-serif;
    min-height: 100vh;
}

body.lets-talk-seo h1,
body.lets-talk-seo h2,
body.lets-talk-seo h3,
body.lets-talk-seo h4,
body.lets-talk-seo h5,
body.lets-talk-seo h6 {
    font-family: 'Onest', 'Manrope', sans-serif;
    color: var(--lts-text-light);
    letter-spacing: -0.01em;
}

body.lets-talk-seo p,
body.lets-talk-seo li,
body.lets-talk-seo span,
body.lets-talk-seo a,
body.lets-talk-seo button {
    font-family: 'Geist', 'Manrope', sans-serif;
}

.text-dark {
    color: #111111 !important;
}

.text-center {
    text-align: center !important;
}

/* =============================================
   Hero Section
   ============================================= */

.lts-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    min-height: 80vh;
    background: var(--lts-bg-dark);
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

/* Star / particle background */
.lts-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(3px 3px at 10% 15%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 25% 35%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 40% 8%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 55% 45%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 85% 50%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 15% 60%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(2px 2px at 30% 75%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 50% 65%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(2px 2px at 65% 80%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 80% 70%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 92% 25%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(2px 2px at 5% 85%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 48% 30%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(2px 2px at 75% 55%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 20% 90%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 60% 5%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 35% 50%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(2px 2px at 8% 42%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 100% 100%;
    z-index: 0;
}

/* Subtle glow behind the CTA area */
.lts-hero-glow {
    position: absolute;
    top: 35%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 180, 100, 0.08) 0%, rgba(255, 120, 60, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lts-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.lts-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lts-hero-logo {
    margin-bottom: 40px;
}

.lts-hero-logo img {
    max-width: 140px;
    height: auto;
}

.lts-hero-preheadline {
    font-size: 32px;
    font-weight: 500;
    color: var(--lts-text-light);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.lts-hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--lts-text-light);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lts-hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--lts-text-light);
    margin-bottom: 36px;
    max-width: 700px;
    text-align: center;
}

.lts-hero-subtitle br {
    display: none;
}

/* CTA Button (reuse lets-talk orange style scoped to this page) */
body.lets-talk-seo .btn.cta-orange {
    background: linear-gradient(120deg, var(--lts-orange-start) 0%, var(--lts-orange-end) 100%);
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

body.lets-talk-seo .btn.cta-orange:hover {
    background: linear-gradient(120deg, var(--lts-orange-end) 0%, var(--lts-orange-start) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 145, 90, 0.35);
    color: #fff;
    text-decoration: none;
}

body.lets-talk-seo .btn.cta-orange i {
    transition: transform 0.3s ease;
}

body.lets-talk-seo .btn.cta-orange:hover i {
    transform: translateX(4px);
}

/* =============================================
   Trust / Social Proof Section
   ============================================= */

.lts-trust {
    padding: 40px 0 60px;
    position: relative;
}

.lts-trust-heading {
    font-size: 16px;
    font-weight: 400;
    color: var(--lts-text-muted);
    margin-bottom: 8px;
    font-family: 'Geist', 'Manrope', sans-serif;
    font-style: italic;
    text-align: center;
}

.lts-trust-subheading {
    font-size: 15px;
    font-weight: 400;
    color: var(--lts-text-muted);
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.lts-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.lts-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lts-trust-logo {
    max-height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.lts-trust-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.blue-commet {
    position: absolute;
    top: 60px;
    right: 0%;
    max-width: 500px;
    height: auto;
    z-index: 3;
    opacity: 0.9;
    pointer-events: none;
}

/* =============================================
   Responsive — Small Phones (375px+)
   ============================================= */
@media (min-width: 375px) {
    .lts-hero-title {
        font-size: 34px;
    }

    .lts-hero-preheadline {
        font-size: 17px;
    }

    .lts-hero-subtitle {
        font-size: 16px;
    }
}

/* =============================================
   Responsive — Larger Phones (480px+)
   ============================================= */
@media (min-width: 480px) {
    .lts-hero-title {
        font-size: 38px;
    }

    .lts-hero-preheadline {
        font-size: 18px;
    }

    .lts-hero-subtitle {
        font-size: 17px;
    }

    .lts-hero-subtitle br {
        display: inline;
    }

    .lts-trust-heading {
        font-size: 18px;
    }
}

/* =============================================
   Responsive — Phablets (576px+)
   ============================================= */
@media (min-width: 576px) {
    .lts-hero-title {
        font-size: 42px;
    }

    .lts-hero-logo img {
        max-width: 160px;
    }

    .lts-trust-logo {
        max-height: 30px;
    }
}

/* =============================================
   Responsive — Tablet (768px+)
   ============================================= */
@media (min-width: 768px) {
    .lts-hero {
        padding: 80px 0 60px;
    }

    .lts-hero-title {
        font-size: 52px;
    }

    .lts-hero-preheadline {
        font-size: 20px;
    }

    .lts-hero-subtitle {
        font-size: 18px;
    }

    .lts-hero-logo img {
        max-width: 180px;
    }

    .lts-hero-glow {
        width: 600px;
        height: 600px;
    }

    .lts-logo-row {
        gap: 40px;
        flex-wrap: nowrap;
    }

    .lts-trust-logo {
        max-height: 32px;
    }

    .lts-trust-heading {
        font-size: 20px;
    }

    .lts-trust-subheading {
        font-size: 16px;
    }

    body.lets-talk-seo .btn.cta-orange {
        padding: 16px 36px;
        font-size: 18px;
    }

    .blue-commet {
        max-width: 600px;
        top: 10%;
        right: 25%;
    }
}

/* =============================================
   Responsive — Desktop (1024px+)
   ============================================= */
@media (min-width: 1024px) {
    body.lets-talk-seo h1 {
        text-wrap-mode: nowrap;
    }
    .lts-hero {
        padding: 100px 0 80px;
        min-height: 85vh;
    }

    .lts-hero-title {
        font-size: 60px;
    }

    .lts-hero-preheadline {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .lts-hero-subtitle {
        font-size: 20px;
        margin-bottom: 44px;
    }

    .lts-hero-logo {
        margin-bottom: 50px;
    }

    .lts-hero-logo img {
        max-width: 200px;
    }

    .lts-hero-glow {
        width: 800px;
        height: 800px;
    }

    .lts-trust {
        padding: 40px 0 50px;
    }

    .lts-logo-row {
        gap: 50px;
    }

    .lts-trust-logo {
        max-height: 36px;
    }

    body.lets-talk-seo .btn.cta-orange {
        padding: 18px 40px;
        font-size: 20px;
    }

    .blue-commet {
        max-width: 600px;
        top: 10%;
        right: 28%;
    }
}

/* =============================================
   Responsive — Large Desktop (1200px+)
   ============================================= */
@media (min-width: 1200px) {
    .lts-hero-title {
        font-size: 68px;
    }

    .blue-commet {
        max-width: 800px;
        top: 15%;
        right: 30%;
    }
}

/* =============================================
   Section Base Styles
   ============================================= */

.lts-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.lts-section-light {
    background: #ffffff;
    color: #111111;
}

.lts-section-dark {
    background: var(--lts-bg-dark);
    color: var(--lts-text-light);
}

.lts-section-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(4px 4px at 10% 15%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(4px 4px at 40% 25%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(4px 4px at 70% 20%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(4px 4px at 15% 70%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(4px 4px at 55% 75%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(4px 4px at 85% 60%, rgba(31, 127, 246, 0.3), transparent),
        radial-gradient(3px 3px at 25% 45%, rgba(31, 127, 246, 0.25), transparent),
        radial-gradient(3px 3px at 75% 55%, rgba(31, 127, 246, 0.25), transparent),
        radial-gradient(2px 2px at 50% 10%, rgba(31, 127, 246, 0.2), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(31, 127, 246, 0.2), transparent),
        radial-gradient(3px 3px at 20% 90%, rgba(31, 127, 246, 0.25), transparent),
        radial-gradient(2px 2px at 80% 35%, rgba(31, 127, 246, 0.2), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.lts-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 20%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 30% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 85% 65%, rgba(255, 255, 255, 0.18), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.lts-section .container {
    position: relative;
    z-index: 2;
}

.lts-section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px auto;
    color: #141414;
    max-width: 900px;
    text-align: center;
}

.lts-section-title-light {
    color: var(--lts-text-light);
}

.lts-two-col {
    margin-top: 24px;
}

.lts-copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #2b2b2b;
}

.lts-copy-light p {
    color: #d7d8de;
}

.lts-text-blue {
    color: #0DAAFF !important;
    font-weight: 600;
}

.lts-text-gradient {
    background-image: linear-gradient(180deg, #0dabff, #8056ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    font-weight: 600;
}

.lts-numbered-list {
    padding-left: 20px;
    margin: 16px 0 20px;
    font-size: 18px;
}

.lts-numbered-list li {
    margin-bottom: 12px;
    color: inherit;
}

.lts-numbered-list strong {
    text-decoration: underline;
}

.lts-image-card {
    border-radius: 18px;
    background: #ffffff;
    border: 3px solid #3f8cff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    margin: 0 auto;
}

.lts-image-card-dark {
    border: 3px solid transparent;
    background:
        linear-gradient(#0f1224, #0f1224) padding-box,
        linear-gradient(135deg, var(--lts-accent-1) 0%, var(--lts-accent-2) 100%) border-box;
}

/* Larger photo, centred focus */
body.lets-talk-seo .lts-image-card-dark img {
    height: 450px;
    object-fit: cover;
    object-position: center;
}

/* Blue → purple gradient border (matches brand gradient) */
.lts-image-card-blue {
    border: 3px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, var(--lts-accent-1) 0%, var(--lts-accent-2) 100%) border-box;
}

/* Larger photo, cropped to centre to keep focus on the subject */
body.lets-talk-seo .lts-image-card-blue img {
    height: 450px;
    object-fit: cover;
    object-position: 0% center;
}

.lts-image-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.lts-cta-row {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.lts-phone-frame {
    max-width: 440px;
    margin: 20px auto 0;
    padding: 10px;
    border-radius: 28px;
}

.lts-phone-frame img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.lts-chart-card {
    margin: 30px auto 0;
    border-radius: 49px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.lts-chart-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #141414;
}

.lts-step-title {
    font-size: 16px;
    font-weight: 700;
    background-image: linear-gradient(180deg, #F5911F, #E26123);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    margin-top: 24px;
    margin-bottom: 8px;
}

/* =============================================
   Responsive — Sections
   ============================================= */
@media (min-width: 576px) {
    .lts-section-title {
        font-size: 32px;
    }

    .lts-copy p {
        font-size: 17px;
    }

    .lts-step-title {
        font-size: 17px;
    }
}

@media (min-width: 768px) {
    .lts-section {
        padding: 90px 0;
    }

    .lts-section-title {
        font-size: 36px;
    }

    .lts-two-col {
        margin-top: 36px;
    }

    .lts-copy p {
        font-size: 18px;
    }

    .lts-phone-frame {
        margin-top: 0;
    }

    .lts-chart-card {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .lts-section-title {
        font-size: 42px;
    }

    .lts-step-title {
        font-size: 18px;
    }

    .lts-section {
        padding: 110px 0;
    }
}

@media (min-width: 1200px) {
    .lts-section-title {
        font-size: 46px;
    }
}

/* =============================================
   What You Actually Get
   ============================================= */

.lts-get-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.lts-get-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--lts-bg-dark), var(--lts-bg-dark)) padding-box,
        linear-gradient(135deg, var(--lts-accent-1) 0%, var(--lts-accent-2) 100%) border-box;
    box-shadow: inset 0 0 0 1px rgba(15, 18, 36, 0.35);
}

.lts-get-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1f7ff6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0e1a;
    font-size: 16px;
    flex-shrink: 0;
    margin: auto 0;
}

.lts-get-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    background-image: linear-gradient(180deg, #F5911F, #E26123);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.lts-get-content p {
    margin: 0;
}

.lts-get-text {
    margin: 0;
    color: #d7d8de;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   Who This Is For
   ============================================= */

.lts-fit-row {
    margin-top: 28px;
    gap: 20px 0;
}

.lts-fit-card {
    background: 
        linear-gradient(#f5f6ff, #f5f6ff) padding-box,
        linear-gradient(180deg, #0dabff, #8056ff) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 24px 22px;
    min-height: 100%;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.lts-fit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f7ff6;
    margin-bottom: 18px;
}

.lts-fit-title-no {
    background-image: linear-gradient(180deg, #F5911F, #E26123);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.lts-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lts-fit-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: #222222;
    line-height: 1.6;
}

.lts-fit-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    flex-shrink: 0;
}

.lts-fit-icon-yes {
    background: #1f7ff6;
}

.lts-fit-icon-no {
    background: #ff7a45;
}

/* =============================================
   Fruits From Our Labour
   ============================================= */

.lts-fruit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.lts-fruit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: 
        linear-gradient(var(--lts-bg-dark), var(--lts-bg-dark)) padding-box,
        linear-gradient(180deg, #0dabff, #8056ff) border-box;
    border: 2px solid transparent;
}

.lts-fruit-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ff8a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.lts-fruit-icon i {
    font-size: 50px;
}

.lts-fruit-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffb347 !important;
    margin-bottom: 6px;
}

.lts-fruit-text {
    margin: 0;
    color: #d7d8de;
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   Clients Section
   ============================================= */

body.lets-talk-seo #b-video-carousel {
    padding-top: 10px;
    padding-bottom: 0;
}

body.lets-talk-seo #b-video-carousel h2 {
    display: none;
}

body.lets-talk-seo #b-video-carousel .u-image {
    border-radius: 18px;
}

body.lets-talk-seo #b-video-carousel .progress-bar {
    background-color: #d9d9d9;
}

/* =============================================
   Your Move
   ============================================= */

.lts-your-move-copy {
    max-width: 680px;
    margin: 20px auto 0;
}

.lts-your-move-copy p {
    color: #d7d8de;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.lts-audit-note {
    color: #ffb347;
    font-size: 14px;
    margin-top: 12px;
}

/* =============================================
   FAQ
   ============================================= */

.lts-faq-accordion {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lts-faq-item {
    border-radius: 12px;
    background: #0f1b35;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.lts-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.lts-faq-question i {
    transition: transform 0.3s ease;
}

.lts-faq-answer {
    padding: 0 18px 14px;
    display: none;
}

.lts-faq-answer p {
    margin: 0;
    color: #d7d8de;
    font-size: 14px;
    line-height: 1.6;
}

.lts-faq-item.active .lts-faq-answer {
    display: block;
}

.lts-faq-item.active .lts-faq-question i {
    transform: rotate(180deg);
}

.lts-start-here {
    margin-top: 36px;
}

.lts-start-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #b0b3c0;
    margin-bottom: 14px;
}

#footer-simple p{
    color: #111111 !important;
}

/* =============================================
   Responsive Additions
   ============================================= */

@media (min-width: 768px) {
    .lts-get-item {
        padding: 20px 24px;
    }

    .lts-get-title,
    .lts-fruit-title {
        font-size: 18px;
    }

    .lts-get-text,
    .lts-fruit-text {
        font-size: 15px;
    }

    .lts-fit-list li {
        font-size: 15px;
    }

    .lts-your-move-copy p {
        font-size: 16px;
    }

    .lts-faq-question {
        font-size: 15px;
        padding: 16px 22px;
    }

    .lts-faq-answer {
        padding: 0 22px 18px;
    }
}

@media (min-width: 1024px) {
    .lts-fit-row {
        margin-top: 40px;
    }

    .lts-fruit-item {
        max-width: 650px;
        margin-left: 0;
        margin-right: auto;
    }

    .lts-fruit-item.right {
        margin-left: auto;
        margin-right: 0;
    }

    .lts-faq-accordion {
        gap: 16px;
    }
}

/* =============================================
   Form Styles
   ============================================= */

.lts-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lts-form.show {
    opacity: 1;
    visibility: visible;
}

.lts-form > * {
    margin-top: 40px;
}

