/* ==========================================================================
   POMOC WORDPRESS — styl strony
   Źródło: pomoc-wordpress.html (1:1 przeniesione do motywu)
   ========================================================================== */

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

:root {
  --blue:      #2563EB;
  --blue-dark: #1D4ED8;
  --blue-tint: #EFF6FF;
  --blue-tint2:#DBEAFE;
  --dark:      #0F0F1A;
  --g900:      #111827;
  --g700:      #374151;
  --g500:      #6B7280;
  --g200:      #E5E7EB;
  --g100:      #F3F4F6;
  --g50:       #F9FAFB;
  --white:     #FFFFFF;
  --green:     #10B981;
  --gold:      #FBBF24;
  --red:       #EF4444;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--g900);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Reveal on scroll — progressive enhancement.
   Domyślnie treść widoczna (bez animacji). Dopiero gdy JS motywu zdąży dodać
   klasę `js-reveal` do <body>, włączamy hide-until-visible. W edytorze
   Elementora (iframe podglądu) frontendowy JS motywu się nie uruchamia,
   więc .rv pozostaje widoczne — i szablon można normalnie edytować. */
.rv { opacity: 1; transform: none; }
body.js-reveal .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
body.js-reveal .rv.in {
    opacity: 1;
    transform: none;
}
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    body.js-reveal .rv { opacity: 1; transform: none; transition: none; }
}

/* ============ NAV ============ */
.site-nav {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--g200);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 30px; height: 30px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 16px; height: 16px; }
.nav-logo-mark img { display: block; border-radius: 7px; object-fit: cover; }
.nav-logo-name { font-family: 'Afacad', sans-serif; font-size: 15px; font-weight: 700; color: var(--g900); }
.nav-logo-sub  { font-size: 11px; color: var(--blue); font-weight: 500; }
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--g500); transition: color .15s; }
.nav-links a:hover { color: var(--g900); text-decoration: none; }
.nav-cta {
  background: var(--blue); color: #fff; border: none; border-radius: 7px;
  padding: 9px 20px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .15s; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }

/* ============ HERO ============ */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-tint); border: 1px solid var(--blue-tint2);
  border-radius: 20px; padding: 5px 13px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.hero h1 {
  font-family: 'Afacad', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800; line-height: 1.12;
  color: var(--g900); margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 15px; color: var(--g500); line-height: 1.75; margin-bottom: 24px; max-width: 520px; }

/* Trust bar */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-bottom: 28px; padding: 14px 18px;
  background: var(--g50); border: 1px solid var(--g200); border-radius: 10px;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--g700); }
.trust-item svg { width: 15px; height: 15px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.trust-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.trust-sep { width: 1px; height: 16px; background: var(--g200); }

.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; border: none; border-radius: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .18s;
  text-decoration: none; box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.btn-main:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--g700);
  border: 1.5px solid var(--g200); border-radius: 8px;
  padding: 12px 22px; font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .18s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* Hero photo card */
.hero-photo { background: var(--g50); border: 1px solid var(--g200); border-radius: 16px; overflow: hidden; }
.photo-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--blue-tint2) 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.photo-placeholder svg { width: 64px; height: 64px; stroke: var(--blue); fill: none; stroke-width: 1.2; stroke-linecap: round; }
.photo-placeholder span { font-size: 12px; color: var(--g500); }
.hero-caption { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hero-caption-name { font-size: 13px; font-weight: 600; color: var(--g900); }
.hero-caption-role { font-size: 12px; color: var(--g500); }
.google-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--g200); border-radius: 8px;
  padding: 7px 12px; cursor: pointer; transition: border-color .15s; text-decoration: none;
}
.google-badge:hover { border-color: var(--blue); text-decoration: none; }
.badge-stars { color: var(--gold); font-size: 12px; }
.badge-text { font-size: 11px; font-weight: 600; color: var(--g700); }

