:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #ffb25c;
  --accent-soft: rgba(255, 178, 92, 0.12);
  --text: #f5f5f5;
  --muted: #a4a9c5;
  --card: #101422;
  --border: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(255, 178, 92, 0.45);
}

/* Light theme overrides */
html[data-theme="light"] {
  --bg: #f4f5fb;
  --bg-alt: #ffffff;
  --accent-soft: rgba(183, 107, 0, 0.1);
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 18px rgba(244, 156, 68, 0.5);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #10152b 0, var(--bg) 50%, #02030a 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}

html[data-theme="light"] body {
  background: radial-gradient(circle at top, #e5edff 0, var(--bg) 50%, #e5ebff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 18px 80px;
}

/* NAV / HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff4, transparent 60%),
    conic-gradient(from 210deg, #ffb25c, #ff7b3a, #ffb25c);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  animation: logoPulse 2.8s infinite ease-in-out;
}

.logo-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(5, 8, 22, 0.6);
  background: linear-gradient(145deg, #111727, #050816);
}

html[data-theme="light"] .logo-dot::after {
  border-color: rgba(15, 23, 42, 0.2);
  background: linear-gradient(145deg, #f9fafb, #e5e7eb);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
  align-items: center;
}

nav a {
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

/* active link */
.nav-active {
  color: var(--text);
}

.nav-active::after {
  width: 100%;
}

.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  background: rgba(5, 8, 22, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.15s ease-out;
}

.theme-toggle span {
  font-size: 0.9rem;
}

.theme-toggle:hover {
  border-color: rgba(255, 178, 92, 0.7);
  transform: translateY(-1px);
}

html[data-theme="light"] .theme-toggle {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(15, 23, 42, 0.1);
}

/* HERO (index) */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow-pill {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 178, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 span.highlight {
  background: linear-gradient(130deg, #ffb25c, #ff7b3a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .meta-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
}

.meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* BUTTONS */
.btn {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb25c, #ff7b3a);
  color: #111;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  background: rgba(5, 8, 22, 0.7);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  border-color: rgba(255, 178, 92, 0.5);
  color: var(--text);
  transform: translateY(-1px);
}

html[data-theme="light"] .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.1);
  color: #4b5563;
}

html[data-theme="light"] .btn-ghost:hover {
  color: #111827;
}

/* HERO CARD */
.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #ffb25c11 0, transparent 60%),
    radial-gradient(circle at 100% 100%, #ff7b3a11 0, transparent 60%),
    var(--card);
  border: 1px solid var(--border);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card::before {
  content: "NW GA • REMOTE • ONSITE";
  position: absolute;
  top: 10px;
  right: -40px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  transform: rotate(32deg);
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  pointer-events: none;
}

html[data-theme="light"] .hero-card::before {
  color: rgba(15, 23, 42, 0.08);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.status-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.card-body {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.metric {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #080b16, #050816);
  font-size: 0.78rem;
}

html[data-theme="light"] .metric {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  border-color: rgba(15, 23, 42, 0.08);
}

.metric-label {
  color: var(--muted);
  margin-bottom: 4px;
}

.metric-value {
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  color: var(--muted);
}

html[data-theme="light"] .chip {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
}

/* SECTION GENERIC */
section {
  margin-top: 56px;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}

.section-heading {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 24px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 178, 92, 0.6);
}

html[data-theme="light"] .service-card:hover {
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--muted);
}

.service-list {
  list-style: none;
  margin-top: 4px;
  padding-left: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.service-list li::before {
  content: "•";
  margin-right: 6px;
  color: var(--accent);
}

/* AREAS + HIGHLIGHTS */
.flex-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-simple {
  flex: 1;
  min-width: 240px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px;
  font-size: 0.86rem;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.card-simple h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .tag {
  background: rgba(249, 250, 251, 0.96);
  border-color: rgba(15, 23, 42, 0.06);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-soft);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-list li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--accent);
  font-size: 0.8rem;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: flex-start;
}

.contact-box {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 18px;
  font-size: 0.86rem;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.contact-box strong {
  color: var(--text);
}

.contact-row {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.contact-row a {
  color: var(--accent);
  font-weight: 500;
}

form {
  display: grid;
  gap: 10px;
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 4px;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  background: rgba(5, 8, 22, 0.9);
  color: var(--text);
  font: inherit;
  resize: vertical;
  min-height: 38px;
}

html[data-theme="light"] input,
html[data-theme="light"] textarea {
  background: rgba(249, 250, 251, 0.98);
  border-color: rgba(15, 23, 42, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(164, 169, 197, 0.7);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

textarea {
  min-height: 90px;
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

html[data-theme="light"] footer {
  border-top-color: rgba(15, 23, 42, 0.06);
}

footer a {
  color: var(--accent);
}

/* ANIMATIONS */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  header {
    border-radius: 16px;
    padding-inline: 12px;
  }
  nav {
    gap: 12px;
    font-size: 0.8rem;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .service-grid,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #ffb25c;
  --accent-soft: rgba(255, 178, 92, 0.12);
  --text: #f5f5f5;
  --muted: #a4a9c5;
  --card: #101422;
  --border: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(255, 178, 92, 0.45);
}

/* Light theme overrides */
html[data-theme="light"] {
  --bg: #f4f5fb;
  --bg-alt: #ffffff;
  --accent-soft: rgba(183, 107, 0, 0.1);
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 18px rgba(244, 156, 68, 0.5);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #10152b 0, var(--bg) 50%, #02030a 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}

html[data-theme="light"] body {
  background: radial-gradient(circle at top, #e5edff 0, var(--bg) 50%, #e5ebff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 18px 80px;
}

/* NAV */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff4, transparent 60%),
    conic-gradient(from 210deg, #ffb25c, #ff7b3a, #ffb25c);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  animation: logoPulse 2.8s infinite ease-in-out;
}

.logo-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(5, 8, 22, 0.6);
  background: linear-gradient(145deg, #111727, #050816);
}

html[data-theme="light"] .logo-dot::after {
  border-color: rgba(15, 23, 42, 0.2);
  background: linear-gradient(145deg, #f9fafb, #e5e7eb);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
  align-items: center;
}

nav a {
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  background: rgba(5, 8, 22, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.15s ease-out;
}

.theme-toggle span {
  font-size: 0.9rem;
}

.theme-toggle:hover {
  border-color: rgba(255, 178, 92, 0.7);
  transform: translateY(-1px);
}

html[data-theme="light"] .theme-toggle {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(15, 23, 42, 0.1);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow-pill {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 178, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 span.highlight {
  background: linear-gradient(130deg, #ffb25c, #ff7b3a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .meta-pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
}

.meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.btn {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb25c, #ff7b3a);
  color: #111;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  background: rgba(5, 8, 22, 0.7);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  border-color: rgba(255, 178, 92, 0.5);
  color: var(--text);
  transform: translateY(-1px);
}

html[data-theme="light"] .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.1);
  color: #4b5563;
}

html[data-theme="light"] .btn-ghost:hover {
  color: #111827;
}

/* HERO CARD */
.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #ffb25c11 0, transparent 60%),
    radial-gradient(circle at 100% 100%, #ff7b3a11 0, transparent 60%),
    var(--card);
  border: 1px solid var(--border);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card::before {
  content: "NW GA • REMOTE • ONSITE";
  position: absolute;
  top: 10px;
  right: -40px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  transform: rotate(32deg);
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  pointer-events: none;
}

html[data-theme="light"] .hero-card::before {
  color: rgba(15, 23, 42, 0.08);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.status-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.card-body {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.metric {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #080b16, #050816);
  font-size: 0.78rem;
}

html[data-theme="light"] .metric {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  border-color: rgba(15, 23, 42, 0.08);
}

.metric-label {
  color: var(--muted);
  margin-bottom: 4px;
}

.metric-value {
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  color: var(--muted);
}

html[data-theme="light"] .chip {
  background: rgba(249, 250, 251, 0.9);
  border-color: rgba(15, 23, 42, 0.06);
}

/* SECTION GENERIC */
section {
  margin-top: 56px;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}

.section-heading {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 24px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 178, 92, 0.6);
}

html[data-theme="light"] .service-card:hover {
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.86rem;
  color: var(--muted);
}

.service-list {
  list-style: none;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.service-list li::before {
  content: "•";
  margin-right: 6px;
  color: var(--accent);
}

/* AREAS + HIGHLIGHTS */
.flex-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-simple {
  flex: 1;
  min-width: 240px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px;
  font-size: 0.86rem;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.card-simple h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .tag {
  background: rgba(249, 250, 251, 0.96);
  border-color: rgba(15, 23, 42, 0.06);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-soft);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-list li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--accent);
  font-size: 0.8rem;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: flex-start;
}

.contact-box {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 14px 18px;
  font-size: 0.86rem;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.contact-box strong {
  color: var(--text);
}

.contact-row {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.contact-row a {
  color: var(--accent);
  font-weight: 500;
}

form {
  display: grid;
  gap: 10px;
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 4px;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  background: rgba(5, 8, 22, 0.9);
  color: var(--text);
  font: inherit;
  resize: vertical;
  min-height: 38px;
}

html[data-theme="light"] input,
html[data-theme="light"] textarea {
  background: rgba(249, 250, 251, 0.98);
  border-color: rgba(15, 23, 42, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(164, 169, 197, 0.7);
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

textarea {
  min-height: 90px;
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

html[data-theme="light"] footer {
  border-top-color: rgba(15, 23, 42, 0.06);
}

footer a {
  color: var(--accent);
}

/* ANIMATIONS */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  header {
    border-radius: 16px;
    padding-inline: 12px;
  }
  nav {
    gap: 12px;
    font-size: 0.8rem;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .service-grid,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  nav {
    display: none;
  }
  .page {
    padding-inline: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}


@media (max-width: 620px) {
  nav {
    display: none;
  }
  .page {
    padding-inline: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}
