/* =============================================
   SAASTA — White Theme, Brand Colors
   Blue #1a6ff5 → Indigo #3730d4 → Purple #8B3FE8
   ============================================= */

:root {
    --blue: #1a6ff5;
    --blue-dark: #1355d4;
    --indigo: #3730d4;
    --purple: #8B3FE8;
    --purple-light: #a855f7;
    --brand-grad: linear-gradient(135deg, #1a6ff5 0%, #3730d4 50%, #8B3FE8 100%);
    --brand-grad-h: linear-gradient(135deg, #1355d4 0%, #2820c0 50%, #7C2FD8 100%);
    --white: #ffffff;
    --off-white: #f8faff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-main: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --border-brand: rgba(26, 111, 245, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-brand: 0 8px 32px rgba(26, 111, 245, 0.25);
    --shadow-brand-lg: 0 16px 56px rgba(55, 48, 212, 0.3);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-orbit .orbit {
    border: 1px dashed #01158e; /* solid dark grey */
}
/* =========================================
   SERVICES SECTION — PROFESSIONAL LAYOUT
   ========================================= */

.solutions-full {
    padding-top: 120px;
}

/* card layout */
.solution-full-card {
    max-width: 1000px;
    margin: 0 auto 120px;
}

/* title spacing */
.solution-number {
    font-size: 64px;
    margin-bottom: 10px;
}

.section-tag {
    margin-bottom: 14px;
}

.solution-full-title {
    font-size: 34px;
    margin-bottom: 24px;
}

/* image style */
.solution-service-image {
    margin: 30px 0 28px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.solution-service-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* description */
.solution-full-desc {
    
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: var(--text-muted);
}

/* feature list */
.solution-features {
    margin-bottom: 30px;
}

.solution-features li {
    font-size: 15px;
    line-height: 1.7;
}

/* button */
.solution-full-content .btn-primary {
    margin-top: 10px;
}

/* spacing between sections */
.solution-full-card:not(:last-child) {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

/* mobile */
@media(max-width:768px) {

    .solution-service-image img {
        height: 220px;
    }

    .solution-number {
        font-size: 46px;
    }

    .solution-full-title {
        font-size: 26px;
    }

}

/* ─────────────────────────
   PAGE HERO (Clean Version)
   ───────────────────────── */

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 24px 120px;
}

/* Background Image */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/images/about-bg.jpg") center/cover no-repeat;
    z-index: 1;
}

/* Overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(6, 12, 30, 0.85) 0%,
            rgba(6, 12, 30, 0.65) 50%,
            rgba(6, 12, 30, 0.35) 100%);
    z-index: 2;
}

/* Content */
.page-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    color: white;
}

/* Title */
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;

    /* SAME GRADIENT AS HOME HERO */
    background: linear-gradient(90deg,
            #ffffff 0%,
            #dbeafe 30%,
            #1a6ff5 50%,
            #dbeafe 70%,
            #ffffff 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    background-size: 200% auto;
    animation: gradShift 5s ease infinite;
}

/* Subtitle */
.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
    margin-top: 10px;
    color: #e5e7eb;
}

/* Mobile */
@media(max-width:768px) {

    .page-hero {
        height: 420px;
        padding: 120px 20px 80px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 15px;
    }

}

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

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

body {
    font-family: var(--font-body);
    background: radial-gradient(circle, #1a6ff530, transparent 60%);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-grad);
    border-radius: 2px;
}

/* ── Scroll Progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--brand-grad);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(26, 111, 245, 0.5);
}

/* ── Custom Cursor ── */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(26, 111, 245, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 44px;
    height: 44px;
    border-color: rgba(55, 48, 212, 0.5);
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

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

/* ── Navbar ── */
/* .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 40px; transition: var(--transition);
    background: transparent;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 40px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* .navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
} */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    /*flex-direction: column;*/
}

.logo-img {
  height: 108px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-grad);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-link.active {
    color: var(--indigo);
}

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: var(--brand-grad);
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-brand);
}

