@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: #07080c;
    --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: #4f7bf7;
    --accent-2: #7b5cf5;
    --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;
}

/* ── 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;
    background: rgba(0, 0, 0, 0);
    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: 14px 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;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(79, 123, 247, 0.2);
}

.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: 100vh;
    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;
    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: 960px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-terminal {
    background: var(--bg-card);
    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: 13px;
    line-height: 2;
    min-height: 260px;
}

.terminal-line {
    opacity: 0;
    animation: typeIn 0.4s ease forwards;
}

.t-prompt {
    color: var(--accent-1);
}

.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: 40px 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: 50px 48px;
    position: relative;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 20px;
    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;
    margin-top: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 100%;
    line-height: 1.7;
}

#text {
    font-size: 18px;
}

.section-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 120px;
}

/* ── 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: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

/* .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s;
} */

.feature-card:hover {
    border-color: var(--border-hover);
    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: var(--accent-gradient-subtle);
  border: 1px solid rgba(79, 123, 247, 0.15); */
    display: flex;
    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: 14px;
    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;
    }

    .about-hero {
        padding-bottom: 500px;
    }

    .hero h1 {
        letter-spacing: 1px;
        font-size: 20px;
    }

    .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: var(--accent-gradient);
    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: var(--bg-card);
    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: var(--accent-gradient);
}

.platform-banner h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.platform-banner p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

.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: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
}

.platform-ops-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.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);
  border-top: 1px solid var(--border);
  position: relative;
} */

.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;
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Hide desktop links on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .usecase-panel {
        margin: 48px auto 0;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr 1fr;
        width: 250px;
        gap: 64px;
    }

    .btn-primary {
        height: 30px;
        width: 120px;
        font-size: 10px;
    }
}

/* Slide menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(7, 8, 12, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transition: right 0.4s ease;
    z-index: 1000;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent-1);
}

.mobile-nav .close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 34px;
    cursor: pointer;
}

.about-hero {
    background: linear-gradient(to bottom, #020a3a 20%, #0a1f7a 50%, #1a33c8 100%);
}

/* .about-hero{
  background-image: url(../images/banner.jpg);
  background-color: #000411;
} */
/* ================= TABS ================= */
.tabs {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 50px;
}

.tab {
    display: flex;
    height: 40px;
    width: auto;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #0f111f;
    /* border: 1px solid #1f2d4d; */
    cursor: pointer;
    font-size: 15px;
    color: #9ba3b4;
    white-space: nowrap;
    border: 2px solid transparent;
}

.tab:hover {
    color: #fff;
    border: 2px solid #0066ff;
    background: #000411;
    height: 40px;
    width: auto;

}

/* Active tab – gradient matching index.html */
.use-cases-section .tab.active {
    background: linear-gradient(90deg, #0066ff, #36c5f3);
    color: #fff;
    border-color: black;
}

.tab img {
    width: 16px;
    height: 16px;
}

/* ── USE CASES SECTION BACKGROUND ── */
/* .use-cases-section {
  background: radial-gradient(circle at top, #000409 0%, #000000 60%);
} */

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    max-width: 100%;
    margin: auto;
}

.section-header span {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
}

.section-header h1 {
    font-size: clamp(28px, 4vw, 46px);
    margin: 0px 0;
}

.section-title h1 {
    font-size: 46px !important;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    justify-self: center;
}

