/* ===================================================
   WONTON CONSULTING PVT LTD — GLOBAL STYLESHEET
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #1a3a8c;
  --primary-dark: #0f2460;
  --accent: #2563eb;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 201;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-logo span {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  font-family: "DM Sans", sans-serif;
}
.nav-logo .accent { color: #0b1173; }
.nav-logo:hover span { opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* --- Hamburger button --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile menu drawer --- */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  padding: 24px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--primary); }
.nav-mobile .btn-nav-mobile {
  margin-top: 24px;
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: none;
}
.nav-mobile .btn-nav-mobile:hover { background: var(--primary-dark); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-solid { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-solid:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2396 50%, var(--primary-dark) 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

/* ===================================================
   SECTION UTILITIES
   =================================================== */
section { padding: 88px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag .tag-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.section-tag .tag-icon svg { width: 15px; height: 15px; }
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading span { color: var(--accent); }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header.center .section-sub { text-align: center; }

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===================================================
   CHECKMARK LISTS
   =================================================== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: var(--text-mid); }
.check-list li .chk {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--accent);
}
.check-list li .chk svg { width: 12px; height: 12px; }

/* ===================================================
   GRIDS
   =================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #f8fafc;
  color: #0b1173;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(11,17,115,0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: #0b1173; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(11,17,115,0.7); max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: #0b1173; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(11,17,115,0.7); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col ul li a:hover { color: #0b1173; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(11,17,115,0.15); padding-top: 28px; display: flex; justify-content: flex-end; }
.footer-bottom p { font-size: 0.85rem; color: rgba(11,17,115,0.6); text-align: right; }

/* ===================================================
   SERVICE DETAIL PAGE — HERO VARIANT
   =================================================== */
.service-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0b1173 100%);
  padding: 88px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-hero-left .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-hero-left .eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}
.service-hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-hero-left h1 span { color: #60c5fa; }
.service-hero-left p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.service-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-icon-wrap {
  width: 220px;
  height: 220px;
  border-radius: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.hero-icon-wrap svg { width: 100px; height: 100px; stroke: rgba(255,255,255,0.85); }

/* ===================================================
   SERVICE DETAIL — OVERVIEW STATS
   =================================================== */
.service-stats {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-box {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-box:last-child { border-right: none; }
.stat-box .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* ===================================================
   SERVICE DETAIL — MAIN CONTENT SECTIONS
   =================================================== */
.service-overview { background: var(--bg-light); }
.service-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.service-overview-inner .section-sub { max-width: 100%; }

.what-we-offer { background: var(--white); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.offer-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,0.2); }
.offer-card:hover::before { opacity: 1; }
.offer-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer-icon svg { width: 24px; height: 24px; }
.offer-card h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.offer-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ===================================================
   SERVICE DETAIL — WHY CHOOSE THIS SERVICE
   =================================================== */
.service-why { background: var(--bg-light); }
.service-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-panel {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  border-radius: var(--radius);
  padding: 52px 44px;
  color: var(--white);
}
.why-panel h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item .w-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item .w-icon svg { width: 18px; height: 18px; stroke: #fff; }
.why-item .w-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.why-item .w-text span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ===================================================
   SERVICE DETAIL — PROCESS STEPS
   =================================================== */
.service-process { background: var(--white); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(37,99,235,0.15));
  z-index: 0;
}
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.proc-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.proc-num .p-inner {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}
.proc-step:hover .proc-num { border-color: var(--accent); box-shadow: 0 0 0 6px rgba(37,99,235,0.08); }
.proc-step:hover .p-inner { background: var(--accent); color: var(--white); }
.proc-step h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.proc-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

/* ===================================================
   SERVICE DETAIL — CTA STRIP
   =================================================== */
.service-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.service-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-bottom: 16px; }
.service-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   SERVICE DETAIL — RELATED SERVICES
   =================================================== */
.related-services { background: var(--bg-light); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.related-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.related-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.related-icon svg { width: 24px; height: 24px; }
.related-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.related-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.related-card a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.related-card a:hover { gap: 8px; }
.related-card a svg { width: 13px; height: 13px; }

/* ===================================================
   TESTIMONIALS / TRUST STRIP
   =================================================== */
.trust-strip {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.trust-item { text-align: center; padding: 0 20px; }
.trust-item .t-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.trust-item .t-label { font-size: 0.88rem; color: var(--text-light); }

/* ===================================================
   FAQ SECTION
   =================================================== */
.service-faq { background: var(--bg-light); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-q span { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.faq-q .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.faq-q .faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-q .faq-icon { background: var(--accent); color: #fff; }
.faq-item.open .faq-q .faq-icon svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-a p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb-wrap {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }

/* ===================================================
   RESPONSIVE — TABLET (≤1024px)
   =================================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .service-hero-left p { max-width: 100%; }
  .service-hero-left .eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .service-hero-right { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-box:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .service-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .service-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-timeline { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .process-timeline::before { display: none; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .trust-inner { grid-template-columns: repeat(3,1fr); }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤768px)
   =================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .service-hero { padding: 60px 0 52px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; }
  .footer-bottom p { text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-panel { padding: 36px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; }
  .page-hero { padding: 56px 0 48px; }
  .logo-img { height: 36px; }
  .nav-logo span { font-size: 18px; }
}

/* ===================================================
   RESPONSIVE — SMALL (≤480px)
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .process-timeline { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-box .num { font-size: 1.9rem; }
  .card { padding: 22px; }
  .offer-card { padding: 22px 18px; }
}
