/* KAMRIT site styles. IndiaFilings-style conversion-focused theme. */

:root {
  --ink:        #0f1d3a;
  --ink-2:      #2b2b3d;
  --muted:      #5b6478;
  --muted-2:    #8b94a6;
  --rule:       #e3e7ee;
  --rule-soft:  #eef0f5;
  --bg:         #ffffff;
  --bg-soft:    #f6f8fb;
  --bg-warm:    #fff7ec;

  --primary:    #ed1c24;        /* IndiaFilings-style red CTA */
  --primary-2:  #c9151c;
  --accent:     #2251ff;
  --green:      #10b981;
  --gold:       #f59e0b;

  --serif:      "DM Serif Display", Georgia, serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container:  1280px;
  --radius:     8px;
  --shadow-sm:  0 1px 2px rgba(15, 29, 58, 0.06);
  --shadow:     0 4px 14px rgba(15, 29, 58, 0.08);
  --shadow-lg:  0 12px 40px rgba(15, 29, 58, 0.12);
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container        { max-width: var(--container);        margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px;                    margin: 0 auto; padding: 0 24px; }

/* ============== TOP UTILITY STRIPE ============== */
.utility-stripe {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.utility-stripe-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px; max-width: var(--container); margin: 0 auto; gap: 16px; flex-wrap: wrap;
}
.utility-stripe a { color: rgba(255,255,255,0.95); margin-left: 14px; font-weight: 500; }
.utility-stripe a:hover { color: #fff; }
.utility-stripe .pill {
  background: var(--primary); color: #fff; padding: 4px 10px; border-radius: 999px;
  font-weight: 600; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
}

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  padding: 14px 24px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark {
  font-family: var(--sans); font-size: 26px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-mark::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 999px; background: var(--primary);
  vertical-align: super; margin-left: 4px; transform: translateY(-6px);
}
.brand-sub {
  font-size: 11px; color: var(--muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 2px; font-weight: 500;
}
.nav { display: flex; justify-content: center; min-width: 0; }
.nav ul {
  display: flex; gap: 18px; list-style: none; margin: 0; padding: 0;
  flex-wrap: nowrap;
}
.nav li { white-space: nowrap; }
.nav a {
  color: var(--ink); font-size: 14px; font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--primary); border-bottom-color: var(--primary); }
@media (max-width: 1280px) { .nav ul { gap: 14px; } .nav a { font-size: 13px; } }
@media (max-width: 1180px) { .nav ul { gap: 12px; } .nav a { font-size: 12.5px; } }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 11px 22px; background: var(--primary); color: #fff;
  border-radius: 999px; white-space: nowrap;
  transition: background 0.15s, transform 0.05s;
}
.header-cta:hover { background: var(--primary-2); color: #fff; transform: translateY(-1px); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: auto auto; }
}

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(circle at 90% 0%, rgba(34,81,255,0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.4fr 1fr; } }

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--ink); font-weight: 800;
}
.hero h1 .accent { color: var(--primary); }
.hero .lead {
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
  max-width: 640px; margin: 0 0 28px;
}
.hero-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; max-width: 600px; }
.hero-bullets li {
  position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-2);
}
.hero-bullets li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--green); color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.hero-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card .price-row {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hero-card .price-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 2px; }
.hero-card .price-value { font-size: 22px; font-weight: 800; color: var(--primary); margin: 0; }
.hero-card h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.hero-card ul li { padding-left: 26px; position: relative; font-size: 14px; color: var(--ink-2); }
.hero-card ul li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  border: 2px solid var(--green); border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 50%, transparent 50%);
}
.hero-card .form { display: grid; gap: 12px; }
.hero-card input, .hero-card select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--rule);
  border-radius: 6px; font-size: 15px; font-family: inherit; color: var(--ink);
  background: #fff;
}
.hero-card input:focus, .hero-card select:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: var(--accent); }
.hero-card .btn-block { width: 100%; justify-content: center; }

/* ============== TRUST STRIP ============== */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  align-items: center;
}
@media (min-width: 760px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); }
.trust-icon {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.trust-num { font-weight: 700; color: var(--ink); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); color: #fff; }
.btn-dark    { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); color: #fff; }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }

/* ============== SECTIONS ============== */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }

.section-head {
  text-align: center; max-width: 780px; margin: 0 auto 56px;
}
.section h2 {
  font-family: var(--sans); font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 16px; color: var(--ink); font-weight: 800;
}
.section h2 .accent { color: var(--primary); }
.section .lead { font-size: 17px; color: var(--muted); margin: 0; }

.eyebrow {
  display: inline-block;
  background: rgba(237, 28, 36, 0.08);
  color: var(--primary);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
}

