/* ============================================================
   Blockify Chargeback Rate Calculator — Styles
   Brand: Blockify Brand Guidelines v1.0
   Fonts: Syne (headings), DM Sans (body)
   ============================================================ */

/* ── CSS Custom Properties (Brand Tokens) ── */

.chargeback-tool-scope {
  /* Primary */
  --ink: #1A1714;
  --accent-orange: #E8390E;
  --bg: #F5F2ED;
  --white: #FFFFFF;

  /* Secondary */
  --text-muted: #7A7168;
  --border: #E0DAD2;
  --success: #1A7F4E;
  --info-blue: #185FA5;
  --ink-secondary: #5C5750;
  --surface: #F7F4F0;

  /* Semantic */
  --danger: #C41C00;
  --warning-amber: #B85C00;

  /* Typography */
  --font-display: 'Satoshi', serif;
  --font-body: 'Satoshi', serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ── Reset ── */

.chargeback-tool-scope *,
.chargeback-tool-scope *::before,
.chargeback-tool-scope *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.chargeback-tool-scope {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.chargeback-tool-scope {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
}

.chargeback-tool-scope img, .chargeback-tool-scope svg {
  display: block;
  max-width: 100%;
}

.chargeback-tool-scope a {
  color: var(--ink);
  text-decoration: none;
}

/* ── Container ── */

.chargeback-tool-scope .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Navigation (Sticky) ── */

.chargeback-tool-scope .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.chargeback-tool-scope .nav__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.chargeback-tool-scope .nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.chargeback-tool-scope .nav__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.chargeback-tool-scope .nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.chargeback-tool-scope .nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background-color: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 99px;
  transition: background-color 0.2s ease;
}

.chargeback-tool-scope .nav__cta:hover {
  background-color: var(--accent-orange);
  color: var(--white);
}

/* ── Hero Section ── */

.chargeback-tool-scope .hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
}

.chargeback-tool-scope .hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
}

.chargeback-tool-scope .hero__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.chargeback-tool-scope .hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ── Calculator Section ── */

.chargeback-tool-scope .calculator-section {
  padding: 0 0 var(--space-4xl);
}

