:root {
  --black: #0a0a0b;
  --white: #f8f7f4;
  --accent: #e63329;
  --mid: #1c1c1e;
  --border: rgba(0,0,0,0.08);
  --text: #0a0a0b;
  --muted: #6b6b6b;
  --section-bg: #f3f2ef;
  --nav-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(248,247,244,0.94); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 5vw; transition: box-shadow .3s; }
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
.nav-inner { width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--black) !important; color: var(--white) !important; padding: .6rem 1.4rem !important; border-radius: 100px; }
.nav-cta:hover { background: var(--accent) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); transition: all .3s; border-radius: 2px; }
.lang-sw { font-size: .8rem; font-weight: 500; color: var(--muted); cursor: pointer; display: flex; gap: .4rem; }
.lang-sw .act { color: var(--accent); font-weight: 700; }

/* HERO - Enhanced with dot grid background */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1280px; margin: 0 auto; padding-left: 5vw; padding-right: 5vw; gap: 4rem; position: relative; }
.hero-dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px); background-size: 24px 24px; animation: dotPulse 4s ease-in-out infinite; pointer-events: none; z-index: 0; }
@keyframes dotPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.hero-bg { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(100px,18vw,240px); font-weight: 800; color: rgba(0,0,0,.025); letter-spacing: -0.05em; white-space: nowrap; pointer-events: none; z-index: 0; user-select: none; will-change: transform; }
.hero-left { position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: rgba(230,51,41,.07); padding: .4rem 1rem; border-radius: 100px; margin-bottom: 2rem; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.8rem,4.5vw,4.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--black); margin-bottom: 1.5rem; }
/* PROMPT 6: Gradient text on accent word */
h1 .acc { background: linear-gradient(135deg, #e63329 0%, #ff6b35 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 440px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--black); color: var(--white); padding: .85rem 2rem; border-radius: 100px; font-weight: 500; font-size: .9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .15s, box-shadow .2s; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,51,41,.25); }
.btn-secondary { background: transparent; color: var(--black); padding: .85rem 2rem; border-radius: 100px; font-weight: 500; font-size: .9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(0,0,0,.15); transition: border-color .2s, transform .15s; cursor: pointer; }
.btn-secondary:hover { border-color: var(--black); transform: translateY(-2px); }
.hero-right { position: relative; z-index: 1; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.stat-card { background: var(--white); padding: 2rem 1.8rem; transition: background .2s; }
.stat-card:hover { background: var(--section-bg); }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--black); line-height: 1; margin-bottom: .3rem; }
.stat-num .a { color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--muted); font-weight: 400; line-height: 1.4; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.scroll-line { width: 1px; height: 40px; background: var(--muted); animation: sLine 2s ease-in-out infinite; }
@keyframes sLine { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.6)} }

/* MARQUEE */
.marquee-wrap { background: var(--black); padding: 1.2rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.mq-item { display: inline-flex; align-items: center; gap: 1.5rem; padding: 0 2.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.mq-sep { color: var(--accent); }

/* COUNTERS - Enhanced with gradient mesh bg */
.counters-section { background: linear-gradient(135deg, #0a0a0b 0%, #1a0a08 100%); padding: 5rem 5vw; position: relative; overflow: hidden; }
.counters-section::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50%; height: 80%; background: radial-gradient(ellipse, rgba(230,51,41,0.15) 0%, transparent 70%); pointer-events: none; }
.counters-section::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 40%; height: 70%; background: radial-gradient(ellipse, rgba(230,51,41,0.1) 0%, transparent 70%); pointer-events: none; }
.counters-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.counter-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.07); text-align: center; position: relative; overflow: hidden; }
.counter-item:last-child { border-right: none; }
.counter-item::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: 48px; height: 2px; background: var(--accent); transition: transform .4s; transform-origin: center; }
.counter-item:hover::after { transform: translateX(-50%) scaleX(1); }
.c-icon { font-size: 1.8rem; margin-bottom: 1rem; opacity: .7; }
.c-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: .4rem; letter-spacing: -0.03em; }
.c-num .csuf { color: var(--accent); }
.c-lbl { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }

