/* ==========================================
   PRODUCT NAVBAR
========================================== */

.restaurant-navbar {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 84px;

    z-index: 9999;

    background: #021024;

    backdrop-filter: blur(22px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.35s;
}

.restaurant-navbar.scrolled {
    background: #021024;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.navbar-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 82px;
}

/* Logo */

.restaurant-logo {
    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;
}

.restaurant-logo img {
    height: 42px;

    width: auto;
}

.logo-text {
    display: flex;

    flex-direction: column;
}

.product-name {
    color: #ffffff;

    font-weight: 700;

    font-size: 1rem;

    line-height: 1;
}

.product-tag {
    margin-top: 4px;

    font-size: 0.78rem;

    color: rgba(255, 255, 255, 0.65);
}

/* Navigation */

.restaurant-nav {
    display: flex;

    align-items: center;

    gap: 36px;
}

.restaurant-nav a {
    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;

    font-weight: 500;

    position: relative;

    transition: 0.25s;
}

.restaurant-nav a:hover {
    color: #ffffff;
}

.restaurant-nav a::after {
    content: "";

    position: absolute;

    bottom: -10px;

    left: 0;

    width: 0;

    height: 2px;

    background: #3b82f6;

    transition: 0.3s;
}

.restaurant-nav a:hover::after {
    width: 100%;
}

/* CTA */

.navbar-demo-btn {
    background: #2563eb;

    color: #fff;

    padding: 13px 24px;

    border-radius: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: 0.3s;
}

.navbar-demo-btn:hover {
    background: #3b82f6;

    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;

    width: 44px;

    height: 44px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 6px;
}

.mobile-menu-btn span {
    width: 24px;

    height: 2px;

    background: #ffffff;

    border-radius: 5px;

    transition: 0.35s;
}

@media (max-width: 992px) {
    .restaurant-nav {
        position: fixed;

        top: 82px;

        left: -100%;

        width: 100%;

        height: calc(100vh - 82px);

        background: #0e2953;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 30px;

        gap: 28px;

        transition: 0.35s;
    }

    .restaurant-nav.active {
        left: 0;
    }

    .restaurant-nav a {
        font-size: 1.15rem;
    }

    .navbar-demo-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

.restaurant-hero {
    position: relative;

    overflow: hidden;

    padding: 140px 0 120px;

    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.restaurant-bg {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}

.bg-circle {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: 0.4;
}

.bg-circle-1 {
    width: 550px;

    height: 550px;

    background: #dbeafe;

    top: -150px;

    left: -120px;
}

.bg-circle-2 {
    width: 450px;

    height: 450px;

    background: #e0f2fe;

    right: -120px;

    bottom: -100px;
}

.bg-icon {
    position: absolute;

    font-size: 42px;

    opacity: 0.1;

    animation: float 8s ease-in-out infinite;
}

.plate {
    top: 12%;

    right: 12%;
}

.coffee {
    left: 8%;

    bottom: 18%;

    animation-delay: 1s;
}

.chef {
    top: 60%;

    right: 6%;

    animation-delay: 2s;
}

.burger {
    top: 18%;

    left: 45%;

    animation-delay: 3s;
}

.pizza {
    bottom: 10%;

    left: 52%;

    animation-delay: 1.5s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

.restaurant-hero .container {
    position: relative;

    z-index: 2;
}

.restaurant-hero-grid {
    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 80px;

    align-items: center;
}

.restaurant-content h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);

    line-height: 1.08;

    color: var(--primary);

    margin: 28px 0;
}

.restaurant-content p {
    font-size: 1.15rem;

    color: var(--text-secondary);

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 40px;
}

.hero-highlights {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 50px;

    padding: 0;

    list-style: none;
}

.hero-highlights li {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-weight: 600;
}

.hero-highlights li::before {
    content: "✓";

    width: 28px;

    height: 28px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #dbeafe;

    color: #2563eb;

    font-size: 0.9rem;

    font-weight: bold;
}

.restaurant-preview {
    display: flex;

    justify-content: center;

    align-items: center;
}

.restaurant-preview img {
    width: 125%;

    max-width: 900px;

    border-radius: 24px;

    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.15);

    transform: translateY(-40px) translateX(40px);

    transition: 0.4s;
}

.restaurant-preview img:hover {
    transform: translateY(-50px) translateX(40px) scale(1.02);
}

/* ==========================================
   Large Laptops
========================================== */

@media (max-width: 1200px) {
    .restaurant-hero {
        padding: 120px 0 100px;
    }

    .restaurant-hero-grid {
        gap: 50px;
    }

    .restaurant-preview img {
        width: 115%;

        transform: translateY(-20px) translateX(20px);
    }
}

/* ==========================================
   Tablets
========================================== */

@media (max-width: 992px) {
    .restaurant-hero {
        padding: 90px 0 80px;
    }

    .restaurant-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .restaurant-content {
        text-align: center;

        order: 1;
    }

    .restaurant-preview {
        order: 2;
    }

    .restaurant-content p {
        margin: 0 auto 35px;

        max-width: 700px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-highlights {
        max-width: 600px;

        margin: 40px auto 0;
    }

    .restaurant-preview img {
        width: 100%;

        max-width: 750px;

        transform: none;
    }
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {
    .restaurant-hero {
        padding: 80px 0 70px;
    }

    .restaurant-content h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem);

        line-height: 1.15;
    }

    .restaurant-content p {
        font-size: 1rem;

        line-height: 1.8;
    }

    .hero-actions {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 16px;

        margin-top: 35px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 260px;

        max-width: 90%;

        display: flex;

        justify-content: center;

        align-items: center;
    }

    .hero-highlights {
        grid-template-columns: 1fr;

        gap: 14px;

        text-align: left;

        margin-top: 35px;
    }

    .restaurant-preview img {
        width: 100%;

        border-radius: 18px;

        transform: none;
    }

    .bg-icon {
        font-size: 32px;

        opacity: 0.05;
    }

    .bg-circle-1 {
        width: 320px;

        height: 320px;

        top: -120px;

        left: -140px;
    }

    .bg-circle-2 {
        width: 280px;

        height: 280px;

        right: -120px;

        bottom: -80px;
    }
}

/* ==========================================
   Small Phones
========================================== */

@media (max-width: 576px) {
    .restaurant-hero {
        padding: 150px 0 60px;
    }

    .section-badge {
        font-size: 0.85rem;

        padding: 10px 18px;
    }

    .restaurant-content h1 {
        font-size: 2.2rem;

        margin: 20px 0;
    }

    .restaurant-content p {
        font-size: 0.95rem;
    }

    .hero-highlights li {
        font-size: 0.95rem;
    }

    .hero-highlights li::before {
        width: 24px;

        height: 24px;

        font-size: 0.75rem;
    }

    .restaurant-preview img {
        border-radius: 14px;
    }

    .bg-icon {
        display: none;
    }
}

/* ==========================================
   Why Choose Brilixis
========================================== */
.restaurant-problems {
    padding: 120px 0;

    background: #ffffff;

    text-align: center;
}

/* Badge */

.restaurant-problems .section-badge {
    margin: 0 auto 24px;

    display: inline-flex;
}

/* Heading */

.restaurant-problems h2 {
    max-width: 780px;

    margin: 0 auto;

    font-size: clamp(2.5rem, 4vw, 3.5rem);

    font-weight: 700;

    line-height: 1.2;

    color: var(--primary);

    letter-spacing: -0.03em;
}

/* Description */

.restaurant-problems .section-description {
    max-width: 760px;

    margin: 28px auto 70px;

    font-size: 1.1rem;

    line-height: 1.9;

    color: var(--text-secondary);
}

.problem-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.problem-card {
    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 30px;

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    transition: 0.35s;
}

.problem-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.problem-icon {
    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fee2e2;

    font-size: 22px;

    flex-shrink: 0;
}

.problem-card.solution .problem-icon {
    background: #dbeafe;

    color: #2563eb;
}

.problem-card h3 {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 1.35rem;
}

.problem-card p {
    color: var(--text-secondary);

    line-height: 1.8;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .restaurant-problems {
        padding: 100px 0;
    }

    .restaurant-problems h2 {
        max-width: 650px;

        font-size: 2.4rem;
    }

    .restaurant-problems .section-description {
        font-size: 1.05rem;

        margin: 24px auto 55px;
    }

    .problem-card {
        display: flex;

        align-items: center;

        gap: 18px;

        padding: 18px;

        border-radius: 18px;
    }

    .problem-icon {
        width: 52px;

        height: 52px;

        min-width: 52px;

        display: flex;

        justify-content: center;

        align-items: center;

        align-self: center;

        font-size: 20px;
    }

    .problem-card h3 {
        font-size: 1.2rem;

        margin: 0 0 8px;
    }

    .problem-card p {
        font-size: 0.95rem;

        line-height: 1.6;

        margin: 0;
    }
}

/* ==========================================
   How it works
========================================== */

.restaurant-flow .container {
    text-align: center;
}

.restaurant-flow {
    padding: 120px 0;

    background: #f8fafc;
}

.restaurant-flow .section-badge {
    display: inline-flex;

    margin-bottom: 20px;
}

.restaurant-flow .section-title {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;

    font-size: clamp(2.5rem, 4vw, 3.5rem);

    color: var(--primary);

    line-height: 1.2;
}

.restaurant-flow .section-description {
    max-width: 760px;

    margin: 28px auto 80px;

    text-align: center;

    color: var(--text-secondary);

    line-height: 1.8;

    font-size: 1.08rem;
}

.flow-wrapper {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

    position: relative;
}

.flow-wrapper::before {
    content: "";

    position: absolute;

    top: 34px;

    left: 8%;

    right: 8%;

    height: 2px;

    background: #dbeafe;

    z-index: 0;
}

.flow-step {
    position: relative;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    padding: 30px;

    transition: 0.35s;

    z-index: 1;
}

.flow-step:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.flow-number {
    width: 68px;

    height: 68px;

    margin: 0 auto 24px;

    border-radius: 50%;

    background: #2563eb;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1.2rem;

    font-weight: 700;

    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.flow-step h3 {
    text-align: center;

    color: var(--primary);

    margin-bottom: 16px;

    font-size: 1.3rem;
}

.flow-step p {
    text-align: center;

    color: var(--text-secondary);

    line-height: 1.8;

    margin: 0;
}

.flow-step::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 4px;

    background: #2563eb;

    transition: 0.35s;
}

.flow-step:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .flow-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-wrapper::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .restaurant-flow {
        padding: 80px 0;
    }

    .restaurant-flow .section-title {
        font-size: 2rem;

        text-align: center;
    }

    .restaurant-flow .section-description {
        text-align: center;

        margin-bottom: 45px;
    }

    .flow-wrapper {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .flow-step {
        padding: 26px 22px;

        text-align: center;
    }

    .flow-number {
        width: 58px;
        height: 58px;

        margin: 0 auto 20px;

        font-size: 1rem;
    }

    .flow-step h3 {
        font-size: 1.2rem;

        margin-bottom: 12px;

        text-align: center;
    }

    .flow-step p {
        font-size: 0.95rem;

        line-height: 1.7;

        text-align: center;
    }
}

/* ==========================================================
   PRODUCT GALLERY
========================================================== */

.product-gallery {
    padding: 120px 0;

    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-gallery .section-header {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;
}

.product-gallery .section-header h2 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);

    color: var(--primary);

    margin: 25px 0;

    line-height: 1.15;
}