.nav-cta:hover {
    background: var(--brand-grad-h);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand-lg);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-top: 14px;
    gap: 2px;
    background: white;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile-link {
    padding: 11px 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-mobile-link:hover {
    color: var(--blue);
}

.nav-mobile-cta {
    margin-top: 10px;
    padding: 12px 24px;
    text-align: center;
    border-radius: var(--radius-sm);
    background: var(--brand-grad);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── Hero ── */
.hero-canvas,
.hero-dots,
.hero-glow-1,
.hero-glow-2 {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(26, 111, 245, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 245, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 63, 232, 0.08) 0%, transparent 70%);
    bottom: 0;
    left: -80px;
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.7;
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(26, 111, 245, 0.08);
    border: 1px solid rgba(26, 111, 245, 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-grad);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #dbeafe 30%,
            #1a6ff5 50%,
            #dbeafe 70%,
            #ffffff 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    background-size: 200% auto;
    animation: gradShift 5s ease infinite;
}

/* Mobile view */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--white);
    line-height: 1.75;
    margin-bottom: 44px;
    font-weight: 400;
    max-width: 680px;
    /* fix */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 48px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-plus {
    font-family: var(--font-display);
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator {
    width: 18px;
    height: 28px;
    border: 1.5px solid var(--gray-300);
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 5px;
    background: var(--brand-grad);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 16px;
        opacity: 0;
    }
}

/* ── Gradient Text ── */
.gradient-text {
    background: linear-gradient(90deg, #031ea7, #8B3FF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    background: var(--brand-grad);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-brand);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
}

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

.btn-primary.large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary.small {
    padding: 9px 20px;
    font-size: 0.83rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(26, 111, 245, 0.04);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid rgba(26, 111, 245, 0.35);
}

.btn-outline:hover {
    background: rgba(26, 111, 245, 0.06);
    border-color: var(--blue);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
}

.btn-ghost:hover {
    color: var(--indigo);
}

/* ── Cards ── */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

/* ── Section Tags ── */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(26, 111, 245, 0.08);
    border: 1px solid rgba(26, 111, 245, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--brand-grad);
}

.blue-1 {
    color: var(--white) !important;
}

.section-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 14px;
    font-weight: 400;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 400;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-lead {
    margin: 0 auto;
}

/* ── About Preview ── */

.typing-text {
    overflow: hidden;
    border-right: 3px solid #1a6ff5;
    width: 0;
    max-width: 520px;
    /* controls line break like first image */
    animation: typing 3s steps(40, end) forwards, blink 0.7s infinite;
}

/* typing animation */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 520px;
    }
}

.cursor {
    color: #1a6ff5;
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.about-preview {
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-card {
    position: absolute;
    padding: 22px 24px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-brand);
    transform: translateY(-4px);
}

.about-card:nth-child(1) {
    top: 0;
    left: 0;
    width: 210px;
}

.about-card.float-card {
    top: 110px;
    right: 0;
    width: 210px;
    animation: floatCard 4s ease-in-out infinite;
}

.about-card.float-card-2 {
    bottom: 0;
    left: 40px;
    width: 210px;
    animation: floatCard 4s ease-in-out 2s infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.about-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.1), rgba(139, 63, 232, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.about-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ── Solutions ── */
.solutions-preview {
    background: var(--off-white);
}

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

.solution-card {
    position: relative;
    padding: 30px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    cursor: default;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    box-shadow: var(--shadow-brand);
    border-color: rgba(26, 111, 245, 0.25);
    transform: translateY(-5px);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.solution-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.solution-desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--blue);
    transition: gap 0.2s, color 0.2s;
}

.solution-link:hover {
    gap: 10px;
    color: var(--indigo);
}

.solution-card-cta {
    /* background: linear-gradient(135deg, rgba(26,111,245,0.06), rgba(139,63,232,0.06)); */
    border-color: rgba(26, 111, 245, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutions-preview {
    position: relative;
    background: url("assets/images/tech-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.solutions-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/images/home_background-2.jpg") center/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.1);
    z-index: 0;
}

.solutions-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.solutions-preview .container {
    position: relative;
    z-index: 2;
}

/* Larger founder avatar */
.founder-avatar-inner {
    width: 140px !important;
    height: 140px !important;
}

.founder-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Adjust grid gap for larger image */
.founder-card {
    gap: 56px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .founder-avatar-inner {
        width: 120px !important;
        height: 120px !important;
    }

    .founder-card {
        gap: 32px !important;
    }
}

.founder-avatar-inner {
    width: 100px;
    height: 100px;
    border-radius: 30%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(26, 111, 245, 0.25);
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.1), rgba(139, 63, 232, 0.1));
}