/* ============ PROBLEMS ============ */
.problems { padding: 72px 0; background: var(--g50); }
.sec-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.sec-title { font-family: 'Afacad', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: var(--g900); margin-bottom: 8px; line-height: 1.2; }
.sec-sub { font-size: 15px; color: var(--g500); max-width: 540px; line-height: 1.65; }
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.prob-card { background: var(--white); border: 1px solid var(--g200); border-radius: 12px; padding: 22px 24px; transition: border-color .2s, box-shadow .2s; }
.prob-card:hover { border-color: var(--blue-tint2); box-shadow: 0 4px 20px rgba(37,99,235,.08); }
.prob-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
.prob-card-title { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.prob-title { font-family: 'Afacad', sans-serif; font-size: 16px; font-weight: 700; color: var(--g900); line-height: 1.3; }
.prob-img { width: 100%; border-radius: 8px; display: block; margin-bottom: 14px; }
.prob-img-pair { display: flex; gap: 8px; margin-bottom: 14px; }
.prob-img-pair .ph { flex: 1; }
.prob-text { font-size: 13px; color: var(--g500); line-height: 1.65; margin-bottom: 12px; }
.prob-tip { font-family: 'JetBrains Mono', monospace; font-size: 11px; background: var(--g50); border: 1px solid var(--g200); border-radius: 6px; padding: 8px 10px; color: var(--g700); line-height: 1.6; margin-bottom: 10px; }
.prob-link { font-size: 12px; font-weight: 500; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }

/* ============ PROCESS ============ */
.process { padding: 72px 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 48px; }
.process-steps::before {
  content: ''; position: absolute; top: 20px;
  left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-tint2) 100%);
}
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Afacad', sans-serif; font-size: 16px; font-weight: 800;
  color: #fff; margin-bottom: 16px; box-shadow: 0 0 0 5px rgba(37,99,235,.1);
}
.proc-title { font-family: 'Afacad', sans-serif; font-size: 15px; font-weight: 700; color: var(--g900); margin-bottom: 8px; }
.proc-desc { font-size: 13px; color: var(--g500); line-height: 1.6; }

/* ============ GUARANTEE ============ */
.guarantee { padding: 64px 0; background: var(--blue); }
.guarantee-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.guarantee-icon {
  width: 80px; height: 80px; background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee-icon svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.guarantee-body h2 { font-family: 'Afacad', sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.guarantee-body p { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 640px; }

/* ============ SERVICES / COMPARISON ============ */
.services { padding: 72px 0; background: var(--g50); }
.services-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; border: 1px solid var(--g200); border-radius: 14px; overflow: hidden; background: var(--white); }
.svc-row { display: flex; align-items: flex-start; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--g100); transition: background .15s; cursor: default; }
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--blue-tint); }
.svc-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-tint); border: 1px solid var(--blue-tint2); border-radius: 5px; padding: 3px 8px; flex-shrink: 0; margin-top: 2px; }
.svc-content { flex: 1; }
.svc-name { font-family: 'Afacad', sans-serif; font-size: 17px; font-weight: 700; color: var(--g900); margin-bottom: 4px; }
.svc-desc { font-size: 13px; color: var(--g500); line-height: 1.6; }
.svc-arrow { color: var(--blue); font-size: 18px; flex-shrink: 0; margin-top: 4px; }

/* ============ SOCIAL PROOF ============ */
.social-proof { padding: 72px 0; background: var(--dark); }
.social-proof .sec-label { color: var(--blue-tint2); }
.social-proof .sec-title { color: #fff; }
.social-proof .sec-sub { color: rgba(255,255,255,.5); }

.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin: 44px 0; padding: 32px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
}
.proof-stat { text-align: center; }
.proof-stat-num { font-family: 'Afacad', sans-serif; font-size: 36px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.proof-stat-num em { font-style: normal; color: var(--blue); }
.proof-stat-desc { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.case-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 20px; transition: border-color .2s; }
.case-card:hover { border-color: rgba(37,99,235,.4); }
.case-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--green); background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); border-radius: 4px; padding: 2px 7px; display: inline-block; margin-bottom: 10px; }
.case-text { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.65; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.review-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.rv-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rv-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; font-style: italic; flex: 1; }
.rv-author { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }
.google-proof-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 10px 18px;
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500;
  transition: border-color .18s;
}
.google-proof-link:hover { border-color: rgba(37,99,235,.5); color: #fff; text-decoration: none; }

/* ============ FAQ ============ */
.faq { padding: 72px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.faq-item { background: var(--g50); border: 1px solid var(--g200); border-radius: 11px; overflow: hidden; }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 18px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--g900); gap: 12px;
  transition: color .15s; line-height: 1.45;
}
.faq-q:hover { color: var(--blue); }
.faq-chev { flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; width: 18px; height: 18px; transition: transform .28s; margin-top: 2px; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-in { padding: 0 20px 18px; font-size: 13px; color: var(--g500); line-height: 1.7; }
.faq-a-in a { font-weight: 500; }
.faq-item.open .faq-a { max-height: 400px; }

/* ============ KNOWLEDGE BASE ============ */
.knowledge { padding: 72px 0; background: var(--g50); }
.knowledge-intro { font-size: 15px; color: var(--g500); line-height: 1.7; max-width: 620px; margin-bottom: 36px; }
.blog-links { display: flex; flex-direction: column; gap: 8px; }
.blog-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--g200);
  border-radius: 10px; padding: 14px 18px;
  text-decoration: none; transition: all .18s;
}
.blog-link:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(37,99,235,.08); text-decoration: none; }
.blog-link-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blog-link-icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.blog-link-text { flex: 1; font-size: 14px; font-weight: 500; color: var(--g900); line-height: 1.35; }
.blog-link-arr { color: var(--blue); font-size: 16px; flex-shrink: 0; }
.blog-cta { margin-top: 20px; }

