/* ===========================================================
   CAMEKOS landing — design system
   Reference: "Blue & Black Modern Brand Marketing" deck
   =========================================================== */

:root {
  --bg:          #060B14;
  --bg-2:        #0B1A33;
  --bg-card:     rgba(255, 255, 255, 0.035);
  --bg-card-2:   rgba(255, 255, 255, 0.05);
  --border:      rgba(255, 255, 255, 0.09);
  --border-2:    rgba(120, 170, 255, 0.22);

  --text:        #F4F8FF;
  --text-muted:  #9FB0C6;
  --text-faint:  #6C7C93;

  --blue:        #2E7DFF;
  --blue-bright: #4F95FF;
  --cyan:        #19C2E6;
  --grad-blue:   linear-gradient(135deg, #2E7DFF 0%, #19C2E6 100%);

  --radius:      18px;
  --radius-lg:   26px;
  --container:   1180px;

  /* LED-style glow beneath cards */
  --card-glow:       0 22px 48px -30px rgba(46, 125, 255, 0.55);
  --card-glow-hover: 0 30px 60px -28px rgba(46, 125, 255, 0.8);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 18px;
}

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 700; }
.section-lead  { color: var(--text-muted); font-size: 1.08rem; max-width: 46ch; margin-top: 18px; }
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 56ch; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

