/* =================================================================
   Informatix — Enterprise Tech Theme
   Design tokens per claude.md Section 2
   ================================================================= */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-body: #334155;
  --accent-blue: #0090cc;   /* logo dominant blue */
  --accent-hover: #0077a8;  /* darker interactive logo blue */
  --accent-cyan: #14c2f2;   /* bright logo highlight cyan */
  --border-light: #e2e8f0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.18);
  --app-shot-aspect: 1688 / 876;
  --web-shot-aspect: 1688 / 876;
  --sw-shot-width: 543px;
  --sw-shot-height: 282px;
  --sw-shot-aspect: 543 / 282;
  --sw-shot-frame: calc(var(--sw-shot-width) + 56px);
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Roboto', system-ui, sans-serif;
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text-main); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: #fff; }

.lead-el {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 540px;
  margin-top: -8px;
}

.container { width: 100%; max-width: var(--container, 1200px); margin: 0 auto; padding: 0 24px; }
body.lang-el .container {
  max-width: var(--container, 1200px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section { padding: 88px 0; }
.section--alt { background: var(--bg-secondary); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h1,
.section-head h2 {
  font-size: clamp(1.5rem, 1rem + 2vw, 1.85rem);
  font-weight: 600;
  padding-left: 16px;
  border-left: 4px solid var(--accent-blue);
}
.section-head p { color: var(--text-muted); font-size: 1.02rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: var(--radius-md);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent-blue); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--text-main); border-color: var(--border-light); }
.btn--ghost:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.btn--light { background: #fff; color: var(--text-main); border-color: var(--border-light); }
.btn--light:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  max-width: var(--container, 1200px);
}
.brand { display: flex; align-items: center; }
.brand-logo, .custom-logo { height: 34px; width: auto; display: block; }
.brand-logo { max-width: 240px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--text-main); font-family: var(--font-head); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--accent-blue); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}
.lang-switch a {
  padding: 6px 10px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-muted);
  line-height: 1;
}
.lang-switch a:hover { color: var(--accent-blue); }
.lang-switch a.is-active {
  background: var(--accent-blue);
  color: #fff;
}
.lang-switch a.is-active:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-main); margin: 4px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(0, 144, 204, 0.10), transparent 60%),
    radial-gradient(700px 400px at 8% 12%, rgba(20, 194, 242, 0.07), transparent 55%),
    var(--bg-primary);
}
.hero-grid { display: block; }
.hero-visual {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 8px 0 28px;
}
.hero-copy { min-width: 0; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 2.9rem);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 1.12rem; color: var(--text-muted); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-cta .btn { max-width: 100%; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--text-main); font-weight: 700; }
.hero-stats .stat span { font-size: .85rem; color: var(--text-muted); }

.hero-visual .swiper-slide-image,
.hero-visual img,
img.app-shot {
  width: 100%;
  height: auto;
  aspect-ratio: var(--app-shot-aspect);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: none;
  background: transparent;
  overflow: hidden;
}