/* ============ CONTACT ============ */
.contact { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.contact-left h2 { font-family: 'Afacad', sans-serif; font-size: 28px; font-weight: 800; color: var(--g900); margin-bottom: 12px; line-height: 1.2; }
.contact-left p { font-size: 15px; color: var(--g500); line-height: 1.7; margin-bottom: 24px; }
.contact-guarantees { display: flex; flex-direction: column; gap: 12px; }
.cg-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--g700); line-height: 1.5; }
.cg-check { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-tint); border: 1px solid var(--blue-tint2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cg-check svg { width: 11px; height: 11px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.form-card { background: var(--white); border: 1px solid var(--g200); border-radius: 14px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.form-card h3 { font-family: 'Afacad', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--g700); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: var(--g50); border: 1.5px solid var(--g200);
  border-radius: 8px; padding: 11px 14px;
  font-size: 14px; color: var(--g900);
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .18s;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-micro { font-size: 11px; color: var(--g500); text-align: center; margin-top: 11px; line-height: 1.6; }

/* Contact-form-7 wizualne wyrównanie do wzorca HTML */
.form-card .wpcf7 .wpcf7-form-control-wrap { display: block; }
.form-card .wpcf7 input[type="text"],
.form-card .wpcf7 input[type="email"],
.form-card .wpcf7 input[type="url"],
.form-card .wpcf7 textarea {
  width: 100%; background: var(--g50); border: 1.5px solid var(--g200);
  border-radius: 8px; padding: 11px 14px;
  font-size: 14px; color: var(--g900);
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .18s;
}
.form-card .wpcf7 input:focus, .form-card .wpcf7 textarea:focus { border-color: var(--blue); background: var(--white); }
.form-card .wpcf7 input[type="submit"] {
  width: 100%; background: var(--blue); color: #fff; border: none;
  border-radius: 8px; padding: 14px 28px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .18s;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.form-card .wpcf7 input[type="submit"]:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.ft-logo-mark { width: 28px; height: 28px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.ft-logo-mark svg { width: 14px; height: 14px; }
.ft-logo-name { font-family: 'Afacad', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 210px; margin-bottom: 18px; }
.ft-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.ft-links { display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.ft-links a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.ft-mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,.18); }

/* ============ GRAPHIC PLACEHOLDERS ============ */
.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; border-radius: 10px; position: relative; overflow: hidden;
  background: #f8faff; border: 1.5px dashed #BFDBFE;
  font-family: 'JetBrains Mono', monospace; text-align: center;
}
.ph-dark { background: rgba(37,99,235,.06); border-color: rgba(37,99,235,.25); }
.ph-num {
  position: absolute; top: 8px; left: 10px;
  font-size: 9px; font-weight: 700; color: #2563EB;
  background: #DBEAFE; border-radius: 4px; padding: 2px 6px; letter-spacing: .06em;
}
.ph-icon { color: #93C5FD; flex-shrink: 0; }
.ph-label { font-size: 11px; font-weight: 600; color: #3B82F6; line-height: 1.4; max-width: 90%; }
.ph-dim { font-size: 10px; color: #9CA3AF; margin-top: 2px; }
.ph-row { display: flex; gap: 10px; margin-top: 12px; }
.ph-row .ph { flex: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 420px; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .cases-grid, .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .services-list { grid-template-columns: 1fr !important; }
  .services-list > div { border-left: 3px solid var(--blue) !important; }
  .services-list > div:nth-child(odd):not(:first-child) { background: #F8FBFF !important; }
  .knowledge .knowledge-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}

@media (max-width: 720px) {
  .hero h1 { font-size: 34px !important; line-height: 1.15 !important; }
  .hero-eyebrow { font-size: 12px; }
  .hero-subtitle { font-size: 15px; }
  .sec-title, h2.sec-title { font-size: 26px !important; line-height: 1.2 !important; }
  .sec-sub { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn-main, .hero-ctas .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .hero .rv.d3 { flex-direction: column !important; align-items: stretch !important; gap: 14px !important; }
  .hero .rv.d3 > * { width: 100%; }
  .hero-primary-cta { width: 100% !important; justify-content: center !important; text-align: center !important; padding: 16px 20px !important; font-size: 15px !important; }
  .btn-main, .btn-ghost { padding: 14px 20px; font-size: 14px; }
  .problems, .process, .guarantee, .services, .social-proof, .faq, .knowledge, .contact, .hero { padding: 48px 0 !important; }
  .prob-card { padding: 18px; }
  .prob-title { font-size: 16px; }
  .prob-text { font-size: 13px; }
  .prob-tip { font-size: 12px; padding: 10px 12px; }
  .urgency-bar { font-size: 11px; padding: 8px 14px; }
  .urgency-bar > * { white-space: normal !important; }
  .header .container { padding: 0 16px; }
  .nav-logo { font-size: 15px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .proc-step { padding: 20px; }
  .proc-num { width: 36px; height: 36px; font-size: 16px; }
  .proc-title { font-size: 16px; }
  .proc-desc { font-size: 13px; }
  .guarantee-inner { padding: 28px 22px; gap: 18px; }
  .guarantee-body h2 { font-size: 22px !important; }
  .guarantee-body p { font-size: 13.5px; }
  .services-list > div { padding: 14px 18px !important; font-size: 13px !important; }
  .proof-stat-num { font-size: 32px; }
  .proof-stat-desc { font-size: 11px; }
  .case-card, .review-card { padding: 20px; }
  .rv-text { font-size: 13px; }
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a-in { font-size: 13px; padding: 0 18px 16px; }
  .form-card { padding: 22px; }
  .form-card h3 { font-size: 20px; }
  .contact-left h2 { font-size: 24px !important; }
  .contact-left p { font-size: 14px; }
  .cg-item { gap: 10px; }
  .cg-check { width: 24px; height: 24px; }
  input, textarea { font-size: 15px !important; padding: 12px 14px !important; }
  .field label { font-size: 12px; }
  .ft-logo-name { font-size: 15px; }
  .ft-tagline { font-size: 12.5px; }
  .ft-col-title { font-size: 12px; }
  .ft-links a { font-size: 12.5px; }
  .ft-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 11px; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .knowledge .knowledge-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-photo { max-width: 100%; }
  .cg-item { flex-direction: row !important; text-align: left !important; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 30px !important; }
  .proof-stats { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .proof-stat-num { font-size: 28px; }
  .urgency-bar { padding: 6px 12px; font-size: 10.5px; }
  .urgency-bar > span:not(:first-child) { display: none; }
}

/* ============ ABOUT: story ============ */
.about-story {
    max-width: 720px;
    margin: 40px auto 0;
    font-size: 15.5px;
    color: var(--g700);
    line-height: 1.8;
}
.about-story p { margin-bottom: 16px; }
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--g900); font-weight: 600; }
.about-story .lead {
    font-size: 17px;
    color: var(--g900);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* ============ ABOUT: tech stack ============ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.tech-item {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 10px;
    padding: 18px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.tech-item:hover {
    border-color: var(--blue-tint2);
    box-shadow: 0 2px 10px rgba(37,99,235,.08);
    transform: translateY(-1px);
}
.tech-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--blue-tint);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; margin-bottom: 10px;
}
.tech-name {
    font-family: 'Afacad', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--g900); margin-bottom: 4px; line-height: 1.3;
}
.tech-desc { font-size: 12px; color: var(--g500); line-height: 1.55; }

@media (max-width: 960px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tech-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT: timeline ============ */
.timeline {
    position: relative;
    margin: 48px auto 0;
    padding: 0 0 0 160px;
    max-width: 820px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 156px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--blue-tint2);
}
.tl-item {
    position: relative;
    padding: 0 0 32px 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -4px; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-tint);
}
.tl-year {
    position: absolute;
    left: -160px; top: 0;
    width: 124px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: .04em;
    padding-top: 2px;
}
.tl-title {
    font-family: 'Afacad', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 6px;
    line-height: 1.3;
}
.tl-desc {
    font-size: 14px;
    color: var(--g500);
    line-height: 1.65;
}

@media (max-width: 720px) {
    .timeline { padding-left: 28px; }
    .timeline::before { left: 12px; }
    .tl-item { padding-left: 24px; padding-bottom: 28px; }
    .tl-item::before { left: -20px; width: 14px; height: 14px; box-shadow: 0 0 0 3px var(--blue-tint); top: 4px; }
    .tl-year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 4px;
        padding-top: 0;
    }
}

/* ============ ABOUT: CTA final ============ */
.about-cta {
    padding: 80px 0;
    background: var(--blue);
    text-align: center;
}
.about-cta h2 {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.about-cta .btn-main {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.about-cta .btn-main:hover {
    background: var(--g50);
    color: var(--blue-dark);
}

/* ============ KNOWLEDGE GRID ============ */
.knowledge-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 20px;
}
.knowledge-grid a { text-decoration: none; display: flex; flex-direction: column; gap: 8px; }
.knowledge-grid img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; display: block; }
.knowledge-grid .blog-title { font-size: 12px; font-weight: 500; color: var(--g700); line-height: 1.4; }
