/* ========================================================
   PEAKLAB HOMEPAGE STYLES
   Modern, Premium SaaS Aesthetic
   ======================================================== */

:root {
    /* Color Palette */
    --color-primary: #000000;
    --color-primary-dark: #222222;
    --color-primary-glow: rgba(0, 0, 0, 0.1);

    --color-secondary: #333333;
    --color-secondary-dark: #111111;

    --color-text-main: #111111;
    --color-text-muted: #444444;
    --color-text-light: #888888;

    --color-bg-white: #FFFFFF;
    --color-bg-light: #F9FAFB;
    --color-bg-dark: #0A0A0A;

    --color-border: #E5E7EB;

    /* Layout */
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================
   RESET & BASE TYPOGRAPHY
   ======================================================== */

.problem-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 2rem;
    height: 180px;
    transition: all 0.3s ease;
}

/* Inner wrapper */
.card-inner {
    position: relative;
    height: 100%;
}

/* Default content */
.card-front {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover content */
.card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Hover effect */
.problem-card:hover .card-front {
    opacity: 0;
    transform: translateY(-10px);
}

.problem-card:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: hover style */
.problem-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.15);
}

.single-line-text {
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .single-line-text {
        white-space: normal;
        /* allow wrap on mobile */
    }
}

.hero-pill {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 60px;

    background: #dfe9ec;
    /* soft gray */
    border: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.05);

    max-width: 900px;
    line-height: 1.3;
}

.text-gray {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-box {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 6px;

    background: #e9f7f9;
    border-left: 4px solid #00f2fe;

    font-weight: 600;
    font-size: 0.95rem;
}





/* down not mine */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-text-main);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

ul {
    list-style: none;
}

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

.container-small {
    max-width: 800px;
}

.container-large {
    max-width: 1400px;
}

.section {
    padding: var(--section-padding);
    border-top: 1px solid var(--color-border);
}

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

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

.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

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

/* Grid Systems */
.grid-2,
.grid-3,
.grid-4,
.layout-grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.layout-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.flex-grid-center {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.flex-grid-center>* {
    grid-column: span 2;
}

.flex-grid-center>*:nth-child(4) {
    grid-column: 2 / span 2;
}

.flex-grid-center>*:nth-child(5) {
    grid-column: 4 / span 2;
}

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

    .flex-grid-center>*,
    .flex-grid-center>*:nth-child(4),
    .flex-grid-center>*:nth-child(5) {
        grid-column: 1 / -1;
    }
}

/* Spacing Utilities */
.mt-4 {
    margin-top: 1rem;
}

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

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

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

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Text Utilities */
.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p {
    color: white !important;
}

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

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

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

.text-success {
    color: #10B981;
}

.text-danger {
    color: #EF4444;
}

.text-warning {
    color: #F59E0B;
}

.text-sm {
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 14px 0 var(--color-primary-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-bg-light);
}

.btn-outline {
    border-color: var(--color-border);
    color: var(--color-text-main);
    background-color: white;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
    font-weight: 600;
}

.btn-white:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.glassy-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glassy-nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

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

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

.brand-logo {
    height: 48px;
    width: auto;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--color-primary);
}

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

.nav-links a {
    color: var(--color-text-muted);
    font-weight: 500;
}

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

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-secondary {
        display: none;
    }
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--color-bg-dark);
    background-size: cover;
    background-position: center;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    padding-top: 4rem;
}

@media (max-width: 900px) {
    .hero-content-split {
        grid-template-columns: 1fr;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.7);
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(126, 58, 242, 0.1);
    color: var(--color-secondary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(126, 58, 242, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(to right, #00B4DB, #0083B0, #8A2387);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    color: var(--color-text-light);
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 8px;
}

.btn-gradient:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}

.trust-indicator {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    max-width: 800px;
    margin: 0;
}

.trust-logos {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================================
   CARDS & GRID
   ======================================================== */
.card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
}

.glassy-hover:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: rgba(26, 86, 219, 0.2);
}

/* ========================================================
   SOLUTIONS SECTION
   ======================================================== */
.solution-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.list-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 0.125rem;
}

/* Mockup UI */
.mockup-window {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mockup-header {
    background: var(--color-bg-light);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
}

.dot:nth-child(1) {
    background: #FF5F56;
}

.dot:nth-child(2) {
    background: #FFBD2E;
}

.dot:nth-child(3) {
    background: #27C93F;
}

.mockup-body {
    height: 300px;
    padding: 2rem;
    position: relative;
    background: #FAFAFA;
}

/* Abstract Chart CSS */
.chart-line {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--color-border);
}

.chart-peaks {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    height: 200px;
    display: flex;
    align-items: flex-end;
}

.peak {
    background: linear-gradient(180deg, var(--color-primary-glow) 0%, transparent 100%);
    border-top: 2px solid var(--color-primary);
    border-radius: 50% 50% 0 0;
}

