:root {
    --bg: #0a0d14;
    --bg-2: #0f131c;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #eef1f8;
    --muted: #9aa3b8;
    --brand-1: #6d5dfc;
    --brand-2: #36c5f0;
    --brand-3: #b14bff;
    --grad: linear-gradient(120deg, #6d5dfc 0%, #36c5f0 55%, #b14bff 100%);
    --radius: 20px;
    --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .navbar-brand, .stat-num {
    font-family: 'Sora', system-ui, sans-serif;
    letter-spacing: -0.02em;
}

.container { max-width: var(--maxw); }

a { text-decoration: none; }

::selection { background: rgba(109, 93, 252, 0.4); color: #fff; }

/* ---------- Arka plan (sade) ---------- */
.bg-minimal {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(54, 197, 240, 0.06), transparent 55%),
        linear-gradient(180deg, #0c1018 0%, var(--bg) 45%, #080a10 100%);
}

/* ---------- Navbar ---------- */
.site-nav {
    padding: 18px 0;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease, backdrop-filter .35s;
}
.site-nav.scrolled {
    padding: 10px 0;
    background: rgba(7, 8, 14, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(109,93,252,0.45);
}
.brand-text { font-weight: 700; color: #fff; font-size: 1.12rem; }
.navbar-brand { color: #fff; padding: 0; }
.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: height .35s ease;
}
.site-nav.scrolled .brand-logo { height: 40px; }
.footer-logo { height: 58px; }
.site-nav .nav-link {
    color: var(--muted);
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: color .2s, background .2s;
}
.site-nav .nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.navbar-toggler { border: 1px solid var(--card-border); color: #fff; padding: 6px 10px; font-size: 1.3rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10,12,20,0.96);
        backdrop-filter: blur(16px);
        margin-top: 14px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid var(--card-border);
    }
}

/* ---------- Buttons ---------- */
.btn-glow {
    background: var(--grad);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(109,93,252,0.4);
    transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-glow:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(109,93,252,0.55); filter: brightness(1.07); }
.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--card-border);
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 12px;
    transition: background .2s, transform .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: #fff; transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 26px;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #36c5f0;
    box-shadow: 0 0 0 0 rgba(54,197,240,0.6);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(54,197,240,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(54,197,240,0); }
    100% { box-shadow: 0 0 0 0 rgba(54,197,240,0); }
}
.hero-title {
    font-size: clamp(2rem, 5.2vw, 3.7rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 22px;
}
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    display: grid; place-items: start center;
    padding-top: 8px;
}
.scroll-hint span {
    width: 4px; height: 8px; border-radius: 4px;
    background: #fff;
    animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0; transform: translateY(0);} 30%{opacity:1;} 100%{opacity:0; transform: translateY(14px);} }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-2);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 18px;
}
.lead-muted { color: var(--muted); font-size: 1.06rem; }

/* ---------- Glass cards ---------- */
.glass-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.about-card p { color: var(--muted); margin-bottom: 18px; font-size: 1.04rem; }
.about-card strong { color: var(--text); font-weight: 600; }

/* Stats */
.stats-row { margin-top: 60px; }
.stat-card {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 16px;
    transition: transform .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(109,93,252,0.4); }
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-label { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

/* Mission */
.section-mission .mission-card { padding: 56px 40px; }
.mission-text {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.4;
    max-width: 880px;
    margin: 0 auto;
}
.eyebrow.justify-content-center { display: inline-flex; }

/* Sectors */
.sector-card { text-align: left; }
.sector-card:hover { transform: translateY(-6px); border-color: rgba(54,197,240,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.sector-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 1.5rem;
    color: #fff;
    background: var(--grad);
    margin-bottom: 20px;
    box-shadow: 0 10px 26px rgba(109,93,252,0.35);
}
.sector-title { font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; }
.sector-desc { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* Founder */
.founder-card { position: relative; text-align: center; padding: 56px 40px; max-width: 820px; margin: 0 auto; }
.quote-mark {
    font-size: 3rem; line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.founder-quote {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 28px;
}
.founder-meta { display: inline-flex; align-items: center; gap: 14px; }
.founder-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad); color: #fff; font-weight: 700;
    font-family: 'Sora', sans-serif;
}
.founder-name { font-weight: 600; }
.founder-role { color: var(--brand-2); font-size: 0.9rem; }

/* Contact */
.contact-card {
    display: block;
    text-align: center;
    color: var(--text);
    height: 100%;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(177,75,255,0.45); box-shadow: 0 20px 50px rgba(0,0,0,0.45); color: var(--text); }
.contact-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 1.5rem; color: #fff;
    margin: 0 auto 18px;
}
.contact-icon.mail { background: linear-gradient(135deg,#6d5dfc,#36c5f0); }
.contact-icon.wa   { background: linear-gradient(135deg,#25d366,#128c7e); }
.contact-icon.ig   { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.contact-icon.tel  { background: linear-gradient(135deg,#36c5f0,#b14bff); }
.contact-label { font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.contact-value { color: var(--muted); font-size: 0.92rem; word-break: break-word; }

/* Footer */
.site-footer { padding: 50px 0 30px; border-top: 1px solid var(--card-border); background: rgba(0,0,0,0.25); }
.footer-social a {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    color: var(--muted);
    transition: all .2s;
}
.footer-social a:hover { color: #fff; background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.footer-divider { border-color: var(--card-border); margin: 26px 0 18px; }
.footer-copy { text-align: center; color: var(--muted); font-size: 0.88rem; margin: 0; }

/* WhatsApp float */
.wa-float {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,#25d366,#128c7e);
    color: #fff;
    display: grid; place-items: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    animation: waBounce 3s ease-in-out infinite;
    transition: transform .2s;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes waBounce { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-6px);} }

/* ---------- Reveal animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--delay, 0s);
}
[data-reveal].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .wa-float, .scroll-hint span, .hero-badge .dot { animation: none; }
    html { scroll-behavior: auto; }
}

@media (max-width: 575px) {
    .glass-card { padding: 24px; }
    .section { padding: 64px 0; }
    .founder-card, .mission-card { padding: 36px 22px; }
}
