﻿:root {
  --bg: #f3efe7;
  --bg-2: #fdf7f1;
  --ink: #1c1a17;
  --muted: #6f5f50;
  --primary: #195c58;
  --primary-2: #3aa7a0;
  --accent: #d4a05a;
  --accent-2: #f2d9ad;
  --accent-3: #e57a52;
  --accent-4: #4a86d7;
  --action: #2b6fe0;
  --action-2: #7fb0ff;
  --card: #fffdf9;
  --border: rgba(28, 24, 20, 0.12);
  --shadow: 0 28px 70px rgba(18, 12, 8, 0.14);
  --shadow-soft: 0 14px 34px rgba(18, 12, 8, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-body: "Changa", sans-serif;
  --font-display: "El Messiri", "Changa", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 10%, rgba(58, 167, 160, 0.14), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(212, 160, 90, 0.18), transparent 42%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 55%);
  opacity: 0.25;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(25, 92, 88, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(25, 92, 88, 0.35);
  outline-offset: 3px;
}

button {
  font-family: inherit;
}

small {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: 0.2px;
}

.container {
  width: min(1150px, 90vw);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 231, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(18, 12, 8, 0.06);
}

.navbar::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
  opacity: 0.8;
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: conic-gradient(from 120deg, var(--primary), var(--accent), var(--primary-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.brand h1 {
  margin: 0;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-3));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(74, 134, 215, 0.12), transparent 45%);
  opacity: 0.8;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(229, 122, 82, 0.12), transparent 45%);
  opacity: 0.9;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fff6ea);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 160, 90, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-up 1s ease both;
  animation-delay: 0.1s;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(17, 12, 8, 0.2);
}

.hero h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  margin: 16px 0 12px;
  line-height: 1.2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(25, 92, 88, 0.16), rgba(212, 160, 90, 0.16));
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
  max-width: 520px;
}

#heroBadge {
  animation: fade-up 0.7s ease both;
}

#heroTitle {
  animation: fade-up 0.85s ease both;
  animation-delay: 0.05s;
}

#heroSubtitle {
  animation: fade-up 0.9s ease both;
  animation-delay: 0.12s;
}

.hero-actions {
  animation: fade-up 0.95s ease both;
  animation-delay: 0.18s;
}

.keyword-strip {
  animation: fade-up 1s ease both;
  animation-delay: 0.24s;
}

#responseTime {
  animation: fade-up 1s ease both;
  animation-delay: 0.3s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #fff6ec);
  border: 1px solid rgba(212, 160, 90, 0.2);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.keyword-pill:nth-child(2) {
  border-color: rgba(58, 167, 160, 0.3);
}

.keyword-pill:nth-child(3) {
  border-color: rgba(229, 122, 82, 0.3);
}

.keyword-pill:nth-child(4) {
  border-color: rgba(74, 134, 215, 0.3);
}

.keyword-pill svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.keyword-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--primary);
}

.keyword-pill:hover svg {
  transform: rotate(-8deg) scale(1.05);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0 8px;
}

.hero-contacts .contact-pill {
  cursor: default;
}

.hero-contacts .contact-pill:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.contact-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7f2eb);
  border: 1px solid rgba(74, 134, 215, 0.2);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-pill span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-pill strong {
  font-size: 1.05rem;
  color: var(--accent-4);
  letter-spacing: 0.4px;
}

.contact-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #144943, var(--primary), var(--accent-3));
  color: #fff;
  box-shadow: 0 18px 40px rgba(25, 92, 88, 0.28);
  background-size: 160% 160%;
  background-position: 0% 50%;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(212, 160, 90, 0.15), rgba(25, 92, 88, 0.1));
  border-color: rgba(212, 160, 90, 0.5);
  color: var(--primary);
  background-size: 160% 160%;
  background-position: 0% 50%;
}

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

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(25, 92, 88, 0.35);
  background-position: 100% 50%;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(212, 160, 90, 0.25), rgba(25, 92, 88, 0.15));
  background-position: 100% 50%;
}

.hero-meta {
  display: grid;
  gap: 14px;
}

