/* ==========================================================================
   Cybernet Solutions — Modern UI
   ========================================================================== */

:root {
    --c-primary: #2D5BFF;
    --c-primary-600: #2148E0;
    --c-primary-700: #1B3FCC;
    --c-primary-50: #EEF2FF;
    --c-primary-100: #DCE4FF;
    --c-accent: #7BFFB1;
    --c-accent-2: #A78BFA;
    --c-dark: #0B1020;
    --c-text: #0F172A;
    --c-text-2: #475569;
    --c-text-3: #64748B;
    --c-border: #E5E9F2;
    --c-border-2: #EFF2F8;
    --c-bg: #FFFFFF;
    --c-bg-soft: #F7F9FC;
    --c-bg-mute: #F1F4FB;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --shadow-blue: 0 16px 40px rgba(45, 91, 255, 0.25);

    --container: 1200px;
    --gutter: clamp(20px, 4vw, 48px);

    --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; margin: 0; line-height: 1.15; letter-spacing: -0.02em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.text-gradient {
    background: linear-gradient(135deg, #2D5BFF 0%, #6B8AFF 60%, #A78BFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all .25s var(--ease);
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.btn-lg { font-size: 15px; padding: 14px 26px; }
.btn-full { width: 100%; }
.btn-primary {
    background: var(--c-primary);
    color: white;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: var(--c-primary-600);
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(45, 91, 255, 0.32);
}
.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-border);
}
.btn-ghost:hover { border-color: var(--c-text); }
.btn-dark {
    background: var(--c-dark);
    color: white;
}
.btn-dark:hover { background: #1A2240; transform: translateY(-2px); }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--c-border);
    box-shadow: 0 4px 24px rgba(15,23,42,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 17px; color: var(--c-text); }
.brand-sub { font-size: 11px; font-weight: 500; color: var(--c-text-3); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 3px; }

.primary-nav ul { display: flex; gap: 8px; }
.nav-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-2);
    transition: all .25s var(--ease);
}
.nav-link:hover { color: var(--c-text); background: var(--c-bg-mute); }
.nav-link.active { color: var(--c-primary); background: var(--c-primary-50); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-2);
    border-radius: 999px;
    transition: background .2s;
}
.lang-toggle:hover { background: var(--c-bg-mute); }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--c-bg-mute);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all .25s var(--ease);
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(15,23,42,0.08);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 200;
    padding: 96px 28px 28px;
    display: flex;
    flex-direction: column;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav-inner { display: flex; flex-direction: column; flex: 1; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
    display: block;
    padding: 14px 8px;
    font-family: 'Plus Jakarta Sans';
    font-size: 22px;
    font-weight: 600;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border-2);
}
.mobile-link.active { color: var(--c-primary); }
.mobile-nav-footer { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.lang-mobile {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--c-text-2);
    font-size: 14px;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,16,32,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    z-index: 150;
    backdrop-filter: blur(4px);
}
body.menu-open .overlay { opacity: 1; visibility: visible; }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,91,255,0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(167,139,250,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 24px;
}
.eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(45,91,255,0.18);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(45,91,255,0.18); }
    50% { box-shadow: 0 0 0 8px rgba(45,91,255,0); }
}
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-text {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--c-text-2);
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}
.avatars {
    display: inline-flex;
}
.avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
    margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg,#FF6B9D,#C44569); }
