@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --bg-primary: #020202;
    --bg-secondary: #0d0f15;
    --bg-tertiary: #12151e;
    --bg-card: #141722;
    --border: #1e2235;
    --border-hover: #2a3050;
    --text-primary: #f0f1f5;
    --text-secondary: #ffffff;
    --text-muted: #5a5f78;
    --accent-1: #0066ff;
    --accent-2: #36c5fc;
    --accent-glow: rgba(79, 123, 247, 0.15);
    --accent-gradient: linear-gradient(135deg, #4f7bf7 0%, #7b5cf5 50%, #a855f7 100%);
    --accent-gradient-subtle: linear-gradient(135deg, rgba(79, 123, 247, 0.12) 0%, rgba(123, 92, 245, 0.12) 100%);
    --success: #22c55e;
    --warning: #f59e0b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* p, h1, h2, h3, h4, h5, h6, li, span, a {
  line-height: 1.5 !important;
} */
@media (max-width: 768px) {


    h1,
    h2,
    h3,
    h4 {
        line-height: 110% !important;
    }
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── NAVBAR ── */
.navbar {
    position: absolute;
    top: 2%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 8, 12, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(79, 123, 247, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(90deg, #36c5f3, #0066ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(79, 123, 247, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(79, 123, 247, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 160px 48px 120px;
    text-align: center;
    overflow: hidden;
    min-height: 115vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(79, 123, 247, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 123, 247, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 600px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(79, 123, 247, 0.12) 0%, rgba(123, 92, 245, 0.06) 40%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--accent-gradient-subtle);
    border: 1px solid rgba(79, 123, 247, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-1);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1px;
    max-width: 900px;
    font-size: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 24px auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-ops-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.25s both;
}

.ops-pill {
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.ops-pill:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(79, 123, 247, 0.06);
}

.hero-visual {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    width: 100%;
    max-width: 1260px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-terminal {
    background: black;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f57;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #28ca41;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.terminal-body {
    padding: 28px 28px;
    font-family: var(--font-mono);
    font-size: 18px;
    line-height: 2;
    min-height: 260px;
}

.terminal-line {
    opacity: 0;
    animation: typeIn 0.4s ease forwards;
}

.t-prompt {
    color: #0066ff;
}

.t-command {
    color: var(--text-primary);
}

.t-success {
    color: var(--success);
}

.t-warning {
    color: var(--warning);
}

.t-muted {
    color: var(--text-muted);
}

.t-accent {
    color: var(--accent-2);
}

.t-pink {
    color: #ec4899;
}

.t-cyan {
    color: #06b6d4;
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── LOGO STRIP ── */
.logo-strip {
    padding: 450px 48px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.logo-strip p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.logo-scroll {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.logo-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.logo-item:hover {
    opacity: 0.8;
}

/* ── SECTION COMMON ── */
.section {
    padding: 10px 48px;
    position: relative;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.section-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

#section1 {
    padding-bottom: 100px;
}

/* ── FEATURE CARDS ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #0f111f;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
 background: linear-gradient(90deg, #0066ff);;
  opacity: 0;
  transition: opacity 0.4s;
} */
.feature-card:hover {
    border: 2px solid #0066ff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #0066ff, #36c5f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── STATS ROW ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ── HOW IT WORKS ── */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 64px auto 0;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-2), transparent);
}

.step-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--accent-1);
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 32px;
    color: var(--accent-1);
    font-style: normal;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
    margin: 0 48px 120px;
    padding: 80px 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0.04;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.cta-banner .btn-primary {
    position: relative;
}

/* ── INTEGRATIONS PAGE ── */
.integrations-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 48px 0 40px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.integration-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.integration-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.integration-card .name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.integration-card .cat {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ── ABOUT PAGE ── */
.about-hero {
    padding: 160px 48px 80px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 64px auto 0;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 12px;
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 64px auto 0;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 64px auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
}

.contact-info {
    padding-top: 8px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient-subtle);
    border: 1px solid rgba(79, 123, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text .label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-detail-text .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── FOOTER ── */
.footer {
    padding: 64px 48px 32px;
    border-top: 1px solid var(--border);
    background: black;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: white;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 450px;

}

.footer h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.footer a {
    display: block;
    font-size: 14px;
    color: white;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
    cursor: pointer;
}

.footer a:hover {
    color: var(--text-muted);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    font-size: 14px;
    color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

    .features-grid,
    .integrations-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .usecase-panel {
        grid-template-columns: 1fr;
    }

    .platform-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .section,
    .about-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        letter-spacing: 1px;
        font-size: 40px;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        display: block;
    }

    .cta-banner {
        margin: 0 20px 80px;
        padding: 48px 28px;
    }

    .footer {
        padding: 48px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .platform-banner {
        display: block !important;
    }

    .usecase-metric-number {
        font-size: 50px !important;
    }
}

/* ── PRODUCT PAGE SPECIFICS ── */
.product-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 80px auto 0;
}

.product-feature-row.reverse {
    direction: rtl;
}

.product-feature-row.reverse>* {
    direction: ltr;
}

.product-feature-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-feature-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "→";
    color: var(--accent-1);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .product-feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-feature-row.reverse {
        direction: ltr;
    }
}

/* ── ARCHITECTURE DIAGRAM ── */
.arch-diagram {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.8;
    color: var(--text-muted);
}

.arch-diagram .highlight {
    color: var(--accent-1);
    font-weight: 600;
}

.arch-diagram .accent {
    color: var(--accent-2);
}

.arch-diagram .success {
    color: var(--success);
}

/* ── USE CASE TABS ── */
.usecase-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 48px 0 0;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.usecase-tab {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 1px;
}

.usecase-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.usecase-tab.active {
    background: linear-gradient(90deg, #0066ff, #36c5f3);
    color: white;
    box-shadow: 0 4px 16px rgba(79, 123, 247, 0.25);
}

.usecase-panel {
    max-width: 1100px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    text-align: left;
}

.usecase-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.usecase-panel h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.usecase-panel .tagline {
    font-size: 15px;
    color: var(--accent-1);
    font-weight: 500;
    margin-bottom: 16px;
}

.usecase-panel p.desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.usecase-capabilities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.usecase-capabilities li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.usecase-capabilities li .check {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.usecase-metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.usecase-metric-number {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.usecase-metric-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.usecase-metric-context {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    line-height: 1.7;
    max-width: 280px;
}

/* ── ONE PLATFORM BANNER ── */
.platform-banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 48px;
    background: linear-gradient(-45deg, #0066ff, #008989, #003d99, #207991);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.platform-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    /* background: linear-gradient(90deg, #0066ff, #36c5f3); */
}

.platform-banner h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    /* letter-spacing: 1px; */
    margin-bottom: 12px;
}

.platform-banner p {
    font-size: 16px;
    color: white;
    line-height: 1.5;
    max-width: 700px;
}

.platform-ops-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.platform-ops-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
}

.platform-ops-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}



@media(max-width:900px) {

    .platform-banner {
        display: block;
        /* padding-left: 160px; */
    }

    .platform-banner h2 {

        text-align: center;
        /* padding-right: 100px; */

    }

    .dashboard-wrapper img {
        margin-top: 0px;
    }


}


@media (max-width: 768px) {

    .platform-banner {
        display: block;
    }

    .platform-banner h2 {
        text-align: center;
        font-size: 16px;

    }

    .platform-banner p {
        font-size: 14px !important;
        line-height: 1.5;
    }

    .platform-banner b {
        font-size: 18px;
    }

    .platform-ops-item {
        font-size: 14px;
    }

    .dashboard-wrapper img {
        margin-top: -50px;
    }

    #container1 {
        padding-top: 100px !important;
    }

    .section1 {
        padding: 100px 0px 100px !important;
    }
}

/* Large Mobile */
@media (max-width: 576px) {

    .platform-ops-list {
        display: block;
    }

    .platform-banner h2 {
        text-align: center;
        padding: 0;
        font-size: 16px;
    }

    .platform-banner p {
        font-size: 14px;
    }


}

/* Small Mobile (iPhone SE etc.) */
@media (max-width: 480px) {
    .platform-ops-list {
        display: block;

    }

    .platform-banner {
        padding: 20px 20px;
    }


}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .platform-ops-list {
        display: block;
        padding-top: 18px !important;

    }
}






.testimonial-ops-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid;
}

/* ── FAQ ── */
.faq-list {
    max-width: 760px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-1);
}

.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-arrow.open {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-bottom: 24px;
    display: none;
}

.faq-answer.open {
    display: block;
}



/* Large Desktop / iMac */
@media (min-width: 1400px) {}

/* Desktop / MacBook */
@media (max-width: 1300px) {
    .hero-content {
        position: relative;

        z-index: 2;
        max-width: 900px;
        margin: auto;
    }
}

/* Tablet (iPad) */
@media (max-width: 768px) {
    #section {
        padding: 0px 0px 50px !important;
        margin-top: -200px !important;
        z-index: 999;
    }
}

/* Large Mobile */
@media (max-width: 576px) {}

/* Small Mobile (iPhone SE etc.) */
@media (max-width: 480px) {}

/* Extra Small Mobile */
@media (max-width: 360px) {}





/* Tabs always fixed */
#tabs {

    background: #0f111f;
    z-index: 100;

}

/* Main wrapper */
.content-wrapper.concenter {
    display: flex;
    gap: 40px;
    height: auto;
    /* adjust based on header */
}

/* LEFT CONTENT SCROLL */
.content-wrapper .left {
    flex: 0.8;
    overflow-y: auto;
    padding-right: 10px;
}

/* RIGHT CARD SCROLL */
.content-wrapper .right {
    width: 320px;
    overflow-y: auto;
}

/* MOBILE */
@media(max-width:768px) {

    .content-wrapper.concenter {
        flex-direction: column-reverse;
        height: calc(100vh - 60px);
        margin-top: -100px;
    }

    .content-wrapper .left {
        max-height: 60%;
        overflow-y: auto;
    }

    .content-wrapper .right {
        max-height: 40%;

    }

}

.left,
.right {
    scroll-behavior: smooth;
}

.left::-webkit-scrollbar,
.right::-webkit-scrollbar {
    width: 5px;
}

.left::-webkit-scrollbar-thumb,
.right::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}




@media only screen and (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {}

.one-platform-heading {
    max-width: 100% !important;
}
    

