@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --blue:      #0F4D99;
  --blue-lt:   #1A6AE0;
  --blue-xlt:  #4D8FFF;
  --blue-dk:   #0A3570;
  --blue-glow: rgba(15,77,153,0.30);

  --bg-0:  #04090F;
  --bg-1:  #071220;
  --bg-2:  #0A1A2E;
  --bg-3:  #0D2240;
  --bg-4:  #102A50;

  --white:     #FFFFFF;
  --t-1:       #E8F0F8;
  --t-2:       #9AB5CC;
  --t-3:       #527090;

  --b-s:  rgba(15,77,153,0.15);
  --b-m:  rgba(15,77,153,0.28);
  --b-l:  rgba(26,106,224,0.50);
  --b-d:  rgba(255,255,255,0.05);

  --fh: 'Space Grotesk', sans-serif;
  --fb: 'Inter', sans-serif;
  --r1: 4px; --r2: 8px; --r3: 14px; --r4: 24px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg-0); color: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--fb); }

/* ── TYPE ── */
h1 { font-family: var(--fh); font-size: clamp(2.8rem,5.5vw,4.6rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-family: var(--fh); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
p { color: var(--t-2); line-height: 1.78; font-weight: 400; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-xlt); }
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--blue-lt); flex-shrink: 0; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4.5rem 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--fh); font-size: 0.9rem; font-weight: 600; padding: 0.8rem 2rem; border-radius: var(--r2); border: none; cursor: pointer; transition: all 0.25s var(--ease); letter-spacing: 0.01em; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--b-m); }
.btn-outline:hover { border-color: var(--blue-lt); color: var(--blue-xlt); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── NAV ── */
.nav { position: fixed; inset: 0 0 auto; z-index: 200; transition: all 0.3s var(--ease); }
.nav.scrolled { background: rgba(4,9,15,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--b-s); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--t-2); padding: 0.4rem 0.9rem; border-radius: var(--r2); transition: all 0.18s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.lang-sw { display: flex; background: var(--b-d); border: 1px solid var(--b-d); border-radius: var(--r2); padding: 3px; gap: 2px; }
.lang-sw button { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.2rem 0.55rem; border-radius: 5px; border: none; background: transparent; color: var(--t-3); transition: all 0.18s var(--ease); }
.lang-sw button.active, .lang-sw button:hover { background: var(--blue); color: #fff; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 9rem 0 6rem; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 68% 38%, rgba(15,77,153,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 10% 70%, rgba(10,53,112,0.10) 0%, transparent 55%),
    linear-gradient(170deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-0) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,77,153,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,77,153,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 75% at 60% 40%, black 20%, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: center; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.hero-tag { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .hl { color: var(--blue-xlt); }
.hero-desc { font-size: 1.02rem; max-width: 500px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-bar { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--b-s); flex-wrap: wrap; }
.hb-item .val { font-family: var(--fh); font-size: 1.6rem; font-weight: 700; color: var(--blue-xlt); line-height: 1; }
.hb-item .lbl { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-3); margin-top: 4px; }
.hb-sep { width: 1px; background: var(--b-s); }

/* Hero right panel */
.hero-panel { background: transparent; border: none; border-radius: var(--r4); padding: 0; position: relative; overflow: hidden; box-shadow: none; }
.hero-panel::before { content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-lt), transparent); }
.hp-logo { margin-bottom: 1.6rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--b-s); }
.hp-logo img { height: 28px; width: auto; }
.hp-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0.9rem; background: var(--bg-1); border: 1px solid var(--b-d); border-radius: var(--r2); margin-bottom: 0.55rem; transition: border-color 0.2s var(--ease); }
.hp-row:last-child { margin-bottom: 0; }
.hp-row:hover { border-color: var(--b-m); }
.hp-row-l { display: flex; align-items: center; gap: 0.7rem; }
.hp-ico { width: 32px; height: 32px; border-radius: var(--r1); background: rgba(15,77,153,0.15); border: 1px solid var(--b-s); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.hp-name { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.hp-sub { font-size: 0.68rem; color: var(--t-3); margin-top: 1px; }
.hp-chip { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em; padding: 0.18rem 0.55rem; border-radius: 3px; }
.chip-blue { background: rgba(15,77,153,0.2); color: var(--blue-xlt); border: 1px solid var(--b-s); }
.chip-green { background: rgba(0,180,90,0.15); color: #00C86E; }
.chip-amber { background: rgba(245,158,11,0.15); color: #F59E0B; }

/* ── SERVICES ── */
.services-sec { background: var(--bg-1); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card { background: var(--bg-2); border: 1px solid var(--b-d); border-radius: var(--r3); padding: 2.2rem; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-dk), var(--blue-lt)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.svc-card:hover { border-color: var(--b-m); background: var(--bg-3); transform: translateY(-3px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: var(--fh); font-size: 0.65rem; font-weight: 700; color: var(--blue); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.3rem; }
.svc-icon { width: 52px; height: 52px; border-radius: var(--r2); background: rgba(15,77,153,0.12); border: 1px solid var(--b-m); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.3rem; transition: all 0.3s var(--ease); }
.svc-card:hover .svc-icon { background: rgba(15,77,153,0.22); border-color: var(--b-l); }
.svc-card h3 { margin-bottom: 0.7rem; color: var(--white); }
.svc-card p { font-size: 0.875rem; line-height: 1.72; }
.svc-list { list-style: none; margin-top: 1.2rem; }
.svc-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--t-2); padding: 0.35rem 0; border-bottom: 1px solid var(--b-d); }
.svc-list li:last-child { border: none; }
.svc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-lt); flex-shrink: 0; }

/* ── PRODUCTS ── */
.products-sec { background: var(--bg-0); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.prod-card { background: var(--bg-2); border: 1px solid var(--b-d); border-radius: var(--r3); padding: 1.8rem; display: flex; flex-direction: column; gap: 0; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.prod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-dk), var(--blue-lt)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.prod-card:hover { border-color: var(--b-m); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(4,9,15,0.6); }
.prod-card:hover::before { transform: scaleX(1); }
.prod-icon { width: 48px; height: 48px; border-radius: var(--r2); background: rgba(15,77,153,0.12); border: 1px solid var(--b-m); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.prod-cat { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-xlt); margin-bottom: 0.6rem; }
.prod-card h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.7rem; line-height: 1.35; }
.prod-card p { font-size: 0.835rem; line-height: 1.7; margin-bottom: 1.2rem; flex: 1; }
.prod-specs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; }
.spec { font-size: 0.65rem; font-weight: 500; padding: 0.2rem 0.55rem; border-radius: 3px; border: 1px solid var(--b-d); background: rgba(255,255,255,0.03); color: var(--t-3); letter-spacing: 0.02em; }

/* ── EDGE AI ── */
.ai-sec { background: var(--bg-1); }
.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ai-text .eyebrow { margin-bottom: 1.1rem; }
.ai-text h2 { margin-bottom: 1.2rem; margin-top: 1rem; }
.ai-text p { margin-bottom: 1rem; font-size: 0.96rem; }
.ai-features { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0; }
.ai-features li { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--b-d); }
.ai-features li:last-child { border: none; }
.ai-feat-icon { width: 36px; height: 36px; border-radius: var(--r1); background: rgba(15,77,153,0.14); border: 1px solid var(--b-m); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.ai-feat-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.ai-feat-desc { font-size: 0.82rem; color: var(--t-2); line-height: 1.6; }

/* AI visual */
.ai-visual { background: var(--bg-0); border: 1px solid var(--b-m); border-radius: var(--r4); padding: 2rem; position: relative; overflow: hidden; }
.ai-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(15,77,153,0.10), transparent); }
.ai-vis-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t-3); margin-bottom: 1.4rem; }
.ai-vis-nodes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; position: relative; z-index: 1; }
.ai-node { background: var(--bg-2); border: 1px solid var(--b-s); border-radius: var(--r2); padding: 0.9rem 1rem; }
.ai-node.center { grid-column: span 2; background: var(--bg-3); border-color: var(--b-m); text-align: center; }
.ai-node-lbl { font-size: 0.72rem; font-weight: 600; color: var(--blue-xlt); margin-bottom: 0.2rem; }
.ai-node-val { font-family: var(--fh); font-size: 0.88rem; font-weight: 600; color: var(--white); }
.ai-node-sub { font-size: 0.68rem; color: var(--t-3); margin-top: 2px; }
.ai-pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-lt); box-shadow: 0 0 8px var(--blue-lt); animation: pulse 2s infinite; margin-right: 0.4rem; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* ── ABOUT / STATS ── */
.about-sec { background: var(--bg-0); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .eyebrow { margin-bottom: 1.1rem; }
.about-text h2 { margin-top: 1rem; margin-bottom: 1.2rem; }
.about-text p { font-size: 0.95rem; margin-bottom: 0.9rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box { background: var(--bg-2); border: 1px solid var(--b-s); border-radius: var(--r3); padding: 1.8rem; text-align: center; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.stat-box:hover { border-color: var(--b-m); background: var(--bg-3); }
.stat-box::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--blue-lt), transparent); }
.stat-box .sv { font-family: var(--fh); font-size: 2.4rem; font-weight: 700; color: var(--blue-xlt); display: block; line-height: 1; }
.stat-box .sl { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t-3); display: block; margin-top: 0.4rem; }