.hero-meta .meta-card {
  background: #fff7ed;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(212, 160, 90, 0.22);
  transition: transform 0.2s ease;
}

.hero-meta .meta-card:hover {
  transform: translateX(-4px);
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-gallery figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 90, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-up 0.9s ease both;
  animation-delay: 0.28s;
}

.hero-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45));
}

.hero-gallery img {
  width: 100%;
  height: clamp(150px, 22vw, 190px);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hero-gallery figcaption {
  position: absolute;
  bottom: 10px;
  right: 12px;
  color: #fff;
  font-size: 0.85rem;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-gallery figure:hover img {
  transform: scale(1.05);
}

.hero-gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
  position: relative;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 90, 0.4), transparent);
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
  padding-right: 18px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
}

.section-title span {
  color: var(--muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fff8ee);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(212, 160, 90, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-3), var(--accent-4));
  opacity: 0.6;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.card h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.8;
}

.card small {
  color: var(--primary);
  font-weight: 600;
}

.card-icon,
.stat-icon,
.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25, 92, 88, 0.14), rgba(212, 160, 90, 0.28));
  margin-bottom: 12px;
}

.card-icon svg,
.stat-icon svg,
.icon-pill svg {
  width: 22px;
  height: 22px;
}

.icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.stat-icon {
  margin: 0 auto 12px;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

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

.tag {
  background: linear-gradient(135deg, rgba(25, 92, 88, 0.14), rgba(74, 134, 215, 0.2));
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.tag:nth-child(2n) {
  background: linear-gradient(135deg, rgba(212, 160, 90, 0.18), rgba(229, 122, 82, 0.2));
}

.process-step {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px dashed rgba(25, 92, 88, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(25, 92, 88, 0.08), transparent 60%);
  pointer-events: none;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-4));
  flex-shrink: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: right;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  display: none;
}

.faq-item.open p {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  margin: 8px 0 12px;
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: linear-gradient(180deg, #ffffff, #fff8ee);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(212, 160, 90, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(25, 92, 88, 0.24), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(0.5px);
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 90, 0.28), transparent 60%);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.floating-call {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--action), var(--action-2));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(43, 111, 224, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-size: 160% 160%;
  background-position: 0% 50%;
}

.floating-call svg {
  width: 20px;
  height: 20px;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(43, 111, 224, 0.45);
  background-position: 100% 50%;
}

