:root {
    /* Colors based on provided screenshots */
    --color-primary-red: #F37777;
    /* Brand red */
    --color-primary-red-hover: #E36666;
    /* Slightly darker shade for hover */
    --color-primary-blue: #3E82F7;
    /* Approximate match to the brand blue */
    --color-primary-blue-hover: #2968D7;

    --color-text-main: #1C1D1F;
    --color-text-muted: #6B7280;
    --color-text-light: #A0AABF;

    --color-bg-white: #FFFFFF;
    --color-bg-offwhite: #F9FAFB;
    --color-bg-light-yellow: #FEFCF5;
    /* Matches the beige background */
    --color-bg-dark: #1E253B;
    /* Dark navy blue from image */

    --color-border: #E5E7EB;

    /* Typography */
    --font-family-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-width-large: 1200px;
    --container-width-narrow: 900px;
    --container-width-small: 800px;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: var(--font-family-main);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #4B5563;
}

.section-title {
    color: #4B5563;
}

h3 {
    font-size: 1.5rem;
    color: #4B5563;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width-large);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--container-width-narrow);
}

.container-small {
    max-width: var(--container-width-small);
}

section {
    padding: 5rem 0;
}

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

.text-white {
    color: var(--color-bg-white);
}

.text-white p {
    color: rgba(255, 255, 255, 0.8);
}

.text-red {
    color: var(--color-primary-red);
}

.bg-red {
    background-color: var(--color-primary-red);
}

.bg-offwhite {
    background-color: var(--color-bg-offwhite);
}

.bg-white {
    background-color: var(--color-bg-white);
}

.bg-light-yellow {
    background-color: var(--color-bg-light-yellow);
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-red-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #4B5563;
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover {
    background-color: #F3F4F6;
    color: #4B5563;
    border-color: #9CA3AF;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--color-bg-offwhite);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-box {
    background-color: var(--color-primary-red);
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    font-size: 1.25rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }

    .desktop-nav ul {
        display: flex;
        gap: 2rem;
    }

    .desktop-nav>ul>li>a {
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        position: relative;
        padding-bottom: 25px;
        /* Increase hit area and space for indicator */
        margin-bottom: -25px;
        color: #4B5563;
    }

    .desktop-nav>ul>li>a::after,
    .desktop-nav>ul>li.has-dropdown>a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-primary-red);
        transform: scaleX(0);
        transition: transform var(--transition-fast);
        transform-origin: left;
    }

    .desktop-nav>ul>li.has-dropdown:hover>a::after,
    .desktop-nav>ul>li>a.active-link::after,
    .desktop-nav>ul>li>a:not(.active-link):hover::after {
        transform: scaleX(1);
    }

    .desktop-nav>ul>li>a:hover {
        color: var(--color-primary-red);
    }

    .chevron {
        transition: transform var(--transition-fast);
        margin-top: 1px;
    }

    .has-dropdown:hover .chevron {
        transform: rotate(180deg);
        color: var(--color-primary-red);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Make Sign In and Try Now exactly the same height in the header */
.header-actions .btn {
    padding: 0.65rem 1.5rem;
    box-sizing: border-box;
    height: 42px;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--color-primary-red);
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* --- Mega Menu --- */
.mega-menu-wrapper {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FEF9F9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 99;
    padding: 2.5rem 0;
    text-align: left;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: var(--container-width-large);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 4rem;
}

/* Featured Section */
.mega-menu-featured {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
    /* Take full height of the container */
}

.featured-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.featured-card:hover {
    background-color: var(--color-bg-white);
    transform: translateY(-2px);
    border-color: var(--color-primary-red);
}

.featured-img {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius-sm);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: #FEF9F9;
    /* Light beige background to match menu */
    color: var(--color-primary-red);
    /* Red text */
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-text h4 {
    font-size: 0.95rem;
    margin: 0 0 0.25rem 0;
    color: var(--color-text-main);
}

.featured-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* Lists Section */
.mega-menu-lists {
    display: flex;
    gap: 4rem;
    flex: 1;
}

.mega-menu-column {
    flex: 1;
}

.column-header {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
    /* slightly darker/thicker line */
    padding-bottom: 0.5rem;
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mega-menu-column a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
    transition: all var(--transition-fast);
}

.mega-menu-column a:hover {
    color: var(--color-primary-red);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--color-primary-red);
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

/* Products Menu Specifics */
.products-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.products-lists .resource-group {
    margin-bottom: 2rem;
}

.products-lists .resource-group .column-header {
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.products-lists .mega-menu-column ul {
    gap: 0.6rem;
}

/* Resources Menu Specifics */
.resources-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.resource-group {
    margin-bottom: 2.5rem;
    cursor: pointer;
}

.mega-menu-column .resource-group:last-child {
    margin-bottom: 0;
}



.resource-group .column-header {
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.resources-lists .resource-group:hover .column-header {
    color: var(--color-primary-red);
}

.resource-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin: 0;
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--color-bg-light-yellow);
    /* Gradient with reduced opacity */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 50%, transparent 70%), url('hero-cover.jpg');
    background-size: cover;
    background-position: center bottom;
    color: white;
    padding: 8rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* --- Feature Tabs Section --- */
.features-section {
    background-color: var(--color-bg-white);
    padding-top: 3rem;
    /* Reduced from default 5rem section padding */
}

.feature-tabs-container {
    margin-top: 2rem;
    /* Reduced from 3rem */
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 3rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1px;
    /* Prevent scrolling jumping */
}

/* Hide scrollbar for tabs but keep functionality */
.feature-tabs::-webkit-scrollbar {
    display: none;
}

.feature-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    font-family: inherit;
}

