
:root {
  --bg: #f4f7fb;
  --bg-soft: #eef4f8;
  --white: #ffffff;
  --dark: #081223;
  --text: #182538;
  --muted: #64748b;
  --line: #d9e4ee;
  --cyan: #22d3ee;
  --cyan-dark: #0f8fb1;
  --cyan-soft: #ecfdff;
  --shadow: 0 20px 55px rgba(8, 18, 35, 0.12);
  --shadow-soft: 0 14px 36px rgba(8, 18, 35, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #f8fbfe 0%, #f4f7fb 100%);
  color: var(--text);
  font-family: "Noto Sans Greek", "Inter", system-ui, sans-serif;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.84); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,228,238,.75);
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(8,18,35,.06); }
.navbar { min-height: 82px; display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.brand { display:inline-flex; align-items:center; gap:12px; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 12px; object-fit: contain;
  box-shadow: 0 10px 24px rgba(8,18,35,.10);
}
.brand-text strong { display:block; font-size:17px; font-weight:950; line-height:1; color: var(--dark); }
.brand-text small { display:block; margin-top:4px; font-size:12px; color: var(--muted); font-weight:700; }
.nav-links { display:flex; align-items:center; gap:26px; font-size:14px; font-weight:800; color:#44536a; }
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  padding: 12px 18px; border-radius: 999px; background: var(--dark); color: white !important;
  box-shadow: var(--shadow-soft);
}
.menu-toggle {
  display:none; width:44px; height:44px; border:1px solid var(--line); background:#fff; border-radius:14px; cursor:pointer;
}
.menu-toggle span { display:block; width:18px; height:2px; background:var(--dark); margin:5px auto; border-radius:999px; }

.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at top left, rgba(34,211,238,.14), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.hero::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(15,143,177,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15,143,177,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-grid {
  position:relative; min-height: calc(100vh - 82px); padding: 64px 0 74px;
  display:grid; grid-template-columns: 1fr 1.02fr; gap: 54px; align-items:center;
}
.eyebrow, .section-title span, .section-chip, .approval-copy span {
  display:inline-flex; align-items:center; padding: 9px 14px; border-radius:999px;
  background: var(--cyan-soft); border:1px solid #bceff8; color: var(--cyan-dark);
  font-size:12px; font-weight:900; letter-spacing:.11em; text-transform:uppercase;
}
.hero h1, .section-title h2, .workflow-copy h2, .approval-copy h2, .contact-copy h2 {
  margin: 18px 0 0; color: var(--dark); font-weight:950; letter-spacing:-.055em; line-height:1.03;
  font-size: clamp(36px, 5vw, 66px);
}
.hero p, .section-title p, .workflow-copy p, .approval-copy p, .contact-copy p {
  margin: 22px 0 0; font-size:18px; line-height:1.8; color: var(--muted);
}
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; min-height:52px;
  padding: 14px 24px; border-radius: 999px; font-weight:800; border:1px solid transparent;
  transition:.22s ease; cursor:pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--dark); color:white; box-shadow: var(--shadow-soft); }
.btn-secondary, .btn-secondary:visited {
  background: white; color: var(--dark); border-color: #cbd5e1;
}
.full { width: 100%; }
.mini-stats {
  display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:36px;
}
.mini-stats div {
  padding:18px 16px; border-radius:20px; background: rgba(255,255,255,.8); border:1px solid rgba(217,228,238,.9); box-shadow: var(--shadow-soft);
}
.mini-stats strong, .mini-stats span { display:block; }
.mini-stats strong { font-size:16px; color: var(--dark); }
.mini-stats span { margin-top:6px; font-size:13px; color: var(--muted); }
.hero-visual { display:grid; grid-template-columns: 1.35fr .9fr; gap:18px; align-items:stretch; }
.card-shell {
  background:#fff; border:1px solid rgba(217,228,238,.95); border-radius: 26px; box-shadow: var(--shadow); overflow:hidden;
}
.hero-main-screen { min-height: 540px; }
.hero-main-screen img, .hero-small-screen img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.hero-stack { display:grid; gap:18px; }
.hero-small-screen { min-height: 260px; }

.section { padding: 92px 0; }
.section-soft { background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%); }
.section-title { max-width: 860px; margin: 0 auto 46px; text-align:center; }
.section-title.align-left { max-width: 860px; margin-left: 0; margin-right:0; text-align:left; }
.section-title h2, .workflow-copy h2, .approval-copy h2, .contact-copy h2 { font-size: clamp(32px, 4.1vw, 56px); }

