/* ==========================================================================
   NEXA VENTURE SOLUTIONS - STYLE SYSTEM
   Silicon Valley SaaS x Premium Consulting Agency Aesthetic
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    /* Color Palette */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #0a0a0c;
    --color-bg-darker: #050507;
    --color-text-primary: #111111;
    --color-text-secondary: #6B7280;
    --color-text-light: #9ca3af;
    --color-text-white: #ffffff;
    
    /* Branding Accent Gradient (Pink -> Magenta -> Purple) */
    --color-pink: #FF4D94;
    --color-magenta: #E91EAE;
    --color-purple: #7B2FF7;
    --grad-primary: linear-gradient(135deg, var(--color-pink) 0%, var(--color-magenta) 50%, var(--color-purple) 100%);
    --grad-button-hover: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 50%, var(--color-pink) 100%);
    --grad-soft-glow: radial-gradient(circle, rgba(233, 30, 174, 0.15) 0%, rgba(123, 47, 247, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    
    /* Typography */
    --font-headings: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    
    /* Shadows & Borders */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(123, 47, 247, 0.04);
    --border-glass: 1px solid rgba(17, 17, 17, 0.06);
    --border-glass-dark: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-white);
    color: var(--color-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    background-repeat: repeat;
    background-size: 180px 180px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
}

.font-manrope {
    font-family: var(--font-headings);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Common Layout Helpers */
.text-center { text-align: center; }
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-text-primary);
    color: var(--color-text-white);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 174, 0.25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(17, 17, 17, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(17, 17, 17, 0.03);
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
}

/* Light variations for Dark Background Sections */
.btn-light {
    background-color: var(--color-text-white);
    color: var(--color-bg-dark);
}

.btn-light:hover {
    color: var(--color-text-white);
    box-shadow: 0 10px 25px rgba(255, 77, 148, 0.3);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: var(--shadow-soft);
}

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

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-text-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--color-text-primary);
    color: var(--color-text-white);
    border-radius: var(--border-radius-sm);
}

.nav-cta:hover {
    background: var(--grad-primary);
    box-shadow: 0 8px 16px rgba(233, 30, 174, 0.2);
    transform: translateY(-1px);
}

.mobile-cta {
    display: none;
    text-align: center;
    margin-top: 24px;
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--color-bg-white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--color-magenta);
    font-weight: bold;
}

/* Hero Right Side - 3D Dashboard Mockup Styling */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(80px);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
}

.blob-1 {
    width: 250px;
    height: 250px;
    background: var(--color-pink);
    top: 10%;
    right: 10%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-purple);
    bottom: 10%;
    left: 10%;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: var(--border-glass);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e7eb;
}

.dashboard-dots span:nth-child(1) { background-color: #ff5f56; }
.dashboard-dots span:nth-child(2) { background-color: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background-color: #27c93f; }

.dashboard-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.dashboard-status {
    font-size: 0.7rem;
    font-weight: 500;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dashboard-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.65);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-stats {
    grid-column: span 2;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
}

.dash-card-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.bar-label-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 90px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.dash-bar-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dash-bar-icon-tt {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.card-trend {
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.card-trend.upward {
    color: #10b981;
}

.trend-icon {
    width: 14px;
    height: 14px;
}

.sparkline-container {
    margin-top: 14px;
    height: 35px;
    width: 100%;
}

.sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* ROAS Card styling */
.roas-card .progress-bar-container {
    height: 5px;
    background-color: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    margin: 12px 0 6px 0;
}

.progress-bar-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

.card-meta {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}

/* Performance bars styling */
.multi-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
}

.bar-label {
    width: 40px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.bar-track {
    flex-grow: 1;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--color-text-primary);
    border-radius: 2px;
}

.bar-val {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ==========================================================================
   PARTNERS SECTION (INFINITE SCROLL)
   ========================================================================== */
.partners-section {
    padding: 60px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.partners-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 32px;
}

.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light), transparent);
}

.logo-carousel {
    display: flex;
    width: max-content;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    user-select: none;
}

.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   ACCREDITATIONS & BADGES SECTION
   ========================================================================== */
.accreditations-section {
    padding: 50px 0;
    background-color: var(--color-bg-white);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(40%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.badge-item:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-magenta);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.about-stat {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: var(--border-glass);
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.about-stat p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* Video Frame mockup styling */
.about-visual {
    display: flex;
    justify-content: center;
}

.about-animation-container {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

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

/* Floating Node Animations */
.float-slow {
    transform-origin: 200px 175px;
    animation: floatCore 6s ease-in-out infinite;
}

.float-slow-1 {
    transform-origin: 79px 105px;
    animation: floatSat1 8s ease-in-out infinite;
}

.float-slow-2 {
    transform-origin: 321px 105px;
    animation: floatSat2 7s ease-in-out infinite;
}

.float-slow-3 {
    transform-origin: 200px 315px;
    animation: floatSat3 9s ease-in-out infinite;
}

@keyframes floatCore {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.02); }
}

@keyframes floatSat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -4px); }
}