.product-gallery .section-header p {
    color: var(--text-secondary);

    font-size: 1.08rem;

    line-height: 1.9;
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.gallery-layout {
    display: grid;

    grid-template-columns: 1.45fr 0.8fr;

    gap: 60px;

    align-items: center;
}

/* ==========================================================
   BROWSER
========================================================== */

.browser-window {
    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.08);

    transition: 0.35s;
}

.browser-window:hover {
    transform: translateY(-8px);
}

.browser-top {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 16px 20px;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}

/* ==========================================================
   Browser Dots
========================================================== */

.browser-buttons {
    display: flex;

    gap: 8px;
}

.browser-buttons span {
    width: 12px;

    height: 12px;

    border-radius: 50%;
}

.browser-buttons span:nth-child(1) {
    background: #ff5f57;
}

.browser-buttons span:nth-child(2) {
    background: #febc2e;
}

.browser-buttons span:nth-child(3) {
    background: #28c840;
}

/* ==========================================================
   URL
========================================================== */

.browser-url {
    flex: 1;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 40px;

    padding: 10px 18px;

    color: #64748b;

    font-size: 0.9rem;
}

/* ==========================================================
   IMAGE
========================================================== */

.browser-body {
    padding: 22px;

    background: #ffffff;
}

.browser-body img {
    width: 100%;

    display: block;

    border-radius: 18px;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.browser-body img.fade {
    opacity: 0;

    transform: scale(0.98);
}
/* ==========================================================
   DESCRIPTION
========================================================== */

.gallery-info span {
    display: inline-flex;

    padding: 8px 18px;

    background: #dbeafe;

    color: #2563eb;

    border-radius: 40px;

    font-weight: 600;

    margin-bottom: 20px;
}

.gallery-info h3 {
    font-size: 2rem;

    color: var(--primary);

    margin-bottom: 20px;
}

.gallery-info p {
    color: var(--text-secondary);

    line-height: 1.9;

    margin-bottom: 35px;
}

.gallery-info ul {
    list-style: none;

    padding: 0;

    display: grid;

    gap: 16px;
}

.gallery-info li {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-weight: 500;
}

.gallery-info li::before {
    content: "✓";

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: #dbeafe;

    color: #2563eb;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.8rem;
}

/* ==========================================================
   MODULE BUTTONS
========================================================== */

.gallery-navigation {
    min-width: 160px;
    margin-top: 60px;
    margin-bottom: 60px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 16px;
}

.gallery-module {
    border: none;

    cursor: pointer;

    padding: 14px 24px;

    border-radius: 40px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    font-weight: 600;

    color: var(--primary);

    transition: 0.3s;
}

.gallery-module:hover {
    background: #dbeafe;
}

.gallery-module.active {
    background: var(--primary);

    color: #ffffff;

    box-shadow: 0 12px 30px rgba(14, 41, 83, 0.18);
}

/* ==========================================================
   CONTROLS
========================================================== */

.gallery-controls {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    margin-top: 45px;
}

.gallery-controls button {
    border: none;

    cursor: pointer;

    padding: 14px 24px;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    color: var(--primary);

    font-weight: 600;

    transition: 0.3s;
}

.gallery-controls button:hover {
    background: var(--primary);

    color: white;
}

/* ==========================================================
   DOTS
========================================================== */

.gallery-dots {
    display: flex;

    gap: 10px;
}

.gallery-dots span {
    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #cbd5e1;

    transition: 0.3s;
}

.gallery-dots span.active {
    background: #2563eb;

    transform: scale(1.4);
}

/* ==========================================================
   IMAGE ANIMATION
========================================================== */

.browser-body img.fade {
    opacity: 0;

    transform: scale(0.98);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 992px) {
    .gallery-layout {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-areas:
            "browser"
            "info";

        gap: 30px;
    }

    .gallery-info {
        text-align: center;
        grid-area: info;
    }

    .gallery-info ul {
        max-width: 420px;

        margin: auto;
    }
}
/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {
    #previousImage {
        font-size: 0;
    }

    #previousImage::before {
        content: "←";

        font-size: 1.2rem;
    }

    #nextImage {
        font-size: 0;
    }

    #nextImage::before {
        content: "→";

        font-size: 1.2rem;
    }
    .product-gallery {
        padding: 70px 0;
    }

    .product-gallery .section-header {
        margin-bottom: 35px;
        text-align: center;
    }

    .product-gallery .section-header h2 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .product-gallery .section-header p {
        font-size: 0.95rem;
    }

    /* Layout */

    .gallery-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* --------------------------
       Modules
    ---------------------------*/

    .gallery-navigation {
        order: 1;

        display: flex;
        overflow-x: auto;
        gap: 12px;

        flex-wrap: nowrap;

        justify-content: flex-start;

        padding-bottom: 8px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-navigation::-webkit-scrollbar {
        display: none;
    }

    .gallery-module {
        flex: 0 0 auto;
        white-space: nowrap;

        padding: 10px 18px;

        border-radius: 999px;

        font-size: 0.9rem;
    }

    /* --------------------------
       Browser Frame
    ---------------------------*/

    .gallery-browser {
        order: 2;
    }
    .browser-window {
        grid-area: browser;
    }

    .browser-top {
        padding: 12px 15px;
    }

    .browser-url {
        font-size: 0.78rem;
        padding: 7px 12px;
    }

    .browser-body {
        padding: 10px;
    }

    .browser-body img {
        width: 100%;
        height: auto;

        display: block;

        border-radius: 12px;
    }

    /* --------------------------
       Slider Controls
    ---------------------------*/

    .gallery-controls {
        order: 3;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 14px;
    }

    .gallery-controls button {
        flex: none;

        min-width: 105px;

        padding: 12px 18px;

        font-size: 0.9rem;
    }

    .gallery-dots {
        flex: none;
    }

    /* --------------------------
       Description
    ---------------------------*/

    .gallery-info {
        order: 4;

        text-align: left;
    }

    .gallery-badge {
        margin-bottom: 14px;
    }

    .gallery-info ul {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 14px 18px;

        margin-top: 25px;
    }

    .gallery-info li {
        font-size: 0.95rem;

        gap: 10px;

        align-items: center;
    }

    .gallery-info li::before {
        width: 22px;

        height: 22px;

        font-size: 0.7rem;

        flex-shrink: 0;
    }

    .gallery-info h3 {
        font-size: 1.8rem;

        line-height: 1.25;

        margin-bottom: 15px;
    }

    .gallery-info p {
        font-size: 0.96rem;

        line-height: 1.8;

        margin-bottom: 22px;
    }

    /* --------------------------
       Features
    ---------------------------*/

    .gallery-features {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px 18px;
    }

    .gallery-features li {
        font-size: 0.92rem;

        line-height: 1.4;
    }
}