/* full-bleed video background on a section (like hero/CTA) */
.section.has-vid { overflow: hidden; }
.section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-vid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(6,11,20,0.9) 0%, rgba(6,11,20,0.8) 50%, rgba(6,11,20,0.93) 100%),
    radial-gradient(circle at 50% 45%, rgba(46,125,255,0.12), transparent 65%);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--grad-blue);
  color: #04101f;
  box-shadow: 0 10px 30px -8px rgba(46, 125, 255, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(46, 125, 255, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: rgba(120, 170, 255, 0.08); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- glow blobs ---------- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.glow-1 { width: 620px; height: 620px; background: radial-gradient(circle, #1f5bd6 0%, transparent 70%); top: -160px; left: -120px; }
.glow-2 { width: 540px; height: 540px; background: radial-gradient(circle, #0f8bb5 0%, transparent 70%); top: 40px; right: -160px; opacity: 0.4; }
.glow-3 { width: 700px; height: 700px; background: radial-gradient(circle, #1f5bd6 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); opacity: 0.35; }

/* Reusable ambient light clusters — drop a <div class="glow blob ..."> into any section */
.glow.blob { width: clamp(360px, 40vw, 560px); height: clamp(360px, 40vw, 560px); opacity: 0.32; }
.glow.blob.blue { background: radial-gradient(circle, #1f5bd6 0%, transparent 70%); }
.glow.blob.cyan { background: radial-gradient(circle, #0f8bb5 0%, transparent 70%); }
.glow.left   { left: -210px; }
.glow.right  { right: -210px; }
.glow.center { left: 50%; transform: translateX(-50%); }
.glow.high   { top: -120px; }
.glow.mid    { top: 50%; transform: translateY(-50%); }
.glow.mid.center { transform: translate(-50%, -50%); }
.glow.low    { bottom: -120px; }
.glow.soft   { opacity: 0.22; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 20, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 30px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 24px; } }
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #cdf3ff 0%, #19C2E6 32%, #2E7DFF 60%, transparent 72%);
  box-shadow: 0 0 14px rgba(25, 194, 230, 0.9), 0 0 30px rgba(46, 125, 255, 0.6);
}
.brand-name { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.04em; font-size: 1.15rem; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-muted); font-size: 0.96rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { color: #04101f !important; padding: 10px 20px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ---------- language switcher ---------- */
.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  padding: 7px 12px; border-radius: 999px; cursor: pointer; transition: .2s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-2); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(11, 26, 51, 0.98); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px; min-width: 150px;
  display: none; flex-direction: column; gap: 2px; z-index: 60;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
}
.lang-menu.open { display: flex; }
.lang-item { text-align: left; background: none; border: 0; color: var(--text-muted); font-family: var(--font-body); font-size: 0.92rem; padding: 9px 12px; border-radius: 8px; cursor: pointer; }
.lang-item:hover { background: rgba(120,170,255,0.1); color: var(--text); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 7vw, 90px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(6,11,20,0.74) 0%, rgba(6,11,20,0.55) 38%, rgba(6,11,20,0.92) 100%),
    radial-gradient(circle at 50% 42%, rgba(46,125,255,0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; width: 100%; }

/* staggered dynamic entrance over the video */
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-inner > * { animation: heroUp .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-inner .eyebrow      { animation-delay: .10s; }
.hero-inner .hero-title   { animation-delay: .22s; }
.hero-inner .hero-sub     { animation-delay: .40s; }
.hero-inner .hero-actions { animation-delay: .56s; }
.hero-inner .hero-note    { animation-delay: .68s; }
@media (prefers-reduced-motion: reduce) { .hero-inner > * { animation: none; } }

/* scroll cue */
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.35); border-radius: 14px; display: block; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

.hero-title { font-size: clamp(2.7rem, 8vw, 5.6rem); font-weight: 800; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55)); }
.hero-title .thin { display: block; font-weight: 300; color: var(--text); }
.hero-title .bold {
  display: block;
  font-weight: 800;
  background: linear-gradient(120deg, #ffffff 30%, #7fb2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { color: #c9d4e3; font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 56ch; margin: 26px auto 0; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-note { color: var(--text-faint); font-size: 0.9rem; margin-top: 18px; }

.hero-shot { margin-top: clamp(46px, 6vw, 76px); }
.shot-frame {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2), #07101f);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  box-shadow: 0 40px 90px -40px rgba(46, 125, 255, 0.45);
  overflow: hidden;
}
.shot-frame.tall { aspect-ratio: 3 / 4; }
.shot-placeholder { color: var(--text-faint); font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.04em; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-stats { display: grid; gap: 16px; }
.stat {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  box-shadow: var(--card-glow);
}
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--blue-bright); white-space: nowrap; }
.stat-label { color: var(--text-muted); font-size: 0.98rem; }

/* ===========================================================
   FEATURES
   =========================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--card-glow);
  transition: border-color .25s, transform .25s, background .25s, box-shadow .25s;
}
.card:hover { border-color: var(--border-2); transform: translateY(-4px); background: var(--bg-card-2); box-shadow: var(--card-glow-hover); }
.card h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

/* ===========================================================
   FOTOCAM / PHOTOCAM (flagship)
   =========================================================== */
.fotocam { overflow: hidden; }
.fotocam-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  border: 1px solid var(--border-2);
  background: linear-gradient(135deg, rgba(46,125,255,0.10), rgba(25,194,230,0.05) 60%, var(--bg-card));
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px);
  position: relative; z-index: 1;
}
.fotocam-text .section-lead { max-width: 100%; }
.fotocam-list { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.fotocam-list li { position: relative; padding-left: 30px; color: var(--text-muted); }
.fotocam-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #cdf3ff 0%, #19C2E6 40%, #2E7DFF 70%, transparent 78%);
  box-shadow: 0 0 10px rgba(25,194,230,0.8);
}
.fotocam-visual .shot-frame { aspect-ratio: 4 / 3; margin: 0; }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--card-glow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--card-glow-hover); border-color: var(--border-2); }
.step-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.step::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(6,11,20,0.62) 0%, rgba(6,11,20,0.8) 60%, rgba(6,11,20,0.92) 100%); }
.step-content { position: relative; z-index: 1; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1px var(--blue-bright); display: block; margin-bottom: 14px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.step p { color: #cdd8e8; font-size: 0.98rem; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }

/* ===========================================================
   SHOWCASE
   =========================================================== */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vid-tile {
  position: relative; margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--card-glow);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.vid-tile:hover { transform: translateY(-4px); box-shadow: var(--card-glow-hover); border-color: var(--border-2); }
.vid-tile-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 22px 18px; background: linear-gradient(180deg, transparent, rgba(6,11,20,0.9)); }
.vid-cap span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: #fff;
  display: inline-block; opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease;
}
.vid-tile.in .vid-cap span { opacity: 1; transform: none; transition-delay: .25s; }

/* ===========================================================
   PRICING
   =========================================================== */
.pricing { overflow: hidden; }
.price-card {
  position: relative; z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(46,125,255,0.08), var(--bg-card));
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: 0 40px 90px -45px rgba(46, 125, 255, 0.6);
}
.price-top { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-top h3 { font-size: 1.3rem; font-weight: 600; }
.price { margin-top: 14px; }
.price .amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; }
.price .per { color: var(--text-faint); font-size: 0.95rem; margin-left: 6px; }
.price-list { list-style: none; margin: 26px 0; display: grid; gap: 14px; }
.price-list li { position: relative; padding-left: 30px; color: var(--text-muted); }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-blue);
  box-shadow: 0 0 10px rgba(46,125,255,0.5);
}
.price-fine { text-align: center; color: var(--text-faint); font-size: 0.84rem; margin-top: 16px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--card-glow);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::after { content: "+"; color: var(--blue-bright); font-size: 1.4rem; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--text-muted); padding-bottom: 20px; }

