/* ════════════════════════════════════
   GRID DECORATION PATTERNS
════════════════════════════════════ */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#e4e7f2 1px, transparent 1px),
    linear-gradient(90deg, #e4e7f2 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.55;
}
.grid-bg-dark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.grid-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(37,99,235,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.grid-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(14,166,107,0.14) 1px, transparent 1px),
    radial-gradient(circle, rgba(14,166,107,0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
}
/* Decorative corner marks */
.grid-mark {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  opacity: 0.4;
}
.grid-mark-tl { top: 20px; left: 20px; border-top: 2px solid #da1c3e; border-left: 2px solid #da1c3e; border-radius: 4px 0 0 0; }
.grid-mark-tr { top: 20px; right: 20px; border-top: 2px solid #da1c3e; border-right: 2px solid #da1c3e; border-radius: 0 4px 0 0; }
.grid-mark-bl { bottom: 20px; left: 20px; border-bottom: 2px solid #da1c3e; border-left: 2px solid #da1c3e; border-radius: 0 0 0 4px; }
.grid-mark-br { bottom: 20px; right: 20px; border-bottom: 2px solid #da1c3e; border-right: 2px solid #da1c3e; border-radius: 0 0 4px 0; }

/* ════════════════════════════════════
   LAYOUT
════════════════════════════════════ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2%;
  position: relative;
  z-index: 1;
}
.section { padding: clamp(60px, 8vw, 100px) 0; position: relative; overflow: hidden; }

/* ════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 { font-family: 'Satoshi'; line-height: 1.15; color: #0f1630; }
h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }
p { color: #000; line-height: 1.85; }

/* ════════════════════════════════════
   BADGES
════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em; border: 1.5px solid;
}
.badge-green  { background: #e6f7f1; color: #097a4f;  border-color: rgba(14,166,107,0.25); }
.badge-blue   { background: #eff4ff;   color: #1d4ed8;    border-color: rgba(37,99,235,0.25); }
.badge-orange { background: #fff4ed; color: #ea580c;     border-color: rgba(234,88,12,0.25); }
.badge-purple { background: #f5f0ff; color: #7c3aed;     border-color: rgba(124,58,237,0.25); }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  font-weight: 600; cursor: pointer; border: none;
  text-decoration: none; transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #ff395c; color: #fff;
  box-shadow: 0 4px 16px rgba(14,166,107,0.28);
}
.btn-primary:hover { background: #da1c3e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,166,107,0.35); }
.btn-blue {
  background: #2563eb; color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.22);
}
.btn-blue:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.3); }
.btn-outline {
  background: #fff; color: #0f1630;
  border: 1.5px solid #c8cde8;
  box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
}
.btn-outline:hover { border-color: #da1c3e; color: #da1c3e; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(15,22,48,0.08), 0 2px 6px rgba(15,22,48,0.05); }
.btn-ghost { background: transparent; color: #4a5280; border: 1.5px solid #e4e7f2; }
.btn-ghost:hover { background: #f7f8fc; color: #0f1630; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 60px;
  background: linear-gradient(160deg, #ff395c 0%, #ffffff 45%, #f0faf6 100%);
  position: relative; overflow: hidden;
}
.hero-accent-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-accent-circle.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  top: -120px; right: -120px;
}
.hero-accent-circle.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,166,107,0.07) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero-heading {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800; line-height: 1.06;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-heading .highlight {
  background: linear-gradient(135deg, #0ea66b 0%, #2563eb 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: clamp(15px, 1.8vw, 18px); margin-bottom: 36px; max-width: 520px;line-height:1.85; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 40px; padding-top: 36px;
  border-top: 1px solid #e4e7f2;
}
.hero-stat-num {
  font-family: 'Satoshi'; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: #0f1630; line-height: 1;
}
.hero-stat-num em { color: #ff395c; font-style: normal; }
.hero-stat-label { font-size: 12px; color: #8890b8; margin-top: 3px; }

/* ════════════════════════════════════
   SERP MOCKUP
════════════════════════════════════ */
.serp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,22,48,0.12), 0 0 0 1px #e4e7f2;
}
.serp-header {
  background: #f1f3f4; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #dadce0;
}
.serp-dots { display: flex; gap: 5px; }
.serp-dot { width: 9px; height: 9px; border-radius: 50%; }
.serp-searchbar {
  flex: 1; background: #fff; border: 1px solid #dadce0;
  border-radius: 18px; padding: 5px 12px; font-size: 11px;
  color: #333; display: flex; align-items: center; gap: 6px;
}
.serp-body { padding: 16px; }
.serp-result {
  padding: 12px; border-radius: 6px;
  margin-bottom: 10px; cursor: pointer;
  transition: background 0.12s;
}
.serp-result:hover { background: #f8f9fa; }
.serp-result.rank1 { border: 2px solid #34a853; background: #f0faf4; }
.serp-result-url { font-size: 10.5px; color: #1a73e8; margin-bottom: 2px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.serp-result-title { font-size: 13px; color: #1a0dab; font-weight: 500; margin-bottom: 3px; line-height: 1.3; }
.serp-result-desc { font-size: 11px; color: #4d5156; line-height: 1.4; }
.serp-rank-badge {
  position: absolute; right: 10px; top: 10px;
  background: #34a853; color: #fff; font-size: 9px;
  font-weight: 700; padding: 2px 7px; border-radius: 100px;
}
.serp-sitelinks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.serp-sitelink {
  font-size: 10px; color: #1a73e8; border: 1px solid #dadce0;
  border-radius: 14px; padding: 2px 8px;
}
.serp-ads-label {
  font-size: 9.5px; color: #70757a;
  border: 1px solid #70757a; padding: 1px 4px; border-radius: 2px;
}
.serp-organic-label {
  font-size: 9.5px; background: #e6f4ea; color: #137333;
  padding: 1px 5px; border-radius: 2px;
}

/* ════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #da1c3e;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2.5px;
  background: #0ea66b; border-radius: 2px;
}
.section-eyebrow.center::before { display: none; }
.section-eyebrow.center { justify-content: center; }
.sh-center { text-align: center; }
.sh-center .section-desc { margin: 0 auto; }
.section-desc { font-size: clamp(14px, 1.6vw, 17px); color: #000;line-height: 1.85; max-width: 620px; margin-top: 14px; }

/* ════════════════════════════════════
   CARDS
════════════════════════════════════ */
.card-seo {
  background: #ffffff;
  border: 1px solid #e4e7f2;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(15,22,48,0.10), 0 4px 12px rgba(15,22,48,0.06);
  transform: translateY(-4px);
  border-color: #c8cde8;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.icon-green  { background: #e6f7f1; }
.icon-blue   { background: #eff4ff; }
.icon-orange { background: #fff4ed; }
.icon-purple { background: #f5f0ff; }
.icon-yellow { background: #fffbeb; }
.card-seo h4 { margin-bottom: 8px; }
.card-seo p  { font-size: 14px; line-height: 1.7; }

/* ════════════════════════════════════
   FEATURE LIST
════════════════════════════════════ */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #4a5280; }
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #e6f7f1; border: 1.5px solid rgba(14,166,107,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #0ea66b; flex-shrink: 0; margin-top: 2px;
}

/* ════════════════════════════════════
   GRID LAYOUTS — RESPONSIVE
════════════════════════════════════ */
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2.5vw,24px); }
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.5vw,24px); }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(14px,2vw,20px); }
.g2l { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px,4vw,52px); align-items: start; }
.g2r { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px,4vw,52px); align-items: center; }

/* ════════════════════════════════════
   PROCESS STEPS
════════════════════════════════════ */
.process-step { position: relative; padding-left: 68px; padding-bottom: 44px; }
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: ''; position: absolute; left: 21px; top: 44px;
  bottom: 0; width: 2px;
  background: linear-gradient(180deg, #c8cde8 0%, transparent 100%);
}
.process-step:last-child::before { display: none; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: #ffffff; border: 2px solid #da1c3e;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 500; color: #0ea66b;
  box-shadow: 0 0 0 4px #e6f7f1;
}
.step-content h3 { color: #0f1630; margin-bottom: 10px; font-size: clamp(1.1rem,2vw,1.4rem); }
.step-content p { font-size: 15px; line-height: 1.8; }
.step-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 18px; }
.step-detail-item {
  background: #f7f8fc; border: 1px solid #e4e7f2;
  border-radius: 10px; padding: 12px;
}
.step-detail-item strong { display: block; color: #0f1630; font-size: 15px; margin-bottom: 3px; }
.step-detail-item span  { color: #000; font-size: 13px; }

/* ════════════════════════════════════
   HIGHLIGHT BOX
════════════════════════════════════ */
.highlight-box {
  background: linear-gradient(135deg, #e6f7f1, #eff4ff);
  border: 1px solid rgba(14,166,107,0.2);
  border-radius: 18px; padding: clamp(18px,3vw,26px);
  margin: 20px 0;
  margin-top: 0px;
}
.highlight-box h4 { color: #000; margin-bottom: 8px; }

.highlight-box h2 { color: #000; margin-bottom: 8px; }

/* ════════════════════════════════════
   PRICING
════════════════════════════════════ */
.pricing-card {
  background: #ffffff; border: 1.5px solid #e4e7f2;
  border-radius: 26px; padding: clamp(24px,3.5vw,36px);
  position: relative; transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(15,22,48,0.12); }
.pricing-card.featured {
  border-color: #da1c3e; background: #fff;
  box-shadow: 0 0 0 4px #e6f7f1, 0 24px 64px rgba(15,22,48,0.12);
}
.pricing-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #da1c3e; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-size: 13px; font-weight: 700; color: #8890b8; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.pricing-price { font-family: 'Satoshi'; font-size: clamp(2.2rem,4vw,2.8rem); font-weight: 800; color: #0f1630; line-height: 1; margin-bottom: 4px; }
.pricing-price small { font-size: .9rem; color: #8890b8; font-weight: 400; }
.pricing-period { font-size: 12px; color: #8890b8; margin-bottom: 22px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 13px; color: #4a5280; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: #0ea66b; font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════
   METRICS
════════════════════════════════════ */
.metric-card {
  background: #ffffff; border: 1px solid #e4e7f2;
  border-radius: 18px; padding: clamp(20px,3vw,28px);
  text-align: center; box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.metric-card:hover { box-shadow: 0 12px 40px rgba(15,22,48,0.10), 0 4px 12px rgba(15,22,48,0.06); transform: translateY(-3px); }
.metric-num {
  font-family: 'Satoshi'; font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; color: #0f1630; line-height: 1; margin-bottom: 6px;
}
.metric-num em { color: #0ea66b; font-style: normal; }
.metric-label { font-size: 13px; color: #8890b8; }

/* ════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════ */
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table th, .comp-table td { padding: clamp(10px,1.5vw,16px) clamp(12px,2vw,20px); text-align: left; border-bottom: 1px solid #e4e7f2; }
.comp-table th {
  font-weight: 600; color: #8890b8; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: #f7f8fc; white-space: nowrap;
}
.comp-table td { color: #4a5280; vertical-align: middle; }
.comp-table tr:hover td { background: #f7f8fc; }
.comp-table .featured-col { background: rgba(14,166,107,0.04) !important; }
.comp-table .featured-col.th { color: #097a4f !important; }
.yes { color: #0ea66b; font-weight: 700; }
.no  { color: #8890b8; }

/* ════════════════════════════════════
   KW TABLE
════════════════════════════════════ */
.kw-table { width: 100%; border-collapse: collapse; }
.kw-table th {
  background: #f7f8fc; padding: 11px 15px; text-align: left;
  font-size: 11px; font-weight: 700; color: #8890b8;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid #e4e7f2; white-space: nowrap;
}
.kw-table td { padding: 11px 15px; border-bottom: 1px solid #e4e7f2; font-size: 13px; color: #4a5280; }
.kw-table tr:hover td { background: #f7f8fc; }
.diff-bar { display: flex; align-items: center; gap: 7px; }
.diff-track { width: 56px; height: 5px; background: #eef0f8; border-radius: 3px; overflow: hidden; }
.diff-fill  { height: 100%; border-radius: 3px; }
.df-easy  { background: #0ea66b; }
.df-med   { background: #d97706; }
.df-hard  { background: #ea580c; }
.df-vhard { background: #dc2626; }

/* ════════════════════════════════════
   GUARANTEE BOXES
════════════════════════════════════ */
.guarantee-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid #e4e7f2;
  border-radius: 18px; padding: clamp(18px,3vw,26px);
  box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.guarantee-box:hover { box-shadow: 0 4px 16px rgba(15,22,48,0.08), 0 2px 6px rgba(15,22,48,0.05); transform: translateY(-2px); }
.guarantee-icon {
  width: 48px; height: 48px; background: #e6f7f1;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.guarantee-content h4 { color: #097a4f; margin-bottom: 5px; font-size: 1rem; }
.guarantee-content p  { font-size: 13px; }

/* ════════════════════════════════════
   CONTENT SECTIONS (Rich Text)
════════════════════════════════════ */
.content-section {
  background: #ffffff; border: 1px solid #e4e7f2;
  border-radius: 18px; padding: clamp(22px,4vw,36px);
  margin-bottom: 20px; box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
}
.content-section h3 { color: #0f1630; margin-bottom: 14px; font-size: clamp(1.1rem,2vw,1.4rem); }
.content-section p  { margin-bottom: 14px; font-size: 15px; line-height: 1.9; }
.content-section p:last-child { margin-bottom: 0; }
.content-section h4 { color: #0f1630; margin: 22px 0 8px; font-size: 1.05rem; }
.content-section ul, .content-section ol {
  padding-left: 22px; margin: 10px 0;
  display: flex; flex-direction: column; gap: 7px;
}
.content-section li { font-size: 14px; color: #4a5280; line-height: 1.7; }

.two-col-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}


/* ════════════════════════════════════
   TAG CLOUD
════════════════════════════════════ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  padding: 4px 11px; border-radius: 100px; font-size: 12px;
  background: #f7f8fc; border: 1px solid #e4e7f2; color: #4a5280;
}

/* ════════════════════════════════════
   DIVIDERS
════════════════════════════════════ */
.divider { height: 1px; background: linear-gradient(90deg, transparent, #c8cde8, transparent); }

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-box {
  background: linear-gradient(135deg, #f0faf6 0%, #eff4ff 50%, #f7f0ff 100%);
  border: 1px solid rgba(14,166,107,0.2);
  border-radius: 26px; padding: clamp(36px,6vw,72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,166,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ════════════════════════════════════
   STATS STRIP
════════════════════════════════════ */
.stats-strip {
  background: #0f1630;
  padding: clamp(40px,5vw,60px) 0;
}
.stats-strip .g4 { align-items: center; }
.stats-strip .metric-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.stats-strip .metric-num { color: #fff; }
.stats-strip .metric-label { color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════
   PROCESS FLOW VISUAL
════════════════════════════════════ */
.process-flow {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; padding: 20px 0; margin-bottom: 48px;
}
.process-node { flex: 1; min-width: 110px; text-align: center; position: relative; }
.process-node:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 18px;
  color: #8890b8; font-size: 16px; z-index: 1;
}
.process-node-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid #c8cde8; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin: 0 auto 8px;
  box-shadow: 0 1px 3px rgba(15,22,48,0.06), 0 1px 2px rgba(15,22,48,0.04);
}
.process-node-label { font-size: 11px; color: #4a5280; font-weight: 500; }

/* ════════════════════════════════════
   GOOGLE TOOLS MOCKUP
════════════════════════════════════ */
.tool-chrome-bar {
  background: #f1f3f4; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #dadce0; border-radius: 18px 18px 0 0;
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dot { width: 9px; height: 9px; border-radius: 50%; }
.chrome-url {
  flex: 1; background: #fff; border: 1px solid #dadce0;
  border-radius: 14px; padding: 4px 12px; font-size: 11px; color: #333;
  display: flex; align-items: center; gap: 6px;
}

/* ════════════════════════════════════
   FADE IN ANIMATION
════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay1 { transition-delay: 0.1s; }
.fade-in-delay2 { transition-delay: 0.2s; }
.fade-in-delay3 { transition-delay: 0.3s; }

/* ════════════════════════════════════
   PULSE DOT
════════════════════════════════════ */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════ */

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-desc    { max-width: 100%; }
  .g4           { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .g2l, .g2r    { grid-template-columns: 1fr; gap: 28px; }
  .faq-layout   { grid-template-columns: 1fr; }
  .faq-sidebar  { display: none; }
  .process-flow { min-width: 600px; }
}

/* ─── TABLET PORTRAIT (≤ 768px) ─── */
@media (max-width: 768px) {
  .container {padding: 0px 4%;}
  .g3       { grid-template-columns: 1fr 1fr; }
  .g2       { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .step-details { grid-template-columns: 1fr; }
  .stats-strip .g4 { grid-template-columns: repeat(2,1fr); }
  .cta-box { padding: clamp(28px,5vw,40px) clamp(20px,4vw,36px); }
  .content-section { padding: clamp(18px,4vw,26px); }
  .guarantee-grid { grid-template-columns: 1fr !important; }
  .comp-table-wrap { overflow-x: auto; }
  .kw-table-wrap  { overflow-x: auto; }
  .two-col-result { grid-template-columns: 1fr; }
  .chart-grid     { grid-template-columns: 1fr; }
  .chart-grid-2   { grid-template-columns: 1fr; }
  .two-col-content {
      grid-template-columns: auto !important;
  }
}

/* ─── MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {
  .g3       { grid-template-columns: 1fr; }
  .g4       { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .process-step { padding-left: 52px; }
  .step-num { width: 38px; height: 38px; font-size: 12px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-strip .g4 { grid-template-columns: 1fr 1fr; }
  .serp-card { font-size: 11px; }
  .nav-inner { height: 58px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ─── SMALL MOBILE (≤ 360px) ─── */
@media (max-width: 360px) {
  .hero-stats { grid-template-columns: 1fr; }
  .g3, .g2, .g4 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   CHART WRAPPER
════════════════════════════════════ */
.chart-wrapper { position: relative; width: 100%; }

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.chart-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