/*=========================================================
BUSINESS TYPES
=========================================================*/

.business-types {
    padding: 120px 0;

    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.business-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 70px;
}

.business-card {
    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 22px;

    padding: 35px;

    transition: 0.35s;

    height: 100%;
}

.business-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);

    border-color: #dbeafe;
}

.business-icon {
    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #dbeafe;

    font-size: 2rem;

    margin-bottom: 24px;
}

.business-card h3 {
    color: var(--primary);

    margin-bottom: 16px;

    font-size: 1.35rem;
}

.business-card p {
    color: var(--text-secondary);

    line-height: 1.8;

    margin: 0;
}

.industry-keywords {
    margin-top: 80px;

    padding-top: 60px;

    border-top: 1px solid #e2e8f0;

    text-align: center;

    overflow: hidden;
}

.keyword-title {
    display: block;

    font-size: 1.35rem;

    font-weight: 700;

    color: var(--primary);

    margin-bottom: 40px;
}

/* ---------- */

.keyword-marquee {
    overflow: hidden;

    white-space: nowrap;

    margin-bottom: 18px;
}

.keyword-track {
    display: inline-flex;

    gap: 18px;

    animation: marquee 35s linear infinite;
}

.reverse .keyword-track {
    animation-direction: reverse;
}

.keyword-track span {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    border-radius: 50px;

    background: #fff;

    border: 1px solid #dbeafe;

    color: var(--primary);

    font-weight: 600;

    flex-shrink: 0;

    transition: 0.3s;
}

