
:root {
  --fire-orange: #ff6b1a;
  --fire-yellow: #ffb347;
  --fire-red: #ff2d2d;
  --dark-bg: #050509;
  --card-bg: #111119;
  --text-main: #f5f5f5;
  --text-muted: #aaaaaa;
  --accent-blue: #2b7cff;
  --border-soft: #202030;
  --shadow-strong: 0 0 28px rgba(255, 107, 26, 0.4);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f0a00 0, #050509 45%, #020308 100%);
  color: var(--text-main);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 107, 26, 0.25), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(255, 45, 45, 0.20), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 179, 71, 0.20), transparent 60%);
  z-index: -1;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

section {
  padding: 4.5rem 0;
}

h1, h2, h3, h4 {
  letter-spacing: 0.04em;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78), transparent);
  border-bottom: 1px solid rgba(255, 107, 26, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: conic-gradient(from 200deg, #ff2d2d, #ff6b1a, #ffb347, #ff2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.8);
  font-size: 1.4rem;
}

.brand-text-main {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-link {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #dcdcdc;
  transition: all 0.18s ease;
  cursor: pointer;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(255, 107, 26, 0.8);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.5);
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.3), rgba(255, 45, 45, 0.2));
}

.nav-cta {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 71, 1);
  background: linear-gradient(135deg, #ff6b1a, #ff2d2d);
  color: #020104;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 18px rgba(255, 107, 26, 0.9);
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    flex-wrap: wrap;
  }
}

/* Hero */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.badge-24h {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.7rem;
  border: 1px solid rgba(255, 179, 71, 0.85);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 55%);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fire-yellow);
  margin-bottom: 0.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #32ff7e;
  box-shadow: 0 0 8px #32ff7e;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.2rem);
  margin-bottom: 0.5rem;
}

.hero-title span {
  background: linear-gradient(120deg, #ffb347, #ff6b1a, #ff2d2d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.hero-services-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.pill {
  font-size: 0.82rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: #f0f0f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.btn-primary {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ff6b1a, #ffb347);
  color: #050308;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
}

.btn-ghost {
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta b {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #fdfdfd;
  font-size: 0.74rem;
}

/* Hero card */
.hero-card {
  border-radius: 26px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 107, 26, 0.5);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(255, 107, 26, 0.35), transparent 55%),
    #07070f;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-chip {
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(255, 179, 71, 0.9);
  color: var(--fire-yellow);
}

.hero-spark {
  font-size: 0.95rem;
  color: var(--fire-yellow);
}

.hero-card-main {
  margin-bottom: 1.1rem;
}

.hero-card-title {
  font-size: 1.07rem;
  margin-bottom: 0.3rem;
}

.hero-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  font-size: 0.8rem;
}

.hero-card-item {
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.hero-card-value {
  font-weight: 600;
}

.hero-card-footer {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
  color: var(--text-muted);
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #32ff7e;
  box-shadow: 0 0 10px #32ff7e;
}

/* Section heading */
.section-heading {
  margin-bottom: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.section-heading h2 {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.section-heading h2 span {
  background: linear-gradient(120deg, #ffb347, #ff6b1a, #ff2d2d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 30rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  background: linear-gradient(145deg, rgba(10, 10, 18, 0.9), rgba(15, 8, 4, 0.9));
  border: 1px solid var(--border-soft);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.service-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 65%),
              linear-gradient(155deg, rgba(11, 11, 22, 0.96), rgba(21, 10, 4, 0.95));
  border: 1px solid rgba(255, 107, 26, 0.4);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fire-yellow);
  margin-bottom: 0.25rem;
}

.pricing-service {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.pricing-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.review-card {
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  background: rgba(6, 6, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "★";
  position: absolute;
  top: -1rem;
  right: 0.8rem;
  font-size: 3rem;
  opacity: 0.06;
  color: var(--fire-yellow);
}

.review-name {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.review-stars {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: #ffb347;
}

.review-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.review-blank-title {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.review-blank-help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.review-textarea {
  width: 100%;
  min-height: 80px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 0.6rem;
  background: transparent;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.85rem;
  resize: vertical;
}

/* CEO */
.ceo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

@media (max-width: 900px) {
  .ceo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ceo-card {
  border-radius: 24px;
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 65%),
              radial-gradient(circle at 100% 100%, rgba(255, 107, 26, 0.25), transparent 55%),
              #07070f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.85);
}

.ceo-title {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.ceo-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.ceo-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ceo-highlight {
  color: var(--fire-yellow);
  font-weight: 600;
}

.ceo-tagline {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  color: #ffffff;
}

.ceo-badge {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ceo-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.ceo-side-row {
  padding: 0.6rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 9, 0.9);
}

.ceo-side-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.ceo-side-value {
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-card {
  border-radius: 22px;
  padding: 1.2rem 1.2rem;
  background: rgba(4, 4, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.85);
}

.contact-list {
  list-style: none;
  font-size: 0.92rem;
}

.contact-list li + li {
  margin-top: 0.45rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
}

.contact-value {
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.contact-emph {
  color: var(--fire-yellow);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.82rem;
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.field input,
.field textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 15, 0.9);
  padding: 0.55rem 0.6rem;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.9rem;
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Generic content */
.page-intro {
  max-width: 40rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 1.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-fire {
  color: var(--fire-orange);
}