.p1 {
    width: 30%;
    height: 120px;
    margin-left: 10%;
}

.p2 {
    width: 40%;
    height: 180px;
    margin-left: -15%;
    background: linear-gradient(180deg, rgba(126, 58, 242, 0.4) 0%, transparent 100%);
    border-top-color: var(--color-secondary);
    z-index: 2;
}

.p3 {
    width: 25%;
    height: 90px;
    margin-left: -5%;
}


/* ========================================================
   FEATURES
   ======================================================== */
.solution-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: block;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* ========================================================
   COMPARISON TABLE
   ======================================================== */
.comparison-table {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background: var(--color-bg-light);
    font-weight: 700;
}

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

.col-peaklab {
    font-weight: 600;
    color: var(--color-text-main);
    background: rgba(26, 86, 219, 0.03);
    margin: -1.25rem 0;
    padding: 1.25rem 0;
}

.table-header .col-peaklab {
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
}

/* ========================================================
   APPLICATIONS & INTEGRATION
   ======================================================== */
.app-card {
    padding: 0;
    overflow: hidden;
}

.app-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.bg-gradient-blue {
    background: #222222;
}

.bg-gradient-purple {
    background: #111111;
}

.bg-gradient-dark {
    background: #000000;
}

.app-card-content {
    padding: 2rem;
}

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

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge-tech {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-family: monospace;
}

/* ========================================================
   WHY US & COMING SOON
   ======================================================== */
.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.premium-card {
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 4rem;
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, rgba(17, 24, 39, 0.95) 100%);
    z-index: 2;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-content {
    position: relative;
    z-index: 3;
}

.product-content h3 {
    color: white;
}

.card-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.dense-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================================
   CTA SECTION
   ======================================================== */
.cta-gradient {
    background: #000000;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-links-group {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col h5 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--color-text-muted);
}

.footer-col ul a:hover {
    color: var(--color-primary);
}

.tag-soon {
    font-size: 0.7rem;
    background: var(--color-bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links-group {
        flex-wrap: wrap;
    }

    .table-row {
        grid-template-columns: 1fr;
        border-bottom: 2px solid var(--color-border);
    }

    .table-header {
        display: none;
    }

    .col-peaklab {
        padding: 0.5rem;
        margin: 0;
    }
}

/* ========================================================
   ANIMATIONS (Scroll Reveal)
   ======================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ========================================================
   PRODUCTS PAGE (DARK THEME SAAS)
   ======================================================== */
.theme-dark {
    --color-bg-white: #111111;
    --color-bg-light: #1A1A1A;
    --color-bg-dark: #0A0A0A;
    --color-border: #333333;
    --color-text-main: #FFFFFF;
    --color-text-muted: #A1A1AA;
    --color-text-light: #71717A;
    background-color: var(--color-bg-dark);
}

.theme-dark .glassy-nav {
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-dark .glassy-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--color-border);
}

.theme-dark .logo-icon {
    color: white;
}

/* Products Hero */
.products-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
}

.products-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(to right, #FFFFFF, #A1A1AA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* SaaS Product Cards */
.products-grid {
    margin-bottom: 6rem;
}

.product-card-saas {
    background: linear-gradient(180deg, #18181B 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5);
}

.product-card-saas:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 180, 219, 0.05);
}

.product-card-saas.secondary {
    opacity: 0.9;
    background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
}

.product-card-saas.horizontal {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

.product-card-saas.horizontal .card-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card-saas.horizontal .card-right {
    flex: 1 1 50%;
    width: 100%;
}

@media (max-width: 900px) {
    .product-card-saas.horizontal {
        flex-direction: column;
        gap: 2rem;
    }
}

.product-card-saas h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-card-saas .desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 54px;
}

.product-highlights {
    flex-grow: 1;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #E4E4E7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-highlights li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.product-highlights li i {
    color: #00f2fe;
    font-size: 1.25rem;
    background: rgba(0, 242, 254, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: auto;
}

@media (max-width: 500px) {
    .glass-badge {
        margin-left: 0;
    }
}

/* Secondary / Coming soon card */
.product-card-saas.secondary .product-highlights li i {
    color: var(--color-text-light);
}

/* Specific buttons for dark theme */
.btn-saas-primary {
    background: white;
    color: black;
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
    padding: 1rem;
    transition: var(--transition);
    text-align: center;
    display: block;
}

.btn-saas-primary:hover {
    background: #E4E4E7;
    transform: translateY(-2px);
    color: black;
}

.btn-saas-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
    padding: 1rem;
    cursor: not-allowed;
    transition: var(--transition);
    text-align: center;
    display: block;
}

.btn-saas-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* ========================================================
   SERVICES PAGE (DARK THEME SAAS)
   ======================================================== */
.service-card-saas {
    background: linear-gradient(180deg, #18181B 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-saas:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 180, 219, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.service-card-saas h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.service-card-saas p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

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

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

.step-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: rgba(0, 180, 219, 0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step-card h4 {
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}