/* ========== Variables ========== */
:root {
  --bg: #0a0e17;
  --bg-2: #111827;
  --card: #1a2332;
  --card-2: #1f2937;
  --border: #2d3748;
  --border-2: #3b4756;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #60a5fa;
  --accent-2: #3b82f6;
  --green: #34d399;
  --orange: #fb923c;
  --orange-2: #f97316;
  --purple: #c084fc;
  --purple-2: #a855f7;
  --yellow: #fde047;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle background noise/grain for premium feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  z-index: 1;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========== Sticky Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 4px 12px rgba(96,165,250,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.logo-text { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent-2), var(--accent)) !important;
  color: white !important;
  padding: 9px 18px; border-radius: 9px;
  font-size: 13px !important; font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(59,130,246,0.3);
  transition: transform 0.1s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.45); }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 120px 28px 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(96, 165, 250, 0.15), transparent 70%),
    radial-gradient(ellipse 70% 50% at 20% 100%, rgba(251, 146, 60, 0.08), transparent 70%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(192, 132, 252, 0.10), transparent 70%);
}
.hero-beam {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* ========== Hero beam animations ========== */
/* All animations are gated behind prefers-reduced-motion for accessibility */
@media (prefers-reduced-motion: no-preference) {

  /* Scanning beam 1: orange, left → right, 4.5s loop */
  .beam-scan-1 {
    stroke-dasharray: 140 1500;
    animation: beam-sweep-right 4.5s linear infinite;
    filter: drop-shadow(0 0 6px #fb923c);
  }
  @keyframes beam-sweep-right {
    from { stroke-dashoffset: 1500; }
    to   { stroke-dashoffset: -140; }
  }

  /* Scanning beam 2: blue, right → left (negative dashoffset), 6s loop */
  .beam-scan-2 {
    stroke-dasharray: 100 1500;
    animation: beam-sweep-left 6s linear infinite;
    filter: drop-shadow(0 0 5px #60a5fa);
  }
  @keyframes beam-sweep-left {
    from { stroke-dashoffset: -100; }
    to   { stroke-dashoffset: 1500; }
  }

  /* Third subtle beam, purple, slower */
  .beam-scan-3 {
    stroke-dasharray: 60 1800;
    animation: beam-sweep-right 8s linear infinite;
    animation-delay: -3s;
  }

  /* Pulsing intersection spark */
  .spark-pulse {
    transform-origin: 700px 350px;
    transform-box: fill-box;
    animation: spark-pulse 2.6s ease-in-out infinite;
  }
  @keyframes spark-pulse {
    0%, 100% { opacity: 0.35; transform: scale(0.9); }
    50%      { opacity: 1;    transform: scale(1.15); }
  }

  /* Glow dot tracing beam 1 (cx=0,cy=380) → end (1400,320) — delta (+1400,-60) */
  .dot-trace-1 {
    animation: dot-1 4.5s linear infinite;
    filter: drop-shadow(0 0 8px #fb923c);
  }
  @keyframes dot-1 {
    0%   { transform: translate(0, 0);          opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translate(1400px, -60px); opacity: 0; }
  }

  /* Glow dot tracing beam 2 (cx=1400,cy=500) → end (0,450) — delta (-1400,-50) */
  .dot-trace-2 {
    animation: dot-2 6s linear infinite;
    animation-delay: -2s;
    filter: drop-shadow(0 0 7px #60a5fa);
  }
  @keyframes dot-2 {
    0%   { transform: translate(0, 0);            opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translate(-1400px, -50px); opacity: 0; }
  }
}

/* Static fallback when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .beam-scan-1, .beam-scan-2, .beam-scan-3 { opacity: 0.6; }
  .spark-pulse { opacity: 0.6; }
  .dot-trace-1, .dot-trace-2 { display: none; }
}
.hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.kicker {
  display: inline-block;
  font-size: 11px; color: var(--muted);
  letter-spacing: 2px; font-weight: 600;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* Trust strip in hero */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
}
.trust-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 14px; font-weight: 600; }
.trust-text span { font-size: 12px; color: var(--muted); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  box-shadow: 0 4px 14px rgba(59,130,246,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(96,165,250,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: var(--card); border-color: var(--muted); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ========== Sections ========== */
.section { position: relative; padding: 100px 28px; border-bottom: 1px solid var(--border); z-index: 2; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-kicker {
  font-size: 12px; color: var(--accent);
  letter-spacing: 2px; font-weight: 600;
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 17px; color: var(--muted); max-width: 740px;
  margin-bottom: 56px;
}
.subhead {
  font-size: 24px; font-weight: 700;
  margin-top: 72px; margin-bottom: 28px;
  letter-spacing: -0.4px;
}

/* ========== Section backgrounds — drifting blobs + dot pattern ========== */
/* Every section gets a subtle dot grid + decorative drifting blobs in the background */
.section {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(148,163,184,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Floating gradient blobs — universal keyframes */
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -25px) scale(1.08); }
  66%      { transform: translate(-30px, 35px) scale(0.94); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 40px) scale(1.12); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, 30px) scale(0.9); }
}

/* Laser section — orange + purple blobs */
.section-laser { position: relative; overflow: hidden; }
.section-laser::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,0.18), transparent 65%);
  filter: blur(50px);
  animation: drift-a 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.section-laser::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,0.15), transparent 60%);
  filter: blur(60px);
  animation: drift-b 28s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* AI section — blue + green blobs + circuit-like pattern overlay */
