/* Secure Network Systems — Cyber Security & MSP Premium Dark Mode Theme
   Palette: Cyber Dark bg (#060B14), Laser Green (#22C55E), Cyber Teal (#10B981), Matrix Slate (#1E293B), Muted Tech Gray (#94A3B8)
   Typography: Outfit (headings) + Inter (body) + JetBrains Mono (code/numbers) */

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

:root {
  --primary: #22C55E;
  --primary-hover: #16A34A;
  --accent: #10B981;
  --accent-hover: #059669;
  --dark: #060B14;
  --slate: #1E293B;
  --slate-2: #0F172A;
  --body: #94A3B8;
  --ink: #F8FAFC;
  --muted: #64748B;
  --line: rgba(34, 197, 94, 0.15);
  --bg: #060B14;
  --bg-soft: #0F172A;
  --bg-soft-2: rgba(34, 197, 94, 0.08);
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(34, 197, 94, 0.04);
  --shadow-lg: 0 20px 40px rgba(34, 197, 94, 0.1), 0 0 20px rgba(34, 197, 94, 0.15);
  --glow: 0 0 15px rgba(34, 197, 94, 0.35);
  --maxw: 1200px;
  --font: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-title);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1.2rem;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head p {
  font-size: 1.15rem;
  color: var(--body);
}

.lead {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--blue {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
  font-weight: 700;
}

.btn--blue:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4), var(--glow);
}

.btn--solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.btn--solid:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn--outline {
  background: var(--slate);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
  height: 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
}

.brand .mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: var(--dark);
  font-size: 1.15rem;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.brand .mark svg {
  width: 24px;
  height: 24px;
}

.brand span {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1rem;
  color: var(--body);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--bg-soft-2);
}

.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* hero */
.hero {
  position: relative;
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.15), transparent 50%), linear-gradient(135deg, #030712 0%, #060B14 100%);
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
  border-bottom: 1.5px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.22rem;
  color: var(--body);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-aside {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 580px;
  margin: -18px 0 28px;
  font-style: italic;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid var(--line);
}

.hero-stats .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
}

.hero-stats .lbl {
  font-size: 0.9rem;
  color: var(--body);
  font-weight: 500;
}

.hero-remote {
  background: rgba(30, 41, 59, 0.4);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.hero-remote-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.hero-remote-link {
  display: inline-block;
  line-height: 0;
  transition: var(--transition);
}

.hero-remote-link:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.3));
}

.hero-remote-link img {
  width: min(280px, 100%);
  height: auto;
  display: block;
}

/* trust strip */
.trust {
  background: var(--bg-soft);
  color: var(--ink);
  padding: 24px 0;
  border-bottom: 1.5px solid var(--line);
}

.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-title);
}

.trust svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* grid + cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 15px rgba(34, 197, 94, 0.25);
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.card::after {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card .ic {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft-2);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.card .ic img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
  flex-grow: 1;
}

.card .more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.98rem;
  font-family: var(--font-title);
}

.card .more:hover {
  color: var(--primary-hover);
}

/* feature service cards (two core offerings) */
.feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  position: relative;
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 38px 38px 44px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-card .ic {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: var(--dark);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--body);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(34, 197, 94, 0.12);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.feature-card .more {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
}

/* service card with icon */
.svc-card {
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 15px rgba(16, 185, 129, 0.25);
}

.svc-card::before,
.svc-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.svc-card::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.svc-card::after {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
}

.svc-card:hover::before,
.svc-card:hover::after {
  opacity: 1;
}

.svc-card .ic {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft-2);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-card h3 {
  margin-bottom: 10px;
}

.svc-card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
}

/* split / about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.split-art {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 40px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow);
}

.split-art img {
  box-shadow: none;
  border-radius: 0;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink);
}

.checklist svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* highlight panel */
.panel {
  background: linear-gradient(135deg, var(--bg-soft), var(--slate));
  color: var(--body);
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 70%);
}

