:root {
  --primary: #f15a24;
  --primary-dark: #cf4718;
  --secondary: #0f172a;
  --secondary-soft: #162033;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --soft-bg: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.82);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --max-width: 1180px;
  --transition: all 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 90, 36, 0.05), transparent 26%),
    linear-gradient(to bottom, #ffffff, #f8fafc);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--primary-dark);
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #ff824f);
  color: var(--white) !important;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(241, 90, 36, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(241, 90, 36, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 4.5rem;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.hero-bg-glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(241, 90, 36, 0.28);
  top: 40px;
  left: -50px;
}

.hero-bg-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(15, 23, 42, 0.12);
  right: -80px;
  top: 70px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 90, 36, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(241, 90, 36, 0.16);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: #334155;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff7a45);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.26);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 20px 40px rgba(241, 90, 36, 0.34);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.04);
  color: var(--secondary);
  border-color: rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--secondary);
}

.btn-light {
  background: var(--white);
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  color: var(--secondary);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
  background: #dbe4ee;
  isolation: isolate;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.52), transparent 45%),
    linear-gradient(to bottom right, rgba(241, 90, 36, 0.14), rgba(15, 23, 42, 0.12));
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 130px;
  opacity: 0.17;
  z-index: 2;
  filter: brightness(0) invert(1);
}

.trust-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.trust-box h2 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
}

.trust-box ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: #334155;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background:
    linear-gradient(to bottom, rgba(248, 250, 252, 0.84), rgba(255, 255, 255, 0.82));
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.3rem;
}

.section-intro.narrow {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}

.section-intro h2,
.why-grid h2,
.form-grid h2,
.cta-grid h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.1;
}

.section-intro p,
.why-grid p,
.form-grid p,
.cta-grid p {
  color: #475569;
  margin: 0;
}

.mini-grid,
.cards-grid,
.reasons-grid,
.contact-methods {
  display: grid;
  gap: 1.25rem;
}

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

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

.mini-card,
.service-card,
.review-card,
.reason-card,
.form-card {
  background: var(--card-bg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.mini-card,
.service-card,
.review-card,
.reason-card {
  padding: 1.35rem;
}

.mini-card:hover,
.service-card:hover,
.review-card:hover,
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mini-card h3,
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.mini-card p,
.service-card p,
.review-card p,
.reason-card {
  margin: 0;
  color: #475569;
}

.cta-band {
  background:
    linear-gradient(135deg, #0f172a, #1e293b 58%, #2b3547);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -50px;
  top: -80px;
  background: rgba(241, 90, 36, 0.16);
  filter: blur(50px);
  border-radius: 999px;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.reason-card {
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  min-height: 110px;
}

.reviews-grid {
  align-items: stretch;
}

.review-card strong {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  margin-top: 1.4rem;
}

.contact-details p {
  margin: 0.3rem 0;
}

.form-card {
  padding: 1.6rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d6deea;
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(241, 90, 36, 0.6);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.12);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.25rem 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .why-grid,
  .form-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-panel {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .main-nav {
    width: 100%;
    gap: 0.8rem;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero-stats,
  .cards-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .brand-logo {
    height: 46px;
  }

  .hero-watermark {
    width: 100px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-tag {
    font-size: 0.78rem;
  }

  .section {
    padding: 4rem 0;
  }

  .thankyou-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thankyou-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
  .trust-box,
  .mini-card,
  .service-card,
  .review-card,
  .reason-card,
  .form-card {
    border-radius: 18px;
  }
  .thankyou-page {
  min-height: 100vh;
}

.thankyou-hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 5.5rem 0;
}

.thankyou-wrap {
  position: relative;
  z-index: 1;
}

.thankyou-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.thankyou-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}

.thankyou-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff7a45);
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.28);
}

.thankyou-card h1 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.thankyou-text {
  max-width: 58ch;
  margin: 0 auto 1.7rem;
  color: #475569;
  font-size: 1.05rem;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.thankyou-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
  margin-top: 1rem;
}

.thankyou-mini-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.thankyou-mini-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--secondary);
}

.thankyou-mini-card p {
  margin: 0;
  color: #475569;
}

.thankyou-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 820px) {
  .thankyou-card {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }

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