.cards.two-col { display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
.info-card, .role-card, .shot-card, .contact-form, .approval-card {
  background: white; border:1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft);
}
.info-card { padding:30px; }
.info-card i, .role-icon {
  width:56px; height:56px; display:grid; place-items:center; border-radius:18px; background: var(--cyan-soft); color: var(--cyan-dark); font-size:24px; font-style: normal; margin-bottom:18px;
}
.info-card h3, .role-card h3 { margin:0; font-size:26px; color: var(--dark); }
.info-card ul { margin:18px 0 0; padding-left:18px; line-height:1.85; color: var(--muted); }
.info-card.feature { background: linear-gradient(180deg, #091223 0%, #10203b 100%); border-color: #122844; }
.info-card.feature h3, .info-card.feature ul { color:#fff; }
.info-card.feature i { background: rgba(255,255,255,.1); color: #8ce8f7; }
.roles-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:18px; }
.role-card { padding:26px; transition:.22s ease; }
.role-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.role-card small { display:block; margin-bottom:8px; font-size:11px; letter-spacing:.14em; font-weight:900; text-transform:uppercase; color:#94a3b8; }
.role-card p { margin:14px 0 0; color: var(--muted); font-size:14px; line-height:1.75; }

.workflow-wrap { display:grid; grid-template-columns: .9fr 1.1fr; gap:30px; align-items:start; }
.timeline { background: white; border:1px solid var(--line); border-radius: var(--radius-xl); padding:28px; box-shadow: var(--shadow-soft); }
.timeline-item { position:relative; display:grid; grid-template-columns: 54px 1fr; gap:16px; padding-bottom:18px; }
.timeline-item:not(:last-child)::before { content:""; position:absolute; left:26px; top:58px; bottom:0; width:1px; background: var(--line); }
.timeline-item b { position:relative; z-index:1; width:54px; height:54px; display:grid; place-items:center; border-radius:18px; background: var(--dark); color:white; font-size:20px; }
.timeline-item p { margin:0; padding:16px 18px; border:1px solid var(--line); border-radius:20px; background: var(--bg); font-weight:800; }

.approval-section { background: linear-gradient(180deg, #ffffff 0%, #f1fbff 100%); }
.approval-grid { display:grid; grid-template-columns: 1.04fr .96fr; gap:22px; align-items:stretch; }
.approval-card { padding:34px; background: linear-gradient(180deg, #081223 0%, #122540 100%); border-color: transparent; color: white; display:flex; flex-direction:column; justify-content:center; }
.approval-card strong { display:block; color:#8ce8f7; font-size: clamp(24px, 2.8vw, 38px); line-height:1.12; letter-spacing:-.04em; }
.approval-card span { display:block; margin-top:14px; color:#d9e5f2; line-height:1.75; }

.screenshots-section { background: linear-gradient(180deg, #081223 0%, #0d1930 100%); }
.screenshots-section .section-title h2,
.screenshots-section .section-title p,
.screenshots-section .section-title span,
.screenshots-section .category-heading h3,
.screenshots-section .category-heading p { color: white; }
.screenshots-section .section-title p, .screenshots-section .category-heading p { color: #c8d6e5; }
.screenshots-section .section-title span {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color:#8ce8f7;
}
.screenshot-tabs { display:flex; flex-wrap:wrap; gap:10px; margin: -10px 0 28px; }
.screenshot-tabs a {
  display:inline-flex; align-items:center; min-height:40px; padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color:#f1f5f9; font-size:13px; font-weight:800;
}
.screenshot-tabs a:hover { background: rgba(34,211,238,.14); border-color: rgba(34,211,238,.38); }
.screenshot-category { margin-top: 48px; padding-top: 28px; border-top:1px solid rgba(255,255,255,.1); scroll-margin-top: 104px; }
.screenshot-category:first-of-type { margin-top: 14px; }
.category-heading { max-width: 820px; margin-bottom: 20px; }
.category-heading span {
  display:inline-flex; padding:7px 11px; border-radius:999px; background: rgba(34,211,238,.12); color:#8ce8f7; border:1px solid rgba(140,232,247,.22);
  font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase;
}
.category-heading h3 { margin:14px 0 0; font-size: clamp(26px, 3vw, 40px); letter-spacing:-.035em; }
.category-heading p { margin:10px 0 0; line-height:1.72; }
.screenshot-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; }
.shot-card {
  overflow:hidden; cursor:pointer; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.shot-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18); border-color: #9fd9e8; }
.shot-frame {
  margin: 14px 14px 0; border-radius: 20px; overflow:hidden; background: linear-gradient(180deg, #edf4fb 0%, #dce9f5 100%);
  border:1px solid #e5eef7;
}
.shot-card img { width:100%; height: 240px; object-fit: contain; padding: 8px; }
.shot-card figcaption { padding: 16px 18px 18px; }
.shot-card strong { display:block; font-size: 18px; color: var(--dark); }
.shot-card span { display:block; margin-top:5px; font-size: 14px; color: var(--muted); }

.contact-section { background: white; }
.contact-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap:24px; align-items:start; }
.contact-points { display:grid; gap:14px; margin-top:28px; }
.contact-points div { padding:18px 20px; background: var(--bg); border:1px solid var(--line); border-radius: 22px; }
.contact-points strong { display:block; font-size:14px; color: var(--dark); }
.contact-points span { display:block; margin-top:6px; color: var(--muted); }
.inline-link { color: var(--cyan-dark); font-weight:800; }
.contact-form {
  padding:30px; background: var(--bg); border-radius: 30px;
}
.contact-form label { display:block; margin-bottom:16px; font-size:14px; font-weight:900; color: var(--text); }
.contact-form input, .contact-form select, .contact-form textarea {
  width:100%; margin-top:8px; border:1px solid #cbd5e1; border-radius:16px; padding:14px 16px; background:white; color: var(--dark); outline:none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 4px rgba(34,211,238,.16); }

.footer { padding: 22px 0; background: #fff; border-top: 1px solid rgba(217,228,238,.95); }
.footer-inner { display:grid; grid-template-columns: 1fr auto auto; align-items:center; gap:18px; }
.footer-logo-wrap { display:inline-flex; align-items:center; gap:12px; }
.footer-logo { width:40px; height:40px; border-radius: 12px; object-fit: contain; }
.footer-logo-wrap strong { display:block; color: var(--dark); font-size:16px; font-weight:950; }
.footer-logo-wrap span { display:block; margin-top:4px; color: var(--muted); font-size:12px; }
.footer-links { display:flex; gap:16px; flex-wrap:wrap; color:#52637a; font-size:13px; font-weight:800; }
.footer-links a:hover { color: var(--dark); }
.footer-meta small { color: var(--muted); font-size:13px; }

.lightbox {
  position: fixed; inset:0; background: rgba(2,6,23,.90); display:flex; align-items:center; justify-content:center; padding:24px;
  opacity:0; visibility:hidden; transition:.22s ease; z-index:1200;
}
.lightbox.open { opacity:1; visibility:visible; }
.lightbox img { max-width:min(1200px,100%); max-height:85vh; border-radius: 18px; box-shadow: var(--shadow); background: white; }
.lightbox-close {
  position:absolute; top:16px; right:18px; width:44px; height:44px; border:0; border-radius:50%; background: rgba(255,255,255,.15); color:white; font-size:28px; cursor:pointer;
}

.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.active { opacity:1; transform: translateY(0); }
.delay-1 { transition-delay:.12s; }

@media (max-width: 1080px) {
  .hero-grid, .workflow-wrap, .approval-grid, .contact-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1180px); }
  .menu-toggle { display:block; }
  .nav-links {
    position:absolute; top:84px; left:14px; right:14px; display:none; flex-direction:column; align-items:stretch; gap:8px;
    background:white; padding:18px; border:1px solid var(--line); border-radius:22px; box-shadow: var(--shadow);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:10px 12px; }
  .nav-cta { text-align:center; }
  .hero-grid { min-height:auto; padding: 46px 0 54px; gap:34px; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-main-screen { min-height: 360px; }
  .hero-stack { grid-template-columns: repeat(2,1fr); }
  .hero-small-screen { min-height: 200px; }
  .mini-stats, .cards.two-col, .roles-grid, .screenshot-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .footer-inner { gap:14px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 42px; }
  .hero p, .section-title p, .workflow-copy p, .approval-copy p, .contact-copy p { font-size: 16px; }
  .shot-card img { height: 230px; }
  .hero-stack { grid-template-columns: 1fr; }
}


/* Update v5: Digital Expo Ltd about + Supplier category */
.digital-expo-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef8fc 100%);
  border-top: 1px solid rgba(217,228,238,.7);
  border-bottom: 1px solid rgba(217,228,238,.7);
}
.digital-expo-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}
.digital-copy h2 {
  margin: 18px 0 0;
  color: var(--dark);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: 1.04;
  font-size: clamp(32px, 4.1vw, 56px);
}
.digital-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.digital-copy strong { color: var(--dark); }
.platform-suite {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.platform-suite article {
  min-height: 150px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.platform-suite strong {
  display: block;
  color: var(--dark);
  font-size: 21px;
  letter-spacing: -.03em;
}
.platform-suite span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.supplier-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}
.supplier-layout .shot-card { height: 100%; }
.supplier-layout .shot-card .shot-frame { height: calc(100% - 88px); }
.supplier-layout .shot-card img {
  height: 100%;
  min-height: 420px;
}
.supplier-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.supplier-feature-grid article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.supplier-feature-grid strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}
.supplier-feature-grid span {
  display: block;
  color: #c8d6e5;
  font-size: 14px;
  line-height: 1.62;
}
@media (max-width: 1080px) {
  .digital-expo-grid,
  .supplier-layout { grid-template-columns: 1fr; }
  .supplier-layout .shot-card img { min-height: 300px; }
}
@media (max-width: 680px) {
  .platform-suite,
  .supplier-feature-grid { grid-template-columns: 1fr; }
}


/* Supplier screenshots - full analytical supplier flow */
.supplier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.supplier-shot .shot-frame {
  background: linear-gradient(180deg, #f8fbff 0%, #eaf3fb 100%);
}
.supplier-shot img {
  height: 240px;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .supplier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .supplier-grid { grid-template-columns: 1fr; }
}


/* Supplier section without placeholder/fake images */
.supplier-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.supplier-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.supplier-step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}
.supplier-step-card h4 {
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.supplier-step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .supplier-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .supplier-steps-grid { grid-template-columns: 1fr; }
}


/* Final screenshot mapping polish */
.screenshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.shot-card {
  height: 100%;
}
.shot-frame {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot-card img {
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  padding: 8px;
}
.brand-logo,
.footer-logo {
  object-fit: contain;
}
@media (max-width: 860px) {
  .screenshot-grid { grid-template-columns: 1fr; }
}


/* === Design polish only: keep all existing screenshots/text untouched === */
:root {
  --bg: #f5f8fc;
  --dark: #071225;
  --text: #142033;
  --muted: #65758b;
  --line: #dce6f0;
  --cyan: #18c6df;
  --cyan-dark: #087f9c;
  --cyan-soft: #eafcff;
  --shadow: 0 22px 70px rgba(7, 18, 37, 0.13);
  --shadow-soft: 0 14px 36px rgba(7, 18, 37, 0.08);
}
body {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 38%, #eef5fb 100%);
  color: var(--text);
}
.container { width: min(1240px, calc(100% - 44px)); }
.site-header {
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(220,230,240,.85);
}
.navbar { min-height: 78px; }
.brand-logo, .footer-brand img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
  border-radius: 14px;
}
.brand-text strong { font-size: 16px; letter-spacing: -.02em; }
.brand-text small { font-size: 12px; color: #667a92; }
.nav-links { gap: 22px; color: #3f4f65; }
.nav-links a { transition: color .18s ease, transform .18s ease; }
.nav-links a:hover { color: var(--cyan-dark); transform: translateY(-1px); }

.section { padding: clamp(72px, 7vw, 104px) 0; }
.hero-grid { gap: clamp(34px, 5vw, 68px); }
.hero h1, .section-title h2, .workflow-copy h2, .approval-copy h2, .contact-copy h2,
.digital-copy h2, .screenshots-section h2 {
  letter-spacing: -0.045em;
}
.hero p, .section-title p, .workflow-copy p, .approval-copy p, .contact-copy p,
.digital-copy p, .category-heading p {
  color: #62738b;
}
.eyebrow, .section-title span, .section-chip, .approval-copy span, .kicker {
  background: #ecfeff;
  border: 1px solid #b7f0f8;
  color: #087f9c;
  box-shadow: 0 8px 20px rgba(24,198,223,.08);
}

.info-card, .role-card, .contact-form, .approval-card, .platform-suite article,
.shot-card {
  border-color: rgba(220,230,240,.95);
  box-shadow: var(--shadow-soft);
}
.info-card, .role-card, .platform-suite article {
  border-radius: 26px;
}
.role-card { padding: 24px; }
.role-card h3 { font-size: 22px; }
.role-card p { font-size: 14px; line-height: 1.68; }

.screenshots-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(24,198,223,.18), transparent 24%),
    linear-gradient(180deg, #071225 0%, #0d1b31 55%, #081426 100%);
}
.screenshots-section .section-title { margin-bottom: 34px; }
.screenshots-section .section-title h2 { color: #ffffff; }
.screenshots-section .section-title p,
.screenshots-section .category-heading p { color: #c7d5e6; }
.screenshot-tabs {
  position: sticky;
  top: 90px;
  z-index: 4;
  padding: 12px;
  margin: 0 0 34px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(8, 20, 38, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.screenshot-tabs a {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #eaf6ff;
  background: rgba(255,255,255,.06);
}
.screenshot-tabs a:hover {
  background: rgba(24,198,223,.18);
  border-color: rgba(24,198,223,.45);
}
.screenshot-category {
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.category-heading {
  max-width: 920px;
  margin-bottom: 24px;
}
.category-heading h3 {
  margin-top: 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #ffffff;
}
.category-heading span {
  background: rgba(24,198,223,.13);
  color: #8cecff;
  border-color: rgba(140,236,255,.24);
}

.screenshot-grid,
.shot-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch;
}
.shot-card {
  height: auto !important;
  min-height: 0;
  overflow: hidden;
  border-radius: 26px !important;
  background: rgba(255,255,255,.98) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.shot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24,198,223,.70) !important;
  box-shadow: 0 24px 70px rgba(2, 8, 23, .28) !important;
}
.shot-frame {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  margin: 12px 12px 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #e9f2fb 100%);
  border: 1px solid #e3edf7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shot-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 10px !important;
}
.shot-card figcaption {
  padding: 16px 18px 18px !important;
  min-height: 94px;
}
.shot-card strong {
  font-size: 17px !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #071225 !important;
}
.shot-card span {
  margin-top: 6px !important;
  font-size: 13.5px !important;
  line-height: 1.45;
  color: #66758a !important;
}

.contact-form input, .contact-form select, .contact-form textarea {
  border-color: #d5e0ec;
  background: #ffffff;
}
.footer { padding: 24px 0; }
.footer-inner { gap: 20px; }
.footer-links { color: #53657c; }

/* Lightbox with next/previous navigation */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 23, .92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-panel {
  position: relative;
  width: min(1280px, 100%);
  height: min(86vh, 820px);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(86vh - 64px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .18s ease, transform .18s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(24,198,223,.28); transform: scale(1.04); }
.lightbox-close {
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border-radius: 18px;
  font-size: 44px;
  line-height: 1;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-caption {
  margin-top: 14px;
  max-width: min(820px, 100%);
  text-align: center;
  color: #e9f6ff;
  font-size: 15px;
  line-height: 1.5;
}
.lightbox-caption strong { color: #ffffff; }
.lightbox-counter {
  color: #8cecff;
  font-weight: 800;
  margin-left: 8px;
}

@media (max-width: 980px) {
  .screenshot-grid,
  .shot-grid { grid-template-columns: 1fr !important; }
  .screenshot-tabs { position: static; border-radius: 24px; }
}
@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1240px); }
  .section { padding: 66px 0; }
  .shot-card figcaption { min-height: auto; }
  .lightbox { padding: 14px; }
  .lightbox-panel { height: 88vh; }
  .lightbox-nav {
    width: 44px;
    height: 58px;
    font-size: 34px;
  }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 4px; right: 4px; }
  .lightbox-caption { font-size: 13px; padding: 0 50px; }
}
@media (max-width: 560px) {
  .shot-frame { margin: 10px 10px 0; }
  .shot-card img { padding: 6px !important; }
  .shot-card figcaption { padding: 14px !important; }
  .screenshot-tabs { gap: 8px; }
  .screenshot-tabs a { font-size: 12px; padding: 8px 11px; }
}