.keyword-track span:hover {
    background: var(--primary);

    color: #fff;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .keyword-track {
        gap: 12px;

        animation-duration: 24s;
    }

    .keyword-track span {
        font-size: 0.9rem;

        padding: 10px 18px;
    }
}

/* Tablet */

@media (max-width: 992px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 768px) {
    .business-types {
        padding: 80px 0;
    }

    .business-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 45px;
    }

    .business-card {
        padding: 28px;

        text-align: center;
    }

    .business-icon {
        margin: 0 auto 20px;
    }

    .business-card h3 {
        font-size: 1.2rem;
    }

    .business-card p {
        font-size: 0.95rem;
    }
}

/*=========================================================
WHY BRILIXIS
=========================================================*/

.why-brilixis {
    padding: 120px 0;

    background: #f8fafc;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 70px;
}

.why-card {
    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 22px;

    padding: 35px;

    transition: 0.35s;

    text-align: left;
}

.why-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.why-icon {
    width: 70px;

    height: 70px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    background: #dbeafe;

    margin-bottom: 25px;
}

.why-card h3 {
    color: var(--primary);

    margin-bottom: 15px;

    font-size: 1.35rem;
}

.why-card p {
    color: var(--text-secondary);

    line-height: 1.8;

    margin: 0;
}

