:root {
  --bg: #080c0e;
  --bg-2: #0d1316;
  --bg-soft: #0d1316;
  --panel: rgba(28, 35, 38, 0.78);
  --panel-strong: #171e21;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --surface: rgba(28, 35, 38, 0.78);
  --surface-strong: #171e21;
  --surface-warm: rgba(255, 122, 61, 0.08);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 141, 74, 0.38);
  --border: rgba(255, 255, 255, 0.13);
  --border-accent: rgba(255, 141, 74, 0.38);
  --text: #fff6ea;
  --ink: #fff6ea;
  --muted: #a1aaa9;
  --muted-2: #737d7c;
  --orange: #ff7a3d;
  --orange-2: #f15a32;
  --primary: #ff7a3d;
  --primary-dark: #f15a32;
  --primary-light: #f8a640;
  --primary-soft: rgba(255, 122, 61, 0.11);
  --primary-glow: rgba(255, 122, 61, 0.22);
  --amber: #f8a640;
  --red: #ff6b6b;
  --rose: #ff8a8a;
  --green: #6bd6a1;
  --blue: #7fc5c2;
  --blue-soft: rgba(127, 197, 194, 0.08);
  --danger: #ff6b6b;
  --radius: 8px;
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-accent: 0 0 42px rgba(255, 122, 61, 0.22);
  --glow: 0 0 42px rgba(255, 122, 61, 0.22);
  --layout-max: 1160px;
  --type-caption: 0.75rem;
  --type-ui: 0.875rem;
  --type-body: 1rem;
  --type-lead: 1.0625rem;
  --line-tight: 1.25;
  --line-body: 1.65;
}

body {
  min-width: 320px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--text) !important;
  background:
    linear-gradient(115deg, rgba(255, 122, 61, 0.09) 0%, rgba(255, 122, 61, 0) 32%),
    linear-gradient(245deg, rgba(127, 197, 194, 0.06) 0%, rgba(127, 197, 194, 0) 30%),
    linear-gradient(180deg, #080c0e 0%, #0c1113 46%, #080c0e 100%) !important;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.52), transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.52), transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(0,0,0,0.62), transparent 28%, transparent 72%, rgba(0,0,0,0.72));
  opacity: 0.42;
}

.wrap,
.site-header .wrap.nav,
body > header .wrap.nav {
  width: min(var(--layout-max), calc(100% - 40px));
}

.hero-headline,
.section-title,
.cta-inner h2,
.form-head h2,
.admin-head h1,
h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 900;
  letter-spacing: 0 !important;
}

main {
  position: relative;
  z-index: 1;
}
body > main:not(.page-shell) {
  padding-top: 0 !important;
}

.site-header,
body > header {
  position: sticky !important;
  top: 0;
  left: auto;
  right: auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(8, 12, 14, 0.76) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 !important;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text) !important;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand-mark {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  display: grid;
  place-items: center;
  color: #fff !important;
  font-weight: 900;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--orange-2), var(--amber)) !important;
  box-shadow: 0 14px 30px rgba(255, 122, 61, 0.35) !important;
  flex-shrink: 0;
}
.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}
.navlinks a {
  border-radius: 999px !important;
  padding: 9px 13px !important;
  color: #c6cdca !important;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  font-size: var(--type-ui) !important;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.navlinks a:hover,
.navlinks a.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07) !important;
}
.navlinks .nav-cta,
.nav-cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #d9521f, #ec7536) !important;
  box-shadow: 0 16px 38px rgba(255, 122, 61, 0.33) !important;
}
.navlinks .nav-cta:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e35e2a, #f0853e) !important;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  padding: 86px 0 78px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero::before,
.hero::after,
.hero-card::after,
.estimate-box::after,
.summary::after,
.cta-inner::before {
  display: none !important;
  content: none !important;
}
.hero-inner {
  align-items: center;
}
.hero-headline,
h1 {
  color: var(--text) !important;
}
.hero-headline {
  max-width: 700px;
  font-size: clamp(3rem, 5.6vw, 4.8rem) !important;
  line-height: 0.98 !important;
  margin-bottom: 24px !important;
}
h1:not(.hero-headline) {
  font-size: clamp(2.85rem, 5.2vw, 4.25rem) !important;
  line-height: 0.98 !important;
}
.hero-headline em,
h1 em {
  color: var(--orange) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 12px 40px rgba(255, 122, 61, 0.18);
}
.hero-sub,
.section-sub,
.intro-panel p,
.form-head p,
.panel p,
.policy-body p,
.policy-body li,
.note-card p,
.note-card ul,
details.faq-item p,
.price-note,
.tier-subtitle {
  color: var(--muted) !important;
}
.hero-sub,
.section-sub,
.intro-panel p,
.form-head p,
.panel p,
.policy-body p,
.policy-body li,
.note-card p,
.note-card ul,
details.faq-item p,
.cta-inner p,
.agency-note {
  font-size: var(--type-body) !important;
  line-height: var(--line-body) !important;
}
.lead,
.hero-sub,
.section-sub {
  font-size: var(--type-lead) !important;
}
.hero-eyebrow,
.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 122, 61, 0.28) !important;
  border-radius: 999px !important;
  padding: 7px 12px !important;
  color: #ffb36d !important;
  background: rgba(255, 122, 61, 0.11) !important;
  box-shadow: none !important;
  font-size: var(--type-caption) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pulse-dot,
.dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px;
  background: var(--amber) !important;
  box-shadow: 0 0 18px rgba(248, 166, 64, 0.9) !important;
  flex: 0 0 auto;
  animation: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  font-size: var(--type-ui);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.62; cursor: wait; transform: none; }
.btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #d9521f, #ec7536) !important;
  box-shadow: 0 18px 42px rgba(255, 122, 61, 0.34) !important;
}
.btn-ghost {
  color: #fff6ea !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}
.btn-ghost:hover {
  color: #fff !important;
  border-color: rgba(255, 122, 61, 0.36) !important;
  background: rgba(255, 122, 61, 0.1) !important;
}
.btn-soft {
  color: #ffb36d !important;
  border: 1px solid rgba(255, 122, 61, 0.24) !important;
  background: rgba(255, 122, 61, 0.1) !important;
}

.section {
  padding: 86px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.section.alt,
.mini-strip,
.strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}
.section-title {
  color: var(--text) !important;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem) !important;
  line-height: 1.05 !important;
}
.section-eyebrow,
.section-kicker {
  color: var(--orange) !important;
}
.strip-item,
.mini-strip-inner {
  color: #c2c9c6 !important;
}
.strip-dot,
.mini-dot {
  background: var(--orange) !important;
  box-shadow: 0 0 16px rgba(255, 122, 61, 0.78);
}