/* Compact hero slideshow — match Elementor hero carousel (side arrows + dots) */
.hero-visual .showcase-slider--hero {
  width: 100%;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.hero-visual .showcase-slider--hero .showcase-viewport {
  position: relative;
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .showcase-slider--hero .showcase-track {
  min-height: 0;
}
.hero-visual .showcase-slider--hero .showcase-slide {
  display: none;
  grid-template-columns: 1fr;
  min-height: 0;
}
.hero-visual .showcase-slider--hero .showcase-slide.is-active {
  display: block;
}
.hero-visual .showcase-slider--hero .showcase-frame {
  background: transparent;
  min-height: 0;
}
.hero-visual .showcase-slider--hero .showcase-shot,
.hero-visual .showcase-slider--hero .showcase-shot.app-shot {
  width: 100%;
  height: auto;
  aspect-ratio: var(--app-shot-aspect);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.hero-visual .showcase-slider--hero .showcase-controls--hero {
  margin-top: 12px;
  padding: 0;
  border-top: none;
  background: transparent;
  justify-content: center;
  gap: 0;
}
.hero-visual .showcase-slider--hero .showcase-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
  opacity: 0.9;
}
.hero-visual .showcase-slider--hero .showcase-btn:hover {
  opacity: 1;
  border: none;
  color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}
.hero-visual .showcase-slider--hero .showcase-btn--prev {
  left: 10px;
}
.hero-visual .showcase-slider--hero .showcase-btn--next {
  right: 10px;
}

/* Hero terminal mock */
.code-window {
  background: #0f172a; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid #1e293b;
}
.code-window .bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #131c31; border-bottom: 1px solid #1e293b; }
.code-window .bar i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.code-window .bar i:nth-child(1){ background:#ef4444;} .code-window .bar i:nth-child(2){ background:#f59e0b;} .code-window .bar i:nth-child(3){ background:#22c55e;}
.code-window .bar small { margin-left: 10px; color: #64748b; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .76rem; }
.code-window pre {
  margin: 0; padding: 20px; color: #cbd5e1;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; font-size: .82rem; line-height: 1.7;
  overflow-x: auto;
}
.code-window .k { color: #7dd3fc; } .code-window .s { color: #86efac; } .code-window .c { color: #64748b; } .code-window .f { color: #c4b5fd; } .code-window .n { color: #fca5a5; }

/* ---------- Services strip ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cdd9ea; }
.svc-card .ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(0,144,204,.1); color: var(--accent-blue); margin-bottom: 16px; }
.svc-card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.svc-card p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* ---------- Portfolio grid ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.pf-card {
  background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #b8dce8; }
.pf-frame { position: relative; background: #0f172a; }
.pf-frame .dots { display: flex; gap: 6px; padding: 9px 12px; background: #131c31; }
.pf-frame .dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pf-frame .dots i:nth-child(1){background:#ef4444;}.pf-frame .dots i:nth-child(2){background:#f59e0b;}.pf-frame .dots i:nth-child(3){background:#22c55e;}
.pf-shot,
.pf-frame .pf-shot,
.pf-frame img.pf-shot {
  width: 100%;
  height: auto;
  aspect-ratio: var(--web-shot-aspect);
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.pf-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pf-body h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.pf-body .tag { font-size: .75rem; font-weight: 600; color: var(--accent-blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; display: block; }
.pf-body p { font-size: .88rem; color: var(--text-muted); margin: 0 0 16px; flex: 1; }
.pf-body .visit { font-family: var(--font-head); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Showcase slideshow ---------- */
.showcase-slider {
  margin-bottom: 48px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.showcase-viewport { position: relative; overflow: hidden; background: #0f172a; }
.showcase-track { position: relative; min-height: 420px; }
.showcase-slide {
  display: none;
  grid-template-columns: 1.35fr .65fr;
  gap: 0;
  min-height: 420px;
}
.showcase-slide.is-active { display: grid; }
.showcase-frame { position: relative; background: #0f172a; min-height: 280px; }
.showcase-frame .dots { display: flex; gap: 6px; padding: 9px 12px; background: #131c31; }
.showcase-frame .dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.showcase-frame .dots i:nth-child(1){background:#ef4444;}.showcase-frame .dots i:nth-child(2){background:#f59e0b;}.showcase-frame .dots i:nth-child(3){background:#22c55e;}
.showcase-shot,
.showcase-shot.app-shot,
.showcase-slider--apps .showcase-shot,
.showcase-slider--apps .swiper-slide-image {
  width: 100%;
  height: auto;
  aspect-ratio: var(--web-shot-aspect);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg,#1e293b,#0f172a);
}
.showcase-caption {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-light);
}
.showcase-type {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.showcase-tag {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.showcase-caption h3 { font-size: 1.35rem; font-weight: 700; margin: 0 0 16px; }
.showcase-links { display: flex; flex-wrap: wrap; gap: 14px; }
.showcase-links a { font-family: var(--font-head); font-weight: 600; font-size: .88rem; }
.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}
.showcase-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.showcase-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); box-shadow: var(--shadow-sm); }
.showcase-dots { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.showcase-dot.is-active { background: var(--accent-blue); transform: scale(1.15); }

/* ---------- Software section ---------- */
.sw-list { display: grid; gap: 24px; }
.sw-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sw-shot-frame);
  gap: 0;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sw-card.sw-card--visual-left {
  grid-template-columns: var(--sw-shot-frame) minmax(0, 1fr);
}
.sw-info { padding: 34px 36px; align-self: center; min-width: 0; }
.sw-info .num { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--accent-blue); letter-spacing: .1em; }
.sw-info h3 { font-size: 1.4rem; font-weight: 700; margin: 8px 0 14px; }
.sw-info p { color: var(--text-muted); font-size: .96rem; }
.sw-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.sw-badge { font-size: .76rem; font-family: var(--font-head); font-weight: 600; background: var(--bg-secondary); border: 1px solid var(--border-light); color: var(--text-body); padding: 6px 12px; border-radius: 999px; }
.sw-links { display: flex; flex-wrap: wrap; gap: 14px; }
.sw-links a { font-family: var(--font-head); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }
.sw-visual { align-self: center; width: var(--sw-shot-frame); min-width: var(--sw-shot-frame); max-width: var(--sw-shot-frame); flex-shrink: 0; background: transparent; display: block; padding: 0; overflow: visible; }
.sw-visual pre { margin: 0; padding: 26px; color: #cbd5e1; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .8rem; line-height: 1.7; width: 100%; overflow-x: auto; }
.sw-card .sw-visual--img {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  flex-shrink: 0;
  overflow: hidden;
}
.sw-card .sw-visual--img img,
.sw-card .sw-visual--img .app-shot {
  width: var(--sw-shot-width);
  height: var(--sw-shot-height);
  max-width: 100%;
  aspect-ratio: var(--sw-shot-aspect);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: none;
  background: transparent;
  /* Hide 1–2px screenshot chrome rims under the rounded clip */
  transform: scale(1.015);
  overflow: hidden;
}

/* ---------- Contact / booking ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.booking-box { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.booking-box h3 { font-size: 1.3rem; font-weight: 700; }
.booking-box p { color: var(--text-muted); }
.contact-points { margin-top: 26px; display: grid; gap: 14px; }
.contact-points .cp { display: flex; gap: 12px; align-items: center; font-size: .95rem; color: var(--text-body); }
.contact-points .cp .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(0,144,204,.1); color: var(--accent-blue); display: grid; place-items: center; flex: none; }

.lead-form { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.lead-form .row { margin-bottom: 18px; }
.lead-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--text-main); margin-bottom: 7px; }
.lead-form label .req { color: #ef4444; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: .95rem; color: var(--text-main);
  background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius-md); transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(0,144,204,.12); background: #fff; }
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form .help { font-size: .78rem; color: var(--text-muted); margin-top: 5px; }
.lead-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-status { display: none; margin-top: 14px; padding: 13px 16px; border-radius: var(--radius-md); font-size: .9rem; }
.form-status.ok { display: block; background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }
.form-status.err { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* ---------- Footer ---------- */
.site-footer { background: #0f172a; color: #94a3b8; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand { margin-bottom: 16px; }
.footer-logo { height: 40px; width: auto; max-width: 260px; object-fit: contain; }
.site-footer p { font-size: .9rem; color: #94a3b8; }
.site-footer h4, .footer-heading {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  font-weight: 600;
  border: 0;
  padding: 0;
}
.footer-local { margin-top: 12px; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-main);
  padding: 14px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent-blue);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--text-muted); margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer ul a { color: #94a3b8; font-size: .9rem; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #64748b; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: cookie-in .35s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 22px; flex-wrap: wrap;
}
.cookie-text { margin: 0; font-size: .9rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 10px; max-width: 760px; }
.cookie-text svg { color: var(--accent-blue); flex: none; margin-top: 1px; }
.cookie-text a { font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex: none; }
.cookie-actions .btn { padding: 10px 20px; font-size: .9rem; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 680px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
  .cookie-actions { justify-content: flex-end; }
}

/* ---------- Privacy policy ---------- */
.privacy-page { padding-top: 56px; padding-bottom: 72px; }
.privacy-head { max-width: 760px; margin-bottom: 40px; }
.privacy-head h1 {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.4rem);
  font-weight: 700;
  padding-left: 16px;
  border-left: 4px solid var(--accent-blue);
  margin-bottom: 8px;
}
.privacy-updated { color: var(--text-muted); font-size: .92rem; font-style: italic; margin: 0; }
.privacy-body { max-width: 760px; }
.privacy-body h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--accent-blue);
}
.privacy-body h3 { font-size: 1.05rem; font-weight: 600; margin: 22px 0 8px; color: var(--text-main); }
.privacy-body ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.privacy-body li { margin-bottom: 6px; }
.privacy-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.privacy-body table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.privacy-body th,
.privacy-body td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border-light); }
.privacy-body thead th { background: var(--bg-secondary); font-weight: 600; color: var(--text-main); }
.privacy-body tbody tr:last-child td { border-bottom: 0; }
.privacy-rights {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 16px 0 20px;
}
.privacy-rights p { margin: 0 0 10px; }
.privacy-rights p:last-child { margin-bottom: 0; }
.privacy-note { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border-light); color: var(--text-muted); font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { display: block; gap: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-slide.is-active { grid-template-columns: 1fr; }
  .showcase-caption { border-left: none; border-top: 1px solid var(--border-light); }
  .sw-card,
  .sw-card.sw-card--visual-left { grid-template-columns: 1fr; }
  .sw-visual { width: 100%; min-width: 0; max-width: 100%; }
  .sw-card .sw-visual--img img,
  .sw-card .sw-visual--img .app-shot {
    width: 100%;
    height: auto;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav, .nav-actions .btn { display: none; }
  .lang-switch { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 4px; background: #fff; border-bottom: 1px solid var(--border-light); padding: 14px 24px 18px; }
  .nav.open a { padding: 8px 0; width: 100%; }
  .svc-grid, .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