.tab-button.active {
    color: var(--color-primary-red);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary-red);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition-normal);
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-image {
        order: -1;
    }
}

.image-placeholder {
    width: 100%;
    padding-bottom: 65%;
    border-radius: var(--border-radius-lg);
    background-color: #f1f5f9;
    background-size: cover;
    background-position: center top;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pos-dashboard-img {
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&q=80&w=1000');
}

.qr-ordering-img {
    background-image: url('https://images.unsplash.com/photo-1512428559087-560fa5ceab42?auto=format&fit=crop&q=80&w=1000');
}

.table-management-img {
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&q=80&w=1000');
}

.kot-img {
    background-image: url('https://images.unsplash.com/photo-1621252178971-ce92b2341d3c?auto=format&fit=crop&q=80&w=1000');
}

.analytics-mockup {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1000');
}

.tab-text h3 {
    font-size: 2rem;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary-red);
}

/* --- Why Choose Us Grid --- */
.why-choose-us {
    padding: 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform var(--transition-fast);
}

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

.benefit-card .icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary-red);
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Stats Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

/* --- Dynamic Demand Section --- */
.demand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

@media (max-width: 768px) {
    .demand-grid {
        grid-template-columns: 1fr;
    }
}

.demand-content {
    padding: 3rem;
}

.demand-image .dining-mockup {
    height: 100%;
    min-height: 350px;
    border-radius: 0;
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
}

/* --- Testimonials --- */
.testimonial-carousel {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    animation: fadeIn var(--transition-normal);
}

.testimonial-slide.active {
    display: grid;
}

@media (max-width: 768px) {
    .testimonial-slide.active {
        grid-template-columns: 1fr;
    }
}

