:root {
    --primary: #2666ff;
    --accent: #00c48c;
    --bg-light: #f5f7fb;
    --bg-soft: #f3f5ff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --card-radius: 18px;

    --footer-bg: #020617;

    --font-main: "Inter", sans-serif;
    --letter-tight: -0.02em;
    --footer-text: #9ca3af;
}


h1 {
    font-weight: 800;
    letter-spacing: var(--letter-tight);
    line-height: 1.05;
}

h2 {
    font-weight: 700;
    letter-spacing: var(--letter-tight);
}

p, li {
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Global */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Inter", "Segoe UI", sans-serif;

    background-color: #e8ecf4 !important;
    color: var(--text-main);
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 251, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.logo-mark {
    width: 32px;
    height: 32px;
}

.logo-mark-sm {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link {
    font-size: 14px;
    color: #4b5563;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

.btn-login {
    font-size: 14px;
    color: #4b5563;
}

.btn-login:hover {
    text-decoration: none;
    color: var(--primary);
}

.btn-pill {
    border-radius: 999px;
}

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

.btn-primary:hover {
    background-color: #2053d1;
    border-color: #2053d1;
}
.hero {
    position: relative;
    overflow: hidden;
    background-color: #e8ecf4 !important;
}

/* LEFT SIDE ONLY PARTICLES */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;      /* ONLY left half of hero */
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;   /* soft and subtle */
}

/* Hero content stays above particles */
.hero-grid {
    position: relative;
    z-index: 2;
}



.hero-title {
    font-size: clamp(2.1rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 430px;
}

.hero-actions .btn {
    font-size: 0.9rem;
}

/* demo link */

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-main);
}

.demo-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

/* support card */

.support-card {
    margin-top: 32px;
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 18px 20px;
    max-width: 430px;
    font-size: 0.85rem;
}

.support-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.support-text {
    color: #6b7280;
}

.support-handle {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.scroll-indicator {
    margin-top: 32px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

/* Robot panel */

.hero-robot-wrap {
    text-align: center;
}

/* ===== Transparent Robot & Phone Images (Override) ===== */

.robot-panel {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.robot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Remove the vertical glass line */
.robot-glass-line {
    color: #414150;
    position: relative;
    z-index: 400;
    background: transparent !important;
    background-size: 520px auto; /* adjust size if needed */
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Phone card transparent */
.phone-card {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Phone image itself stays responsive */
.phone-img {
    width: 100%;
    height: auto;
    display: block;
}


/* Sections general */

.section-padding {
    padding: 60px 0;
}

.bg-soft {
    background: var(--bg-soft);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* How it works */


/* Feature card */

.feature-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
    padding: 24px 26px;
    font-size: 0.92rem;
}

.feature-note {
    font-size: 0.9rem;
    padding: 12px 14px;
    border-radius: 11px;
    background: #f9fafb;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.feature-note-icon {
    font-size: 1rem;
    color: #f59e0b;
    margin-top: 2px;
}

.feature-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-line-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-line-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.feature-line-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features grid */

.feature-tile {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 20px;
    height: 100%;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-tile-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-tile-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing */

.pricing-card {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 24px;
    padding: 24px 24px 26px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-currency {
    font-size: 1.25rem;
}

.pricing-period {
    font-size: 0.85rem;
    color: #9ca3af;
}

.pricing-note {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.pricing-list {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pricing-list i {
    color: #22c55e;
}

/* Form */

.signup-form label {
    font-size: 0.85rem;
    color: #d1d5db;
}

.signup-form .form-control {
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: #020617;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.signup-form .form-control::placeholder {
    color: #6b7280;
}

.signup-form .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.4);
}

.form-caption {
    font-size: 0.75rem;
    color: #9ca3af;
}

.form-caption a {
    color: #c4b5fd;
    text-decoration: underline;
}

/* FAQ */

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 0.9rem;
    box-shadow: 0 12px 36px rgba(148, 163, 184, 0.35);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 600;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 8px;
    color: var(--text-muted);
}
/* Pricing section tweaks */
.pricing-section {
    position: relative;
}

.pricing-heading {
    font-size: 1.1rem;
    font-weight: 600;
}

.text-gray-400 {
    color: #9ca3af;
}

/* Billing toggle pills */
.billing-toggle {
    display: inline-flex;
    padding: 3px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.75rem;
}

.billing-pill {
    border: 0;
    border-radius: 999px;
    padding: 4px 10px;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.18s ease, color 0.18s ease;
}

.billing-pill.is-active {
    background: #f9fafb;
    color: #111827;
}

.badge-save {
    background: rgba(52, 211, 153, 0.15);
    color: #22c55e;
    border-radius: 999px;
    padding: 1px 6px;
    font-size: 0.7rem;
}

/* Price wrap */
.pricing-price-wrap {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 12px;
    margin-top: 4px;
}

/* FAQ grid */
.faq-grid details {
    transition: box-shadow 0.18s ease, transform 0.08s ease;
}

.faq-grid details:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    transform: translateY(-1px);
}

/* FOOTER */

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 32px;
    padding-bottom: 24px;
    margin-top: 40px;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 600;
    color: #e5e7eb;
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.85rem;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
}

.footer-links a:hover {
    color: #e5e7eb;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #1f2937;
    color: #9ca3af;
    margin-right: 8px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #e5e7eb;
    border-color: #4b5563;
}

.footer-bottom {
    border-top: 1px solid #111827;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 0.8rem;
    text-align: center;
}
/* ===== LANGUAGE SWITCHER (simple version) ===== */

.lang-switcher {
    --bg: #ffffff;
    --fg: #0f172a;
    --bd: #e5e7eb;
    --hover: #f3f4f6;
    --active: #2563eb;
    --shadow: 0 10px 24px rgba(15, 23, 42, 0.12);

    position: relative;
    z-index: 60;
    font-family: inherit;
}

/* trigger button – simple light pill */

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--bd);
    background: var(--bg);
    color: var(--fg);
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1;
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.06s ease;
}

.lang-btn:hover {
    background-color: var(--hover);
    border-color: #d1d5db;
    box-shadow: 0 3px 10px rgba(148, 163, 184, 0.35);
}

.lang-btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

.lang-btn img {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
}

.lang-btn svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.18s ease;
}

.lang-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.lang-code {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
}

/* dropdown panel */

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 0.4rem;
    width: 76px;
    max-height: min(60vh, 320px);
    overflow: auto;
    box-shadow: var(--shadow);
}

.lang-menu[hidden] {
    display: none;
}

.lang-grid {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* flag buttons */

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    background: transparent;
    border: 1px solid var(--bd);
    border-radius: 0.55rem;
    cursor: pointer;
    padding: 0;
    transition:
        background-color 0.12s ease,
        border-color 0.12s ease,
        transform 0.06s ease;
}

.lang-flag img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: block;
}