/* ============== SERVICE CARDS ============== */
.pillar-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 28px 26px; transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(237,28,36,0.3); text-decoration: none; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #ff6e44);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin-bottom: 18px;
}
.pillar-title { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.pillar-summary { font-size: 14px; color: var(--muted); margin: 0 0 18px; line-height: 1.55; flex: 1; }
.pillar-price {
  font-size: 13px; color: var(--muted); margin: 0 0 12px;
}
.pillar-price strong { color: var(--primary); font-size: 16px; }
.pillar-cta {
  font-size: 14px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.pillar-cta::after { content: "\2192"; transition: transform 0.15s; }
.pillar:hover .pillar-cta::after { transform: translateX(4px); }

/* ============== SUB-SERVICE LIST ============== */
.subservice-list {
  display: grid; gap: 0; grid-template-columns: 1fr;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 760px) { .subservice-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .subservice-list { grid-template-columns: repeat(3, 1fr); } }
.subservice {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--rule-soft);
  border-right: 1px solid var(--rule-soft);
  text-decoration: none; color: var(--ink);
  transition: background 0.15s;
  align-items: center;
}
.subservice:hover { background: var(--bg-soft); text-decoration: none; }
.subservice-label { font-size: 14px; font-weight: 500; color: var(--ink); }
.subservice-price { font-size: 12px; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* ============== WHY CHOOSE ============== */
.why-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 760px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px;
}
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(34,81,255,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.why-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ============== INDUSTRY CHIPS ============== */
.industry-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.industry-chip {
  background: #fff; border: 1px solid var(--rule); border-radius: 999px;
  padding: 10px 18px; font-size: 14px; color: var(--ink);
  text-decoration: none; transition: border-color 0.15s, color 0.15s;
}
.industry-chip:hover { border-color: var(--primary); color: var(--primary); }

/* ============== STATS BAND ============== */
.stats-band { background: var(--ink); color: #fff; padding: 64px 0; }
.stats-grid {
  display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr);
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: 42px; font-weight: 800; color: var(--primary); display: block; line-height: 1; margin-bottom: 10px; }
.stat-label { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.5; }

/* ============== HOW IT WORKS ============== */
.howit-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px) { .howit-grid { grid-template-columns: repeat(4, 1fr); } }
.howit-step {
  position: relative; padding-top: 24px;
}
.howit-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif); font-size: 56px; line-height: 1;
  color: rgba(237, 28, 36, 0.15);
  position: absolute; top: -10px; left: -4px;
}
.howit-step h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.howit-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ============== FAQ ============== */
.faq { max-width: 900px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  list-style: none; padding: 20px 24px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--ink);
  position: relative; padding-right: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 18px;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--bg-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { padding: 0 24px 22px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ============== CTA STRIP ============== */
.cta-strip {
  background:
    radial-gradient(circle at 0% 50%, rgba(237,28,36,0.18), transparent 50%),
    linear-gradient(135deg, var(--ink), #1a2845);
  color: #fff; padding: 72px 0;
}
.cta-strip h2 { color: #fff; max-width: 800px; font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; margin: 0 0 18px; line-height: 1.2; }
.cta-strip p  { color: rgba(255,255,255,0.78); max-width: 700px; margin: 0 0 28px; font-size: 16px; }

/* ============== PROSE ============== */
.prose { max-width: 760px; }
.prose > *:first-child { margin-top: 0; }
.prose h1 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 16px; }
.prose h2 { font-size: 26px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; line-height: 1.25; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(34,81,255,0.3); }
.prose a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 10px 18px; margin: 18px 0;
  color: var(--ink); background: var(--bg-soft);
  font-size: 17px;
}
.prose code { background: var(--bg-soft); padding: 2px 6px; border-radius: 3px; font-size: 0.92em; }

.subtitle {
  font-size: 17px; line-height: 1.55; color: var(--muted);
  margin: 0 0 24px;
}

/* Service pages: tighter section padding, full-width prose inside container-narrow */
.service-page { padding: 56px 0 80px; }
.service-page .prose { max-width: 100%; }
.service-page .prose h2 { margin-top: 40px; }
.service-page .prose h2:first-child { margin-top: 0; }
.service-page .prose ul, .service-page .prose ol { margin: 0 0 18px; }
.service-page > .container-narrow > h1 { margin: 0 0 12px; }
.service-page .priceFrom-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(237,28,36,0.08); color: var(--primary);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 18px;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }
.site-footer h4 {
  color: #fff; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.14em; margin: 0 0 16px; font-weight: 600;
}
.site-footer p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--primary); }
.link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.link-list a { font-size: 14px; }
.footer-meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  color: rgba(255,255,255,0.5); font-size: 13px;
}

.muted { color: var(--muted); }
.text-center { text-align: center; }

@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 60px 0; }
  .stats-band, .cta-strip { padding: 56px 0; }
}