@keyframes floatSat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
}

@keyframes floatSat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2px, 6px); }
}

/* Neon Dotted Flowing Lines */
.flow-line {
    stroke-dasharray: 8 12;
    animation: lineFlow 3s linear infinite;
}

.line-amz {
    animation-duration: 4s;
}

.line-wal {
    animation-duration: 3.5s;
    animation-direction: reverse;
}

.line-tt {
    animation-duration: 3s;
}

@keyframes lineFlow {
    from { stroke-dashoffset: 40; }
    to { stroke-dashoffset: 0; }
}



/* Hover Interactivity */
.about-animation-container:hover .core-node circle {
    stroke-width: 3px;
}

.satellite-node {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.satellite-node:hover {
    transform: scale(1.08);
}

/* ==========================================================================
   SERVICES SECTION (GRID)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-white);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(233, 30, 174, 0.2);
}

.service-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-md);
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--grad-primary);
    color: var(--color-text-white);
}

.service-icon {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (HORIZONTAL CARDS)
   ========================================================================== */
.why-us-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: flex-start;
}

.why-us-left {
    display: flex;
    flex-direction: column;
}

.why-points-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
}

.why-point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-point-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
    color: var(--color-magenta);
    flex-shrink: 0;
}

.why-point-icon-box .check-icon {
    width: 18px;
    height: 18px;
}

.why-point-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-point-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.why-point-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.why-us-right {
    background-color: var(--color-bg-light);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: sticky;
    top: 100px;
}

.certifications-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-item {
    background-color: var(--color-bg-white);
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.6 / 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cert-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 47, 247, 0.15);
}

/* ==========================================================================
   PROCESS TIMELINE SECTION (GLASS CARDS)
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.timeline-wrapper {
    margin-top: 80px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e5e7eb;
    z-index: 0;
}

.timeline-progress {
    height: 100%;
    width: 25%; /* Syncs with viewport activation via JS */
    background: var(--grad-primary);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.timeline-step.active .timeline-node {
    border-color: var(--color-magenta);
    background: var(--color-text-primary);
    color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(233, 30, 174, 0.3);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.timeline-step.active .timeline-card {
    border-color: rgba(123, 47, 247, 0.2);
    box-shadow: var(--shadow-premium);
    background: var(--color-bg-white);
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.timeline-text {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 20px 20px;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
}

/* ==========================================================================
   TESTIMONIALS SECTION (SLIDER)
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    cursor: grab;
    user-select: none;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(233, 30, 174, 0.08);
    line-height: 1;
    user-select: none;
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    background-color: var(--color-bg-light);
    border: var(--border-glass);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--color-text-primary);
    color: var(--color-text-white);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-magenta);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.faq-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(123, 47, 247, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-headings);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-magenta);
}

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

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.cta-banner-container {
    background-color: var(--color-bg-dark);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 20px 20px;
    color: var(--color-text-white);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-banner-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 148, 0.15) 0%, rgba(123, 47, 247, 0.05) 60%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(50px);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-banner-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
    border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
    padding: 16px 20px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
}

.contact-profile-photo {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    box-sizing: border-box;
    padding: 3px;
    background: var(--grad-primary);
}

.contact-profile-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.contact-profile-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-magenta);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    border: var(--border-glass);
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-glass);
    color: var(--color-text-primary);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.contact-card-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.contact-card-text p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

/* Form Styling */
.contact-form-wrapper {
    background-color: var(--color-bg-light);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    height: 600px;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-bg-white);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-magenta);
    box-shadow: 0 0 0 3px rgba(233, 30, 174, 0.1);
}

