
/* ─── Reset ─────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ─── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e8edf3;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 34px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500;
  color: #4a5568; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: #2563eb; }
.nav-links a.active, .nav-mobile a.active { color: #2563eb; }
.nav-cta a {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff; background: #2563eb; text-decoration: none;
  padding: 9px 22px; border-radius: 8px; transition: all 0.2s; display: inline-block;
}
.nav-cta a:hover { background: #1d4ed8; box-shadow: 0 4px 16px rgba(37,99,235,0.35); }
.nav-hamburger {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: none; flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  width: 22px; height: 2px; background: #0f172a; transition: all 0.2s; display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; background: #fff; border-top: 1px solid #e8edf3; padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 12px 0; font-family: 'Sora', sans-serif; font-size: 15px;
  font-weight: 500; color: #4a5568; text-decoration: none; border-bottom: 1px solid #f1f5f9;
}
.nav-mobile .nav-mobile-cta {
  display: block; margin-top: 16px; text-align: center; font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 600; color: #fff; background: #2563eb;
  text-decoration: none; padding: 12px 20px; border-radius: 8px; border-bottom: none;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding-top: 68px;
  background: #fff; position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-bg-glow {
  position: absolute; top: 15%; right: 10%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; width: 100%;
  position: relative; z-index: 1;
}
.hero-copy { opacity: 0; }
.hero-copy h1 {
  font-size: clamp(36px, 4.5vw, 54px); font-weight: 600; color: #111827;
  line-height: 1.15; margin-bottom: 22px; letter-spacing: -0.025em;
}
.hero-copy h1 span { color: #2563eb; }
.hero-copy p {
  font-size: 17px; color: #6b7280; line-height: 1.75; max-width: 460px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #fff;
  background: #2563eb; text-decoration: none; padding: 13px 28px; border-radius: 9px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.28); transition: all 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.38); }
.btn-secondary {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #374151;
  text-decoration: none; padding: 13px 28px; border-radius: 9px; border: 1.5px solid #d1d5db;
  background: #fff; transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: #2563eb; color: #2563eb; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px; padding-top: 32px;
  border-top: 1px solid #e8edf3; flex-wrap: wrap;
}
.hero-stats div div:first-child { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: #111827; }
.hero-stats div div:last-child { font-size: 12px; color: #9ca3af; margin-top: 3px; }
.hero-visual { opacity: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}

/* ─── Chart card ────────────────────────────────────────────────────────── */
.chart-card {
  background: #fff; border-radius: 20px; border: 1px solid #eaecf0;
  box-shadow: 0 20px 60px rgba(15,23,42,0.1); padding: 28px;
  animation: float 5s ease-in-out infinite;
}
.chart-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.chart-card-head .title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #0f172a; }
.chart-card-head .subtitle { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.chart-card-badge { background: #dcfce7; padding: 4px 10px; border-radius: 20px; }
.chart-card-badge span { color: #16a34a; font-size: 12px; font-weight: 700; font-family: 'Sora', sans-serif; }
.chart-stats-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid #f1f5f9;
}
.chart-stats-row .stat { text-align: center; }
.chart-stats-row .stat .n { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a; }
.chart-stats-row .stat .l { font-size: 10px; color: #94a3b8; margin-top: 2px; }
.chart-pill-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.chart-pill { border-radius: 8px; padding: 10px 12px; }
.chart-pill .label { font-size: 10px; color: #475569; }
.chart-pill .val { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════════════════════ */
.trust-strip {
  border-top: 1px solid #e8edf3; border-bottom: 1px solid #e8edf3;
  background: #f8fafc; padding: 44px 24px;
}
.trust-grid {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
}
.trust-grid div { text-align: center; }
.trust-grid .n { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; color: #111827; letter-spacing: -0.02em; }
.trust-grid .l { font-size: 13px; color: #6b7280; margin-top: 4px; }
@media (max-width: 640px) { .trust-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
   ══════════════════════════════════════════════════════════════════════════ */
.section-head { margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 600; color: #111827;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-head h2 span { color: #2563eb; }
.section-head p { font-size: 15px; color: #6b7280; max-width: 480px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════════════════ */
.services-section { padding: 96px 24px; background: #f5f7fa; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  background: #fff; border-radius: 16px; padding: 28px 24px; cursor: pointer;
  display: flex; flex-direction: column; transition: all 0.22s ease;
  box-shadow: 0 2px 16px rgba(15,23,42,0.07); text-decoration: none;
}
.svc-card:hover { box-shadow: 0 20px 48px rgba(37,99,235,0.13); transform: translateY(-5px); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #eff6ff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: all 0.22s ease; flex-shrink: 0;
}
.svc-card:hover .svc-icon { background: #2563eb; }
.svc-card:hover .svc-icon svg { stroke: #fff; }
.svc-card h3 { font-size: 15px; font-weight: 600; color: #111827; margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: #6b7280; line-height: 1.65; flex: 1; }
.svc-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid #f1f5f9; }
.svc-card-footer span {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #2563eb;
  display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
}
.svc-card-footer .arrow { transition: transform 0.2s; display: inline-block; }
.svc-card:hover .svc-card-footer span { text-decoration: underline; }
.svc-card:hover .svc-card-footer .arrow { transform: translateX(4px); }
@media (max-width: 860px) { .svc-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════════════════════════════════ */
.process-section { padding: 96px 24px; background: #fff; border-top: 1px solid #e8edf3; }
.process-section .section-head { margin-bottom: 64px; }
.timeline { position: relative; }
.timeline-line {
  position: absolute; top: 23px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, #bfdbfe, #2563eb, #bfdbfe); z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1; padding: 0 12px;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2.5px solid #2563eb;
  display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; color: #2563eb; margin-bottom: 28px; transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(37,99,235,0.12);
}
.step:hover .step-num { background: #2563eb; color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
.step-icon {
  width: 44px; height: 44px; border-radius: 10px; background: #f8fafc;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: all 0.22s ease;
}
.step:hover .step-icon { background: #eff6ff; }
.step h3 { font-size: 15px; font-weight: 600; color: #111827; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: #6b7280; line-height: 1.65; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2,1fr) !important; } .timeline-line { display: none !important; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   METRICS
   ══════════════════════════════════════════════════════════════════════════ */
.metrics-section { padding: 96px 24px; background: #f0f7ff; border-top: 1px solid #e8edf3; }
.metrics-section .section-head { text-align: center; margin: 0 auto 56px; max-width: 600px; }
.metrics-section .section-head p { margin: 0 auto; }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.metric-card {
  background: #fff; border: 1px solid #e0ecff; border-radius: 18px; padding: 36px 24px;
  text-align: center; transition: all 0.22s; box-shadow: 0 4px 20px rgba(37,99,235,0.07);
}
.metric-card:hover { box-shadow: 0 16px 40px rgba(37,99,235,0.15); transform: translateY(-4px); border-color: #93c5fd; }
.metric-card .n { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 700; color: #2563eb; letter-spacing: -0.03em; }
.metric-card .label { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #111827; margin-top: 10px; }
.metric-card .sub { font-size: 12px; color: #9ca3af; margin-top: 4px; }
@media (max-width: 768px) { .metrics-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 480px) { .metrics-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   FREE AUDIT
   ══════════════════════════════════════════════════════════════════════════ */
.audit-section { padding: 96px 24px; background: #fff; border-top: 1px solid #e8edf3; }
.audit-wrap { max-width: 600px; margin: 0 auto; }
.audit-card {
  background: #fff; border: 1.5px solid #e8edf3; border-radius: 20px; padding: 52px 48px;
  box-shadow: 0 20px 64px rgba(15,23,42,0.08);
}
.audit-card h2 { font-size: 26px; font-weight: 600; color: #111827; letter-spacing: -0.02em; margin-bottom: 12px; }
.audit-card > p { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 32px; }
.form-col { display: flex; flex-direction: column; gap: 14px; }
.field-input {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #111827; background: #f8fafc;
  border: 1.5px solid #e8edf3; border-radius: 9px; padding: 13px 16px; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.field-input:focus { border-color: #2563eb; }
.audit-card .btn-primary, .contact-form .btn-primary { margin-top: 4px; width: 100%; text-align: center; }
.success-box { text-align: center; padding: 28px 0; }
.success-box .emoji { font-size: 36px; margin-bottom: 14px; }
.success-box .title { font-size: 18px; font-weight: 600; color: #111827; margin-bottom: 8px; }
.success-box .desc { font-size: 14px; color: #6b7280; }
.hidden { display: none !important; }
@media (max-width: 560px) { .audit-card { padding: 32px 20px !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonials-section { padding: 96px 0; background: #f8fafc; border-top: 1px solid #e8edf3; overflow: hidden; }
.testimonials-section .section-head { max-width: 1200px; margin: 0 auto 52px; padding: 0 24px; }
.testimonials-viewport { position: relative; }
.fade-left, .fade-right {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.fade-left { left: 0; background: linear-gradient(90deg,#f8fafc,transparent); }
.fade-right { right: 0; background: linear-gradient(-90deg,#f8fafc,transparent); }
.testimonials-track { display: flex; gap: 20px; padding-left: 24px; padding-bottom: 8px; will-change: transform; }
.t-card {
  background: #fff; border: 1.5px solid #e8edf3; border-radius: 20px; padding: 28px 26px;
  min-width: 330px; max-width: 350px; flex-shrink: 0; box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  transition: all 0.25s ease;
}
.t-card:hover { border-color: #bfdbfe; box-shadow: 0 20px 48px rgba(37,99,235,0.14); transform: translateY(-4px); }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.t-stars span { color: #FFC107; font-size: 17px; }
.t-card p { font-size: 14px; color: #374151; line-height: 1.72; margin-bottom: 22px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #e8edf3; }
.t-person .name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #111827; }
.t-person .role { font-size: 12px; color: #9ca3af; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════════════════ */
.blog-section { padding: 96px 24px; background: #fff; border-top: 1px solid #e8edf3; }
.blog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
}
.blog-head h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 600; color: #111827; letter-spacing: -0.02em; }
.blog-all-link {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: #2563eb;
  text-decoration: none; border: 1.5px solid #bfdbfe; padding: 9px 20px; border-radius: 8px; transition: all 0.2s;
}
.blog-all-link:hover { background: #eff6ff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1.5px solid #e8edf3; border-radius: 16px; overflow: hidden;
  cursor: pointer; transition: all 0.22s ease; box-shadow: 0 2px 16px rgba(15,23,42,0.06);
  text-decoration: none; display: block;
}
.blog-card:hover { border-color: #bfdbfe; transform: translateY(-5px); box-shadow: 0 16px 40px rgba(37,99,235,0.1); }
.blog-card-cover { height: 170px; display: flex; align-items: center; justify-content: center; }
.blog-card-cover span { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }
.blog-card-body { padding: 24px; }
.blog-card h3 {
  font-size: 15px; font-weight: 600; color: #111827; line-height: 1.45; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card p {
  font-size: 13.5px; color: #6b7280; line-height: 1.65; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #f1f5f9; }
.blog-card-meta .dates { display: flex; gap: 8px; font-size: 12px; color: #9ca3af; }
.blog-card-meta .dates .sep { color: #d1d5db; }
.blog-card-meta .read-more { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; color: #2563eb; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 96px 24px; background: linear-gradient(160deg,#f5f9ff 0%,#eaf2ff 50%,#e0ecff 100%);
  position: relative; overflow: hidden; border-top: 1px solid #e8edf3;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(37,99,235,0.055) 1px,transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.final-cta-inner { max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 600; color: #111827;
  letter-spacing: -0.025em; margin-bottom: 18px; line-height: 1.2;
}
.final-cta-inner h2 span { color: #2563eb; }
.final-cta-inner p { font-size: 17px; color: #4b5563; line-height: 1.7; margin-bottom: 36px; }
.final-cta-inner .btn-primary { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; padding: 15px 36px; border-radius: 10px; box-shadow: 0 6px 24px rgba(37,99,235,0.32); }
.final-cta-inner .btn-primary:hover { box-shadow: 0 12px 36px rgba(37,99,235,0.42); }

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════════════ */
.contact-section { padding: 96px 24px; background: #f8fafc; border-top: 1px solid #e8edf3; }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-card { background: #fff; border: 1.5px solid #e8edf3; border-radius: 18px; padding: 40px 36px; box-shadow: 0 8px 32px rgba(15,23,42,0.07); }
.contact-card h2 { font-size: 22px; font-weight: 600; color: #111827; letter-spacing: -0.02em; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; display: block; margin-bottom: 7px; }
.form-group textarea { resize: vertical; font-family: 'Inter', sans-serif; }
.field-error { font-size: 12px; color: #ef4444; margin-top: 4px; }
.field-input.error { border-color: #ef4444; }
.contact-info h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 600; color: #111827; letter-spacing: -0.02em; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method-icon { width: 46px; height: 46px; border-radius: 11px; background: #eff6ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .label { font-size: 12px; color: #9ca3af; font-weight: 500; }
.contact-method .val { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #111827; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; } }
@media (max-width: 520px) { .contact-card { padding: 28px 20px !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer { background: #0f172a; border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand img { height: 30px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: #64748b; line-height: 1.75; max-width: 256px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  background: transparent; text-decoration: none;
}
.social-btn:hover { border-color: #3b82f6; background: rgba(37,99,235,0.18); transform: scale(1.1); }
.social-btn svg { stroke: #64748b; }
.social-btn:hover svg { stroke: #60a5fa; }
.footer-col-title {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: #f1f5f9;
  margin-bottom: 20px; letter-spacing: 0.07em; text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 13.5px; color: #64748b; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #94a3b8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom span { font-size: 13px; color: #475569; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   INNER PAGE HERO (service / blog / about / contact pages)
   ══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 158px 24px 72px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg,#f5f9ff 0%,#eaf2ff 55%,#ffffff 100%);
  border-bottom: 1px solid #e8edf3;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.breadcrumb {
  position: relative; z-index: 1; display: flex; justify-content: center; align-items: center;
  gap: 8px; font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 500; color: #94a3b8;
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #2563eb; }
.breadcrumb span.current { color: #2563eb; font-weight: 600; }
.page-hero-eyebrow {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #2563eb; background: #eff6ff; border: 1px solid #bfdbfe;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 22px;
}
.page-hero h1 {
  position: relative; z-index: 1; font-size: clamp(30px, 4.2vw, 48px); font-weight: 600;
  color: #111827; letter-spacing: -0.025em; line-height: 1.15; margin: 0 auto 18px; max-width: 780px;
}
.page-hero h1 span { color: #2563eb; }
.page-hero p {
  position: relative; z-index: 1; font-size: 16.5px; color: #6b7280; line-height: 1.75;
  max-width: 560px; margin: 0 auto;
}
.page-hero .hero-actions { position: relative; z-index: 1; justify-content: center; margin-top: 32px; }
@media (max-width: 640px) { .page-hero { padding: 140px 20px 56px; } }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL
   ══════════════════════════════════════════════════════════════════════════ */
.svc-detail-section { padding: 96px 24px; background: #fff; }
.svc-detail-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
.svc-detail-copy h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; color: #111827; letter-spacing: -0.02em; margin-bottom: 16px; }
.svc-detail-copy p { font-size: 15.5px; color: #4b5563; line-height: 1.8; margin-bottom: 18px; }
.svc-detail-copy p:last-child { margin-bottom: 0; }
.svc-included-card {
  background: #f8fafc; border: 1.5px solid #e8edf3; border-radius: 18px; padding: 32px 30px;
  position: sticky; top: 100px;
}
.svc-included-card h3 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: #111827; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 20px; }
.svc-included-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.svc-included-list li { display: flex; align-items: flex-start; gap: 12px; list-style: none; font-size: 14px; color: #374151; line-height: 1.6; }
.svc-included-list .chk { width: 20px; height: 20px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.svc-included-list .chk svg { stroke: #16a34a; }
.svc-included-card .btn-primary { width: 100%; text-align: center; display: block; }
@media (max-width: 900px) { .svc-detail-grid { grid-template-columns: 1fr !important; gap: 40px !important; } .svc-included-card { position: static; } }

/* ─── Service page hero icon badge ─────────────────────────────────────── */
.svc-hero-icon {
  position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 16px;
  background: #fff; border: 1px solid #dbeafe; box-shadow: 0 8px 24px rgba(37,99,235,0.14);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}

/* ─── Stats row (reused on service pages) ──────────────────────────────── */
.svc-stats-strip { border-top: 1px solid #e8edf3; border-bottom: 1px solid #e8edf3; background: #f8fafc; padding: 40px 24px; }

/* ─── FAQ accordion ─────────────────────────────────────────────────────── */
.faq-section { padding: 88px 24px; background: #f5f7fa; border-top: 1px solid #e8edf3; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1.5px solid #e8edf3; border-radius: 14px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: #bfdbfe; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-family: 'Sora', sans-serif; font-size: 14.5px;
  font-weight: 600; color: #111827; user-select: none;
}
.faq-q .plus { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 400; transition: transform 0.25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: #2563eb; color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14px; color: #6b7280; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 260px; }

/* ══════════════════════════════════════════════════════════════════════════
   BLOG — index page extras & article page
   ══════════════════════════════════════════════════════════════════════════ */
.blog-index-section { padding: 88px 24px 100px; background: #fff; }
.blog-index-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 860px) { .blog-index-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 520px) { .blog-index-grid { grid-template-columns: 1fr !important; } }
.blog-card-link { text-decoration: none; display: block; }

.article-section { padding: 72px 24px 100px; background: #fff; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-tag {
  display: inline-block; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.article-wrap h1 {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; color: #111827; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 20px;
}
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #9ca3af; margin-bottom: 40px; flex-wrap: wrap; }
.article-meta .sep { color: #d1d5db; }
.article-cover {
  height: 260px; border-radius: 18px; margin-bottom: 44px; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.article-body h2 { font-size: 22px; font-weight: 600; color: #111827; letter-spacing: -0.015em; margin: 40px 0 16px; }
.article-body h3 { font-size: 17px; font-weight: 600; color: #111827; margin: 30px 0 12px; }
.article-body p { font-size: 15.5px; color: #374151; line-height: 1.85; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { font-size: 15.5px; color: #374151; line-height: 1.8; margin-bottom: 10px; }
.article-body blockquote {
  border-left: 3px solid #2563eb; background: #f8fafc; padding: 18px 24px; margin: 28px 0;
  font-size: 15.5px; color: #374151; font-style: italic; border-radius: 0 10px 10px 0;
}
.article-body strong { color: #111827; font-weight: 600; }
.article-divider { height: 1px; background: #e8edf3; margin: 48px 0; }
.article-author { display: flex; align-items: center; gap: 14px; }
.article-author-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: #eff6ff; color: #2563eb;
  display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.article-author .name { font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 600; color: #111827; }
.article-author .role { font-size: 12.5px; color: #9ca3af; margin-top: 1px; }
.article-related { padding: 88px 24px; background: #f8fafc; border-top: 1px solid #e8edf3; }
@media (max-width: 640px) { .article-cover { height: 180px; } }

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.about-story-section { padding: 96px 24px; background: #fff; }
.about-story-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-story-copy p { font-size: 15.5px; color: #4b5563; line-height: 1.85; margin-bottom: 18px; }
.about-story-copy p:last-child { margin-bottom: 0; }
.about-story-visual {
  background: #f8fafc; border: 1.5px solid #e8edf3; border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.about-story-visual .row { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid #e8edf3; }
.about-story-visual .row:last-child { border-bottom: none; padding-bottom: 0; }
.about-story-visual .row .ic { width: 44px; height: 44px; border-radius: 11px; background: #eff6ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-story-visual .row .n { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: #111827; }
.about-story-visual .row .l { font-size: 12.5px; color: #6b7280; margin-top: 1px; }
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr !important; gap: 40px !important; } }

.values-section { padding: 96px 24px; background: #f5f7fa; border-top: 1px solid #e8edf3; }
.values-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: #fff; border-radius: 16px; padding: 30px 26px; box-shadow: 0 2px 16px rgba(15,23,42,0.06); }
.value-card .svc-icon { margin-bottom: 18px; }
.value-card h3 { font-size: 15.5px; font-weight: 600; color: #111827; margin-bottom: 10px; }
.value-card p { font-size: 13.5px; color: #6b7280; line-height: 1.65; }
@media (max-width: 860px) { .values-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr !important; } }

.team-section { padding: 96px 24px; background: #fff; border-top: 1px solid #e8edf3; }
.team-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; margin-bottom: 16px; filter: grayscale(15%); }
.team-card .name { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 600; color: #111827; }
.team-card .role { font-size: 12.5px; color: #9ca3af; margin-top: 2px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE — extra info strip above the form
   ══════════════════════════════════════════════════════════════════════════ */
.contact-page-section { padding: 96px 24px; background: #f8fafc; }