/*==============================
Tablet
==============================*/

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*==============================
Mobile
==============================*/

@media (max-width: 768px) {
    .why-brilixis {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 45px;
    }

    .why-card {
        padding: 28px;
    }

    .why-icon {
        width: 60px;

        height: 60px;

        font-size: 1.6rem;

        margin-bottom: 18px;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .why-card p {
        font-size: 0.95rem;
    }
}

/*=========================================================
FAQ
=========================================================*/

.faq-section {
    padding: 120px 0;

    background: #ffffff;
}

.faq-container {
    max-width: 900px;

    margin: 70px auto 0;
}

.faq-item {
    border: 1px solid #e2e8f0;

    border-radius: 18px;

    margin-bottom: 18px;

    overflow: hidden;

    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.faq-question {
    width: 100%;

    background: #fff;

    border: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 26px 30px;

    text-align: left;

    font-size: 1.08rem;

    font-weight: 600;

    color: var(--primary);
}

.faq-icon {
    font-size: 1.6rem;

    color: #2563eb;

    transition: 0.3s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 28px;

    margin: 0;

    color: var(--text-secondary);

    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/*=========================
Mobile
=========================*/

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        margin-top: 45px;
    }

    .faq-question {
        padding: 20px;

        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 22px;

        font-size: 0.95rem;
    }
}
/*=========================================================
REQUEST DEMO
=========================================================*/

.demo-section {
    padding: 120px 0;

    background: #fff;
}

.demo-wrapper {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    margin-top: 70px;

    align-items: start;
}

/* Left */

.demo-info h3 {
    color: var(--primary);

    font-size: 2rem;

    margin-bottom: 30px;
}

.demo-info ul {
    list-style: none;

    padding: 0;

    display: grid;

    gap: 18px;
}

.demo-info li {
    display: flex;

    gap: 14px;

    align-items: flex-start;

    color: var(--primary);

    font-weight: 500;
}

.demo-info li::before {
    content: "✓";

    width: 28px;

    height: 28px;

    background: #dbeafe;

    color: #2563eb;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;
}

.demo-note {
    margin-top: 40px;

    padding: 28px;

    border-radius: 18px;

    background: #f8fafc;

    border-left: 4px solid var(--primary);
}

.demo-note h4 {
    color: var(--primary);

    margin-bottom: 12px;
}

.demo-note p {
    margin: 0;

    color: var(--text-secondary);

    line-height: 1.8;
}

/* Form */

.demo-form-card {
    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 24px;

    padding: 40px;

    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 22px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group label {
    margin-bottom: 10px;

    font-weight: 600;

    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;

    border: 1px solid #cbd5e1;

    border-radius: 14px;

    font-size: 15px;

    transition: 0.3s;

    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;

    outline: none;

    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea {
    resize: vertical;
}

.website-field {
    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;
}

.cf-turnstile {
    margin: 10px 0 25px;

    display: flex;

    justify-content: center;
}
#demoMessage {
    min-height: 28px;

    margin-bottom: 18px;

    text-align: center;

    font-weight: 600;

    font-size: 0.95rem;

    transition: 0.35s;
}

/* Success */

.form-success {
    color: #16a34a;

    text-shadow:
        0 0 8px rgba(22, 163, 74, 0.18),
        0 0 18px rgba(22, 163, 74, 0.08);

    animation: fadeIn 0.35s ease;
}

/* Error */

.form-error {
    color: #dc2626;

    text-shadow:
        0 0 8px rgba(220, 38, 38, 0.18),
        0 0 18px rgba(220, 38, 38, 0.08);

    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;

        transform: translateY(-8px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}
.demo-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 14px;

    background: var(--primary);

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}
.demo-submit:disabled {
    cursor: not-allowed;

    opacity: 0.8;
}

.spinner {
    width: 18px;

    height: 18px;

    border: 2px solid rgba(255, 255, 255, 0.35);

    border-top: 2px solid #ffffff;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.demo-submit:hover {
    transform: translateY(-3px);

    background: #163f75;
}

/* Tablet */

@media (max-width: 992px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .demo-section {
        padding: 80px 0;
    }

    .demo-wrapper {
        gap: 40px;

        margin-top: 45px;
    }

    .demo-info {
        text-align: left;
    }

    .demo-info h3 {
        font-size: 1.7rem;
    }

    .demo-form-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
