/* ===== Service Detail Page Fonts ===== */

.our-services h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.our-services h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.our-services h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.our-services p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.our-services ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}


@media (max-width: 768px) {

  .our-services h1 {
    font-size: 30px;
  }

  .our-services h2 {
    font-size: 24px;
  }

  .our-services p {
    font-size: 15px;
  }
}

 
    :root {
      --primary: #ec4814;          /* main brand orange */
      --primary-soft: #f9c8b8;     /* soft peach accent */
      --bg: #fffaf0;               /* #FFFAF0 from your CSS */
      --text: #1f2933;
      --muted: #6b7280;
      --card: #ffffff;
      --border: rgba(236, 72, 20, 0.18);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.12);
      --transition: 220ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }

    body {
      color: var(--text);
      line-height: 1.6;
      /* -webkit-font-smoothing: antialiased; */
    }

    .page {
      margin-top: 12rem;
      min-height: 100vh;
      padding: 32px 20px 56px;
      display: flex;
      justify-content: center;
    }

    .page-inner {
      width: 100%;
      max-width: 1290px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(249, 200, 184, 0.4);
      border: 1px solid rgba(236, 72, 20, 0.5);
      color: #7c2d12;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    .header {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.4fr);
      gap: 40px;
      align-items: center;
      margin-bottom: 40px;
    }

    @media (max-width: 900px) {
      .header {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .title-block {
      margin-top: 16px;
    }

    .eyebrow {
      font-size: 14px;
      color: var(--muted);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .title {
      font-size: 38px;
      line-height: 1.15;
      font-weight: 700;
      color: #111827;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    @media (max-width: 600px) {
      .title {
        font-size: 30px;
      }
    }

    .title span.highlight {
      color: var(--primary);
    }

    .subtitle {
      font-size: 15px;
      color: var(--muted);
      max-width: 520px;
    }

    .hero-card {
      background: linear-gradient(135deg, #ffffff, #fff2e9);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(249, 200, 184, 0.9);
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at top left, rgba(249, 200, 184, 0.7), transparent 55%),
        radial-gradient(circle at bottom right, rgba(236, 72, 20, 0.35), transparent 55%);
      opacity: 0.75;
      pointer-events: none;
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-metrics {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .metric {
      flex: 1;
      min-width: 110px;
    }

    .metric-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(55, 65, 81, 0.9);
      margin-bottom: 4px;
    }

    .metric-value {
      font-size: 20px;
      font-weight: 600;
      color: #111827;
    }

    .metric-sub {
      font-size: 11px;
      color: rgba(107, 114, 128, 0.9);
    }

    .hero-visual {
      border-radius: 16px;
      border: 1px solid rgba(236, 72, 20, 0.45);
      background: linear-gradient(135deg, #fff7f3, #ffffff);
      padding: 16px 16px 14px;
      position: relative;
      overflow: hidden;
    }

    .hero-visual-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-size: 11px;
    }

    .hero-visual-dots {
      display: flex;
      gap: 6px;
    }

    .hero-visual-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.7);
    }

    .hero-visual-pill {
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(249, 200, 184, 0.8);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #7c2d12;
      background: rgba(255, 250, 240, 0.95);
    }

    .hero-visual-body {
      display: grid;
      grid-template-columns: 3fr 2.2fr;
      gap: 18px;
      align-items: center;
    }

    @media (max-width: 600px) {
      .hero-visual-body {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-screen {
      border-radius: 12px;
      border: 1px solid rgba(236, 72, 20, 0.5);
      background: radial-gradient(circle at top left, rgba(236, 72, 20, 0.15), #ffffff);
      padding: 12px;
      position: relative;
      overflow: hidden;
    }

    .hero-screen-title {
      font-size: 11px;
      color: #374151;
      margin-bottom: 8px;
    }

    .hero-screen-bar {
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, #22c55e, #eab308, #f97316, #ef4444);
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .hero-screen-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-screen-pill {
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(249, 200, 184, 0.9), rgba(249, 200, 184, 0.3));
    }

    .hero-stats {
      font-size: 11px;
      color: rgba(75, 85, 99, 0.95);
      display: grid;
      gap: 6px;
    }

    .hero-stats-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
    }

    .hero-stats-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .hero-stats-value {
      font-weight: 600;
      color: #111827;
      font-size: 12px;
    }

    .hero-tagline {
      margin-top: 10px;
      font-size: 11px;
      color: rgba(75, 85, 99, 0.95);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-tagline-dot {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #22c55e;
    }

    /* Layout grid */

    .layout {
      display: grid;
      grid-template-columns: 1.6fr 1.4fr;
      gap: 28px;
    }

    @media (max-width: 900px) {
      .layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 20px 20px 18px;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    }

    .card + .card {
      margin-top: 18px;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 10px;
    }

    .card-title {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: #111827;
    }

    .card-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(107, 114, 128, 0.9);
    }

    .card-body {
      font-size: 14px;
      color: #4b5563;
    }

    .card-body p + p {
      margin-top: 8px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .pill {
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(249, 200, 184, 0.9);
      font-size: 11px;
      color: #7c2d12;
      background: rgba(255, 250, 240, 0.9);
    }

    .pill--primary {
      border-color: rgba(236, 72, 20, 0.75);
      background: radial-gradient(circle at top, rgba(236, 72, 20, 0.15), #fff7f3);
      color: #7c2d12;
    }

    .list {
      list-style: none;
      display: grid;
      gap: 6px;
      margin-top: 10px;
    }

    .list-item {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-size: 13px;
      color: #374151;
    }

    .list-bullet {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 1px solid rgba(236, 72, 20, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #7c2d12;
      margin-top: 2px;
      background: #fff7f3;
    }

    .timeline {
      margin-top: 10px;
      border-left: 1px solid rgba(249, 200, 184, 0.9);
      padding-left: 14px;
      display: grid;
      gap: 10px;
    }

    .timeline-step {
      position: relative;
    }

    .timeline-step::before {
      content: "";
      position: absolute;
      left: -14px;
      top: 3px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(236, 72, 20, 0.9);
      box-shadow: 0 0 0 3px rgba(249, 200, 184, 0.7);
    }

    .timeline-title {
      font-size: 13px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 2px;
    }

    .timeline-desc {
      font-size: 12px;
      color: #4b5563;
    }

    .timeline-meta {
      font-size: 11px;
      color: rgba(107, 114, 128, 0.9);
      margin-top: 2px;
    }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-top: 6px;
      flex-wrap: wrap;
    }

    .price-main {
      font-size: 24px;
      font-weight: 600;
      color: #111827;
    }

    .price-tagline {
      font-size: 12px;
      color: #6b7280;
    }

    .price-note {
      font-size: 11px;
      color: #4b5563;
      margin-top: 6px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .chip {
      padding: 4px 9px;
      border-radius: 999px;
      background: #fff7f3;
      border: 1px solid rgba(249, 200, 184, 0.9);
      font-size: 11px;
      color: #7c2d12;
    }

    .chip--accent {
      border-color: rgba(236, 72, 20, 0.8);
      background: #fffaf0;
    }

    .faq {
      display: grid;
      gap: 10px;
      margin-top: 12px;
      font-size: 13px;
      color: #374151;
    }

    .faq-item {
      padding: 8px 10px;
      border-radius: 10px;
      background: #fff7f3;
      border: 1px solid rgba(249, 200, 184, 0.9);
    }

    .faq-q {
      font-weight: 500;
      margin-bottom: 2px;
      color: #111827;
    }

    .faq-a {
      font-size: 12px;
      color: #4b5563;
    }

    .cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 14px;
    }

    .btn-primary {
      padding: 10px 20px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, #ec4814, #f97316);
      color: #fff7f3;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 12px 32px rgba(236, 72, 20, 0.55);
      transition: transform var(--transition), box-shadow var(--transition),
        background var(--transition);
    }

    .btn-primary span.icon {
      font-size: 16px;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(236, 72, 20, 0.7);
      background: linear-gradient(135deg, #c2410c, #ea580c);
    }

    .btn-ghost {
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(249, 200, 184, 0.9);
      background: #fffaf0;
      color: #7c2d12;
      font-size: 12px;
      cursor: pointer;
    }

    .cta-note {
      font-size: 12px;
      color: #6b7280;
    }

    .footer-note {
      margin-top: 28px;
      font-size: 11px;
      color: #6b7280;
      border-top: 1px solid rgba(236, 72, 20, 0.35);
      padding-top: 12px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* Mobile typography tweaks you already use */
    @media (max-width: 767px) {
      .heading{
        font-size: 2.5rem;
        margin-top: 30px;
      }
      .our-services h1,
      .our-services h2{
        text-align: left !important;
      }
      .our-services h2 .break{
        display: none;
      }
    }
  