/* ── BADGE (use cases section) ── */
.use-cases-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0);
    padding: 8px 18px 0px;
    color: white;
    border-radius: 30px;
    font-size: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.use-cases-section .badge span {
    width: 20px;
    height: 20px;
    color: white;
    background: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ── CONTENT WRAPPER ── */
.content-wrapper {
    margin-top: 70px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.concenter {
    justify-content: center;
}

/* ── LEFT CONTENT ── */
.use-cases-section .left {
    padding-left: 130px;
}

.use-cases-section .left-icon {
    width: 60px;
    height: 60px;
    background: #0d1b33;
    border-radius: 14px;
    display: contents;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-cases-section .left-icon img {
    width: 32px;
    display: none;
}

.use-cases-section .left h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.use-cases-section .left h4 {
    background: linear-gradient(90deg, #0066ff, #36c5f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    margin-bottom: 20px;
}

.use-cases-section .left p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    width: 560px;
    font-size: 16px;
    font-weight: 400;
}

.use-cases-section .left ul {
    list-style: none;
}

.use-cases-section .left ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
}

.use-cases-section .left ul li::before {
    content: "✔";
    background: linear-gradient(90deg, #0066ff, #36c5f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
}

/* ── RIGHT CARD ── */
.use-cases-section .right {
    width: 400px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.use-cases-section .card {
    background: #0f111f;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid transparent;
    width: 355px;
}

.use-cases-section .card img {
    width: 50px;
    margin-bottom: 20px;
}

.use-cases-section .card h3 {
    font-size: 78px;
    color: #66a3ff;
}

.use-cases-section .card p {
    color: #9ba3b4;
    margin-top: 10px;
    font-size: 16px;
}

#statText-product {
    font-weight: bold;
}

/* ── RESPONSIVE for use cases section ── */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-top: 0px;
    }

    .use-cases-section .left,
    .use-cases-section .right {
        width: 100%;
    }

    .use-cases-section .left {
        padding-left: 40px;
    }

    .use-cases-section .card {
        max-width: 500px;

    }


}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .use-cases-section .tabs {
        flex-wrap: wrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        padding-left: 40px;
        gap: 0px;
    }

    .use-cases-section .left h2 {
        font-size: 16px;
    }

    .use-cases-section .left p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .perf-answer {
        font-size: 14px !important;
    }

    .perf-answer-list li {
        font-size: 14px !important;
    }

    .feature-card {
        font-size: 16px !important;
    }

    .feature-card p {
        font-size: 14px !important;
    }

    .use-cases-section .card {
        padding: 35px 25px;
        width: auto;
    }

    .use-cases-section .card h3 {
        font-size: 36px;
    }

    .use-cases-section .left p {
        width: auto;
    }
}

@media (max-width: 480px) {
    .use-cases-section .card h3 {
        font-size: 30px;
    }

    .use-cases-section .left p {
        width: auto;
        font-size: 14px;
    }

    .use-cases-section .left ul li {
        font-size: 14px;
    }
}

/* ── PERFORMANCE GRID (Sova layout) ── */
.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
}

/* ── LEFT: TAB MENU ── */
.perf-tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.perf-item {
    /* border-left: 3px solid #191C28; */
    transition: border-color 0.3s ease;
    cursor: pointer;
    padding: 24px 0 24px 28px;
    position: relative;
}

.perf-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.perf-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.perf-item.active {
    border-bottom-color: var(--accent-1);
}

.perf-item.active[data-color="blue"] {
    border-bottom-color: var(--accent-1);
}

.perf-item.active[data-color="purple"] {
    border-bottom-color: var(--accent-1);
}

.perf-item.active[data-color="green"] {
    border-bottom-color: var(--accent-1);
}

.perf-question-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.perf-question {
    font-size: 15px;
    font-weight: 600;
    color: rgba(240, 241, 245, 0#22C55E 7);
    transition: color 0.3s;
    line-height: 1.4;
}

.perf-item.active .perf-question {
    color: #f0f1f5;
}

/* Arrow icon (simple SVG inline arrow, rotates on active) */
.perf-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
    opacity: 0.4;
}

/* .perf-item.active .perf-arrow {
  transform: rotate(180deg);
  opacity: 1;
} */

/* Collapsible answer */
.perf-answer-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease;
    opacity: 0;
}

.perf-item.active .perf-answer-wrap {
    max-height: 600px;
    opacity: 1;
}

.perf-answer {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    padding-top: 12px;
    padding-right: 32px;
}