/* SECTIONS */
.section { padding: 7rem 5vw; max-width: 1280px; margin: 0 auto; }
/* PROMPT 7: Red decorative line before section tags */
.sec-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; display: flex; align-items: center; gap: 12px; }
.sec-tag::before { content: ''; width: 32px; height: 2px; background: var(--accent); display: inline-block; flex-shrink: 0; }
h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; letter-spacing: -0.025em; color: var(--black); margin-bottom: 1rem; line-height: 1.1; }
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.7; font-weight: 300; }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1.5rem; }

/* SERVICES - Enhanced hover with spring bounce */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.svc-card { background: var(--white); padding: 3rem 2.5rem; transition: background .25s, transform .35s cubic-bezier(0.34,1.56,0.64,1), box-shadow .35s cubic-bezier(0.34,1.56,0.64,1); position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { background: var(--section-bg); transform: translateY(-6px) scale(1.005); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(230,51,41,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.4rem; }
.svc-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.svc-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.svc-tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.svc-tag { font-size: .72rem; font-weight: 500; background: var(--section-bg); color: var(--muted); padding: .25rem .75rem; border-radius: 100px; border: 1px solid var(--border); }

/* WHY section */
.why-wrap { background: var(--section-bg); }
.why-inner { max-width: 1280px; margin: 0 auto; padding: 7rem 5vw; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-visual { background: var(--black); border-radius: 24px; padding: 3rem; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.why-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 30%, rgba(230,51,41,.22) 0%, transparent 60%); }
.why-vc { position: relative; z-index: 1; }
.why-vc h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.why-vc p { color: rgba(255,255,255,.5); font-size: .9rem; }
.map-dots { position: absolute; inset: 0; }
.mdot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: dp 3s ease-in-out infinite; }
.mdot::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--accent); animation: rpl 3s ease-in-out infinite; opacity: 0; }
@keyframes dp { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }
@keyframes rpl { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(3.5);opacity:0} }
.mdot:nth-child(1){top:22%;left:38%;animation-delay:0s} .mdot:nth-child(2){top:33%;left:55%;animation-delay:.6s}
.mdot:nth-child(3){top:18%;left:64%;animation-delay:1.2s} .mdot:nth-child(4){top:50%;left:33%;animation-delay:1.8s}
.mdot:nth-child(5){top:28%;left:47%;animation-delay:2.4s} .mdot:nth-child(6){top:60%;left:52%;animation-delay:.9s}
/* PROMPT 3: Animated SVG route */
.map-route { position: absolute; inset: 0; pointer-events: none; }
.map-route path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawRoute 3s ease-in-out infinite; }
@keyframes drawRoute { 0%{stroke-dashoffset:300} 50%{stroke-dashoffset:0} 100%{stroke-dashoffset:-300} }
.mline { position: absolute; background: rgba(230,51,41,.25); height: 1px; animation: ld 4s ease-in-out infinite; }
@keyframes ld { 0%{opacity:0;transform:scaleX(0)} 25%{opacity:1;transform:scaleX(1)} 75%{opacity:1;transform:scaleX(1)} 100%{opacity:0} }
.ml1{top:23%;left:38%;width:110px;transform:rotate(7deg);animation-delay:.3s}
.ml2{top:19%;left:55%;width:75px;transform:rotate(-14deg);animation-delay:1.1s}
.ml3{top:35%;left:47%;width:65px;transform:rotate(22deg);animation-delay:1.9s}
.why-points { display: flex; flex-direction: column; gap: 1.2rem; }
.why-pt { display: flex; gap: 1.2rem; padding: 1.4rem; border-radius: 16px; border: 1px solid transparent; transition: all .2s; }
.why-pt:hover { background: var(--white); border-color: var(--border); }
.why-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-txt h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: .3rem; }
.why-txt p { font-size: .875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; }
.proc-step { position: relative; }
.proc-step:not(:last-child)::after { content: '\2192'; position: absolute; top: 1.2rem; right: -1.2rem; font-size: 1.2rem; color: rgba(0,0,0,.12); }
.proc-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(0,0,0,.055); line-height: 1; margin-bottom: .5rem; }
.proc-icon { font-size: 1.4rem; margin-bottom: 1rem; }
.proc-step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.proc-step p { font-size: .875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* COVERAGE */
.cov-wrap { background: var(--section-bg); padding: 7rem 5vw; }
.cov-inner { max-width: 1280px; margin: 0 auto; }
.flags-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.flag-tag { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 100px; background: var(--white); border: 1px solid var(--border); font-size: .82rem; font-weight: 500; transition: all .2s; }
.flag-tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.cov-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.cov-stat { text-align: center; padding: 2rem; background: var(--white); border-radius: 16px; border: 1px solid var(--border); }
.cov-stat .n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); display: block; }
.cov-stat .l { font-size: .85rem; color: var(--muted); margin-top: .25rem; display: block; }

