:root {
    /* Primary Colors */
    --blinc-blue: #2d5d9b;
    --deep-ocean: #1a3c6e;
    --bright-sky: #4a90e2;
    --cyan-glow: #00f2ff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--deep-ocean) 0%, var(--blinc-blue) 50%, var(--bright-sky) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --grad-dark-glass: linear-gradient(135deg, rgba(26, 60, 110, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);

    /* Neural Colors */
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --dark-grey: #1a1a1a;
    --medium-grey: #666666;
    --light-grey: #E0E0E0;

    /* Industry Accents */
    --accent-dining: #E74C3C;
    --accent-retail: #F39C12;
    --accent-gaming: #F1C40F;
    --accent-hospitality: #2ECC71;
    --accent-services: #1ABC9C;
    --accent-events: #3498DB;
    --accent-venues: #9B59B6;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --container-width: 1200px;

    /* Effects */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(12px);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-secondary);
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Build Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 93, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.btn-primary:hover::after {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 93, 155, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary.dark {
    border-color: var(--blinc-blue);
    color: var(--blinc-blue);
    background: transparent;
}

.btn-secondary.dark:hover {
    background: rgba(45, 93, 155, 0.05);
}

/* Glassmorphism */
.glass {
    background: var(--grad-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
}

.glass-dark {
    background: var(--grad-dark-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mt-40 {
    margin-top: 40px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px var(--cyan-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--cyan-glow);
    }

    100% {
        box-shadow: 0 0 5px var(--cyan-glow);
    }
}

/* Specific Section Styles */

/* Navigation */
/* CTA Section */
.cta-section {
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mid-cta {
    margin-top: -30px;
    /* Pull up to overlap hero slightly if needed, or leave as break */
    z-index: 10;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.cta-buttons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    /* Adjusted based on typical nav height */
    width: auto;
    display: block;
}

.nav-links a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 15px;
    color: var(--medium-grey);
}

.nav-links a:hover {
    color: var(--blinc-blue);
}

.contact-email {
    font-size: 14px;
    color: var(--blinc-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/hero-bg-v2.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4) 0%, rgba(26, 60, 110, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-logo-container {
    flex: 1;
}

.hero-product-logo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: var(--white);
    padding: 15px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text-content {
    flex: 1.2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
    /* background: linear-gradient(to right, white, var(--bright-sky)); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.hero-subhed {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.5;
}

.cta-group {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
    }

    .nav-links,
    .nav-auth {
        display: none;
    }
}

@media (max-width: 992px) {

    .split-layout,
    .hero-flex {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-product-logo {
        width: 200px;
        margin: 0 auto;
    }

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

/* Sections */
section {
    padding: 80px 0;
}

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

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

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

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

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

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-grey);
}

.trust-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-grey);
    font-size: 16px;
    font-weight: 500;
}

.trust-item ion-icon {
    font-size: 24px;
    color: var(--blinc-blue);
}

/* Product Overview */
.section-header {
    text-align: center;
    /* max-width: 700px; */
    /* margin: 0 auto 60px; */
}

.section-header-left {
    text-align: left !important;
    margin-bottom: 25px !important;
}

.section-title {
    color: var(--blinc-blue);
    font-size: 32px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.pill-header {
    background: linear-gradient(90deg, var(--deep-ocean) 0%, var(--blinc-blue) 100%);
    color: var(--white);
    padding: 10px 40px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Core Layout Utilities */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.visual-side {
    flex: 1;
}

.content-side {
    flex: 2;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 32px;
    color: var(--blinc-blue);
    margin-bottom: 20px;
}

/* Use Cases */
.how-it-works {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    /* Wave Animation */
    animation: step-wave 6s infinite ease-in-out;
}

.step-card:nth-child(1) {
    animation-delay: 0s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.4s;
}

.step-card:nth-child(4) {
    animation-delay: 0.6s;
}

.step-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@keyframes step-wave {

    0%,
    20%,
    100% {
        transform: translateY(0);
        border-bottom-color: transparent;
        background: var(--off-white);
    }

    10% {
        transform: translateY(-8px);
        border-bottom-color: var(--blinc-blue);
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.step-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--blinc-blue);
    opacity: 0.2;
    margin-bottom: 20px;
}

.problem .container {
    max-width: 1100px;
}

.problem .split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.problem .visual-side {
    flex: 1;
}

.problem .content-side {
    flex: 2;
}

.problem-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.problem h3,
.product-overview h3 {
    color: var(--dark-grey);
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.problem .lead,
.product-overview p {
    color: var(--medium-grey);
    margin-bottom: 20px;
}

.step-content p {
    color: var(--medium-grey);
    font-size: 15px;
}

/* Industries Carousel */
.industries {
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0;
}

.carousel-track-container {
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    align-items: center;
}

.carousel-slide {
    flex: 0 0 70%;
    margin: 0 15px;
    border-radius: 20px;
    padding: 40px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--grad-glass);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slide-content h4 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
    color: var(--dark-grey);
}

.slide-content p {
    margin-bottom: 30px;
    color: var(--medium-grey);
    line-height: 1.6;
    max-width: 600px;
}

.slide-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--light-grey);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--blinc-blue);
    z-index: 20;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.use-case-icon.dining {
    background: var(--accent-dining);
}

.use-case-icon.retail {
    background: var(--accent-retail);
}

.use-case-icon.corporate {
    background: var(--accent-events);
}

.use-case-icon.public {
    background: var(--accent-venues);
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 85%;
        padding: 30px 20px;
    }

    .carousel-nav {
        display: none;
    }
}


/* Use Cases */
footer {
    background: var(--deep-ocean);
    color: var(--white);
    padding: 60px 0 20px;
}

/* Modal Layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

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

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
}

.modal-btn ion-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.modal-btn .btn-text strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.modal-btn .btn-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}