/* Bullet list inside answer */
.perf-answer-list {
    list-style: none;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perf-answer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.perf-answer-list li span.check {
    font-size: 10px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stat pill inside item (shows when active) */
.perf-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 11px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.perf-item.active .perf-stat {
    opacity: 1;
    transform: translateY(0);
}

/* ── RIGHT: TAB CONTENT ── */
.perf-tabs-content {
    position: sticky;
    top: 40px;
}

.perf-pane {
    display: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    animation: paneFadeIn 0.4s ease;
}

.perf-pane.active {
    display: block;
}

/* @keyframes paneFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
} */

/* Terminal card inside pane */
.terminal-card {
    background: #0b0d14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.terminal-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot-r {
    background: #ff5f57;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #28ca41;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-family: monospace;
    font-size: 11px;
    color: rgba(240, 241, 245, 0.3);
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 28px 32px;
    font-family: monospace;
    font-size: 12.5px;
    line-height: 2;
    color: rgba(240, 241, 245, 0.5);
}

.t-h {
    color: #36c5f3;
    font-weight: 600;
}

/* header */
.t-ph {
    color: #7b5cf5;
    font-weight: 600;
}

/* purple header */
.t-gh {
    color: #22c55e;
    font-weight: 600;
}

/* green header */
.t-a {
    color: #7b5cf5;
}

/* accent */
.t-b {
    color: #4f7bf7;
}

/* blue */
.t-s {
    color: #22c55e;
}

/* success */
.t-d {
    color: rgba(240, 241, 245, 0.2);
}

/* dim */

.terminal-statusbar {
    padding: 12px 20px;
    border-top: 1px solid;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 11px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 4px rgba(current, 0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .perf-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .perf-tabs-content {
        position: static;
    }
}

@media (max-width: 600px) {
    .ce-section {
        padding: 70px 20px 80px;
    }
}

.newtabs {
    gap: 30px;
    /* padding-bottom: 50px; */
    border-radius: 10px;
    /* margin-right: 70px;
    margin-left: 178px; */
    padding: 5px 0;
    max-width: 1024px;
    justify-content: center;
    display: flex;
    margin: 50px auto;
    background-color: #0f111f;
    /* border: 1px solid rgba(208, 208, 208, 0.319); */
}

@media (min-width: 769px) {
    .concenter {
        margin-right: 85px;
    }
}


.card {
    background: #000411;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px solid transparent;

}

.card:hover {
    border: 2px solid #0066ff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ── FEATURES GRID (Security section) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding-left: 20px;
    padding-right: 20px;
}

@media(max-width:767px) {
    .features-grid {

        padding-left: 0px;
        padding-right: 0px;
    }
}

.feature-card {
    background: #0f111f;
    border-radius: 16px;
    padding: 32px 28px;
    border: 2px solid transparent;
}

.feature-card:hover {
    border: 2px solid #0066ff;

    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.feature-icon {
    width: 52px;
    height: 52px;
    /* border-radius: 12px;
  background: rgba(79, 123, 247, 0.1);
  border: 1px solid rgba(79, 123, 247, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f0f1f5;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #4f7bf7, #7f5af0, #ff6ec4); */
}

/* Gradient bottom line */
.faq-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff);
}

/* Hover effect */
.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item:hover::before,
.faq-item:hover::after {
    width: 100%;
}

/* Active (clicked) */
/* .faq-item.active::before,
.faq-item.active::after{
  width:100%;
} */
.section-center .badge span {
    width: 20px;
    height: 20px;
    color: white;
    background: #0066ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.section .badge {
    font-size: 16px !important;
    letter-spacing: 0px;
}

.perf-tabs-content {
    height: 100%;
    box-shadow: 0 0 10px #0066ff, 0 0 20px #0066ff, 0 0 40px #0066ff;
    border-radius: 20px;
}

.perf-pane {
    height: 100%;
}

.terminal-card {
    height: 100%;
}

@media (max-width: 565px) {
    .perf-mobile {
        padding: 0 !important;
    }
}

.boxs {
    margin-top: -20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 50px;
}

.box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #292a2a00;
    cursor: pointer;
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
    background: #0d1b3300;
    border-radius: 10px;
    cursor: default;
}

.box img {
    width: 16px;
    height: 16px;
}



@media (max-width: 768px) {
    .content-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .right {
        position: static !important;
        top: auto !important;
    }


    .perf-tabs-menu {

        margin-top: -100px;
    }
}

/* Layout */
.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Mobile layout */
@media (max-width: 768px) {
    .perf-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide all panes by default */
.perf-pane {
    display: none;
}

/* ================= DESKTOP ================= */

/* Show only active right-side pane */
.desktop-active-tabs.active {
    display: block;
}

/* Hide mobile accordion in desktop */
.mobile-active-tabs {
    display: none !important;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* Hide right-side content */
    .desktop-active-tabs {
        display: none !important;
    }

    /* Show accordion content only for active tab */
    .perf-item.active .mobile-active-tabs {
        display: block !important;
    }

}

.mobile-active-tabs {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .tabs-responsive {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        gap: 10px !important;
        padding-left: initial !important;
        padding: 10px !important;

    }

    .tabs-responsive .tab {
        white-space: wrap;
        line-height: 13px;
    }

    .one-platform-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    h1,
    h2,
    h3,
    h4 {
        line-height: 110% !important;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {

    #tabs-product {
        z-index: 100;
        display: ruby-text !important;
        padding: 10px 0;
        margin-left: -20px;
    }

    .use-cases-section .card {
        max-width: 500px;
        margin-left: 40px;
    }

    .scroll-section {
        position: relative;
        height: auto;
    }

}

@media only screen and (min-width: 768px) and (max-width: 834px) and (orientation: portrait) {
    .content-wrapper.concenter {
        display: flex;
        flex-direction: column;
        /*margin-top: -60px;*/
    }

}