/* TRUST - Enhanced hover */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.trust-card { border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: all .35s cubic-bezier(0.34,1.56,0.64,1); }
.trust-card:hover { border-color: var(--accent); transform: translateY(-6px) scale(1.005); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.trust-badge { font-size: 2rem; margin-bottom: 1rem; }
.trust-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.trust-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* CAREER - Enhanced glassmorphism */
.career-wrap { background: var(--black); padding: 7rem 5vw; }
.career-inner { max-width: 1280px; margin: 0 auto; }
.career-inner h2 { color: var(--white); }
.career-inner .sec-sub { color: rgba(255,255,255,.5); margin-bottom: 3.5rem; }
.career-inner .sec-tag { color: var(--accent); }
.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.job-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2rem; transition: all .35s cubic-bezier(0.34,1.56,0.64,1); }
.job-card:hover { background: rgba(255,255,255,.07); border-color: var(--accent); transform: translateY(-6px) scale(1.005); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.job-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1.2rem; }
.badge-hot { background: rgba(230,51,41,.2); color: var(--accent); }
.badge-open { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.job-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.job-card p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; font-weight: 300; margin-bottom: 1.5rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.jchip { font-size: .72rem; padding: .25rem .7rem; border-radius: 100px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08); }
.jchip.r { background: rgba(230,51,41,.15); color: var(--accent); border-color: rgba(230,51,41,.3); }
.career-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
/* PROMPT 8: Glassmorphism on career cards */
.career-perks, .career-form-wrap { background: rgba(255,255,255,.04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2.5rem; }
.career-perks h3, .career-form-wrap h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
.perks-list { display: flex; flex-direction: column; gap: .9rem; }
.perk { display: flex; align-items: flex-start; gap: .9rem; }
.perk-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(230,51,41,.15); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.perk p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.5; font-weight: 300; }
.perk p strong { color: rgba(255,255,255,.8); font-weight: 500; }
.cf { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.cf label { font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.cf input, .cf select, .cf textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white); border-radius: 10px; padding: .75rem 1rem; font-family: 'Inter', sans-serif; font-size: .875rem; outline: none; transition: border-color .2s; }
.cf select option { background: var(--mid); }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(255,255,255,.25); }
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color: var(--accent); }
.cf textarea { resize: vertical; min-height: 80px; }
.cf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-submit { width: 100%; background: var(--accent); color: var(--white); padding: .9rem; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600; border: none; cursor: pointer; transition: background .2s, transform .15s; margin-top: .5rem; }
.cf-submit:hover { background: #c8281f; transform: translateY(-1px); }
.career-ok { display: none; text-align: center; padding: 2rem; color: rgba(255,255,255,.6); }

/* QUOTE */
.quote-wrap { background: var(--mid); padding: 7rem 5vw; }
.quote-inner { max-width: 1280px; margin: 0 auto; }
.quote-inner h2 { color: var(--white); }
.quote-inner .sec-sub { color: rgba(255,255,255,.5); margin-bottom: 3rem; }
.quote-inner .sec-tag { color: var(--accent); }
.fg3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1rem; }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg label { font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white); border-radius: 12px; padding: .85rem 1.1rem; font-family: 'Inter', sans-serif; font-size: .9rem; outline: none; transition: border-color .2s; }
.fg select option { background: var(--mid); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-foot { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: .8rem; color: rgba(255,255,255,.3); flex: 1; }
#qForm .btn-primary { background: var(--accent); }
#qForm .btn-primary:hover { background: #c8281f; }
.form-ok { display: none; background: rgba(230,51,41,.1); border: 1px solid rgba(230,51,41,.25); border-radius: 16px; padding: 1.5rem 2rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* CTA */
.cta-wrap { background: var(--black); padding: 8rem 5vw; text-align: center; position: relative; overflow: hidden; }
.cta-wrap::before { content: ''; position: absolute; top: -50%; left: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(230,51,41,.1) 0%, transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); font-size: clamp(2.2rem,5vw,3.5rem); margin-bottom: 1.5rem; }
.cta-inner p { color: rgba(255,255,255,.5); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; font-weight: 300; }
.cta-acts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--black); padding: .9rem 2.2rem; border-radius: 100px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; font-size: .9rem; }
.btn-white:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.7); padding: .9rem 2.2rem; border-radius: 100px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); transition: all .2s; font-size: .9rem; }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* CONTACT BAR */
.cbar { background: var(--accent); padding: 1.5rem 5vw; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.cbar a, .cbar span { display: flex; align-items: center; gap: .75rem; color: var(--white); text-decoration: none; font-weight: 500; font-size: .9rem; transition: opacity .2s; }
.cbar a:hover { opacity: .8; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,.5); padding: 4rem 5vw 2rem; }
.foot-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.foot-brand .logo { color: var(--white); margin-bottom: 1rem; }
.foot-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.krs-s { font-size: .7rem; color: rgba(255,255,255,.2); margin-top: .5rem; }
.foot-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.foot-col ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .875rem; transition: color .2s; }
.foot-col ul a:hover { color: var(--white); }
.foot-bot { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .8rem; flex-wrap: wrap; gap: 1rem; }
.foot-bot a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.foot-bot a:hover { color: var(--white); }