.floating-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(43, 111, 224, 0.35);
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.admin-body {
  background: linear-gradient(160deg, #f6f2eb, #fdf9f3);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 1.6rem;
}

.admin-topbar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-content {
  padding: 32px 0 60px;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 22px;
}

.admin-card h3 {
  margin: 0 0 16px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

.status {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(25, 92, 88, 0.12);
  color: var(--primary);
  font-weight: 600;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  display: block;
  overflow-x: auto;
}

.table th,
.table td {
  text-align: right;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.table th {
  color: var(--muted);
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-editor {
  display: grid;
  gap: 16px;
}

.pricing-item {
  border: 1px dashed rgba(25, 92, 88, 0.25);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.pricing-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-grid {
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .navbar .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    flex: 1 1 160px;
    text-align: center;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .keyword-strip {
    gap: 8px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

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

@media (max-width: 700px) {
  .admin-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(94vw, 520px);
  }

  .hero {
    padding: 64px 0 44px;
  }

  .hero h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .badge {
    font-size: 0.82rem;
  }

  .card,
  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 50px 0;
  }

  .grid {
    gap: 16px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .contact-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .keyword-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .floating-call {
    left: 16px;
    right: auto;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .table {
    font-size: 0.88rem;
  }
}

/* Black & gold theme override */
:root {
  --bg: #0a0908;
  --bg-2: #16120f;
  --ink: #fdf8f0;
  --muted: #d8cbb5;
  --primary: #f3c74a;
  --primary-2: #ffe08a;
  --accent: #e0b045;
  --accent-2: #ffeab8;
  --accent-3: #a6731f;
  --accent-4: #f0c75f;
  --action: #f3c74a;
  --action-2: #ffe08a;
  --card: #171310;
  --border: rgba(253, 248, 240, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 199, 74, 0.18), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255, 224, 138, 0.16), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(224, 176, 69, 0.12), transparent 55%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  color: var(--ink);
}

body::before {
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.3;
}

body::after {
  background-image: radial-gradient(rgba(243, 199, 74, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.25;
}

.navbar {
  background: rgba(10, 9, 8, 0.92);
  border-bottom: 1px solid rgba(243, 199, 74, 0.18);
}

.navbar::after {
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
}

.nav-links {
  color: var(--muted);
}

.hero::before {
  background: radial-gradient(circle at 20% 20%, rgba(243, 199, 74, 0.16), transparent 45%);
}

.hero::after {
  background: radial-gradient(circle at 80% 80%, rgba(255, 224, 138, 0.16), transparent 45%);
}

.hero-card {
  background: linear-gradient(180deg, #1b1511, #110d0b);
  border: 1px solid rgba(243, 199, 74, 0.38);
}

.hero-card::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  background: linear-gradient(90deg, rgba(243, 199, 74, 0.25), rgba(255, 234, 184, 0.18));
  color: var(--primary);
}

.faq-item button {
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, #d3a33f, #ffe08a);
  color: #1b1a17;
  box-shadow: 0 18px 40px rgba(243, 199, 74, 0.35);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(243, 199, 74, 0.65);
  color: var(--primary-2);
}

.btn-secondary:hover {
  background: rgba(243, 199, 74, 0.14);
}

.keyword-pill,
.contact-pill,
.card,
.stat,
.process-step,
.hero-meta .meta-card {
  background: linear-gradient(180deg, #171310, #13100e);
  border: 1px solid rgba(243, 199, 74, 0.28);
  box-shadow: var(--shadow-soft);
}

.contact-pill strong {
  color: var(--primary);
}

.card::before {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-2));
  opacity: 0.75;
}

.card-icon,
.stat-icon,
.icon-pill {
  background: linear-gradient(135deg, rgba(243, 199, 74, 0.22), rgba(166, 115, 31, 0.45));
  color: var(--primary);
}

.tag {
  background: linear-gradient(135deg, rgba(243, 199, 74, 0.22), rgba(166, 115, 31, 0.25));
  color: var(--primary-2);
}

.tag:nth-child(2n) {
  background: linear-gradient(135deg, rgba(255, 224, 138, 0.2), rgba(160, 122, 47, 0.25));
}

.pricing-card::after {
  background: radial-gradient(circle at top, rgba(243, 199, 74, 0.1), transparent 60%);
}

.feature-dot {
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0));
}

.section:nth-of-type(even)::before {
  background: linear-gradient(90deg, transparent, rgba(243, 199, 74, 0.35), transparent);
}

.footer {
  border-top: 1px solid rgba(243, 199, 74, 0.22);
}

.glow {
  background: radial-gradient(circle, rgba(243, 199, 74, 0.3), transparent 70%);
}

.orb {
  background: radial-gradient(circle, rgba(255, 234, 184, 0.24), transparent 60%);
}

.floating-call {
  background: linear-gradient(135deg, var(--action), var(--action-2));
  color: #1b1a17;
  box-shadow: 0 18px 40px rgba(243, 199, 74, 0.4);
  border-color: rgba(243, 199, 74, 0.5);
}

.floating-call::after {
  border-color: rgba(243, 199, 74, 0.45);
}

.admin-body {
  background: linear-gradient(160deg, #0a0908, #171310);
  color: var(--ink);
}

.admin-topbar {
  background: rgba(10, 9, 8, 0.92);
  border-bottom: 1px solid rgba(243, 199, 74, 0.22);
}

.admin-card {
  background: #161210;
  border: 1px solid rgba(243, 199, 74, 0.24);
}

.input {
  background: #1b1512;
  color: var(--ink);
  border-color: rgba(243, 199, 74, 0.24);
}

.table th,
.table td {
  border-bottom: 1px solid rgba(243, 199, 74, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