.testimonial-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.testimonial-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.team-photo,
.dish-photo {
    width: clamp(200px, 40vw, 300px);
    height: clamp(200px, 40vw, 300px);
    min-height: auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.team-photo {
    background-image: url('https://images.unsplash.com/photo-1583394838336-acd977736f90?auto=format&fit=crop&q=80&w=800');
}

.dish-photo {
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=800');
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all var(--transition-fast);
}

.carousel-control:hover {
    color: var(--color-primary-red);
    border-color: var(--color-primary-red);
}

.carousel-control.prev {
    left: -24px;
}

.carousel-control.next {
    right: -24px;
}

@media (max-width: 1000px) {
    .carousel-control.prev {
        left: 1rem;
    }

    .carousel-control.next {
        right: 1rem;
    }
}

.trusted-logos {
    margin-top: 4rem;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0.6;
}

/* --- Blog Insights Grid --- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    display: flex;
    flex-direction: column;
}

.insight-image {
    padding-bottom: 60%;
    border-radius: var(--border-radius-md);
    background-color: #e2e8f0;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-normal);
}

.insight-card:hover .insight-image {
    transform: scale(1.02);
}

/* Placeholders for blog images */
.placeholder-1 {
    background-image: url('https://images.unsplash.com/photo-1579065560489-9894581f1e72?auto=format&fit=crop&q=80&w=600');
}

.placeholder-2 {
    background-image: url('https://images.unsplash.com/photo-1556740714-a8395b3bf30f?auto=format&fit=crop&q=80&w=600');
}

.placeholder-3 {
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&q=80&w=600');
}

.placeholder-4 {
    background-image: url('https://images.unsplash.com/photo-1600891964092-4316c288032e?auto=format&fit=crop&q=80&w=600');
}

.insight-title {
    font-size: 1.125rem;
    margin-bottom: auto;
}

.read-more {
    font-weight: 600;
    color: var(--color-primary-red);
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    color: var(--color-primary-red-hover);
}

/* --- FAQ Accordion --- */
.accordion {
    margin-top: 3rem;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    background: white;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color var(--transition-fast);
}

.accordion-header:hover {
    color: var(--color-primary-red);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

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

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* --- Form Section --- */
.form-section {
    padding: 6rem 0;
}

.form-container {
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .form-container {
        grid-template-columns: 1fr;
    }
}

.form-intro {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-box.small {
    font-size: 1rem;
    background-color: var(--color-text-main);
}

.partner-text {
    font-weight: 600;
    font-size: 1.25rem;
}

.form-intro h2 {
    font-size: 2.5rem;
}

.form-image-placeholder {
    margin-top: auto;
    width: 100%;
    padding-bottom: 50%;
    background-color: #f1f5f9;
    border-radius: var(--border-radius-md);
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
}

.form-wrapper {
    padding: 3rem;
    background-color: #FAFAFA;
}

.form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.step-indicator {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Tighter drop shadow on focus */
}

.legal-text {
    font-size: 0.75rem;
    margin-top: 1rem;
    line-height: 1.4;
}

.legal-text a {
    text-decoration: underline;
}

/* --- Fine Print --- */
.fine-print {
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
}

.fine-print p,
.fine-print li {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.fine-print ol {
    padding-left: 1.25rem;
    margin: 0.5rem 0 0 0;
}

.fine-print .arrow-up {
    color: var(--color-primary-red);
    margin-left: 0.25rem;
}

/* --- Footer --- */
.main-footer {
    padding: 3rem 0 2rem;
    /* Changed bottom padding from 1rem to 2rem to equal the padding-top of .footer-bottom */
    border-top: 1px solid var(--color-border);
    background-color: #FEF9F9 !important;
    /* Soft ivory requested */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.logo-box.red {
    background-color: var(--color-primary-red);
    display: inline-block;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--color-text-muted);
}

.social-links a:hover {
    color: var(--color-primary-red);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-red);
    text-decoration: underline;
    text-decoration-color: var(--color-primary-red);
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.region-dropdown:hover {
    color: var(--color-primary-red) !important;
}

.region-dropdown:hover ~ .region-chevron {
    color: var(--color-primary-red) !important;
}


.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a:hover {
    color: var(--color-primary-red);
    text-decoration: underline;
    text-decoration-color: var(--color-primary-red);
}

/* --- Pricing Page Styles --- */

.pricing-hero {
    padding: 6rem 0 3rem;
    background-color: #FEF9F9;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 2rem 0 6rem;
    background-color: #FEF9F9;
}

/* --- New Pricing Banner Style --- */
.bg-dark-blue {
    background-color: var(--color-bg-dark);
    /* Using dark theme variable */
    color: white;
}

.pricing-banner-single {
    border-radius: 12px;
    padding: 3rem;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--color-border);
}

.custom-shadow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.pricing-banner-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-banner-price-col {
    flex: 0 0 250px;
}

.starting-text {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-primary-red);
    margin: 0 0 0.5rem 0;
}

.price-big {
    font-weight: 700;
    display: flex;
    align-items: baseline;
    color: #4B5563;
}

.price-big .dollar {
    font-size: 3rem;
    margin-right: 0.2rem;
}

.price-big .amount {
    font-size: 4rem;
    line-height: 1;
}

.price-big .period {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-left: 0.2rem;
}

.pricing-banner-features-col {
    flex: 1;
}

.features-header {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
}

.features-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.features-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .features-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-3-cols {
        grid-template-columns: 1fr;
    }

    .pricing-banner-top {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-banner-single {
        padding: 2rem 1.5rem;
    }
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li span strong {
    color: #4B5563;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.features-list li .feat-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: var(--color-primary-red);
}

.features-list li span {
    line-height: 1.4;
}

.plus-more-link {
    display: block !important;
    margin-top: 1.5rem;
}

.plus-more-link p {
    margin: 0 0 0.25rem 0;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.plus-more-link a {
    color: var(--color-primary-red);
    text-decoration: none;
    font-size: 0.95rem;
}

.plus-more-link a:hover {
    text-decoration: underline;
}

.pricing-banner-bottom {
    display: flex;
    justify-content: center;
}

/* Comparison Section */
.comparison-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .comparison-boxes {
        grid-template-columns: 1fr;
    }
}

.compare-box {
    padding: 3rem;
}

.with-us {
    border-right: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .with-us {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
}

.without-us {
    background-color: var(--color-bg-offwhite);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.compare-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.text-gray {
    color: var(--color-text-muted);
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.compare-list li.no-border {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.without-us .compare-list li {
    color: var(--color-text-muted);
}

.container-medium {
    max-width: 1000px;
}

.pt-0 {
    padding-top: 0;
}

/* CTA Banner Bottom */
.cta-banner {
    padding: 0 0 6rem;
    background-color: var(--color-bg-offwhite);
}

.cta-box {
    background-color: var(--color-primary-red);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.cta-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--color-text-main);
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text .form-note {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Login Page --- */
.login-page {
    /* override body padding/margin if any */
    height: 100vh;
    overflow: hidden;
}

.login-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

.login-left {
    flex: 1;
    background-image: linear-gradient(rgba(55, 65, 81, 0.3), rgba(55, 65, 81, 0.3)), url('login-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.login-brand-content {
    text-align: center;
}

.login-logo-large {
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: transparent;
    text-transform: uppercase;
}

.login-brand-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.login-footer-text {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
}

.login-right {
    flex: 1;
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--color-text-main);
    background-color: #FFFFFF;
}

.login-form input::placeholder {
    color: #A0AABF;
}

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a {
    font-size: 0.875rem;
    color: var(--color-text-main);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.forgot-password a:hover {
    color: var(--color-primary-red);
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.login-divider-bottom {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.login-device-btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #D1D5DB !important;
    background-color: #F9FAFB;
    color: #4B5563;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.login-device-btn:hover {
    background-color: #F3F4F6;
    border-color: #9CA3AF !important;
}

.login-bottom-text {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.login-bottom-text a {
    color: var(--color-text-main);
    font-weight: 500;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.login-bottom-text a:hover {
    color: var(--color-primary-red);
}

/* Social Login Buttons */
.social-login-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    width: 100%;
}

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    color: #111827;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.01em;
}

.btn-social:hover {
    background-color: #f3f4f6;
    border-color: #9CA3AF;
}

.btn-apple {
    background-color: white;
    color: #111827;
    border-color: #D1D5DB;
}

.btn-apple:hover {
    background-color: #f9fafb;
    border-color: #9CA3AF;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* "Or" Divider */
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}
 
/* --- Floating Support Button --- */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background-color: var(--color-primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    z-index: 999;
    transition: all var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
}

.floating-support.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
 
.floating-support:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--color-primary-red-hover);
    box-shadow: none;
}
 
.chat-icon {
    width: 32px;
    height: 32px;
    display: block;
}

/* --- Chat Support Window --- */
.chat-window {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 380px;
    max-height: 600px;
    height: calc(100vh - 150px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.5rem;
}

.chat-header-back {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
}

.agent-avatar {
    position: relative;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
}

.agent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    line-height: 1.2;
}

.chat-header-subtitle {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.2;
}

.chat-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn, .close-chat {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 2px;
}

.chat-banner-text {
    text-align: center;
    color: #374151;
    font-size: 1.125rem;
    padding: 0.75rem 0 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #fafafa;
}

.message {
    margin-bottom: 1.5rem;
}

.message.incoming {
    max-width: 85%;
}

.message-content {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1f2937;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message-meta {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
}

.chat-footer {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #f0f0f0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.input-container {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 1rem;
}

.input-container textarea {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 5px;
    margin-bottom: 10px;
}

.input-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-actions {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 4px;
}

.icon-btn:hover {
    color: #6B7280;
}

.send-btn {
    background: none;
    border: none;
    color: #D1D5DB; /* Gray when disabled */
    cursor: not-allowed;
    padding: 4px;
}

.agreement-text {
    background-color: #f3f4f6;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.4;
    position: relative;
}

.agreement-text a {
    color: #1f2937;
    text-decoration: underline;
}

.close-agreement {
    position: absolute;
    top: 4px;
    right: 4px;
    background: none;
    border: none;
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100% - 40px);
        right: 20px;
        height: calc(100vh - 120px);
    }
}

.login-divider span {
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .login-layout {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .social-login-container {
        flex-direction: column;
    }

    .login-left, .login-right {
        flex: none;
        width: 100%;
        min-height: 50vh;
    }
    
    .login-footer-text, .login-bottom-text {
        position: relative;
        bottom: 0;
        margin-top: 3rem;
    }
}

/* --- Blog Specific Styles --- */
.blog-sub-nav {
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    position: relative;
    z-index: 90;
}

.blog-sub-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-brand {
    display: flex;
    flex-direction: column;
}

.on-the-house {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-text-main);
    line-height: 1;
}

.for-restaurants {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.blog-categories {
    display: flex;
    gap: 2rem;
}

.blog-categories a {
    font-size: 1rem;
    font-weight: 600;
    color: #4B5563;
    position: relative;
    padding-bottom: 1.25rem;
    margin-bottom: -1.25rem;
    display: inline-block;
}

.blog-categories a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary-red);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    transform-origin: left;
}

.blog-categories a:hover,
.blog-categories a.active {
    color: var(--color-primary-red);
}

.blog-categories a:hover::after,
.blog-categories a.active::after {
    transform: scaleX(1);
}

.blog-main {
    background-color: white;
}

/* Blog Hero */
.blog-hero {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-tag {
    display: inline-block;
    color: var(--color-primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.author-meta {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Blog Welcome */
.blog-welcome {
    padding: 6rem 0;
}

.blog-welcome h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.text-black {
    color: #4B5563;
}

/* Blog CTA */
.blog-cta {
    padding-bottom: 4rem;
}

.cta-wrapper {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    padding: 5rem;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content .logo-box {
    margin-bottom: 1.5rem;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-secondary-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary-white:hover {
    background: white;
    color: var(--color-text-main);
}

/* Category Sections */
.blog-category-section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--color-text-main);
    padding-bottom: 0.5rem;
}

.section-header h2 {
    margin-bottom: 0;
    color: var(--color-text-main);
    font-size: 1.75rem;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-controls button {
    background: none;
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.slider-controls button:hover {
    border-color: var(--color-text-main);
    background-color: var(--color-bg-offwhite);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sub-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-categories {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.5rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
}

/* --- Blog Article Styling --- */
.blog-header-red {
    background-color: var(--color-primary-red);
    padding: 1rem 0;
    color: white;
}

.blog-header-red .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box.white {
    background-color: white;
    color: var(--color-primary-red);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-primary-red);
}

.article-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    padding: 4rem 0;
}

.published-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.publish-date {
    font-size: 1rem;
    color: var(--color-text-main);
    font-weight: 800;
}

.article-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.author-info {
    font-size: 1rem;
    max-width: 600px;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.article-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.qa-section {
    margin: 3rem 0;
}

.qa-question {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.qa-answer {
    font-style: normal;
}

.discover-more {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid var(--color-border);
}

.discover-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
    
    .discover-slider {
        grid-template-columns: 1fr;
    }
}