.hero-card,
.price-tile,
.metric,
.controls,
.pricing-card,
.quick-card,
.pill,
.accordion,
.builder,
.service-row,
.summary,
.note-card,
details.faq-item,
.cta-inner,
.form-card,
.side-card,
.method,
.panel,
.step-pill,
.upload-zone,
.file-item,
.admin-card {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    var(--panel) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.hero-card,
.form-card,
.summary,
.estimate-box {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pricing-card:hover,
.service-row:hover,
.method:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 61, 0.42) !important;
  box-shadow: var(--shadow), var(--glow) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.115), rgba(255,255,255,0.045)),
    var(--panel-strong) !important;
}
.pricing-card.featured {
  border-color: rgba(255, 122, 61, 0.58) !important;
  background:
    linear-gradient(180deg, rgba(255,122,61,0.25), rgba(255,122,61,0.06) 38%, rgba(255,255,255,0.045)),
    #1a2021 !important;
  box-shadow: var(--glow) !important;
}
.hero-card::before,
.pricing-card.featured::before,
.form-card::before {
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber), transparent) !important;
}
.price-tile strong,
.quick-card strong,
.tier-name,
.tier-price,
.metric strong,
.pill strong,
.method h3,
.form-head h2,
.panel h2,
.panel h3,
.note-card h3,
details.faq-item summary,
.summary h3,
.cta-inner h2,
.service-row strong,
.service-price .new,
.admin-card h2,
.admin-meta strong {
  color: #fff8ec !important;
}
.tier-name,
.quick-card strong,
.method h3,
.note-card h3,
.panel h3,
.admin-card h2 {
  font-size: 1.125rem !important;
  line-height: var(--line-tight) !important;
}
.panel h2,
.form-head h2,
.summary h3 {
  line-height: var(--line-tight) !important;
}
.pricing-card.featured .tier-price,
.price-tile.price-primary strong,
.badge,
.metric strong {
  color: var(--orange) !important;
}
.badge,
.service-price .discount {
  border: 1px solid rgba(255, 122, 61, 0.28) !important;
  color: #ffb36d !important;
  background: rgba(255, 122, 61, 0.1) !important;
}
.features li,
.quick-card span,
.metric span,
.hero-card-label,
.pill,
.method p,
.side-card strong,
.label-text,
.control-label,
label.control-label,
.service-row small,
.service-price .old,
.admin-card small,
.admin-meta span,
.status {
  color: var(--muted) !important;
}
.tier-subtitle,
.price-note,
.features li,
.quick-card span,
.metric span,
.hero-card-label,
.pill,
.method p,
.side-card strong,
.service-row small,
.service-price .old,
.admin-card small,
.status,
.summary-line,
.accordion summary span,
.price-tile span,
.strip-item,
.mini-strip-inner,
.form-note,
.status-note,
th,
td,
.tiny,
.footer-brand p,
.footer-contact,
.footer-bottom p,
.footer-legal a,
.footer-col ul li a,
.footer-col a,
.footer-links a,
.footer-col h5,
.footer-col h4 {
  font-size: var(--type-ui) !important;
  line-height: 1.55 !important;
}
.label-text,
.control-label,
label.control-label,
.badge,
.service-price .discount,
.admin-meta span,
.footer-col h5,
.footer-col h4 {
  font-size: var(--type-caption) !important;
  line-height: 1.35 !important;
}

.estimate-box,
.summary {
  color: var(--text) !important;
  background:
    linear-gradient(145deg, rgba(255,122,61,0.16), rgba(255,255,255,0.04)),
    var(--panel-strong) !important;
}
.estimate-box p,
.summary .muted,
.summary-line span:first-child {
  color: var(--muted) !important;
}
.summary-total {
  border-top-color: rgba(255, 255, 255, 0.16) !important;
}

input,
select,
textarea,
.toggle-box {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: var(--radius) !important;
  color: var(--text) !important;
  background: rgba(255,255,255,0.055) !important;
  box-shadow: none !important;
  font-size: var(--type-body) !important;
  line-height: 1.45 !important;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted-2) !important;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 122, 61, 0.58) !important;
  background: rgba(255,255,255,0.08) !important;
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.12) !important;
}
select option {
  color: #12191b;
  background: #fff6ea;
}
input[readonly] {
  color: var(--muted) !important;
  background: rgba(255,255,255,0.035) !important;
}
.toggle-box input,
.service-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.summary-row,
.admin-card-head {
  border-bottom-color: rgba(255, 255, 255, 0.09) !important;
}
.summary-row {
  color: var(--muted) !important;
}
.summary-row strong {
  color: var(--text) !important;
}
.notice,
.form-error,
.status-note {
  border-radius: var(--radius) !important;
}
.notice,
.status-note.success {
  border: 1px solid rgba(127, 197, 194, 0.26) !important;
  color: #c8ece9 !important;
  background: rgba(127, 197, 194, 0.08) !important;
}
.notice.warning {
  border-color: rgba(248, 166, 64, 0.28) !important;
  color: #ffd1a1 !important;
  background: rgba(248, 166, 64, 0.1) !important;
}
.form-error,
.status-note.error,
.status.error {
  border-color: rgba(255, 107, 107, 0.28) !important;
  color: #ffb5b5 !important;
  background: rgba(255, 107, 107, 0.1) !important;
}