.founder-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(26, 111, 245, 0.25);
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.1), rgba(139, 63, 232, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(26, 111, 245, 0.15);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ── Stats ── */
.stats-section {
    position: relative;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(26, 111, 245, 0.03), transparent);
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 56px 24px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-bar {
    width: 32px;
    height: 3px;
    background: var(--brand-grad);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.stat-label-full {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* tech stack  */

.dev-ecosystem {
    position: relative;
    background: #f8faff;
    overflow: hidden;
}

.ecosystem-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #1a6ff530, transparent 60%);
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.tech-slider {
    margin-top: 60px;
    overflow: hidden;
}

.tech-track {
    display: flex;
    gap: 40px;
    animation: techScroll 15s linear infinite;
}

.ai-tech {
    max-width: 1540px !important;
    height: 60px;
}

.tech-item {
    width: 170px;
    height: 140px;
    /* background:white; */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border:1px solid #eee; */
    transition: 0.35s;
    transform-style: preserve-3d;
}

.tech-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 500;
}

.tech-item:hover {
    transform: translateY(-5px);
    /* box-shadow:0 8px 20px rgba(0,0,0,0.08); */
    background: transparent;
}

.tech-item {
    transition: transform 0.35s ease;
}

.tech-item:hover {
    transform: scale(1.18) translateY(-4px);
}

@keyframes techScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── CTA ── */
.cta-section {
    background: var(--off-white);
}

.cta-inner {
    text-align: center;
    padding: 80px 80px;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);

    width: 100%;
    margin: 0;

    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-grad);
}

.cta-bg-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 245, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    /* reduced */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-top: 20px;
}

.cta-section {
    padding-top: 0;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Page Hero ── */
/* =================================
   PAGE HERO — CHAYA STYLE
   ================================= */

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 160px 24px 120px;
}

/* Background Image */
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/images/about-bg.jpg") center/cover no-repeat;
    z-index: 1;
}

/* Dark overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(6, 12, 30, 0.85) 0%,
            rgba(6, 12, 30, 0.65) 50%,
            rgba(6, 12, 30, 0.35) 100%);
    z-index: 2;
}

/* Content */
.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    color: white;
}

/* Title */
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: white;
}

/* Subtitle */
.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
    margin-top: 10px;
    color: #e5e7eb;
}

/* Mobile */
@media(max-width:768px) {

    .page-hero {
        height: 420px;
        padding: 120px 20px 80px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 15px;
    }

}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.page-hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

.page-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    color: white;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 18px;
    color: white;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: auto;
    color: #e5e7eb;
}

/* ── About Main ── */
.about-main {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-orbit {
    position: relative;
    width: 520px;
    height: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    width: 100px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.12), rgba(139, 63, 232, 0.12));
    border: 1.5px solid rgba(26, 111, 245, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 32px rgba(26, 111, 245, 0.15);
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(26, 111, 245, 0.2);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Existing */
.orbit-1 {
    width: 150px;
    height: 150px;
    animation: orbitRotate 8s linear infinite;
}

.orbit-2 {
    width: 230px;
    height: 230px;
    animation: orbitRotate 14s linear infinite reverse;
}

.orbit-3 {
    width: 310px;
    height: 310px;
    animation: orbitRotate 20s linear infinite;
}

/* NEW ORBITS */
.orbit-4 {
    width: 370px;
    height: 370px;
    animation: orbitRotate 26s linear infinite reverse;
}

.orbit-5 {
    width: 430px;
    height: 430px;
    animation: orbitRotate 32s linear infinite;
}

.orbit-6 {
    width: 490px;
    height: 490px;
    animation: orbitRotate 38s linear infinite reverse;
}

/* Rotation animation */
@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-node {
    width: 74px;
    height: 36px;
    border-radius: 50%;
    margin-top: -17px;
    background: rgb(2 29 162);
    /*background: rgb(165, 180, 255);*/
    border: 1.5px solid rgba(26, 111, 245, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* ── Mission ── */
.mission-section {
    background: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-grad);
}

.mission-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.mission-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.1), rgba(139, 63, 232, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.mission-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 10px;
}

.mission-text {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Why ── */
.why-section {
    background: #ffffff;
}

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

.why-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    box-shadow: var(--shadow-brand);
    border-color: rgba(26, 111, 245, 0.3);
    transform: translateY(-4px);
    background: white;
}

.why-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 14px;
}

.why-title {
    font-family: var(--font-display);
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.why-desc {
    font-size: 0.865rem;
    color: var(--text-muted);
    line-height: 1.68;
}

/* ── Values ── */
.values-section {
    background: var(--off-white);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
    max-width: 560px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.value-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-grad);
    margin-top: 7px;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Solutions Full ── */
.solutions-full {
    background: white;
}

/* New layout for solution section */

.solution-full-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

/* Title first */


/* Image second */
.solution-full-visual {
    order: 2;
}

/* Content third */
.solution-full-desc,
.solution-features {
    order: 3;
}

/* Button last */
.solution-full-content .btn-primary {
    order: 4;
    margin-top: 10px;
}

.solution-full-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.solution-full-card.reverse {
    direction: rtl;
}

.solution-full-card.reverse>* {
    direction: ltr;
}

.solution-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 6px;
}