.chargeback-tool-scope .calculator {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Tabs ── */

.chargeback-tool-scope .calculator__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.chargeback-tool-scope .calculator__tab {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.chargeback-tool-scope .calculator__tab:hover {
  color: var(--ink);
}

.chargeback-tool-scope .calculator__tab--active {
  color: var(--ink);
  border-bottom-color: var(--accent-orange);
}

/* ── Panels ── */

.chargeback-tool-scope .calculator__panel {
  display: none;
  padding: var(--space-xl);
}

.chargeback-tool-scope .calculator__panel--active {
  display: block;
}

/* ── Form ── */

.chargeback-tool-scope .calculator__form {
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.chargeback-tool-scope .form-group--hidden {
  display: none;
}

.chargeback-tool-scope .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.chargeback-tool-scope .form-required {
  color: var(--accent-orange);
}

.chargeback-tool-scope .form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}

.chargeback-tool-scope .form-input,
.chargeback-tool-scope .form-select {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.chargeback-tool-scope .form-input:focus,
.chargeback-tool-scope .form-select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(232, 57, 14, 0.1);
}

.chargeback-tool-scope .form-input::placeholder {
  color: var(--text-muted);
}

.chargeback-tool-scope .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%237A7168' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.chargeback-tool-scope .form-hint {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.chargeback-tool-scope .form-error {
  font-size: 13px;
  color: #c0392b;
  line-height: 1.5;
  min-height: 1.2em;
  margin-bottom: 8px;
}

/* ── Buttons ── */

.chargeback-tool-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.chargeback-tool-scope .btn:active {
  transform: scale(0.98);
}

.chargeback-tool-scope .btn--primary {
  width: 100%;
  padding: 14px var(--space-xl);
  background-color: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.chargeback-tool-scope .btn--primary:hover {
  background-color: var(--accent-orange);
}

.chargeback-tool-scope .btn--cta {
  padding: 14px 28px;
  background-color: var(--accent-orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.chargeback-tool-scope .btn--cta:hover {
  background-color: #d03009;
}

/* ── Results ── */

.chargeback-tool-scope .result {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.chargeback-tool-scope .result--hidden {
  display: none;
}

.chargeback-tool-scope .result__rate {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .result__percentage {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.chargeback-tool-scope .result__percentage--success { color: var(--success); }
.chargeback-tool-scope .result__percentage--warning { color: var(--warning-amber); }
.chargeback-tool-scope .result__percentage--danger  { color: var(--danger); }
.chargeback-tool-scope .result__percentage--muted   { color: var(--text-muted); }

.chargeback-tool-scope .result__verdict {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 16px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
}

.chargeback-tool-scope .result__verdict--success {
  color: var(--success);
  background-color: rgba(26, 127, 78, 0.08);
}

.chargeback-tool-scope .result__verdict--warning {
  color: var(--warning-amber);
  background-color: rgba(184, 92, 0, 0.08);
}

.chargeback-tool-scope .result__verdict--danger {
  color: var(--danger);
  background-color: rgba(196, 28, 0, 0.08);
}

.chargeback-tool-scope .result__verdict--muted {
  color: var(--text-muted);
  background-color: var(--surface);
}

/* ── Gauge ── */

.chargeback-tool-scope .gauge {
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .gauge__track {
  position: relative;
  height: 12px;
  background-color: var(--surface);
  border-radius: 99px;
  overflow: visible;
}

.chargeback-tool-scope .gauge__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.chargeback-tool-scope .gauge__fill--success { background-color: var(--success); }
.chargeback-tool-scope .gauge__fill--warning { background-color: var(--warning-amber); }
.chargeback-tool-scope .gauge__fill--danger  { background-color: var(--danger); }

.chargeback-tool-scope .gauge__marker {
  position: absolute;
  top: -4px;
  width: 4px;
  height: 20px;
  background-color: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: left 0.6s ease;
}

.chargeback-tool-scope .gauge__labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Threshold Cards ── */

.chargeback-tool-scope .threshold-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .threshold-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}

.chargeback-tool-scope .threshold-card--below {
  background-color: rgba(26, 127, 78, 0.04);
  border-color: rgba(26, 127, 78, 0.2);
}

.chargeback-tool-scope .threshold-card--above {
  background-color: rgba(196, 28, 0, 0.04);
  border-color: rgba(196, 28, 0, 0.2);
}

.chargeback-tool-scope .threshold-card__program {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.chargeback-tool-scope .threshold-card__rate {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.chargeback-tool-scope .threshold-card__status {
  font-size: 13px;
  font-weight: 600;
}

.chargeback-tool-scope .threshold-card--below .threshold-card__status {
  color: var(--success);
}

.chargeback-tool-scope .threshold-card--above .threshold-card__status {
  color: var(--danger);
}

/* ── Cost Cards ── */

.chargeback-tool-scope .cost-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .cost-card {
  padding: var(--space-lg);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  text-align: center;
}

.chargeback-tool-scope .cost-card--highlight {
  background-color: var(--ink);
}

.chargeback-tool-scope .cost-card__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.chargeback-tool-scope .cost-card--highlight .cost-card__label {
  color: rgba(255, 255, 255, 0.7);
}

.chargeback-tool-scope .cost-card__value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.chargeback-tool-scope .cost-card--highlight .cost-card__value {
  color: var(--accent-orange);
}

/* ── Info Box ── */

.chargeback-tool-scope .info-box {
  padding: var(--space-lg);
  background-color: rgba(24, 95, 165, 0.05);
  border-left: 3px solid var(--info-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .info-box__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.chargeback-tool-scope .info-box__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

/* ── CTA Block ── */

.chargeback-tool-scope .cta-block {
  background-color: var(--ink);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
}

.chargeback-tool-scope .cta-block__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* ── How to Use Section ── */

.chargeback-tool-scope .how-to-section {
  padding: var(--space-4xl) 0;
  background-color: var(--white);
}

.chargeback-tool-scope .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.chargeback-tool-scope .step-card {
  padding: var(--space-xl);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  position: relative;
}

.chargeback-tool-scope .step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.chargeback-tool-scope .step-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.chargeback-tool-scope .step-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

.chargeback-tool-scope .step-card__text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Why Use This Tool Section ── */

.chargeback-tool-scope .why-section {
  padding: var(--space-4xl) 0;
}

.chargeback-tool-scope .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.chargeback-tool-scope .why-card {
  padding: var(--space-xl);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.chargeback-tool-scope .why-card:hover {
  border-color: var(--accent-orange);
}

.chargeback-tool-scope .why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(232, 57, 14, 0.08);
  color: var(--accent-orange);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.chargeback-tool-scope .why-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.chargeback-tool-scope .why-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

/* ── Reference Section ── */

.chargeback-tool-scope .reference-section {
  padding: var(--space-4xl) 0;
  background-color: var(--white);
}

.chargeback-tool-scope .section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.chargeback-tool-scope .section-subtitle {
  font-size: 16px;
  color: var(--ink-secondary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.chargeback-tool-scope .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.chargeback-tool-scope .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.chargeback-tool-scope .data-table thead {
  background-color: var(--surface);
}

.chargeback-tool-scope .data-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.chargeback-tool-scope .data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-secondary);
}

.chargeback-tool-scope .data-table tbody tr:last-child td {
  border-bottom: none;
}

.chargeback-tool-scope .data-table tbody tr:hover {
  background-color: var(--surface);
}

/* ── Stop Fraudsters Section ── */

.chargeback-tool-scope .stop-fraud-section {
  padding: var(--space-4xl) 0;
  background-color: var(--surface);
}

.chargeback-tool-scope .stop-fraud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Left Column */

.chargeback-tool-scope .stop-fraud__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.chargeback-tool-scope .stop-fraud__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 14px 6px 6px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  margin-bottom: var(--space-lg);
}

.chargeback-tool-scope .stop-fraud__badge-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.chargeback-tool-scope .stop-fraud__badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.chargeback-tool-scope .stop-fraud__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  text-align: left;
}

.chargeback-tool-scope .stop-fraud__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: var(--space-lg);
}

.chargeback-tool-scope .stop-fraud__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .stop-fraud__check-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.chargeback-tool-scope .stop-fraud__check-icon {
  flex-shrink: 0;
}

.chargeback-tool-scope .stop-fraud__btn {
  padding: 14px 28px;
  font-size: 15px;
  margin-bottom: var(--space-md);
  width: auto;
}

.chargeback-tool-scope .stop-fraud__trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.chargeback-tool-scope .stop-fraud__features {
  display: flex;
  gap: var(--space-xl);
}

.chargeback-tool-scope .stop-fraud__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  white-space: nowrap;
}

.chargeback-tool-scope .stop-fraud__feature svg {
  flex-shrink: 0;
  color: var(--ink-secondary);
}

/* Right Column */

.chargeback-tool-scope .stop-fraud__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chargeback-tool-scope .stop-fraud__visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chargeback-tool-scope .stop-fraud__hero-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(232, 57, 14, 0.15));
}

/* Floating decorative icons */

.chargeback-tool-scope .stop-fraud__float {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  animation: float 3s ease-in-out infinite;
}

.chargeback-tool-scope .stop-fraud__float--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.chargeback-tool-scope .stop-fraud__float--2 {
  bottom: 15%;
  right: 0%;
  animation-delay: 1s;
}

.chargeback-tool-scope .stop-fraud__float--3 {
  top: 5%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── FAQ Section ── */

.chargeback-tool-scope .faq-section {
  padding: var(--space-4xl) 0;
  background-color: var(--white);
}

.chargeback-tool-scope .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.chargeback-tool-scope .faq-item {
  border-bottom: 1px solid var(--border);
}

.chargeback-tool-scope .faq-item:first-child {
  border-top: 1px solid var(--border);
}

.chargeback-tool-scope .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.chargeback-tool-scope .faq-question::-webkit-details-marker {
  display: none;
}

.chargeback-tool-scope .faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.chargeback-tool-scope .faq-item[open] .faq-question::after {
  content: '\2212';
}

.chargeback-tool-scope .faq-answer {
  padding: 0 0 var(--space-lg);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

/* ── Footer ── */

.chargeback-tool-scope .footer {
  padding: var(--space-xl) 0;
  background-color: var(--ink);
  text-align: center;
}

.chargeback-tool-scope .footer__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.chargeback-tool-scope .footer__link {
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s ease;
}

.chargeback-tool-scope .footer__link:hover {
  color: var(--accent-orange);
}

/* ── Responsive — Mobile (max-width: 600px) ── */

@media (max-width: 600px) {
  .chargeback-tool-scope .hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  .chargeback-tool-scope .hero__title {
    font-size: 32px;
  }

  .chargeback-tool-scope .hero__subtitle {
    font-size: 15px;
  }

  .chargeback-tool-scope .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .chargeback-tool-scope .calculator__panel {
    padding: var(--space-lg);
  }

  .chargeback-tool-scope .calculator__tab {
    font-size: 14px;
    padding: var(--space-md);
  }

  .chargeback-tool-scope .result__percentage {
    font-size: 44px;
  }

  .chargeback-tool-scope .threshold-cards {
    grid-template-columns: 1fr;
  }

  .chargeback-tool-scope .cost-cards {
    grid-template-columns: 1fr;
  }

  .chargeback-tool-scope .cost-card__value {
    font-size: 24px;
  }

  .chargeback-tool-scope .cta-block {
    padding: var(--space-lg);
  }

  .chargeback-tool-scope .section-title {
    font-size: 24px;
  }

  .chargeback-tool-scope .data-table {
    font-size: 13px;
  }

  .chargeback-tool-scope .data-table th,
  .chargeback-tool-scope .data-table td {
    padding: 10px 12px;
  }

  .chargeback-tool-scope .steps-grid {
    grid-template-columns: 1fr;
  }

  .chargeback-tool-scope .why-grid {
    grid-template-columns: 1fr;
  }

  .chargeback-tool-scope .stop-fraud {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .chargeback-tool-scope .stop-fraud__title {
    font-size: 28px;
  }

  .chargeback-tool-scope .stop-fraud__features {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .chargeback-tool-scope .stop-fraud__right {
    order: -1;
  }

  .chargeback-tool-scope .stop-fraud__hero-img {
    width: 160px;
    height: 160px;
  }

  .chargeback-tool-scope .stop-fraud__visual {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ── Responsive — Tablet (max-width: 768px) ── */

@media (max-width: 768px) and (min-width: 601px) {
  .chargeback-tool-scope .hero__title {
    font-size: 36px;
  }

  .chargeback-tool-scope .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chargeback-tool-scope .threshold-cards {
    grid-template-columns: 1fr 1fr;
  }

  .chargeback-tool-scope .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