.lang-flag:hover {
    background: var(--hover);
    border-color: #d1d5db;
}

.lang-flag:active {
    transform: translateY(1px);
}

.lang-flag.is-active {
    border-color: var(--active);
    background-color: rgba(37, 99, 235, 0.06);
}

/* Scrollbar */

.lang-menu {
    scrollbar-width: thin;
    scrollbar-color: #c7c9d1 transparent;
}

.lang-menu::-webkit-scrollbar {
    width: 6px;
}

.lang-menu::-webkit-scrollbar-thumb {
    background: #c7c9d1;
    border-radius: 10px;
}

/* touch – slightly bigger flags */

@media (pointer: coarse) {
    .lang-flag {
        height: 44px;
    }

    .lang-btn img {
        width: 22px;
        height: 22px;
    }
}


/* Responsive tweaks */

@media (max-width: 991.98px) {
    .hero {
        padding-top: 64px;
    }

    .network-bg {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .robot-panel {
        border-radius: 30px;
        margin-top: 32px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding-top: 56px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .support-card {
        margin-top: 24px;
    }

    .scroll-indicator {
        margin-top: 24px;
    }

    .phone-card {
        padding: 24px 18px;
    }
}

@media (pointer: coarse) {
    .lang-flag {
        height: 48px;
    }

    .lang-btn img {
        width: 24px;
        height: 24px;
    }
}
section ,header , footer{
    background-color: #e8ecf4 !important;
    color: black !important;
}

footer a
,footer h3
,footer span
,section li{
    color: black !important;
}
/* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.testimonial-card-main {
    grid-column: span 2;
}

.testimonial-text {
    margin: 0 0 8px;
}

.testimonial-meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive testimonials grid */
@media (max-width: 991.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .testimonial-card-main {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card-main {
        grid-column: span 1;
    }
}
@media (max-width: 991.98px) {
    #mainNav {
        background: #e8ecf4;
        padding: 0.75rem 1rem 1rem;
        margin-top: 0.5rem;
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    }

    #mainNav .nav-link {
        padding: 0.35rem 0;
        font-size: 0.95rem;
    }
}