.form-submit {
    margin-top: 10px;
    width: 100%;
}

.form-success-msg {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.success-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-bg-darker);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 20px 20px;
    color: var(--color-text-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    background: var(--grad-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(233, 30, 174, 0.35);
}

.social-icons a:hover .social-svg {
    color: var(--color-text-white);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.55fr 1.1fr;
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.footer-link {
    font-size: 0.82rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--color-magenta);
    padding-left: 2px;
}

.footer-contact-item {
    font-size: 0.88rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-item .contact-icon {
    width: 18px;
    height: 18px;
    color: var(--color-magenta);
    flex-shrink: 0;
}

.footer-social-wrapper {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    opacity: 0.7;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.footer-copyright,
.footer-credit {
    margin: 0;
}

/* ==========================================================================
   EFFECTS & ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-section {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .contact-container,
    .faq-container,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        order: -1; /* Show text before the animation graphic on tablet/mobile */
    }
    
    .dashboard-mockup {
        max-width: 100%;
        transform: none;
    }
    
    .dashboard-mockup:hover {
        transform: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header {
        background-color: var(--color-bg-white);
        border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        align-items: flex-start;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-item {
        font-size: 1.15rem;
        width: 100%;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .services-grid,
    .why-us-container,
    .timeline-grid,
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-right {
        position: static;
        padding: 24px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-step {
        align-items: flex-start;
    }
    
    .timeline-node {
        margin-bottom: 12px;
    }
    
    .timeline-card {
        text-align: left;
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 8px;
        height: 600px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   VIDEO SLIDER SECTION (PHONE DEVICE VERTICAL SLIDER)
   ========================================================================= */
.video-slider-section {
    padding: 80px 0;
    background-color: var(--color-bg-white);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.horizontal-slider-container {
    position: relative;
    width: 100%;
}

.video-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 16px 4px 26px;
    margin: -16px -4px -26px;
}

.video-slider-track {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: grab;
    user-select: none;
}

.video-slider-track:active {
    cursor: grabbing;
}

.horizontal-slide {
    flex: 0 0 calc((100% - 60px) / 3); /* Exactly 3 items per view */
    aspect-ratio: 9/16; /* 1080x1920 raw video aspect ratio */
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: #000;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.horizontal-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    padding: 2px;
    background: var(--grad-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.horizontal-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(123, 47, 247, 0.22);
}

.horizontal-slide:hover::after {
    opacity: 1;
}

.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.slider-video-overlay h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 4px;
    font-family: var(--font-headings);
}

.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-text-primary);
    z-index: 5;
    opacity: 0.9;
}

.video-play-overlay-btn:hover {
    background-color: var(--color-text-primary);
    color: var(--color-text-white);
    transform: translate(-50%, -50%) scale(1.08);
}

.horizontal-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.horizontal-slider-dots {
    display: flex;
    gap: 8px;
}

/* Responsive adjustments showing 2 on tablet, 1 on mobile */
@media (max-width: 1024px) {
    .horizontal-slide {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 items per view */
    }
}

@media (max-width: 768px) {
    .horizontal-slide {
        flex: 0 0 100%; /* 1 item per view */
    }
}

