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

:root {
  --purple: #7357F6;
  --purple-hover: #5B42EA;
  --purple-light: #b5a5fe;
  --purple-bg: #EFF3FA;
  --peach: #FDF2E4;
  --green-bg: #F2F8F6;
  --white: #FFFFFF;
  --text-dark: #343B55;
  --text-mid: #595F75;
  --text-light: #818486;
  --border: #E8E8E8;
  --font: 'Hanken Grotesk', sans-serif;
  --font2: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-light);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  font-family: var(--font2); font-weight: 700; font-size: 1.25rem;
  color: var(--text-dark); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--purple); }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-mid);
  padding: 0 14px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-cta {
  background: var(--purple); color: #fff !important;
  padding: 10px 22px !important; border-radius: 100px;
  font-size: 15px !important; font-weight: 700 !important;
  margin-left: 12px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--purple-hover) !important; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--purple-bg);
  padding: 120px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(115,87,246,0.08);
  color: var(--purple); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  border: 1px solid rgba(115,87,246,0.2);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.035em;
  color: var(--text-dark); line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--text-mid); margin-bottom: 32px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--purple-hover); transform: translateY(-1px); }
.btn-ghost {
  font-size: 14px; font-weight: 700; color: var(--text-dark);
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font2); transition: color 0.2s;
}
.btn-ghost:hover { color: var(--purple); }
.hero-trust { margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }
.trust-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--purple); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.trust-check svg { width: 11px; height: 11px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(115,87,246,0.12);
  padding: 28px 32px; max-width: 380px; width: 100%;
}
.hero-card-title { font-size: 13px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.metric-row { display: flex; gap: 16px; margin-bottom: 16px; }
.metric-box { flex: 1; background: var(--purple-bg); border-radius: 10px; padding: 14px 16px; }
.metric-box.peach { background: var(--peach); }
.metric-val { font-size: 1.75rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.04em; line-height: 1; }
.metric-val span { color: var(--purple); }
.metric-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.hero-card-divider { height: 1px; background: var(--border); margin: 16px 0; }
.process-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text-dark); }
.process-item:last-child { border-bottom: none; }
.process-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
.process-dot.green { background: #76C481; }
.process-dot.orange { background: #F4CE92; }

/* ── LOGOS ───────────────────────────────── */
.logos-band { background: #fff; border-bottom: 1px solid var(--border); padding: 24px; }
.logos-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logos-label { font-size: 12px; font-weight: 600; color: var(--text-light); white-space: nowrap; letter-spacing: 0.06em; }
.logos-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.logo-item { font-size: 13px; font-weight: 700; color: #C8CACE; letter-spacing: 0.02em; }

/* ── SECTIONS ────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-overline { font-size: 12px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.035em; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 580px; }

/* ── PROCESS ────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 19px; left: calc(12.5% + 13px); right: calc(12.5% + 13px); height: 2px; background: #343B55; z-index: 0; }
.process-step { text-align: center; position: relative; }
.step-num { width: 40px; height: 40px; border-radius: 100px; background: #343B55; color: #fff; font-size: 13px; font-weight: 700; font-family: var(--font); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; border: 3px solid #fff; }
.step-num.active { background: var(--purple); }
.step-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; padding: 0 8px; }

/* ── TESTIMONIAL ─────────────────────────── */
.testimonial-section { background: var(--peach); }
.testimonial-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.testimonial-quote { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; color: var(--text-dark); line-height: 1.4; letter-spacing: -0.02em; margin-bottom: 24px; position: relative; }
.testimonial-quote::before { content: '\201C'; font-size: 4rem; color: var(--purple); opacity: 0.2; position: absolute; top: -20px; left: -12px; font-family: Georgia, serif; line-height: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-role { font-size: 13px; color: var(--text-mid); }
.stars { color: var(--purple); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.metrics-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric-card { background: #fff; border-radius: 12px; padding: 20px 20px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.m-val { font-size: 2rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.m-val.purple { color: var(--purple); }
.m-label { font-size: 12px; color: var(--text-light); line-height: 1.4; }

/* ── SERVICES ────────────────────────────── */
.services-section { background: #fff; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 52px; align-items: end; }
.services-grid { display: flex; flex-direction: column; gap: 0; }
.service-row { display: flex; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover .service-title { color: var(--purple); }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--purple-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; transition: background 0.2s; }
.service-row:hover .service-icon { background: rgba(115,87,246,0.15); }
.service-title { font-size: 16px; font-weight: 700; color: var(--text-dark); transition: color 0.2s; }
.service-desc { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.service-tag { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--text-mid); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }

/* ── PRICING ─────────────────────────────── */
.pricing-section { background: var(--green-bg); }
.price-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1.5px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.price-card.featured { border-color: var(--purple); box-shadow: 0 4px 20px rgba(115,87,246,0.15); }
.featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.price-name { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.price-period { font-size: 13px; color: var(--text-light); margin: 6px 0 24px; }
.price-divider { height: 1px; background: var(--border); margin: 0 0 24px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-feats li { font-size: 14px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(115,87,246,0.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feat-check svg { width: 10px; height: 10px; }
.price-btn { display: block; width: 100%; padding: 13px; border-radius: 100px; font-family: var(--font); font-size: 15px; font-weight: 700; text-align: center; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; }
.price-btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--border); }
.price-btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.price-btn-fill { background: var(--purple); color: #fff; }
.price-btn-fill:hover { background: var(--purple-hover); }

/* ── FAQ ─────────────────────────────────── */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-left { padding-top: 8px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { font-size: 16px; font-weight: 600; color: var(--text-dark); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; transition: color 0.2s; }
.faq-item:hover .faq-q { color: var(--purple); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 300; color: var(--text-mid); transition: all 0.2s; background: transparent; cursor: pointer; }
.faq-item.open .faq-toggle { background: var(--purple); border-color: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-mid); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── CTA FINAL ───────────────────────────── */
.cta-section { background: var(--purple-bg); }
.cta-inner { max-width: 1080px; margin: 0 auto; text-align: center; padding: 80px 24px; }
.cta-section .section-title { max-width: 600px; margin: 0 auto 12px; }
.cta-sub { font-size: 16px; color: var(--text-mid); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }
.cta-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 16px rgba(115,87,246,0.1); }
.cta-input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--text-dark); }
.cta-input::placeholder { color: #B0B4BD; }
.cta-btn { background: var(--purple); color: #fff; border: none; padding: 10px 22px; border-radius: 100px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.cta-btn:hover { background: var(--purple-hover); }
.cta-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }
.cta-trust-row { display: flex; justify-content: center; gap: 32px; margin-top: 28px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────── */
footer { background: #fff; border-top: 1px solid var(--border); padding: 28px 24px; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: var(--font2); font-weight: 700; font-size: 1.1rem; color: var(--text-dark); }
.footer-logo span { color: var(--purple); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-dark); }
.footer-copy { font-size: 12px; color: var(--text-light); }

/* ── BLOG INDEX ──────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.blog-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: var(--purple); }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 12px; }
.blog-card h2 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-date { font-size: 12px; color: var(--text-light); }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--purple); }

/* ── ARTICLE PAGE ────────────────────────── */
.article-hero { background: var(--purple-bg); padding: 100px 24px 48px; }
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--purple); }
.breadcrumb span { color: var(--text-light); }
.article-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.035em; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.article-meta { font-size: 13px; color: var(--text-light); margin-top: 16px; display: flex; gap: 20px; flex-wrap: wrap; }
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.025em; line-height: 1.3; margin: 48px 0 16px; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.article-body p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }
.article-body strong { color: var(--text-dark); font-weight: 700; }
.article-callout { background: var(--purple-bg); border-left: 3px solid var(--purple); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 32px 0; }
.article-callout p { margin-bottom: 0; color: var(--text-dark); font-weight: 500; }
.article-cta { background: var(--purple); color: #fff; border-radius: 16px; padding: 32px; margin: 48px 0; text-align: center; }
.article-cta h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 15px; }
.article-cta a { background: #fff; color: var(--purple); padding: 12px 28px; border-radius: 100px; font-weight: 700; font-size: 15px; display: inline-block; transition: opacity 0.2s; }
.article-cta a:hover { opacity: 0.9; }
.related-articles { background: var(--purple-bg); padding: 56px 24px; }
.related-inner { max-width: 760px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.related-card { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid var(--border); transition: border-color 0.2s; }
.related-card:hover { border-color: var(--purple); }
.related-card .blog-tag { margin-bottom: 8px; }
.related-card h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }

/* ── SERVICE PAGE ────────────────────────── */
.service-hero { background: var(--purple-bg); padding: 100px 24px 56px; }
.service-hero-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.035em; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.service-hero p { font-size: 17px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.service-detail { padding: 72px 24px; }
.service-detail-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 64px; }
.service-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; margin: 40px 0 14px; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.service-content ul { margin: 0 0 20px 20px; }
.service-content li { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.service-content strong { color: var(--text-dark); }
.service-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card { background: var(--purple-bg); border-radius: 16px; padding: 24px; margin-bottom: 16px; }
.sidebar-card h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { font-size: 13px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; gap: 8px; }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
.sidebar-cta { background: var(--purple); border-radius: 16px; padding: 24px; text-align: center; }
.sidebar-cta h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.sidebar-cta a { background: #fff; color: var(--purple); display: block; padding: 12px; border-radius: 100px; font-weight: 700; font-size: 14px; transition: opacity 0.2s; }
.sidebar-cta a:hover { opacity: 0.9; }
.other-services { background: var(--green-bg); padding: 56px 24px; }
.other-services-inner { max-width: 1080px; margin: 0 auto; }
.other-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.other-service-card { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s; }
.other-service-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.other-service-icon { font-size: 24px; margin-bottom: 10px; }
.other-service-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.other-service-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ── ANIMATIONS ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-2 { transition-delay: 0.12s; }
.reveal-3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .testimonial-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-header { grid-template-columns: 1fr; gap: 16px; }
  .service-tag { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
}