/* ── CTA ── */
.cta-sec { background: var(--bg-2); border-top: 1px solid var(--b-m); border-bottom: 1px solid var(--b-m); position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 120% at 90% 50%, rgba(15,77,153,0.10), transparent); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-text h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); margin-bottom: 0.5rem; }
.cta-text p { max-width: 440px; }
.cta-btns { display: flex; gap: 1rem; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-sec { background: var(--bg-1); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info .eyebrow { margin-bottom: 1rem; }
.contact-info h2 { margin-top: 1rem; margin-bottom: 0.8rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.c-items { display: flex; flex-direction: column; gap: 1.1rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r1); background: rgba(15,77,153,0.12); border: 1px solid var(--b-m); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.c-lbl { font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-3); display: block; margin-bottom: 2px; }
.c-val { font-size: 0.9rem; color: var(--t-2); }
.c-val a { color: var(--blue-xlt); transition: color 0.18s; }
.c-val a:hover { color: var(--white); }

.cform { background: var(--bg-0); border: 1px solid var(--b-s); border-radius: var(--r4); padding: 2.4rem; }
.cform h3 { font-size: 1.15rem; margin-bottom: 1.6rem; color: var(--white); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-3); margin-bottom: 0.42rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--b-d); border-radius: var(--r1); padding: 0.78rem 1rem; color: var(--white); font-family: var(--fb); font-size: 0.88rem; transition: border-color 0.18s var(--ease); outline: none; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-lt); box-shadow: 0 0 0 3px rgba(15,77,153,0.12); }
.fg textarea { resize: vertical; min-height: 108px; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(83,112,144,0.5); }
.f-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ── FOOTER ── */
.footer { background: var(--bg-0); padding: 4rem 0 2rem; border-top: 1px solid var(--b-d); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--b-d); }
.fb img { height: 26px; width: auto; margin-bottom: 1rem; }
.fb p { font-size: 0.84rem; max-width: 230px; }
.fc h5 { font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--t-3); margin-bottom: 1.1rem; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 0.6rem; }
.fc a { font-size: 0.875rem; color: var(--t-3); transition: color 0.18s var(--ease); }
.fc a:hover { color: var(--blue-xlt); }
.footer-btm { display: flex; justify-content: space-between; align-items: center; }
.footer-btm p { font-size: 0.78rem; color: var(--t-3); }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--b-m), transparent); }