.section-ai { position: relative; overflow: hidden; }
.section-ai::before {
  content: '';
  position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.16), transparent 60%);
  filter: blur(70px);
  animation: drift-a 26s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.section-ai::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,0.13), transparent 60%);
  filter: blur(55px);
  animation: drift-c 32s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Contact section — warm welcoming blob */
.section-contact { position: relative; overflow: hidden; }
.section-contact::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(96,165,250,0.1), transparent 70%);
  filter: blur(60px);
  animation: drift-c 24s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* All section content sits above the decorative layer */
.section-inner { position: relative; z-index: 2; }

/* Decorative SVG accents — embedded inline in index.html */
.deco-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.deco-svg.top-right { top: 40px; right: 40px; }
.deco-svg.bottom-left { bottom: 40px; left: 40px; }
.deco-svg.top-left { top: 40px; left: 40px; }
.deco-svg.bottom-right { bottom: 40px; right: 40px; }

@media (prefers-reduced-motion: no-preference) {
  .deco-svg { animation: spin-slow 60s linear infinite; }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ========== Laser cards ========== */
.lasers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.laser-card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.laser-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.laser-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.laser-card.co2::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.laser-card.fibre::before { background: linear-gradient(90deg, var(--purple), #ec4899); }
.laser-card::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.laser-card.co2::after { background: radial-gradient(circle, var(--orange), transparent 70%); }
.laser-card.fibre::after { background: radial-gradient(circle, var(--purple), transparent 70%); }
.laser-badge {
  display: inline-block; padding: 5px 12px;
  border-radius: 999px;
  background: var(--card-2); border: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  margin-bottom: 18px; text-transform: uppercase;
  position: relative; z-index: 1;
}
.laser-card.co2 .laser-badge { color: var(--orange); border-color: rgba(251,146,60,0.4); background: rgba(251,146,60,0.08); }
.laser-card.fibre .laser-badge { color: var(--purple); border-color: rgba(192,132,252,0.4); background: rgba(192,132,252,0.08); }
.laser-card h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.3px; line-height: 1.3; position: relative; z-index: 1; }
.laser-card > p { color: var(--muted); margin-bottom: 24px; font-size: 14px; position: relative; z-index: 1; }
.laser-services { list-style: none; position: relative; z-index: 1; }
.laser-services li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.laser-services li:first-child { border-top: none; }
.laser-services strong { font-size: 14px; font-weight: 600; }
.laser-services span { font-size: 12px; color: var(--muted); text-align: right; }

/* ========== Gallery (premium cards) ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--card);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
/* Color-tinted gradient overlay shown when no image (or as veil over photo) */
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.4) 0%, rgba(10,14,23,0.85) 100%);
  z-index: 1;
}
.gallery-item.co2-tint::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(251,146,60,0.35), transparent 60%);
  z-index: 1;
}
.gallery-item.fibre-tint::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(192,132,252,0.35), transparent 60%);
  z-index: 1;
}
.gallery-item .ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: rgba(255,255,255,0.25);
  opacity: 1;
  transition: opacity 0.25s;
}
.gallery-item .ghost svg {
  width: 48px; height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: white;
}
.gallery-item figcaption strong {
  display: block;
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.1px;
  margin-bottom: 2px;
}
.gallery-item figcaption span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* ========== Areas ========== */
.areas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.area {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: border-color 0.15s, transform 0.1s;
}
.area:hover { border-color: var(--accent); transform: translateY(-1px); }
.areas-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ========== CTA Block ========== */
.cta-block {
  margin-top: 80px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(96,165,250,0.10), transparent 70%),
    linear-gradient(135deg, var(--card), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.cta-block h3 {
  font-size: 28px; font-weight: 700; letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.cta-block p { color: var(--muted); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== AI Section ========== */
.section-ai {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(192, 132, 252, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(96, 165, 250, 0.06), transparent 70%);
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.tier {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.tier:hover { transform: translateY(-3px); border-color: var(--border-2); }
.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(96,165,250,0.15);
  position: relative;
}
.tier-featured::before {
  content: 'MOST COMMON';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
}
.tier-name {
  font-size: 13px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.tier-for { font-size: 13px; color: var(--muted); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.tier-incl-list { list-style: none; }
.tier-incl-list li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  position: relative;
  color: var(--text);
}
.tier-incl-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}
.tier-incl-list li:first-child {
  font-weight: 600;
  color: var(--accent);
}
.tier-incl-list li:first-child::before {
  content: '+';
}
.tier-note {
  text-align: center; color: var(--muted);
  font-size: 14px; margin-bottom: 0; max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.tier-note a { font-weight: 600; }

/* ========== Contact ========== */
.section-contact {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(96, 165, 250, 0.06), transparent 70%);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.contact-card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(96,165,250,0.1);
}
.contact-icon { font-size: 32px; margin-bottom: 14px; }
.contact-label {
  font-size: 11px; color: var(--muted);
  letter-spacing: 1.5px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-value { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.contact-value a { color: var(--text); }
.contact-note { font-size: 12px; color: var(--muted); }

/* ========== Footer ========== */
.footer {
  padding: 56px 28px;
  background: var(--bg-2);
  color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px;
  align-items: center;
}
.footer strong { color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-links a { color: var(--muted); }
.footer-copy { text-align: right; font-size: 12px; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 80px 20px 60px; }
  .section { padding: 72px 20px; }
  .lasers, .tiers, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .cta-block { padding: 40px 24px; }
  .footer-copy { text-align: center; }
}