.panel .eyebrow {
  color: var(--primary);
}

.panel h2 {
  color: #fff;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.panel > p {
  color: var(--body);
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.panel-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-title);
}

.panel-grid p {
  color: var(--body);
  font-size: 0.95rem;
  margin: 0;
}

.panel-grid .dot {
  color: var(--primary);
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  padding-top: 10px;
}

.step .n {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
  font-family: var(--font-mono);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--body);
  margin: 0;
}

/* reviews */
.review {
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.review .stars {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review p {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review .who {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
}

.review .where {
  font-size: 0.88rem;
  color: var(--body);
}

/* partners logo grid */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
}

.partners.strip {
  gap: 26px 44px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 12px 24px;
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.partner-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 1; /* reset opacity to 1 so colors look vibrant */
}

.partner-logo span.txt {
  font-weight: 800;
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  font-family: var(--font-title);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--bg-soft), #030712);
  color: var(--body);
  text-align: center;
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--body);
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* form */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-card {
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-soft);
  color: var(--ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--primary);
  background: var(--dark);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--body);
}

.contact-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line .ic {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft-2);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-line h4 {
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-size: 1.1rem;
}

.contact-line a, .contact-line p {
  color: var(--body);
  margin: 0;
}

/* page hero (interior) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #030712 0%, var(--bg-soft) 100%);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  border-bottom: 1.5px solid var(--line);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--body);
  max-width: 640px;
  font-size: 1.2rem;
  margin: 0;
}

.crumb {
  font-size: 0.9rem;
  color: var(--body);
  margin-bottom: 18px;
  font-weight: 500;
}

.crumb a:hover {
  color: #fff;
}

/* footer */
.site-footer {
  background: #030712;
  color: var(--body);
  padding: 70px 0 30px;
  border-top: 1.5px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-title);
  letter-spacing: 0.01em;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-title);
}

.footer-brand .mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
}

.footer-brand .mark svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
}

.footer-bottom {
  border-top: 1.5px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--body);
}

.footer-credit a {
  color: var(--primary);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* pricing tiers */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-soft), var(--slate));
  color: var(--body);
}

.price-card.featured h3, .price-card.featured .price {
  color: #fff;
}

.price-card.featured p, .price-card.featured .price small {
  color: var(--body);
}

.price-card.featured .checklist li {
  color: var(--ink);
}

.price-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft-2);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.price-card.featured .tag {
  color: var(--dark);
  background: var(--primary);
  font-weight: 700;
}

.price-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
  font-family: var(--font-title);
}

.price-card .price small {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0;
  font-family: var(--font);
}

.price-card .checklist {
  margin-top: 24px;
  margin-bottom: 28px;
}

.price-card .btn {
  margin-top: auto;
  justify-content: center;
}

.badge-best {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 99px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-grid figure {
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.gallery-grid img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 1; /* reset opacity to 1 so colors look vibrant */
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  width: 100%;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
  padding: 0;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
  color: var(--dark);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2.4rem;
}

.lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:1080px){
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small {
    display: none;
  }
  .nav-links, .nav-phone {
    display: none;
  }
  .nav-cta > .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    border-bottom: 1.5px solid var(--line);
    padding: 20px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px;
    width: 100%;
  }
  .nav-links.open .nav-mobile-phone, .nav-links.open .nav-mobile-cta {
    display: block;
    width: 100%;
    list-style: none;
  }
  .nav-links.open .nav-mobile-phone {
    border-top: 1.5px solid var(--line);
    margin-top: 8px;
    padding-top: 12px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 12px;
    font-weight: 700;
    color: var(--ink);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 8px 0 4px;
  }
  .nav-links.open .nav-mobile-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media(max-width:900px){
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-remote {
    max-width: 320px;
    margin: 0 auto;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature, .pricing {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px){
  .grid-2, .grid-3, .grid-4, .panel-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
  body {
    font-size: 16px;
  }
}
