@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;800&display=swap');

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */

/* Keyframes */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroPizzaSpin {
    from {
        opacity: 0;
        transform: translate(60px, -60px) rotate(-120deg) scale(0.6);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes heroCirclesPulse {
    0%   { opacity: 0; transform: scale(0.7); }
    60%  { opacity: 1; transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes phoneSlideUp {
    from {
        opacity: 0;
        transform: translateY(70px) rotate(-10deg) scale(0.96) translateZ(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(-10deg) scale(0.96) translateZ(-30px);
    }
}

@keyframes phoneSlideUpMiddle {
    from {
        opacity: 0;
        transform: translateY(90px) translateZ(30px) scale(1.04);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(30px) scale(1.04);
    }
}

@keyframes phoneSlideUpRight {
    from {
        opacity: 0;
        transform: translateY(70px) rotate(10deg) scale(0.96) translateZ(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(10deg) scale(0.96) translateZ(-30px);
    }
}

/* --- Hidden state before animation fires --- */
.hero-animate .brand-title,
.hero-animate .sub-brand-title,
.hero-animate .hero-desc,
.hero-animate .feature-cards-grid,
.hero-animate .cta-wrapper {
    opacity: 0;
}

.hero-animate .floating-pizza {
    opacity: 0;
}

.hero-animate .concentric-circles {
    opacity: 0;
}

.hero-animate .phone-left,
.hero-animate .phone-middle,
.hero-animate .phone-right-mock {
    opacity: 0;
}

/* --- Active animation state (added by JS) --- */
.hero-animated .brand-title {
    animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-animated .sub-brand-title {
    animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-animated .hero-desc {
    animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero-animated .feature-cards-grid {
    animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.hero-animated .cta-wrapper {
    animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.74s both;
}

.hero-animated .floating-pizza {
    animation: heroPizzaSpin 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-animated .concentric-circles {
    animation: heroCirclesPulse 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-animated .phone-left {
    animation: phoneSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-animated .phone-middle {
    animation: phoneSlideUpMiddle 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

.hero-animated .phone-right-mock {
    animation: phoneSlideUpRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
}

/* After animation ends, restore the correct phone transforms */
.hero-animated .phone-left {
    animation-fill-mode: both;
}

/* --- Done state: restores natural visible state + proper transforms --- */
.hero-done .brand-title,
.hero-done .sub-brand-title,
.hero-done .hero-desc,
.hero-done .feature-cards-grid,
.hero-done .cta-wrapper,
.hero-done .floating-pizza,
.hero-done .concentric-circles {
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-done .phone-left {
    opacity: 1;
    animation: none;
    transform: rotate(-10deg) scale(0.96) translateZ(-30px);
}

.hero-done .phone-middle {
    opacity: 1;
    animation: none;
    transform: translateZ(30px) scale(1.04);
}

.hero-done .phone-right-mock {
    opacity: 1;
    animation: none;
    transform: rotate(10deg) scale(0.96) translateZ(-30px);
}

/* --- Accessibility: respect reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {
    .hero-animate .brand-title,
    .hero-animate .sub-brand-title,
    .hero-animate .hero-desc,
    .hero-animate .feature-cards-grid,
    .hero-animate .cta-wrapper,
    .hero-animate .floating-pizza,
    .hero-animate .concentric-circles,
    .hero-animate .phone-left,
    .hero-animate .phone-middle,
    .hero-animate .phone-right-mock {
        opacity: 1 !important;
    }

    .hero-animated .brand-title,
    .hero-animated .sub-brand-title,
    .hero-animated .hero-desc,
    .hero-animated .feature-cards-grid,
    .hero-animated .cta-wrapper,
    .hero-animated .floating-pizza,
    .hero-animated .concentric-circles,
    .hero-animated .phone-left,
    .hero-animated .phone-middle,
    .hero-animated .phone-right-mock {
        animation: none !important;
        opacity: 1 !important;
    }
}


.custom-pizza-hero {
    background-color: #FFFFFF;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 120px;
    box-sizing: border-box;
    z-index: 1;
}

.custom-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Floating Pizza */
.floating-pizza {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 380px;
    height: 380px;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}

/* Left Column content */
.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 26, 0.3);
    background: #FFF6F2;
    color: #FF5E1A;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(255, 94, 26, 0.05);
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 7.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0E131F;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.highlight-orange {
    color: #FF5E1A;
}

.sub-brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #FF5E1A;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.25rem 0;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    margin: 0 0 2.25rem 0;
    max-width: 540px;
}

/* Feature Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 480px;
    margin-bottom: 2.5rem;
    padding: 26px 0;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: none;
    transition: transform 0.3s ease;
    text-align: center;
    border-right: 1px solid #F3F4F6;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.card-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.card-svg-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.card-png-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    max-width: 100px;
    word-wrap: break-word;
}

/* CTA Button */
.cta-wrapper {
    display: flex;
    width: 100%;
}

.custom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 8px 32px 8px 8px;
    background: #FF5E1A;
    color: #FFFFFF !important;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255, 94, 26, 0.3);
}

.btn-arrow-circle {
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-cta-btn:hover {
    background: #E04E10;
    box-shadow: 0 10px 28px rgba(255, 94, 26, 0.4);
    transform: translateY(-2px);
}

.custom-cta-btn:hover .btn-arrow-circle {
    transform: scale(1.05);
}

.custom-cta-btn:hover .btn-arrow-circle svg {
    transform: translateX(2px);
}

.btn-arrow-circle svg {
    transition: transform 0.2s ease;
}

/* Right Column Showcase */
.hero-right-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    width: 100%;
}

/* Concentric circles */
.concentric-circles {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 1.5px solid rgba(255, 94, 26, 0.15);
    border-radius: 50%;
}

.circle-1 {
    width: 380px;
    height: 380px;
}

.circle-2 {
    width: 520px;
    height: 520px;
}

.circle-3 {
    width: 660px;
    height: 660px;
}

/* Phones Overlap */
.phones-showcase {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 270px;
    height: 550px;
    background: #FFFFFF;
    border: 2.5px solid #e3e1e1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: absolute;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phones-showcase .phone-mockup::before {
    content: none !important;
    display: none !important;
}

.phone-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    background: transparent;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-notch {
    display: none;
}

/* 3D alignment */
.phone-left {
    left: calc(50% - 370px);
    transform: rotate(-10deg) scale(0.96) translateZ(-30px);
    z-index: 5;
}

.phone-middle {
    left: calc(50% - 135px);
    transform: translateZ(30px) scale(1.04);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.phone-right-mock {
    left: calc(50% + 100px);
    transform: rotate(10deg) scale(0.96) translateZ(-30px);
    z-index: 6;
}

.phones-showcase:hover .phone-left {
    transform: rotate(-6deg) scale(0.98) translateZ(-15px) translateX(-15px);
}

.phones-showcase:hover .phone-middle {
    transform: translateZ(45px) scale(1.06);
}

.phones-showcase:hover .phone-right-mock {
    transform: rotate(6deg) scale(0.98) translateZ(-15px) translateX(15px);
}

/* Custom Settings Screen content */
.settings-screen-bg {
    background: #0F131E;
    color: #FFFFFF;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
}

.settings-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 12px;
}

.back-arrow {
    font-size: 1.1rem;
    color: #9CA3AF;
    cursor: pointer;
}

.settings-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.settings-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #192030;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FF5E1A;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-size: 0.72rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.user-badge {
    font-size: 0.55rem;
    color: #FFA502;
    font-weight: 700;
    margin-top: 1px;
    letter-spacing: 0.02em;
}

.settings-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.settings-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.settings-option.active {
    background: #1E2638;
    color: #FFFFFF;
    border-left: 2px solid #FF5E1A;
}

.option-icon {
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
}

.settings-option.active .option-icon {
    color: #FF5E1A;
}

.option-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.option-badge {
    background: #FF5E1A;
    color: #FFFFFF;
    font-size: 0.6rem;
    padding: 1px 5px;
    border-radius: 8px;
    margin-left: auto;
    font-weight: 700;
}

.settings-option.sign-out {
    margin-top: auto;
    color: #EF4444;
    padding-bottom: 10px;
}

.settings-option.sign-out .option-icon {
    color: #EF4444;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .custom-hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-left-col {
        order: 2 !important;
        align-items: center;
        text-align: center;
    }

    .hero-right-col {
        order: 1 !important;
        width: 100% !important;
        min-height: auto !important;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .cta-wrapper {
        justify-content: center;
    }

    .floating-pizza {
        width: 260px;
        height: 260px;
        top: -40px;
        right: -40px;
        border-radius: 0;
        box-shadow: none;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.18));
    }
}

@media screen and (max-width: 768px) {
    .custom-pizza-hero {
        padding-top: 40px !important;
        padding-bottom: 50px;
        min-height: auto;
        display: block;
    }

    .custom-hero-container {
        gap: 2.25rem !important;
        padding: 0 20px !important;
    }

    .feature-cards-grid,
    .specialty-badge {
        display: none !important;
    }

    .brand-title {
        font-size: clamp(2.8rem, 6vw, 3.5rem) !important;
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 0.75rem !important;
    }

    .sub-brand-title {
        font-size: clamp(1.2rem, 3.5vw, 1.45rem) !important;
        font-weight: 800 !important;
        color: #FF5E1A !important;
        text-align: center !important;
        line-height: 1.35 !important;
        margin-bottom: 1rem !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-desc {
        font-size: 0.98rem !important;
        text-align: center !important;
        line-height: 1.6 !important;
        color: #4B5563 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .circle-1 {
        width: 220px !important;
        height: 220px !important;
    }

    .circle-2 {
        width: 280px !important;
        height: 280px !important;
    }

    .circle-3 {
        width: 340px !important;
        height: 340px !important;
    }

    .phones-showcase {
        height: 350px !important;
        margin-top: 120px !important;
    }

    .phone-mockup {
        width: 150px !important;
        height: 305px !important;
        border-radius: 12px !important;
        border-width: 1.5px !important;
    }

    .phone-inner {
        border-radius: 11px !important;
    }

    .phone-left {
        left: calc(50% - 170px) !important;
        transform: rotate(-10deg) scale(0.9) translateZ(-30px) !important;
        z-index: 5 !important;
        opacity: 0.85 !important;
        display: block !important;
    }

    .phone-middle {
        width: 165px !important;
        height: 335px !important;
        left: calc(50% - 82.5px) !important;
        transform: translateZ(30px) scale(1) !important;
        z-index: 10 !important;
        border-radius: 14px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    }

    .phone-middle .phone-inner {
        border-radius: 13px !important;
    }

    .phone-right-mock {
        left: calc(50% + 20px) !important;
        transform: rotate(10deg) scale(0.9) translateZ(-30px) !important;
        z-index: 6 !important;
        opacity: 0.85 !important;
        display: block !important;
    }
}

@media screen and (max-width: 480px) {
    .phones-showcase {
        height: 350px !important;
    }

    .floating-pizza {
        width: 180px;
        height: 180px;
        top: -20px;
        right: -20px;
        border-radius: 0;
        box-shadow: none;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.18));
    }
}

@media screen and (max-width: 360px) {
    .phones-showcase {
        transform: scale(0.85) !important;
        margin: -25px auto !important;
    }
}

/* Horizontal Scroll Section - Services */
.horizontal-scroll-section {
    position: relative;
    height: 300vh;
    background-color: #000000;
    color: #FFFFFF;
    overflow: visible;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000000;
}

.scroll-track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    will-change: transform;
    padding-left: 8vw;
    padding-right: 12vw;
}

.scroll-slide {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4vw;
}

/* Intro Slide */
.scroll-slide-intro {
    width: 40vw;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.slide-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FF5E1A;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.slide-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 6.2vw, 5.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

/* Feature Slides */
.scroll-slide-feature {
    width: 66vw;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    align-items: center;
    padding-right: 0;
}

.feature-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4B5563;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

.feature-img-col {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.feature-3d-img {
    max-height: 90vh;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

/* Details Slides */
.scroll-slide-details {
    width: 42vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    margin-left: -5vw;
}

.details-desc-col {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0;
}

.details-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-checklist li {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.check-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 94, 26, 0.15);
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Tablet/Mobile Responsive Styling for Horizontal Scroll */
@media screen and (max-width: 1024px) {
    .horizontal-scroll-section {
        height: 500vh !important;
        overflow: visible !important;
        background-color: #000000;
    }

    .sticky-wrapper {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        overflow: hidden !important;
        background-color: #000000;
    }

    .scroll-track {
        display: flex !important;
        flex-direction: row !important;
        width: max-content !important;
        height: 100% !important;
        align-items: center !important;
        padding-left: 6vw !important;
        padding-right: 25vw !important;
        gap: 22vw !important;
    }

    .scroll-slide {
        width: 88vw !important;
        height: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .scroll-slide-intro {
        width: 105vw !important;
        justify-content: center !important;
    }

    .slide-subtitle {
        font-size: 1.85rem !important;
        margin-bottom: 1.75rem !important;
        letter-spacing: 0.1em !important;
    }

    .slide-main-title {
        font-size: clamp(4rem, 15vw, 7rem) !important;
        line-height: 1.05 !important;
    }

    .scroll-slide-feature {
        width: 155vw !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 2rem !important;
    }

    .feature-text-col {
        width: 40% !important;
    }

    .feature-title {
        font-size: clamp(2.4rem, 9.5vw, 4rem) !important;
        line-height: 1.15 !important;
    }

    .feature-num {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .feature-img-col {
        width: 60% !important;
        margin-top: 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .feature-3d-img {
        max-height: 68vh !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .scroll-slide-details {
        width: 100vw !important;
        margin-left: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .details-desc-col {
        max-width: 100% !important;
        gap: 1.5rem !important;
    }

    .details-desc {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
    }

    .details-checklist {
        gap: 0.75rem !important;
    }

    .details-checklist li {
        font-size: 1.1rem !important;
    }

    .check-icon-circle {
        width: 24px !important;
        height: 24px !important;
        margin-right: 0.75rem !important;
    }
}

/* Zigzag Features Section */
.section-zigzag-features {
    background-color: #FFFFFF;
    color: #111827;
    padding: 60px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.zigzag-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.zigzag-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 96px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.zigzag-header-deco-left,
.zigzag-header-deco-right {
    width: 200px;
    height: 200px;
    object-fit: contain;
    mix-blend-mode: multiply;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
}

.zigzag-header-text {
    flex: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.zigzag-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0D1527;
    margin: 0 0 1rem 0;
    line-height: 1.15;
}

.zigzag-header-title .highlight-orange {
    color: #FF5E1A;
}

.zigzag-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #707F94;
    margin: 0 auto;
    line-height: 1.6;
}

.zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-text-col {
    flex: 1;
    max-width: 500px;
}

.zigzag-img-col {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Zigzag Devices */
.zigzag-phone-wrapper {
    position: relative;
    width: 480px;
    height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom widths to normalize heights of different aspect ratios to exactly 680px height */
.zigzag-width-f3 {
    width: 510px !important;
}

.zigzag-width-f4 {
    width: 535px !important;
}

.zigzag-width-f5 {
    width: 582px !important;
}

.zigzag-phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zigzag-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Zigzag text content */
.zigzag-feat-num-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.zigzag-feat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FF5E1A;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.zigzag-feat-num-line {
    flex: 1;
    max-width: 60px;
    height: 1.5px;
    background-color: #FF5E1A;
    opacity: 0.6;
}

.zigzag-feat-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #0D1527;
    margin: 0 0 1rem 0;
    line-height: 1.15;
}

.zigzag-feat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #707F94;
    margin: 0 0 2rem 0;
}

/* Features List Badges */
.zigzag-features-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.zigzag-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 80px;
}

.zigzag-feature-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFF5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.zigzag-feature-icon-circle:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #FFEBE0;
}

.zigzag-feature-icon-circle svg {
    color: #FF5E1A;
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

.zigzag-feature-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1F2937;
}

.zigzag-feature-divider {
    width: 1px;
    height: 40px;
    background-color: #E5E7EB;
}

/* Scroll Reveal Entrance Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.zigzag-header-deco-left.reveal-on-scroll {
    transform: translateX(-30px);
}

.zigzag-header-deco-right.reveal-on-scroll {
    transform: translateX(30px);
}

.zigzag-header-deco-left.reveal-on-scroll.revealed,
.zigzag-header-deco-right.reveal-on-scroll.revealed {
    transform: translateX(0);
    opacity: 1;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Floating pizza decoration top right */
.zigzag-deco-pizza {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .section-zigzag-features {
        padding: 40px 0 80px 0;
    }

    .zigzag-header-container {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 48px !important;
    }

    .zigzag-header-deco-left,
    .zigzag-header-deco-right {
        width: 90px !important;
        height: 90px !important;
    }

    /* Hide pizza image from Key Features header on mobile */
    .zigzag-header-deco-right {
        display: none !important;
    }

    .zigzag-row {
        flex-direction: column !important;
        gap: 48px !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .zigzag-text-col {
        max-width: 100% !important;
        order: 1 !important;
    }

    .zigzag-img-col {
        order: 2 !important;
    }

    .zigzag-badges {
        justify-content: center !important;
    }

    .zigzag-phone-wrapper {
        transform: none !important;
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        margin: 0 auto;
    }
}

/* Comparison Section */
.section-comparison {
    background-color: #FFFFFF;
    padding: 20px 0 80px 0;
    width: 100%;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0D1527;
    margin-bottom: 1rem;
}

.comparison-title .highlight-orange {
    color: #FF5E1A;
}

.comparison-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #707F94;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Table Wrapper */
.comparison-table-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 32px;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Headers */
.comparison-table th {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #707F94;
    text-transform: uppercase;
}

/* Highlighted Column Header */
.comparison-table th.highlight-column-header {
    color: #FF5E1A;
    background: #FFFDFB;
    text-align: center;
}

/* Column widths */
.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
    width: 30%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    width: 38%;
    background: #FFFDFB;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    width: 32%;
    color: #707F94;
    text-align: center;
}

/* Cell content */
.capability-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0D1527;
}

.comparison-cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
}

.cell-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.advantage-cell-text {
    color: #1F2937;
    font-weight: 500;
}

.traditional-cell-text {
    color: #707F94;
}

/* Status Icon Badges */
.status-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon-wrapper.check-orange {
    background-color: #FFF5F0;
    color: #FF5E1A;
}

.status-icon-wrapper.cross-grey {
    background-color: #F3F4F6;
    color: #9CA3AF;
}

/* Responsive styling */
@media screen and (max-width: 992px) {
    .section-comparison {
        padding: 20px 0 40px 0 !important;
    }

    .comparison-container {
        padding: 0 16px !important;
    }

    .comparison-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .comparison-table {
        min-width: 750px !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px !important;
    }

    .capability-name {
        font-size: 0.95rem !important;
    }

    .cell-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .status-icon-wrapper {
        width: 20px !important;
        height: 20px !important;
    }
}

/* ============================================================
   COMPARISON TABLE — MOBILE CARD STACK (≤ 768px)
   Each table row becomes a rounded card.
   Feature name spans full width at top; Custobite vs Traditional
   appear as two equal flex columns below it.
   ============================================================ */
@media screen and (max-width: 768px) {

    /* Section padding */
    .section-comparison {
        padding: 16px 0 32px 0 !important;
    }

    .comparison-container {
        padding: 0 14px !important;
    }

    /* Hide the desktop table header row */
    .comparison-table thead {
        display: none !important;
    }

    /* Remove wrapper styling — cards provide their own appearance */
    .comparison-table-wrapper {
        overflow-x: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }

    /* Reset table + tbody to block */
    .comparison-table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        border-collapse: separate !important;
    }

    .comparison-table tbody {
        display: block !important;
        width: 100% !important;
    }

    /* ── Each row → flex card ── */
    .comparison-table tr {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
        background: #ffffff !important;
        border: 1px solid #e8eaf0 !important;
        border-radius: 16px !important;
        margin-bottom: 14px !important;
        padding: 16px 14px 14px !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
        overflow: hidden !important;
    }

    /* ── Feature name — full-width top row of card ── */
    .comparison-table td.capability-name {
        flex: 0 0 100% !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 0.92rem !important;
        font-weight: 800 !important;
        color: #0D1527 !important;
        padding: 0 0 12px 0 !important;
        margin-bottom: 12px !important;
        border-bottom: 1px solid #f0f2f5 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        background: transparent !important;
        vertical-align: unset !important;
    }

    /* ── Custobite & Traditional — 50/50 flex columns ── */
    .comparison-table td:nth-child(2),
    .comparison-table td:nth-child(3) {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        padding: 6px 10px !important;
        background: transparent !important;
        border: none !important;
        box-sizing: border-box !important;
        vertical-align: unset !important;
    }

    /* Divider between Custobite and Traditional columns */
    .comparison-table td:nth-child(2) {
        border-right: 1px solid #f0f2f5 !important;
    }

    /* ── Cell content: flex column, all centered ── */
    .comparison-cell-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 5px !important;
        width: 100% !important;
    }

    /* Column label injected before the icon via pseudo-element */
    .comparison-table td:nth-child(2) .comparison-cell-content::before {
        content: "Custobite" !important;
        order: -1 !important;
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        color: #FF5E1A !important;
        text-transform: uppercase !important;
        letter-spacing: 0.06em !important;
    }

    .comparison-table td:nth-child(3) .comparison-cell-content::before {
        content: "Traditional" !important;
        order: -1 !important;
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.06em !important;
    }

    /* Status icon badge */
    .status-icon-wrapper {
        width: 26px !important;
        height: 26px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    /* Description text */
    .cell-text {
        font-size: 0.75rem !important;
        line-height: 1.45 !important;
        text-align: center !important;
        color: inherit !important;
    }
}

/* Avatar Reviews Cloud Section */
.section-avatar-reviews {
    background-color: #FAFBFC;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 80px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.avatar-reviews-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

.avatar-reviews-header {
    text-align: center;
    margin-bottom: 32px;
}

.avatar-reviews-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0D1527;
    margin-bottom: 1rem;
}

.avatar-reviews-title .highlight-orange {
    color: #FF5E1A;
}

.avatar-reviews-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #707F94;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reviews Cloud Canvas */
.reviews-cloud-container {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 48px;
    overflow: visible;
}

.avatar-circle {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 4px solid #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    z-index: 5;
    background-color: #E5E7EB;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.avatar-circle.active {
    border-color: #FF5E1A;
    box-shadow: 0 15px 35px rgba(255, 94, 26, 0.18);
    z-index: 10;
}

/* Specific Avatars Positions & Sizes */
.avatar-marcus {
    width: 150px;
    height: 150px;
    left: 12%;
    top: 52%;
    transform: translate(-50%, -50%);
}

.avatar-arthur {
    width: 135px;
    height: 135px;
    left: 33%;
    top: 26%;
    transform: translate(-50%, -50%);
}

.avatar-carlos {
    width: 140px;
    height: 140px;
    left: 24%;
    top: 76%;
    transform: translate(-50%, -50%);
}

.avatar-sarah {
    width: 175px;
    height: 175px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.avatar-elena {
    width: 140px;
    height: 140px;
    left: 67%;
    top: 28%;
    transform: translate(-50%, -50%);
}

.avatar-vikram {
    width: 144px;
    height: 144px;
    left: 60%;
    top: 78%;
    transform: translate(-50%, -50%);
}

.avatar-clara {
    width: 148px;
    height: 148px;
    left: 78%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.avatar-yuki {
    width: 120px;
    height: 120px;
    left: 86%;
    top: 72%;
    transform: translate(-50%, -50%);
}

/* Popover card */
.review-popover-card {
    position: absolute;
    width: 380px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    z-index: 20;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.45s cubic-bezier(0.16, 1, 0.3, 1), top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-popover-card.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.popover-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.popover-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.popover-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.popover-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0D1527;
}

.popover-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #FF5E1A;
    font-weight: 600;
}

.popover-rating {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.popover-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Mobile responsive slider */
.reviews-mobile-slider {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 32px auto 0;
    position: relative;
}

.reviews-mobile-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.reviews-mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.mobile-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-nav-arrow:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

/* Responsiveness overrides */
@media screen and (max-width: 992px) {
    .reviews-cloud-container {
        display: none;
    }

    .reviews-mobile-slider {
        display: block;
    }

    .section-avatar-reviews {
        padding: 60px 0;
    }
}

/* FAQ Section */
.section-faq {
    background-color: #FAFBFC;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.faq-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    transform: translateY(-90px);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0D1527;
    margin-bottom: 1rem;
}

.faq-title .highlight-orange {
    color: #FF5E1A;
}

.faq-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #707F94;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ List Accordions */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: #D1D5DB;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-icon-question {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5E1A;
    flex-shrink: 0;
}

.faq-question-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D1527;
    flex: 1;
    line-height: 1.4;
}

.faq-icon-chevron {
    color: #707F94;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
    transform: rotate(180deg);
    color: #0D1527;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 28px 24px 72px;
}

.faq-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4B5563;
    margin: 0;
}

/* Tablet/Mobile Adjustments */
@media screen and (max-width: 768px) {
    .section-faq {
        min-height: auto !important;
        padding: 60px 0;
        display: block !important;
    }

    .faq-container {
        transform: translateY(0) !important;
    }

    .faq-trigger {
        padding: 16px 20px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 0 20px 20px 48px;
    }

    .faq-content p {
        font-size: 0.88rem;
        line-height: 1.55;
    }
}

/* ============================================================
   HOME PAGE ONLY — CTA Grow Section: Orange Override
   custom-home.css is only loaded on index.html, so this
   override stays isolated from other pages (our-story, etc.)
   ============================================================ */

/* The FAQ section above is #FAFBFC. The orange CTA section has
   border-radius: 80px 80px 0 0 which exposes the page background
   in the curved corners. Setting main + body to #FAFBFC makes
   those corner cutouts seamlessly match the FAQ section above. */
main,
body {
    background-color: #FAFBFC !important;
}

.section-cta-grow {
    background-color: #ea580c !important;
    background-image: linear-gradient(135deg, #c2410c 0%, #ea580c 35%, #f97316 70%, #fb923c 100%) !important;
    background-size: auto !important;
    background-position: unset !important;
}