/* ===========================================================
   CONTACT FORM
   =========================================================== */
.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 18px; position: relative; z-index: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--text-muted); }
.field input, .field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: var(--bg-card-2); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.contact-form .btn { margin-top: 4px; }
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { text-align: center; font-size: 0.95rem; min-height: 1.2em; margin-top: 4px; }
.form-status.ok { color: var(--cyan); }
.form-status.err { color: #ff6b7d; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ===========================================================
   CTA STRIP + FOOTER
   =========================================================== */
.cta-strip { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(6,11,20,0.82), rgba(6,11,20,0.7) 50%, rgba(6,11,20,0.88)), radial-gradient(circle at 50% 50%, rgba(46,125,255,0.16), transparent 65%); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cta-inner h2 { filter: drop-shadow(0 3px 18px rgba(0,0,0,0.6)); }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }

.site-footer { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand .brand-name { font-size: 1.3rem; }
.footer-brand p { color: var(--text-muted); margin-top: 10px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 10px; font-size: 0.96rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; color: var(--text-faint); font-size: 0.9rem; gap: 16px; flex-wrap: wrap; }
.footer-dev { display: inline-flex; align-items: center; gap: 8px; opacity: 0.7; }
.footer-dev img { height: 14px; width: auto; display: inline-block; }

/* ===========================================================
   WHY / NO-SUBSCRIPTION COMPARE
   =========================================================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.compare-col { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 30px; background: var(--bg-card); box-shadow: var(--card-glow); }
.compare-col h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.compare-col ul { list-style: none; display: grid; gap: 14px; }
.compare-col li { position: relative; padding-left: 30px; color: var(--text-muted); font-size: 0.98rem; }
.compare-col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.compare-bad li::before { content: "✕"; color: #ff6b7d; }
.compare-good { border-color: var(--border-2); background: linear-gradient(180deg, rgba(46,125,255,0.08), var(--bg-card)); }
.compare-good li::before { content: "✓"; color: var(--cyan); }
.compare-good h3 { color: var(--blue-bright); }

/* ===========================================================
   PRICE GUARANTEE + SPECS
   =========================================================== */
.specs { max-width: 760px; margin: 44px auto 0; text-align: center; }
.specs h4 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px; }
.specs ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.specs li { border: 1px solid var(--border); background: var(--bg-card); border-radius: 999px; padding: 9px 18px; color: var(--text-muted); font-size: 0.9rem; }

/* ===========================================================
   LEGAL PAGES (privacy / terms)
   =========================================================== */
.legal { padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); position: relative; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 10px; }
.legal .updated { color: var(--text-faint); font-size: 0.9rem; margin-bottom: 14px; }
.legal .legal-note {
  border: 1px solid var(--border-2);
  background: rgba(46,125,255,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 40px;
}
.legal h2 { font-size: 1.3rem; font-weight: 600; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; display: grid; gap: 8px; }
.legal a { color: var(--blue-bright); }
.legal a:hover { text-decoration: underline; }
.back-home { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 30px; }
.back-home:hover { color: var(--text); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .feature-grid, .steps, .showcase-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .fotocam-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column;
    background: rgba(6, 11, 20, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .feature-grid, .steps, .showcase-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat { flex-direction: column; gap: 6px; }
}