.avatar-2 { background: linear-gradient(135deg,#3D6EFF,#1B3FCC); }
.avatar-3 { background: linear-gradient(135deg,#7BFFB1,#10B981); color: #064E3B; }
.trust-meta { display: flex; flex-direction: column; line-height: 1.3; }
.trust-stars { color: #FFB400; font-size: 14px; letter-spacing: 1px; }
.trust-text { font-size: 13px; color: var(--c-text-3); }

/* Hero visual */
.hero-visual {
    position: relative;
    height: clamp(360px, 40vw, 480px);
    z-index: 1;
}
.hero-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2D5BFF 0%, #4F7BFF 50%, #A78BFA 100%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    box-shadow: 0 40px 80px rgba(45,91,255,0.35);
    animation: blob 12s ease-in-out infinite;
    z-index: 1;
}
@keyframes blob {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    50% { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
}
.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.hero-card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 360px);
    overflow: hidden;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border-2);
    background: var(--c-bg-soft);
}
.hero-card-header span {
    margin-left: auto;
    font-family: 'Inter', monospace;
    font-size: 11px;
    color: var(--c-text-3);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF6259; } .dot-y { background: #FFBD2E; } .dot-g { background: #28C940; }
.hero-card-body { padding: 18px; }
.hero-stat { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hero-stat-label { font-size: 12px; color: var(--c-text-3); font-weight: 500; }
.hero-stat-value { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 22px; color: var(--c-primary); }
.bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 12px;
    background: linear-gradient(135deg, var(--c-primary-50), #F7F9FC);
    border-radius: var(--r-md);
    margin-bottom: 14px;
}
.bars span {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(180deg, var(--c-primary), var(--c-primary-700));
    border-radius: 4px 4px 1px 1px;
    transition: height .8s var(--ease);
}
.bars span:nth-child(odd) { background: linear-gradient(180deg, #6B8AFF, var(--c-primary)); }
.hero-card-rows { display: flex; flex-direction: column; gap: 8px; }
.row-pulse {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: var(--c-bg-soft);
    border-radius: 10px;
    font-size: 13px;
}
.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
.pulse-yellow { background: #FFBD2E; box-shadow: 0 0 0 3px rgba(255,189,46,0.2); }
.pulse-label { font-weight: 500; }
.pulse-tag {
    margin-left: auto;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.pulse-ok { background: #DCFCE7; color: #166534; }
.pulse-warn { background: #FEF3C7; color: #92400E; }

.hero-floater {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
    animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-floater div { display: flex; flex-direction: column; line-height: 1.2; }
.hero-floater strong { font-size: 13px; color: var(--c-text); }
.hero-floater span { font-size: 11px; color: var(--c-text-3); }
.floater-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.floater-emoji { font-size: 24px; }
.hero-floater-1 { top: 20px; right: 0; animation-delay: 0s; }
.hero-floater-2 { bottom: 30px; left: -10px; animation-delay: 1.5s; }

/* ============ TRUSTED BAR ============ */
.trusted {
    padding: 40px 0;
    border-top: 1px solid var(--c-border-2);
    border-bottom: 1px solid var(--c-border-2);
    background: var(--c-bg-soft);
}
.trusted-label {
    text-align: center;
    font-size: 13px;
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
    font-weight: 500;
}
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 5vw, 60px);
}
.logo-item {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 18px;
    color: var(--c-text-3);
    opacity: 0.6;
    transition: opacity .25s, color .25s;
    letter-spacing: 0.02em;
}
.logo-item:hover { opacity: 1; color: var(--c-primary); }

/* ============ SECTION COMMON ============ */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}
.section-eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 2px;
    background: var(--c-primary);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.eyebrow-light::before { background: rgba(255,255,255,0.85); }
.section-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 720px;
}
.section-text {
    font-size: 16px;
    color: var(--c-text-2);
    max-width: 620px;
    margin: 0;
}
.section-text-narrow { max-width: 380px; }
.section-head { margin-bottom: 56px; }
.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

/* ============ ABOUT ============ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.bullet-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--c-text);
}
.bullet-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    padding: 32px 24px;
    background: var(--c-bg-soft);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card-1, .stat-primary {
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
    color: white;
    border-color: transparent;
    transform: translateY(-12px);
}
.stat-primary:hover { transform: translateY(-18px); box-shadow: var(--shadow-blue); }
.stat-dark {
    background: var(--c-dark);
    color: white;
    border-color: transparent;
    transform: translateY(12px);
}
.stat-dark:hover { transform: translateY(6px); }
.stat-number {
    display: block;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

/* ============ SERVICES ============ */
.services { background: var(--c-bg-soft); }
.services .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.services .section-head .section-eyebrow,
.services .section-head .section-title,
.services .section-head .section-text { margin-left: auto; margin-right: auto; }
.services .section-head .section-eyebrow { display: inline-block; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary-100);
}
.service-card-featured {
    background: linear-gradient(160deg, var(--c-primary), var(--c-primary-700));
    color: white;
    border-color: transparent;
}
.service-card-featured:hover { box-shadow: var(--shadow-blue); }
.featured-tag {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--c-accent);
    color: #064E3B;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--c-primary-50);
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card-featured .service-icon {
    background: rgba(255,255,255,0.15);
    color: white;
}
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    color: var(--c-text-2);
    margin: 0 0 20px;
}
.service-card-featured p { color: rgba(255,255,255,0.85); }
.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border-2);
}
.service-card-featured .service-list { border-top-color: rgba(255,255,255,0.18); }
.service-list li {
    font-size: 13px;
    color: var(--c-text-2);
    padding-left: 22px;
    position: relative;
}
.service-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--c-primary-50);
    border: 2px solid var(--c-primary);
}
.service-card-featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card-featured .service-list li::before {
    background: rgba(255,255,255,0.2);
    border-color: var(--c-accent);
}
.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--c-primary);
    font-size: 14px;
    transition: gap .25s var(--ease);
}
.service-link:hover { gap: 10px; }
.service-card-featured .service-link { color: var(--c-accent); }

