/* TotalSupply Solutions — brend: tünd göy + narıncı (təqdimatdan) */
:root {
    --navy: #16294F;
    --navy-dark: #0F1D3A;
    --navy-soft: #24396B;
    --orange: #F68B1F;
    --orange-dark: #DD7A12;
    --bg: #F7F8FA;
    --card: #FFFFFF;
    --text: #1D2A3B;
    --muted: #5A6B80;
    --line: #E4E8EF;
    --radius: 14px;
    --shadow: 0 6px 24px rgba(22, 41, 79, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    color-scheme: only light;
    scroll-padding-top: 86px; /* sticky header anchor-ları örtməsin */
}
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* təsadüfi üfüqi scroll qarşısı */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

h1, h2, h3, .footer-logo { font-family: 'Lora', Georgia, serif; color: var(--navy); }
.accent { color: var(--orange); }

.section { padding: 72px 0; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.22; margin-bottom: 18px; }
.section-title.center { text-align: center; }
.section-text { color: var(--muted); font-size: 1.06rem; max-width: 640px; margin-bottom: 28px; }
.section-text.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
    color: var(--orange); font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; font-size: .82rem; margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block; padding: 14px 30px; border-radius: 10px;
    font-weight: 600; font-size: 1rem; border: 2px solid transparent;
    cursor: pointer; transition: all .18s ease; font-family: inherit;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .9rem; border-radius: 8px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 26px; height: 72px; }