table {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: var(--panel-strong) !important;
  box-shadow: none !important;
}
th {
  color: var(--text) !important;
  background: #12191b !important;
}
td {
  color: var(--muted) !important;
  border-bottom-color: rgba(255, 255, 255, 0.09) !important;
}
tbody tr:hover td {
  background: rgba(255, 122, 61, 0.08) !important;
}
.group-row td {
  color: #ffb36d !important;
  background: rgba(255, 122, 61, 0.12) !important;
}
.yes,
.check {
  color: var(--green) !important;
}
.no,
.dash {
  color: var(--danger) !important;
}
.tiny {
  color: var(--muted-2) !important;
}

.tabs {
  border: 1px solid var(--line) !important;
  background: rgba(255,255,255,0.045) !important;
  box-shadow: none !important;
}
.tab {
  color: var(--muted) !important;
}
.tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, #d9521f, #ec7536) !important;
  box-shadow: 0 12px 30px rgba(255,122,61,0.24) !important;
}

.contact-shell {
  padding: 76px 0 86px !important;
}
.intro-panel {
  top: 104px;
}
.quick-point {
  color: var(--muted) !important;
}
.quick-point span,
.method-icon {
  border: 1px solid rgba(107, 214, 161, 0.26);
  color: var(--green) !important;
  background: rgba(107, 214, 161, 0.1) !important;
}
.method-icon {
  color: var(--orange) !important;
  border-color: rgba(255, 122, 61, 0.28);
  background: rgba(255, 122, 61, 0.1) !important;
}
.form-actions .form-note {
  color: var(--muted) !important;
}

.upload-zone {
  border-style: dashed !important;
}
.qr-wrap img {
  background: #fff !important;
  padding: 8px;
}
.upi-id {
  border: 1px solid rgba(107, 214, 161, 0.28) !important;
  color: #9bf0c2 !important;
  background: rgba(107, 214, 161, 0.1) !important;
}

footer,
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(8, 12, 14, 0.84) !important;
  color: var(--muted) !important;
  padding: 48px 0 36px !important;
}
.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p,
.footer-contact,
.footer-bottom p,
.footer-legal a,
.footer-col ul li a,
.footer-col a,
.footer-links a {
  color: var(--muted-2) !important;
}
.footer-contact a,
.footer-col ul li a:hover,
.footer-col a:hover,
.footer-legal a:hover,
.footer-links a:hover {
  color: var(--orange) !important;
}
.footer-col h4,
.footer-col h5 {
  color: var(--muted) !important;
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.agency-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 122, 61, 0.08);
  color: var(--muted);
  padding: 14px 16px;
  line-height: 1.65;
}
.agency-note strong {
  color: var(--text);
}
.selected-summary {
  margin-top: 14px;
}

@media (max-width: 1040px) {
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .wrap,
  .site-header .wrap.nav,
  body > header .wrap.nav {
    width: min(100% - 32px, var(--layout-max));
  }
  .site-header .nav,
  body > header .nav,
  .nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .navlinks {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
    padding: 8px 0 2px;
  }
  .site-header.nav-open,
  body > header.nav-open {
    background: rgba(8, 12, 14, 0.96) !important;
  }
  .site-header.nav-open .navlinks,
  body > header.nav-open .navlinks {
    display: grid;
  }
  .navlinks a {
    width: 100%;
    padding: 12px 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius) !important;
    background: rgba(255,255,255,0.055) !important;
  }
  .navlinks .nav-cta,
  .nav-cta {
    margin-left: 0;
  }
  .site-header.nav-open .nav-toggle span:nth-child(1),
  body > header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.nav-open .nav-toggle span:nth-child(2),
  body > header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.nav-open .nav-toggle span:nth-child(3),
  body > header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero {
    padding: 62px 0 66px !important;
  }
  .hero-headline {
    font-size: 2.65rem !important;
    line-height: 1.02 !important;
  }
  h1:not(.hero-headline) {
    font-size: clamp(2.48rem, 11vw, 3rem) !important;
  }
  .section-title {
    font-size: 2.35rem !important;
    line-height: 1.08 !important;
  }
  .contact-shell {
    padding: 54px 0 66px !important;
  }
}

@media (max-width: 640px) {
  .wrap,
  .site-header .wrap.nav,
  body > header .wrap.nav {
    width: min(100% - 28px, var(--layout-max));
  }
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