/* ============ PILLARS ============ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pillar {
    padding: 36px 28px;
    background: var(--c-bg-soft);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-num {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 14px;
    color: var(--c-primary);
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}
.pillar h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.pillar p { color: var(--c-text-2); margin: 0; font-size: 15px; }
.pillar-accent {
    background: var(--c-dark);
    color: white;
    border-color: transparent;
}
.pillar-accent .pillar-num { background: rgba(255,255,255,0.1); color: var(--c-accent); }
.pillar-accent p { color: rgba(255,255,255,0.75); }

/* ============ FOUNDER ============ */
.founder {
    background: var(--c-bg-soft);
    position: relative;
    overflow: hidden;
}
.founder::before {
    content: "";
    position: absolute;
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(45,91,255,0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.founder::after {
    content: "";
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(167,139,250,0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.founder-inner {
    position: relative;
    z-index: 1;
}
.founder-centered {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.founder-centered .section-eyebrow,
.founder-centered .section-title,
.founder-centered .section-text {
    margin-left: auto;
    margin-right: auto;
}
.founder-centered .section-eyebrow { display: inline-block; }
.founder-centered .section-title { font-size: clamp(34px, 4.5vw, 56px); }
.founder-role {
    font-weight: 600;
    color: var(--c-text-2);
    font-size: 16px;
    margin: 0 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.founder-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    border: 1px solid var(--c-border-2);
}
.founder-badge-inline svg {
    background: var(--c-primary);
    border-radius: 50%;
    padding: 3px;
    width: 18px; height: 18px;
    box-sizing: border-box;
}
.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    justify-content: center;
}
.tag {
    padding: 6px 14px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--c-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-2);
}

/* ============ TIMELINE ============ */
.timeline-section .section-head { text-align: center; }
.timeline-section .section-head .section-eyebrow { display: inline-block; }
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.timeline-line {
    position: absolute;
    top: 22px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent-2));
    z-index: 0;
}
.timeline-item {
    position: relative;
    padding-top: 60px;
    text-align: center;
}
.timeline-year {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--c-primary);
    color: var(--c-primary);
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.timeline-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--c-text-2); margin: 0; }

.growth-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    background: var(--c-dark);
    color: white;
    border-radius: var(--r-lg);
    flex-wrap: wrap;
}
.growth-label {
    display: inline-block;
    font-size: 12px;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 600;
}
.growth-text { font-size: 18px; font-weight: 500; max-width: 540px; margin: 0; line-height: 1.4; }
.growth-figure { display: flex; align-items: center; gap: 16px; }
.growth-number {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 56px;
    color: var(--c-accent);
    line-height: 1;
}

/* ============ TESTIMONIALS ============ */
.testimonials .section-head { text-align: center; }
.testimonials .section-head .section-eyebrow { display: inline-block; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial {
    padding: 32px 28px;
    background: white;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-2);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #FFB400; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: 16px; color: var(--c-text); margin: 0 0 24px; flex: 1; line-height: 1.5; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-author div { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial-author strong { font-size: 14px; color: var(--c-text); }
.testimonial-author span { font-size: 12px; color: var(--c-text-3); }
.testimonial-feature {
    background: linear-gradient(160deg, var(--c-primary), var(--c-primary-700));
    color: white;
    border-color: transparent;
    transform: translateY(-12px);
}
.testimonial-feature:hover { transform: translateY(-18px); box-shadow: var(--shadow-blue); }
.testimonial-feature .testimonial-quote { color: white; }
.testimonial-feature .testimonial-author strong { color: white; }
.testimonial-feature .testimonial-author span { color: rgba(255,255,255,0.7); }

/* ============ CTA ============ */
.cta-section { padding-bottom: clamp(64px, 8vw, 100px); }
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-700) 100%);
    color: white;
    padding: clamp(40px, 6vw, 64px);
    border-radius: var(--r-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: start;
    overflow: hidden;
    box-shadow: var(--shadow-blue);
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.shape-1 { top: -100px; right: -100px; width: 300px; height: 300px; }
.shape-2 { bottom: -80px; left: 30%; width: 200px; height: 200px; background: rgba(123,255,177,0.12); }
.shape-3 { top: 30%; right: 30%; width: 100px; height: 100px; background: rgba(167,139,250,0.15); }
.cta-copy { position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}
.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
    max-width: 460px;
}
.cta-meta { display: flex; flex-direction: column; gap: 12px; }
.cta-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}
.cta-meta-item svg {
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 10px;
    width: 34px; height: 34px;
    box-sizing: border-box;
}