.logo-img { height: 48px; width: auto; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { font-weight: 500; font-size: .95rem; color: var(--text); transition: color .15s; }
.main-nav a:hover { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }

/* Dil seçici — AZ / EN / RU segment (qlobussuz) */
.lang-switch {
    display: flex; gap: 2px; background: var(--bg);
    border: 1px solid var(--line); border-radius: 8px; padding: 3px;
}
.lang-switch a {
    padding: 5px 9px; border-radius: 6px; font-size: .8rem; font-weight: 700;
    color: var(--muted); transition: background .15s, color .15s; line-height: 1;
}
.lang-switch a.active { background: var(--navy); color: #fff; }
.lang-switch a:hover:not(.active) { color: var(--navy); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0;
    border-radius: 2px; transition: transform .5s cubic-bezier(.68, -0.4, .27, 1.4), opacity .3s ease .1s;
}

/* Hero */
.hero { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 44px; padding-bottom: 56px; }
.badge {
    display: inline-block; background: rgba(246, 139, 31, .12); color: var(--orange-dark);
    font-weight: 600; font-size: .84rem; padding: 7px 14px; border-radius: 30px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.15; margin-bottom: 16px; }
.hero-slogan { font-family: 'Lora', Georgia, serif; font-size: 1.25rem; color: var(--navy-soft); font-style: italic; margin-bottom: 16px; }
.hero-desc { color: var(--muted); font-size: 1.07rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 38px 0; }
.problem-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 20px; text-align: center; transition: box-shadow .2s;
}
.problem-card:hover { box-shadow: var(--shadow); }
.problem-icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--orange); }
.problem-icon svg { width: 100%; height: 100%; }
.problem-label { font-weight: 600; color: var(--navy); font-size: .97rem; }
.problem-sub { background: var(--navy); border-radius: var(--radius); padding: 36px 40px; color: #fff; }
.problem-sub h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.problem-sub p { color: rgba(255, 255, 255, .78); max-width: 780px; }

/* Approach */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 32px 0 22px; }
.approach-card { border-radius: var(--radius); padding: 32px; }
.approach-card.old { background: var(--card); border: 1px solid var(--line); }
.approach-card.new { background: var(--navy); color: #fff; }
.approach-tag {
    display: inline-block; font-size: .8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; padding: 5px 12px; border-radius: 6px; margin-bottom: 12px;
}
.approach-card.old .approach-tag { background: var(--bg); color: var(--muted); }
.approach-card.new .approach-tag { background: var(--orange); color: #fff; }
.approach-sub { font-weight: 600; margin-bottom: 18px; }
.approach-card.old .approach-sub { color: var(--navy); }
.approach-card ul { list-style: none; }
.approach-card li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .97rem; }
.approach-card li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; }
.approach-card.old li svg { color: #C4302B; }
.approach-card.old li { color: var(--muted); }
.approach-card.new li svg { color: var(--orange); }
.approach-note { text-align: center; color: var(--muted); font-style: italic; font-size: 1.02rem; }

/* Ənənəvi yanaşma: xaos detalları (slayd 7) */
.chaos-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.chip {
    background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
    padding: 4px 12px; font-size: .78rem; font-weight: 600; color: var(--muted);
}
.chip-count { background: #FDEDEA; border-color: #F2C6BF; color: #B3362A; }
.chaos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.chaos-box { background: var(--bg); border-radius: 10px; padding: 13px 15px; }
.cb-title { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cb-title svg { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }
.cb-title2 { margin-top: 12px; }
.cb-row {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: .8rem; color: var(--muted); padding: 3px 0;
    border-bottom: 1px dashed var(--line);
}
.cb-row:last-child { border-bottom: 0; }
.cb-row em { font-style: normal; color: #B3362A; font-weight: 600; font-size: .74rem; }
.file-chips { display: flex; gap: 6px; }
.file-chips span { border-radius: 6px; padding: 3px 9px; font-size: .74rem; font-weight: 700; color: #fff; }
.fx { background: #1E7A38; } .fp { background: #B3362A; } .fd { background: #2B579A; }
.bad-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.bad-badges span {
    display: inline-flex; align-items: center; gap: 5px;
    background: #FDEDEA; color: #B3362A; border-radius: 8px;
    padding: 6px 12px; font-size: .8rem; font-weight: 600;
}
.bad-badges svg { width: 14px; height: 14px; flex-shrink: 0; }

/* TotalSupply yanaşması: panel mockup (slayd 7) */
.panel-mock { background: #fff; border-radius: 12px; padding: 16px; margin-bottom: 14px; box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.pm-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.pm-head img { height: 24px; width: auto; }
.pm-head span { font-weight: 700; color: var(--navy); font-size: .9rem; }
.pm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.pm-stat { background: var(--bg); border-radius: 8px; padding: 8px 6px; text-align: center; }
.pm-stat b { display: block; font-size: 1.15rem; color: var(--navy); }
.pm-stat span { font-size: .62rem; color: var(--muted); font-weight: 600; line-height: 1.2; display: block; }
.pm-done { background: #E8F6EC; }
.pm-done b { color: #1E7A38; }
.pm-recent { font-size: .74rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.pm-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 5px 0; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--navy);
}
.pm-row:last-child { border-bottom: 0; }
.pm-row span { font-weight: 600; }
.st { font-style: normal; font-size: .7rem; font-weight: 700; border-radius: 12px; padding: 2px 9px; }
.st1 { background: #FFF3E0; color: #C77700; }
.st2 { background: #E3F0FD; color: #1D5FBF; }
.st3 { background: #E8F6EC; color: #1E7A38; }
.pm-contact { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.pm-contact svg { width: 30px; height: 30px; color: var(--orange); flex-shrink: 0; }
.pm-contact b { display: block; font-size: .92rem; color: #fff; }
.pm-contact span { font-size: .78rem; color: rgba(255, 255, 255, .65); }
.good-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.good-badges span {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(246, 139, 31, .16); color: #FFC98C; border-radius: 8px;
    padding: 6px 12px; font-size: .8rem; font-weight: 600;
}
.good-badges svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Services */
.services { padding-bottom: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.service-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-num { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--orange); margin-bottom: 12px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .93rem; }
.values-strip { background: var(--navy); padding: 46px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-item h4 { color: var(--orange); font-size: 1.05rem; margin-bottom: 6px; }
.value-item p { color: rgba(255, 255, 255, .75); font-size: .9rem; }

/* Sectors */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 18px; text-align: center; transition: all .2s;
}
.sector-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.sector-icon { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--navy-soft); }
.sector-icon svg { width: 100%; height: 100%; }
.sector-card:hover .sector-icon { color: var(--orange); }
.sector-label { font-weight: 600; color: var(--navy); font-size: .95rem; }

/* Process */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.step-card { background: var(--bg); border-radius: var(--radius); padding: 24px 20px; position: relative; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: #fff; font-weight: 700; font-size: .85rem;
    width: 34px; height: 34px; border-radius: 50%; margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 7px; line-height: 1.35; }
.step-card p { color: var(--muted); font-size: .86rem; }
.results-strip { background: var(--navy); border-radius: var(--radius); padding: 34px 38px; margin-bottom: 26px; }
.results-title { font-family: 'Lora', serif; color: var(--orange); font-size: 1.3rem; font-weight: 700; margin-bottom: 18px; }
.results-intro { font-family: 'Inter', sans-serif; color: rgba(255, 255, 255, .8); font-size: .95rem; font-weight: 500; margin-left: 6px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.result-item h4 { color: #fff; font-size: .98rem; margin-bottom: 5px; }
.result-item p { color: rgba(255, 255, 255, .72); font-size: .85rem; }
.process-note { text-align: center; color: var(--navy); font-weight: 600; font-size: 1.08rem; }

/* Why */
.why-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
.why-list { list-style: none; margin-top: 6px; }
.why-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 0; }
.why-list svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.why-list h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.why-list p { color: var(--muted); font-size: .9rem; }
.why-visual { position: sticky; top: 96px; }
.why-visual img { border-radius: var(--radius); box-shadow: var(--shadow); }
.why-quote {
    background: var(--card); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px; margin-top: -46px; margin-left: 28px; margin-right: 14px;
    position: relative; box-shadow: var(--shadow);
}
.why-quote p { font-family: 'Lora', serif; color: var(--navy); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.why-quote span { color: var(--muted); font-size: .88rem; }

/* Contact */
.contact { background: #fff; }
.contact-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.contact-card {
    display: flex; align-items: center; gap: 16px; background: var(--bg);
    border-radius: var(--radius); padding: 18px 22px; transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card svg { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }
.contact-card span { display: block; color: var(--muted); font-size: .82rem; }
.contact-card strong { color: var(--navy); font-size: 1.05rem; }
.contact-promise { display: flex; align-items: center; gap: 8px; color: var(--muted); font-style: italic; }
.contact-promise svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.contact-form-wrap { background: var(--bg); border-radius: var(--radius); padding: 34px; }
.rfq-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rfq-form input, .rfq-form select, .rfq-form textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
    font-family: inherit; font-size: .97rem; color: var(--text); background: #fff;
    transition: border-color .15s;
}
.rfq-form input:focus, .rfq-form select:focus, .rfq-form textarea:focus {
    outline: none; border-color: var(--orange);
}
.rfq-form textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.alert-success {
    background: #E8F6EC; color: #1E7A38; border: 1px solid #BFE5CB;
    border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; font-weight: 600;
    transition: opacity .6s;
}
.alert-error {
    background: #FDEDEA; color: #B3362A; border: 1px solid #F2C6BF;
    border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; font-size: .92rem;
}

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, .8); }
.footer-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 26px;
    padding: 42px 22px 26px; flex-wrap: wrap;
}
.footer-logo { color: #fff; font-size: 1.35rem; font-weight: 700; }
.footer-logo span { color: var(--orange); }
.footer-brand p { font-style: italic; font-size: .9rem; color: rgba(255, 255, 255, .6); margin-top: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-size: .95rem; }
.footer-contact a:hover, .footer-langs a:hover { color: var(--orange); }
.footer-langs { font-size: .88rem; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12); padding: 18px 22px;
    font-size: .82rem; color: rgba(255, 255, 255, .62);
}

/* ============ DİNAMİK EFFEKTLƏR ============ */

/* Scroll progress bar */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    background: transparent; z-index: 100; pointer-events: none;
}
.scroll-progress span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--orange), #FFB25E);
}

/* Header scroll kölgəsi */
.site-header { transition: box-shadow .25s; }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(22, 41, 79, .1); }

/* Hero giriş animasiyası */
.hero-in { opacity: 0; transform: translateY(26px); animation: heroIn .8s cubic-bezier(.16, 1, .3, 1) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
.hero-visual img { will-change: transform; }

/* CTA nəbz effekti */
.btn-pulse { position: relative; }
.btn-pulse::after {
    content: ''; position: absolute; inset: -3px; border-radius: 13px;
    border: 2px solid var(--orange); opacity: 0;
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0% { transform: scale(.98); opacity: .7; }
    70%, 100% { transform: scale(1.12); opacity: 0; }
}

/* Hero təchizat şəbəkəsi (dekorativ) */
.hero { position: relative; }
.hero-net {
    position: absolute; right: -60px; top: -30px; width: 58%; height: 110%;
    opacity: .5; pointer-events: none;
}
.net-route {
    stroke: var(--navy); stroke-opacity: .14; stroke-width: 1.6;
    stroke-dasharray: 7 9; animation: routeMove 30s linear infinite;
}
.net-route.r2 { stroke: var(--orange); stroke-opacity: .18; animation-duration: 38s; animation-direction: reverse; }
.net-route.r3 { animation-duration: 46s; }
@keyframes routeMove { to { stroke-dashoffset: -640; } }
.net-node { fill: var(--orange); opacity: .45; transform-origin: center; transform-box: fill-box; animation: nodePulse 3.2s ease-in-out infinite; }
.net-node.n2, .net-node.n5 { fill: var(--navy); }
.net-node.n2 { animation-delay: .5s; }
.net-node.n3 { animation-delay: 1s; }
.net-node.n4 { animation-delay: 1.4s; }
.net-node.n5 { animation-delay: .8s; }
.net-node.n6 { animation-delay: 2s; }
.net-node.n7 { animation-delay: 2.5s; }
@keyframes nodePulse { 0%, 100% { transform: scale(1); opacity: .45; } 50% { transform: scale(1.6); opacity: .85; } }
.hero-inner { position: relative; z-index: 1; }

/* Stats sayğacları */
.stats { background: var(--navy); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { text-align: center; }
.stat-num {
    font-family: 'Lora', Georgia, serif; font-size: 2.6rem; font-weight: 700;
    color: #fff; line-height: 1.1;
}
.stat-num span { color: var(--orange); }
.stat-label { color: rgba(255, 255, 255, .7); font-size: .88rem; margin-top: 4px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.no-motion .reveal { opacity: 1; transform: none; }

/* Marquee — sahələr lenti */
.marquee { background: var(--navy-dark); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-part { display: flex; align-items: center; flex-shrink: 0; }
.marquee-part span {
    color: rgba(255, 255, 255, .85); font-family: 'Lora', serif; font-size: 1.05rem;
    font-weight: 600; padding: 0 18px; white-space: nowrap; letter-spacing: .02em;
}
.marquee-part .marquee-dot { color: var(--orange); font-size: .7rem; padding: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Proses: xətt dolması + addımların aktivləşməsi */
.process-track {
    height: 4px; background: var(--line); border-radius: 4px;
    margin: 6px auto 34px; max-width: 720px; overflow: hidden;
}
.process-track span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--orange), #FFB25E);
    transition: width .25s ease-out;
}
.step-card { opacity: .35; transform: translateY(14px); transition: opacity .5s, transform .5s, box-shadow .3s; }
.step-card.active { opacity: 1; transform: translateY(0); }
.step-card .step-num { background: var(--line); color: var(--muted); transition: background .4s, color .4s, transform .4s; }
.step-card.active .step-num { background: var(--orange); color: #fff; transform: scale(1.08); }
.no-motion .step-card { opacity: 1; transform: none; }
.no-motion .step-card .step-num { background: var(--orange); color: #fff; }

/* Statement: söz-söz rənglənən böyük slogan */
.statement { background: #fff; padding: 84px 0; }
.statement-text {
    font-family: 'Lora', Georgia, serif; text-align: center;
    font-size: clamp(2rem, 5.4vw, 3.6rem); line-height: 1.25; font-weight: 700;
    max-width: 900px; margin: 0 auto;
}
.wr-word { color: #C9D2DE; transition: color .35s ease; }
.wr-word.lit { color: var(--navy); }
.wr-word.lit:last-child { color: var(--orange); }
.no-motion .wr-word { color: var(--navy); }

/* Kartlarda hamar transform */
.sector-card, .service-card { transition: transform .25s ease-out, box-shadow .25s, border-color .25s; will-change: transform; }

/* ============ QƏRAR DAİRƏSİ (slayd 3) ============ */
.problem-sub { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.decision-svg { width: 100%; max-width: 350px; justify-self: center; }
.dec-line { stroke: rgba(255, 255, 255, .45); stroke-width: 1.6; stroke-dasharray: 3 6; stroke-linecap: round; animation: decFlow 1.6s linear infinite; }
@keyframes decFlow { to { stroke-dashoffset: -36; } }
.dec-icon { stroke: var(--navy); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dec-label { fill: #fff; font-size: 13px; font-weight: 700; text-anchor: middle; letter-spacing: .04em; }
.dec-label-c { fill: var(--navy); font-size: 13.5px; font-weight: 800; text-anchor: middle; letter-spacing: .08em; }
/* Node-lar statikdir: SVG text animasiyası Safari-də flicker/FPS problemi yaradır */
.no-motion .dec-line { animation: none; }

/* ============ TIME BAND (slayd 4 — qum saatı) ============ */
.time-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.time-inner { display: flex; align-items: center; gap: 26px; }
.time-inner h3 { font-size: 1.3rem; margin-bottom: 4px; }
.time-inner p { color: var(--muted); }
.hourglass { width: 52px; height: 70px; flex-shrink: 0; }
.hg-cap { fill: var(--navy); }
.hg-body { fill: none; stroke: var(--navy); stroke-width: 1.8; }
.hg-sand-top { fill: var(--orange); transform-origin: 24px 13px; animation: hgTop 3.2s linear infinite; }
.hg-sand-bot { fill: var(--orange); transform-origin: 24px 54px; animation: hgBot 3.2s linear infinite; }
.hg-drop { fill: var(--orange); animation: hgDrop 1.06s linear infinite; }
.hg-drop.d2 { animation-delay: .53s; }
.hg-glass { transform-origin: 24px 32px; animation: hgRock 3.2s ease-in-out infinite; }
@keyframes hgTop { 0% { transform: scaleY(1); } 100% { transform: scaleY(.15); } }
@keyframes hgBot { 0% { transform: scaleY(.2); } 100% { transform: scaleY(1); } }
@keyframes hgDrop { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 90% { transform: translateY(17px); opacity: 1; } 100% { transform: translateY(19px); opacity: 0; } }
@keyframes hgRock { 0%, 100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
.no-motion .hg-sand-top, .no-motion .hg-sand-bot, .no-motion .hg-drop, .no-motion .hg-glass { animation: none; }

/* ============ ŞƏBƏKƏ DİAQRAMI (slayd 5) ============ */
.net-flow { width: 100%; margin-top: 28px; }
/* Xətlər statik dash-dır — hərəkəti yalnız SMIL nöqtələr verir (performans üçün) */
.nf-path { stroke: var(--navy-soft); stroke-opacity: .3; stroke-width: 1.6; fill: none; stroke-dasharray: 5 7; }
.nf-dot { fill: var(--orange); }
.nf-node circle, .nf-client circle { stroke: var(--line); stroke-width: 1.5; filter: drop-shadow(0 3px 8px rgba(22, 41, 79, .1)); }
.nf-icon { stroke: var(--navy-soft); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.nf-label { fill: var(--muted); font-size: 12.5px; font-weight: 600; text-anchor: middle; }
.nf-label-b { fill: var(--navy); font-weight: 800; letter-spacing: .06em; }
.nf-hub rect { stroke: var(--orange); stroke-width: 2; filter: drop-shadow(0 6px 16px rgba(246, 139, 31, .25)); }
@media (max-width: 720px) { .net-flow { display: none; } }

/* ============ MEYARLAR (slayd 9) ============ */
.criteria { background: var(--bg); }
.crit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.crit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .2s; }
.crit-card:hover { box-shadow: var(--shadow); }
.crit-icon {
    width: 46px; height: 46px; border-radius: 50%; background: rgba(246, 139, 31, .1);
    display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 12px;
}
.crit-icon svg { width: 24px; height: 24px; }
.crit-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.crit-card p { color: var(--muted); font-size: .88rem; }
.crit-approach { background: var(--navy); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 22px; }
.crit-approach-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.crit-target { width: 46px; height: 46px; border-radius: 50%; background: rgba(246, 139, 31, .18); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.crit-target svg { width: 26px; height: 26px; }
.crit-approach-tag { color: var(--orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.crit-approach-lead { color: #fff; font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 700; }
.crit-checks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.crit-checks li { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.crit-checks svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.crit-goal { text-align: center; color: var(--navy); font-weight: 600; font-size: 1.05rem; }

/* ============ KUBLAR + FORMUL (slayd 11) ============ */
.cube-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.cube { border-radius: 12px; padding: 18px 12px; text-align: center; transition: transform .2s; }
.cube:hover { transform: translateY(-4px) rotate(-1deg); }
.cube.navy { background: var(--navy); color: #fff; }
.cube.orange { background: linear-gradient(135deg, var(--orange), #F79A3E); color: #fff; }
.cube svg { width: 26px; height: 26px; margin: 0 auto 8px; display: block; color: rgba(255, 255, 255, .9); }
.cube b { display: block; font-size: .95rem; margin-bottom: 2px; }
.cube span { font-size: .74rem; opacity: .75; }
.why-formula {
    text-align: center; font-family: 'Lora', Georgia, serif; font-style: italic;
    color: var(--navy); font-size: 1.15rem; font-weight: 600; margin-top: 26px;
}

/* ============ ABOUT (marka kimliyi + fəlsəfə) ============ */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; margin: 10px 0 26px; align-items: start; }
.about-identity {
    font-family: 'Lora', Georgia, serif; font-size: 1.25rem; color: var(--navy);
    font-weight: 600; font-style: italic; line-height: 1.45; margin-bottom: 18px;
}
.about-story p:not(.about-identity) { color: var(--muted); margin-bottom: 14px; }
.promise-banner {
    display: flex; flex-direction: column; gap: 2px;
    background: linear-gradient(135deg, var(--orange), #FFA94D);
    border-radius: var(--radius); padding: 20px 26px; margin-top: 20px;
    box-shadow: 0 8px 22px rgba(246, 139, 31, .28);
}
.promise-label { color: rgba(255, 255, 255, .8); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.promise-text { font-family: 'Lora', serif; color: #fff; font-size: 1.35rem; font-weight: 700; }
.philosophy-card { background: var(--navy); border-radius: var(--radius); padding: 30px; color: #fff; }
.philosophy-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.philosophy-head img { height: 46px; width: auto; background: #fff; border-radius: 10px; padding: 5px; }
.philosophy-head h3 { color: var(--orange); font-size: 1.35rem; }
.philosophy-text { color: rgba(255, 255, 255, .85); margin-bottom: 16px; }
.philosophy-logo-label { color: rgba(255, 255, 255, .6); font-size: .88rem; margin-bottom: 10px; }
.philosophy-list { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.philosophy-list li {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px; padding: 7px 15px; font-size: .9rem; font-weight: 600;
}
.philosophy-list svg { width: 18px; height: 18px; color: var(--orange); }
.philosophy-note { color: rgba(255, 255, 255, .6); font-size: .88rem; font-style: italic; }
.bval-list { list-style: none; }
.bval-list li { display: flex; gap: 13px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.bval-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.bval-list svg { width: 21px; height: 21px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.bval-list b { display: block; color: #fff; font-size: .95rem; margin-bottom: 2px; }
.bval-list p { color: rgba(255, 255, 255, .68); font-size: .84rem; line-height: 1.5; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 24px; }
.mv-card { background: var(--bg); border-radius: var(--radius); padding: 28px; }
.mv-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 12px; }
.mv-icon svg { width: 100%; height: 100%; }
.mv-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.mv-card p { color: var(--muted); font-size: .95rem; }
.about-quote {
    font-family: 'Lora', Georgia, serif; text-align: center;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem); color: var(--navy); font-weight: 600;
    max-width: 760px; margin: 0 auto; line-height: 1.5;
}
.about-quote span { color: var(--orange); font-size: 1.6em; line-height: 0; vertical-align: -.25em; padding: 0 4px; }

/* ============ SEKTOR MİNİ-SƏHNƏLƏRİ (hover-də canlanan fiqurlar) ============ */
.sector-visual { position: relative; height: 68px; margin-bottom: 10px; }
.sector-visual .sector-icon {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    width: auto; height: auto; margin: 0;
    transition: opacity .25s, transform .25s;
}
.sector-visual .sector-icon svg { width: 44px; height: 44px; }
.sector-scene {
    position: absolute; left: 50%; top: 50%;
    width: 120px; height: 68px;
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0; transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.sector-card:hover .sector-icon { opacity: 0; transform: scale(.8); }
.sector-card:hover .sector-scene { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* SVG ştrix sinifləri */
.sector-scene .sk  { stroke: var(--navy-soft); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sector-scene .sko { stroke: var(--orange); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sector-scene .skd { stroke: var(--navy-soft); stroke-width: 1.7; fill: none; stroke-dasharray: 3 3; }
.sector-scene .flo { fill: var(--orange); stroke: none; }
.sector-scene .fln { fill: var(--navy-soft); stroke: none; }

/* 1. Tikinti: çəkic vurur + qığılcım */
.anim-hammer { transform-origin: 48px 26px; }
.sector-card:hover .anim-hammer { animation: scHammer .55s ease-in-out infinite alternate; }
@keyframes scHammer { from { transform: rotate(8deg); } to { transform: rotate(-26deg); } }
.anim-spark { opacity: 0; }
.sector-card:hover .anim-spark { animation: scSpark 1.1s ease-in-out infinite; }
@keyframes scSpark { 0%, 60%, 100% { opacity: 0; } 70%, 85% { opacity: 1; } }

/* 2. Sənaye: dişli fırlanır + tüstü qalxır */
.anim-gear { transform-origin: 50px 36px; }
.sector-card:hover .anim-gear { animation: scGear 2.2s linear infinite; }
@keyframes scGear { to { transform: rotate(360deg); } }
.anim-smoke { opacity: 0; }
.sector-card:hover .anim-smoke { animation: scSmoke 2s ease-out infinite; }
@keyframes scSmoke { 0% { opacity: 0; transform: translateY(3px); } 30% { opacity: .8; } 100% { opacity: 0; transform: translateY(-7px); } }

/* 3. Elektrik: qol açar fırladır + bolt yanıb-sönür */
.anim-fixarm { transform-origin: 48px 27px; }
.sector-card:hover .anim-fixarm { animation: scFix .5s ease-in-out infinite alternate; }
@keyframes scFix { from { transform: rotate(-5deg); } to { transform: rotate(7deg); } }
.anim-bolt { transform-origin: 32px 15px; }
.sector-card:hover .anim-bolt { animation: scBolt 1.3s ease-in-out infinite; }
@keyframes scBolt { 0%, 100% { opacity: .35; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.12); } }

/* 4. Ofis: yazı yazır + ekran sətirləri */
.anim-type { transform-origin: 47px 26px; }
.anim-type2 { transform-origin: 47px 27px; }
.sector-card:hover .anim-type { animation: scType .32s ease-in-out infinite alternate; }
.sector-card:hover .anim-type2 { animation: scType .32s ease-in-out .16s infinite alternate; }
@keyframes scType { from { transform: rotate(-4deg); } to { transform: rotate(5deg); } }
.sector-card:hover .anim-screen line { animation: scScreen 1.4s ease-in-out infinite; }
.sector-card:hover .anim-screen line:nth-child(2) { animation-delay: .5s; }
@keyframes scScreen { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* 5. IT: kod sətirləri yazılır + işarə edir */
.anim-code line { opacity: 0; }
.sector-card:hover .anim-code .c1 { animation: scCode 1.8s ease-in-out infinite; }
.sector-card:hover .anim-code .c2 { animation: scCode 1.8s ease-in-out .35s infinite; }
.sector-card:hover .anim-code .c3 { animation: scCode 1.8s ease-in-out .7s infinite; }
@keyframes scCode { 0% { opacity: 0; } 20%, 80% { opacity: 1; } 100% { opacity: 0; } }
.anim-point { transform-origin: 22px 28px; }
.sector-card:hover .anim-point { animation: scPoint .9s ease-in-out infinite alternate; }
@keyframes scPoint { from { transform: rotate(-4deg); } to { transform: rotate(6deg); } }

/* 6. Avadanlıq: açar qaykanı sıxır */
.anim-wrench { transform-origin: 30px 34px; }
.sector-card:hover .anim-wrench { animation: scWrench .8s ease-in-out infinite alternate; }
@keyframes scWrench { from { transform: rotate(14deg); } to { transform: rotate(-18deg); } }
.anim-nut { transform-origin: 30px 34px; }
.sector-card:hover .anim-nut { animation: scNut .8s ease-in-out infinite alternate; }
@keyframes scNut { from { transform: rotate(2deg); } to { transform: rotate(-4deg); } }

/* 7. Logistika: araba itələyir, təkər fırlanır, ayaqlar yeriyir */
.sector-card:hover .anim-walk { animation: scWalk .9s ease-in-out infinite alternate; }
@keyframes scWalk { from { transform: translateX(-1.5px); } to { transform: translateX(2.5px); } }
.anim-wheel { transform-origin: 44px 45.5px; }
.sector-card:hover .anim-wheel { animation: scGear 1s linear infinite; }
.anim-leg1 { transform-origin: 33px 35px; }
.anim-leg2 { transform-origin: 33px 35px; }
.sector-card:hover .anim-leg1 { animation: scLeg .45s ease-in-out infinite alternate; }
.sector-card:hover .anim-leg2 { animation: scLeg .45s ease-in-out .45s infinite alternate-reverse; }
@keyframes scLeg { from { transform: rotate(-9deg); } to { transform: rotate(9deg); } }

/* 8. Xüsusi sifarişlər: işarələr bir-bir qoyulur, qələm hərəkət edir */
.anim-check { opacity: 0; transform-origin: 23px 21px; }
.sector-card:hover .ch1 { animation: scCheck 2.7s ease-in-out infinite; }
.sector-card:hover .ch2 { animation: scCheck 2.7s ease-in-out .6s infinite; }
.sector-card:hover .ch3 { animation: scCheck 2.7s ease-in-out 1.2s infinite; }
@keyframes scCheck { 0% { opacity: 0; transform: scale(.5); } 8%, 85% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.anim-pen { transform-origin: 54px 27px; }
.sector-card:hover .anim-pen { animation: scPen 2.7s ease-in-out infinite; }
@keyframes scPen { 0%, 15% { transform: rotate(-2deg); } 22%, 37% { transform: rotate(3deg); } 44%, 59% { transform: rotate(8deg); } 66%, 100% { transform: rotate(-2deg); } }

/* Hover olmayan cihazlarda (telefon) statik ikon qalır */
@media (hover: none) {
    .sector-scene { display: none; }
    .sector-card:hover .sector-icon { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner, .why-inner, .contact-inner, .about-grid, .mv-grid, .problem-sub { grid-template-columns: 1fr; }
    .crit-grid { grid-template-columns: repeat(2, 1fr); }
    .cube-row { grid-template-columns: repeat(3, 1fr); }
    .crit-checks { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-visual img { max-height: 320px; width: 100%; object-fit: cover; }
    .problem-grid, .sectors-grid, .process-grid, .values-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .why-visual { position: static; }
}
@media (max-width: 960px) and (min-width: 0px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-net { display: none; }
}
/* Naviqasiya: hamburger ≤900px (tablet-də üfüqi menyu sığmır) */
@keyframes navSlide { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes navItemIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 14px 22px; gap: 4px;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; animation: navSlide .5s cubic-bezier(.16, 1, .3, 1); }
    /* bəndlər bir-bir ardıcıl açılır (yumşaq hiss) */
    .main-nav.open a { animation: navItemIn .45s cubic-bezier(.16, 1, .3, 1) backwards; }
    .main-nav.open a:nth-child(1) { animation-delay: .06s; }
    .main-nav.open a:nth-child(2) { animation-delay: .12s; }
    .main-nav.open a:nth-child(3) { animation-delay: .18s; }
    .main-nav.open a:nth-child(4) { animation-delay: .24s; }
    .main-nav.open a:nth-child(5) { animation-delay: .30s; }
    .main-nav.open a:nth-child(6) { animation-delay: .36s; }
    .main-nav a { padding: 11px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .main-nav a:last-child { border-bottom: 0; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .header-cta { display: none; }
}
@media (max-width: 640px) {
    .section { padding: 46px 0; }
    .statement { padding: 54px 0; }
    .services-grid, .form-row, .problem-grid, .crit-grid { grid-template-columns: 1fr; }
    .cube-row { grid-template-columns: repeat(2, 1fr); }
    .problem-sub { padding: 26px; }
    .time-inner { flex-direction: column; text-align: center; gap: 14px; }
    .results-strip { padding: 26px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* === Boşluqların sıxlaşdırılması === */
@media (max-width: 960px) {
    /* 5 kub: grid-də boş xana qalmasın deyə flex-lə mərkəzlənir */
    .cube-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
    .cube { flex: 1 1 30%; min-width: 150px; max-width: 220px; }
    .section-title { margin-bottom: 14px; }
    .why-visual { margin-top: 8px; }
}
@media (max-width: 640px) {
    .chaos-grid { grid-template-columns: 1fr; gap: 10px; }
    .cube { flex: 1 1 42%; min-width: 130px; max-width: none; }
    .hero-inner { padding-top: 24px; padding-bottom: 40px; gap: 24px; }
    .hero-visual img { max-height: 250px; }
    .hero h1 { margin-bottom: 12px; }
    .hero-slogan { margin-bottom: 12px; }
    .hero-desc { margin-bottom: 22px; }
    .stats-grid { gap: 14px; }
    .stat-num { font-size: 2rem; }
    .decision-svg { max-width: 300px; }
    .contact-form-wrap { padding: 22px 18px; }
    .crit-approach { padding: 22px 20px; }
    .about-identity { font-size: 1.1rem; margin-bottom: 14px; }
    .promise-banner { padding: 16px 20px; margin-top: 14px; }
    .philosophy-card { padding: 22px; }
    .panel-mock { padding: 12px; }
    .values-strip { padding: 32px 0; }
    .values-grid { gap: 18px; }
    .why-quote { margin-left: 14px; margin-right: 10px; padding: 16px 18px; }
    .about-grid { gap: 20px; margin: 6px 0 20px; }
    .mv-grid { gap: 14px; }
    .mv-card { padding: 22px; }
    .approach-card { padding: 22px 18px; }
    .process-grid { gap: 12px; margin-bottom: 26px; }
    .crit-grid { gap: 12px; }
    .sectors-grid { gap: 12px; }
    .problem-grid { gap: 12px; margin: 26px 0; }
    .services-grid { gap: 14px; margin-bottom: 40px; }
    .marquee { padding: 12px 0; }
    .time-band { padding: 26px 0; }
    .contact-cards { gap: 10px; }
    .footer-inner { padding: 30px 22px 20px; gap: 16px; }
    /* Panel mockup: 4 sütun statistika dar ekranda 2 sütuna keçir */
    .pm-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Çox dar telefonlar: header sıxışmasın */
@media (max-width: 400px) {
    .logo-img { height: 40px; }
    .header-inner { gap: 12px; }
    .header-right { gap: 10px; }
    .lang-switch a { padding: 4px 7px; }
    .container { padding: 0 16px; }
}