.solution-full-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text-main);
}

.solution-full-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 24px;
}

.solution-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-grad);
    flex-shrink: 0;
}

.solution-visual-card {
    background: linear-gradient(135deg, #eef3ff, #faf5ff);
    border: 1px solid rgba(26, 111, 245, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.visual-icon-large {
    width: 96px;
    height: 96px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.visual-stat-row {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.visual-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-stat span:last-child {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ── Contact ── */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(26, 111, 245, 0.1), rgba(139, 63, 232, 0.1));
    border: 1px solid rgba(26, 111, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-content h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-item-content a,
.contact-item-content span {
    font-size: 0.94rem;
    color: var(--text-main);
    transition: color 0.2s;
}

.contact-item-content a:hover {
    color: var(--blue);
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius);
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: availPulse 2s infinite;
}

@keyframes availPulse {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 16px rgba(16, 185, 129, 0.7);
    }
}

.contact-availability h4 {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 1px;
}

.contact-availability p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-form-card {
    padding: 44px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-main);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.form-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.form-input {
    background: var(--gray-50);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 111, 245, 0.1);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
    font-family: var(--font-body);
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(26, 111, 245, 0.06);
    border: 1px solid rgba(26, 111, 245, 0.25);
    font-size: 0.9rem;
    color: var(--blue);
}

.form-success.show {
    display: flex;
}

/* ── Footer ── */
.footer {
    background: var(--gray-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding: 88px 0 56px;
}

.footer-logo {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 18px;
    flex-direction: column;
}

.footer-logo-img {
    height:100px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    width: auto;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    /*opacity: 0.9;*/
}

.footer-tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
}

.social-link:hover {
    color: white;
    background: rgba(26, 111, 245, 0.3);
    border-color: rgba(26, 111, 245, 0.5);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    color: white;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.86rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-link {
    font-size: 0.8rem;
    color: #64748b;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: white;
}

/* ── Animations ── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

/* Technology Categories */
.tech-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 40px;
    position: relative;
    z-index: 2;
}

.tech-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(26, 111, 245, 0.08);
    border: 1px solid rgba(26, 111, 245, 0.2);
    color: var(--blue);
    transition: var(--transition);
}

.tech-category:hover {
    background: var(--brand-grad);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {

    .about-preview-grid,
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-preview-right {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-full-card {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .solution-full-card.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width:1025px) {

    .stats-grid .stat-item:last-child {
        grid-column: 2 / span 2 !important;
        justify-self: center;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }

    .navbar.scrolled {
        padding: 12px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 48px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 136px 24px 68px;
    }

    .solution-full-card {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .cta-actions,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary.large,
    .btn-ghost,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .hero-stats {
        display: flex;
    }
}

/* ── Founder Card ── */
.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-grad);
}

/* Founder Image Bigger */
.founder-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.founder-avatar-inner {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(26, 111, 245, 0.25);
    box-shadow: 0 0 40px rgba(26, 111, 245, 0.18);
}

.founder-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-meta {
    margin-bottom: 20px;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.founder-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 4px 12px;
    background: rgba(26, 111, 245, 0.08);
    border: 1px solid rgba(26, 111, 245, 0.2);
    border-radius: 50px;
}

.founder-bio {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 14px;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.founder-tag {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    color: var(--gray-600);
    transition: var(--transition);
}

.founder-tag:hover {
    background: rgba(26, 111, 245, 0.08);
    border-color: rgba(26, 111, 245, 0.3);
    color: var(--blue);
}

@media (max-width: 1024px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        display:block !important;
    }

    .founder-avatar {
        display: flex;
        justify-content: center;
    }
    
    .about-orbit {
        width: 308px;
        height: 420px;
    }
    .orbit-1{
      width: 110px;
      height: 110px;  
    }
    .orbit-2{
      width: 150px;
      height: 150px;  
    }
    .orbit-3{
      width: 200px;
      height: 200px;  
    }
    .orbit-4{
      width: 240px;
      height: 240px;  
    }
    .orbit-5{
      width: 280px;
      height: 280px;  
    }
    .orbit-6{
      width: 320px;
      height: 320px;  
    }
}