.cta-form {
    position: relative;
    z-index: 1;
    background: white;
    padding: 32px;
    border-radius: var(--r-lg);
    color: var(--c-text);
    box-shadow: var(--shadow-lg);
}
.cta-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-form label {
    display: block;
    margin-bottom: 16px;
}
.cta-form label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}
.cta-form input, .cta-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--c-text);
    background: var(--c-bg-soft);
    transition: border-color .25s, background .25s;
    resize: vertical;
}
.cta-form input:focus, .cta-form textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row label { margin-bottom: 16px; }
.form-note {
    margin-top: 12px;
    padding: 10px 14px;
    background: #DCFCE7;
    color: #166534;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--c-dark);
    color: rgba(255,255,255,0.75);
    padding-top: 64px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .brand-name { color: white; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.55); }
.footer-brand .brand-mark {
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.65); margin: 16px 0 24px; max-width: 320px; }
.socials { display: flex; gap: 8px; }
.social {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: background .25s, color .25s, transform .25s;
}
.social:hover { background: var(--c-primary); color: white; transform: translateY(-2px); }
.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0 0 14px; }
.subscribe-form {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    padding: 6px;
    border-radius: 999px;
}
.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 14px;
    font-family: inherit;
    color: white;
    font-size: 13px;
    outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-form button {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, transform .25s;
}
.subscribe-form button:hover { background: var(--c-primary-600); transform: translateX(2px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-legal a:hover { color: white; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { max-width: 480px; margin: 0 auto; height: 420px; }
    .about-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-feature { transform: none; }
    .testimonial-feature:hover { transform: translateY(-6px); }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
    .timeline-line { display: none; }
    .cta-card { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .primary-nav { display: none; }
    .header-cta { display: none; }
    .lang-toggle { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-inner { height: 64px; }

    .hero { padding: 60px 0 80px; }
    .hero-title { font-size: clamp(36px, 9vw, 56px); }
    .hero-text { font-size: 15px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { flex: 1 1 auto; min-width: 0; }

    /* Simplified hero visual on mobile: dashboard mock only, framed by a soft blob bg */
    .hero-visual {
        height: auto;
        min-height: 0;
        max-width: 100%;
        margin: 8px 0 0;
        padding: 24px 0 32px;
    }
    .hero-blob {
        position: absolute;
        inset: 12px 8% 12px 8%;
        border-radius: 32px;
        opacity: 0.85;
        box-shadow: 0 24px 48px rgba(45,91,255,0.28);
    }
    .hero-card-main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        width: min(92%, 340px);
    }
    .hero-floater {
        position: absolute;
        animation-duration: 5s;
    }
    .hero-floater-1 {
        top: 8px;
        right: 4%;
        left: auto;
    }
    .hero-floater-2 {
        bottom: 8px;
        left: 4%;
        right: auto;
    }
    .hero-floater strong { font-size: 12px; white-space: nowrap; }
    .hero-floater span { font-size: 10px; white-space: nowrap; }

    .about-stats { grid-template-columns: 1fr 1fr; }
    .stat-primary, .stat-dark { transform: none; }
    .stat-primary:hover, .stat-dark:hover { transform: translateY(-6px); }

    .services-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; gap: 32px; }
    .section-head-row { flex-direction: column; align-items: flex-start; }

    .growth-card { flex-direction: column; align-items: flex-start; text-align: left; }

    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .cta-form { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-floater { padding: 8px 12px; }
    .hero-floater strong { font-size: 12px; }
    .hero-floater span { font-size: 10px; }
    .floater-icon { width: 30px; height: 30px; }
    .stat-card { padding: 24px 18px; }
    .service-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