/* ── SECTION HEAD ── */
.sh { margin-bottom: 4rem; }
.sh.center { text-align: center; }
.sh.center .eyebrow { justify-content: center; }
.sh.center p { margin: 0 auto; }
.sh .eyebrow { margin-bottom: 1rem; }
.sh h2 { margin-top: 0.9rem; margin-bottom: 0.9rem; }
.sh p { max-width: 520px; font-size: 0.97rem; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.vis { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.08s; } .rd2 { transition-delay: 0.16s; } .rd3 { transition-delay: 0.24s; }
.ha { opacity: 0; transform: translateY(18px); animation: hIn 0.65s var(--ease) forwards; }
.ha1{animation-delay:.1s;} .ha2{animation-delay:.25s;} .ha3{animation-delay:.4s;} .ha4{animation-delay:.55s;} .ha5{animation-delay:.7s;}
@keyframes hIn { to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-inner, .ai-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .svc-grid, .prod-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .section { padding: 5rem 0; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-0); border-bottom: 1px solid var(--b-s); padding: 1.5rem 2rem; gap: 0.3rem; }
  .nav.open .nav-right { display: flex; position: fixed; top: 310px; left: 0; right: 0; background: var(--bg-0); padding: 1rem 2rem 2rem; gap: 0.75rem; }
  .svc-grid, .prod-grid, .about-stats { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; gap: 2rem; }
  .cta-btns { flex-direction: column; width: 100%; }
  .f2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-btm { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-bar { gap: 1.2rem; }
  .ai-vis-nodes { grid-template-columns: 1fr; }
  .ai-node.center { grid-column: span 1; }
}

/* ════════════ COOKIE BANNER ════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f1117;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.cookie-banner-text strong { color: #fff; font-weight: 600; }
.cookie-banner-text a { color: #60a5fa; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: #2563eb;
  color: #fff;
}
.cookie-btn-accept:hover { background: #1d4ed8; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-settings:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #1a1d27;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: #fff;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.cookie-modal p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cookie-category {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.cookie-category-header strong {
  font-size: 0.9rem;
}
.cookie-category p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}
.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: #2563eb; }
.cookie-toggle input:checked + .cookie-toggle-slider:before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

/* Cookie Re-open button */
.cookie-reopen {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9998;
  background: #1a1d27;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  display: none;
}
.cookie-reopen:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.cookie-reopen.show { display: block; }

@media (max-width: 600px) {
  .cookie-banner { padding: 1rem; flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ════════════ SERVICE & AI IMAGES ════════════ */
.svc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
}

.ai-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin: 1rem 0 1.5rem;
  display: block;
}