/* FLOATING BUTTONS */
.float-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 99; display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; }
.fbtn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.2); text-decoration: none; transition: transform .2s, box-shadow .2s; border: none; position: relative; }
.fbtn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.fbtn-ph { background: var(--accent); color: var(--white); }
.fbtn-em { background: var(--white); color: var(--black); }
.flbl { position: absolute; right: 60px; background: var(--black); color: var(--white); font-size: .75rem; padding: .35rem .8rem; border-radius: 100px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all .2s; pointer-events: none; font-family: 'Inter', sans-serif; }
.fbtn:hover .flbl { opacity: 1; transform: translateX(0); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr;padding-top:calc(var(--nav-h) + 3rem)}
  .hero-right{order:-1}
  .hero-stats{grid-template-columns:repeat(4,1fr)}
  .counters-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
  .jobs-grid{grid-template-columns:1fr 1fr}
  .career-bottom{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-links.open{display:flex;flex-direction:column;position:fixed;top:var(--nav-h);left:0;right:0;background:var(--white);border-bottom:1px solid var(--border);padding:2rem;gap:1.5rem;align-items:flex-start;z-index:99}
  .hamburger{display:flex}
  .services-grid,.trust-grid,.jobs-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .hero-stats,.counters-grid,.cov-stats{grid-template-columns:1fr 1fr}
  .fg3,.fg2{grid-template-columns:1fr}
  .cbar{gap:1.5rem}
  .foot-grid{grid-template-columns:1fr}
  .proc-step::after{display:none}
  .cf-row2{grid-template-columns:1fr}
  .career-bottom{grid-template-columns:1fr}
}
