/* ============================================
       SEO 360° — Page-specific Styles
       ============================================ */

    /* ─── Hero ──────────────────────────────────── */
    .seo-hero {
      background: var(--black);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .seo-hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -120px;
      width: 650px;
      height: 650px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.12) 0%, transparent 68%);
      pointer-events: none;
    }

    .seo-hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -100px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(242, 106, 27, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .seo-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .seo-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.77rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 26px;
    }

    .seo-hero-badge svg {
      animation: live-blink 1.5s ease-in-out infinite;
      color: #f59e0b;
      stroke: #f59e0b;
    }

    .seo-hero h1 {
      color: var(--white);
      font-size: clamp(2.3rem, 4.8vw, 3.7rem);
      line-height: 1.08;
      margin-bottom: 22px;
    }

    .seo-hero h1 span {
      color: var(--orange);
    }

    .seo-hero-lead {
      color: rgba(255, 255, 255, 0.58);
      font-size: 1.08rem;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 530px;
    }

    .seo-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 38px;
    }

    .seo-hero-proof {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.84rem;
    }

    .seo-proof-dots {
      display: flex;
    }

    .seo-proof-dots span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--graphite);
      border: 2px solid var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.64rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.65);
      margin-left: -8px;
    }

    .seo-proof-dots span:first-child {
      margin-left: 0;
    }

    .seo-hero-proof p {
      margin: 0;
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .seo-hero-proof strong {
      color: rgba(255, 255, 255, 0.8);
    }

    /* ─── Hero SERP Visual ──────────────────────── */
    .seo-serp-wrap {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .seo-serp-browser {
      background: #1a1a24;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      overflow: hidden;
    }

    .seo-browser-bar {
      background: rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .seo-browser-dots {
      display: flex;
      gap: 5px;
    }

    .seo-browser-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
    }

    .seo-browser-url {
      flex: 1;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.4);
      font-family: monospace;
    }

    .seo-serp-body {
      padding: 16px;
    }

    .seo-serp-query {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 9px 14px;
      margin-bottom: 12px;
    }

    .seo-serp-query svg {
      width: 14px;
      height: 14px;
      color: rgba(255, 255, 255, 0.4);
      flex-shrink: 0;
    }

    .seo-serp-query span {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .seo-serp-result {
      border-radius: 10px;
      padding: 12px 14px;
      margin-bottom: 8px;
      border: 1px solid transparent;
      transition: all 0.25s;
      cursor: default;
    }

    .seo-serp-result:last-child {
      margin-bottom: 0;
    }

    .seo-serp-result.rank-1 {
      background: rgba(242, 106, 27, 0.08);
      border-color: rgba(242, 106, 27, 0.25);
    }

    .seo-serp-result.rank-other {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .seo-result-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .seo-result-domain {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .seo-result-pos {
      font-size: 0.68rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 100px;
    }

    .seo-result-pos.top {
      background: rgba(242, 106, 27, 0.2);
      color: var(--orange);
      border: 1px solid rgba(242, 106, 27, 0.3);
    }

    .seo-result-pos.low {
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.3);
    }

    .seo-result-title {
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .seo-result-title.orange {
      color: var(--orange);
    }

    .seo-result-title.muted {
      color: rgba(255, 255, 255, 0.3);
    }

    .seo-result-snippet {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.3);
      line-height: 1.4;
    }

    .seo-result-snippet.bright {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Floating stats on SERP */
    .seo-serp-floats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }

    .seo-serp-float {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 10px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .seo-serp-float-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      color: var(--orange);
    }

    .seo-serp-float-num {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
    }

    .seo-serp-float-lbl {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.35;
    }

    /* ─── Stats Bar ─────────────────────────────── */
    .seo-stats-bar {
      background: var(--graphite);
      padding: 56px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .seo-stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
    }

    .seo-stat-item {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0 32px;
    }

    .seo-stat-item:last-child {
      border-right: none;
    }

    .seo-stat-num {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .seo-stat-lbl {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.45;
    }

    /* ─── Problema Cards ────────────────────────── */
    .seo-problema-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .seo-problema-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 30px 26px;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .seo-problema-card::before {
      display: none;
    }

    .seo-problema-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .seo-problema-icon {
      width: 50px;
      height: 50px;
      background: rgba(220, 38, 38, 0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .seo-problema-icon svg {
      width: 24px;
      height: 24px;
      stroke: #dc2626;
    }

    .seo-problema-card h3 {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .seo-problema-card p {
      font-size: 0.875rem;
      line-height: 1.65;
    }

    /* ─── 360 Solution ──────────────────────────── */
    .seo-360-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .seo-360-card {
      border-radius: 20px;
      padding: 32px 28px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      transition: border-color 0.25s, transform 0.28s;
      position: relative;
      overflow: hidden;
    }

    .seo-360-card:hover {
      border-color: rgba(242, 106, 27, 0.3);
      transform: translateY(-3px);
    }

    .seo-360-card.card-dark {
      background: rgba(255, 255, 255, 0.03);
    }

    .seo-360-card.card-accent {
      background: rgba(242, 106, 27, 0.06);
      border-color: rgba(242, 106, 27, 0.15);
    }

    .seo-360-num {
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--orange);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 14px;
      opacity: 0.8;
    }

    .seo-360-icon {
      font-size: 2rem;
      margin-bottom: 14px;
      display: block;
      color: var(--orange);
    }

    .seo-360-card h3 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .seo-360-card p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.875rem;
      line-height: 1.65;
      margin: 0;
    }

    .seo-360-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(242, 106, 27, 0.15);
      border: 1px solid rgba(242, 106, 27, 0.25);
      color: var(--orange);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      margin-top: 14px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ─── Local SEO Callout ─────────────────────── */
    .seo-local-callout {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(242, 106, 27, 0.2);
      border-radius: 20px;
      padding: 40px 44px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      margin-top: 24px;
      position: relative;
      overflow: hidden;
    }

    .seo-local-callout::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
    }

    .seo-local-callout h3 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .seo-local-callout p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .seo-local-stats {
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }

    .seo-local-stat {
      text-align: center;
      background: rgba(242, 106, 27, 0.1);
      border: 1px solid rgba(242, 106, 27, 0.2);
      border-radius: 12px;
      padding: 14px 20px;
      min-width: 110px;
    }

    .seo-local-stat-num {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 4px;
    }

    .seo-local-stat-lbl {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.3;
    }

    /* ─── Feature Cards ─────────────────────────── */
    .seo-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .seo-feat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px 22px;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .seo-feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--orange-border);
    }

    .seo-feat-icon {
      width: 50px;
      height: 50px;
      background: var(--orange-bg);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 14px;
      color: var(--orange);
    }

    .seo-feat-card h3 {
      font-size: 0.97rem;
      margin-bottom: 9px;
    }

    .seo-feat-card p {
      font-size: 0.865rem;
      line-height: 1.65;
    }

    .seo-feat-tag {
      display: inline-block;
      background: var(--orange-bg);
      border: 1px solid var(--orange-border);
      color: var(--orange);
      font-size: 0.68rem;
      font-weight: 600;
      padding: 2px 10px;
      border-radius: 100px;
      margin-top: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ─── Process Steps ─────────────────────────── */
    .seo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }

    .seo-steps::before {
      content: '';
      position: absolute;
      top: 27px;
      left: calc(12.5% + 28px);
      right: calc(12.5% + 28px);
      height: 2px;
      background: var(--orange-border);
      z-index: 0;
    }

    .seo-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 14px;
      position: relative;
      z-index: 1;
    }

    .seo-step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--orange);
      color: var(--orange);
      font-size: 0.95rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 0 5px var(--bg);
    }

    .seo-step-num.filled {
      background: var(--bg);
      color: var(--orange);
      box-shadow: 0 0 0 5px var(--bg);
    }

    .seo-step:last-child .seo-step-num {
      border-color: #22c55e;
      color: #22c55e;
    }

    .seo-step h4 {
      font-size: 0.93rem;
      margin-bottom: 8px;
    }

    .seo-step p {
      font-size: 0.83rem;
      line-height: 1.6;
    }

    /* ─── Comparison Table ──────────────────────── */
    .seo-compare {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 56px;
      box-shadow: var(--shadow);
    }

    .seo-compare-head {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      background: var(--black);
    }

    .seo-compare-head-cell {
      padding: 18px 24px;
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .seo-compare-head-cell.highlight {
      color: var(--white);
      background: rgba(242, 106, 27, 0.14);
      border-right: none;
    }

    .seo-compare-row {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .seo-compare-row:last-child {
      border-bottom: none;
    }

    .seo-compare-row:nth-child(even) {
      background: var(--bg);
    }

    .seo-compare-cell {
      padding: 15px 24px;
      font-size: 0.855rem;
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
    }

    .seo-compare-cell:last-child {
      border-right: none;
      background: rgba(242, 106, 27, 0.035);
    }

    .seo-compare-cell.feature-name {
      font-weight: 500;
      color: var(--text);
    }

    .seo-compare-cell .check {
      color: #22c55e;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .seo-compare-cell .cross {
      color: #ef4444;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .seo-compare-cell.strong-cell {
      font-weight: 600;
      color: var(--black);
    }

    /* ─── Testimonials ──────────────────────────── */
    .seo-testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    /* ─── Audit CTA Card ────────────────────────── */
    .seo-audit-section {
      background: var(--graphite);
      padding: 80px 0;
    }

    .seo-audit-card {
      max-width: 720px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 24px;
      padding: 52px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .seo-audit-card::before {
      display: none;
    }

    .seo-audit-card h2 {
      color: var(--white);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 14px;
    }

    .seo-audit-card h2 span {
      color: var(--orange);
    }

    .seo-audit-card>p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 1rem;
      max-width: 480px;
      margin: 0 auto 20px;
      line-height: 1.65;
    }

    .seo-audit-includes {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .seo-audit-tag {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.75rem;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .seo-audit-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .seo-audit-meta {
      margin-top: 16px !important;
      color: rgba(255, 255, 255, 0.28) !important;
      font-size: 0.8rem !important;
    }

    /* ─── FAQ ───────────────────────────────────── */
    .seo-faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 48px;
    }

    .seo-faq-list details {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.22s;
    }

    .seo-faq-list details[open] {
      border-color: var(--orange-border);
    }

    .seo-faq-list summary {
      padding: 20px 24px;
      font-weight: 600;
      font-size: 0.94rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--black);
      user-select: none;
    }

    .seo-faq-list summary::-webkit-details-marker {
      display: none;
    }

    .seo-faq-list summary::after {
      content: '+';
      font-size: 1.35rem;
      color: var(--orange);
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
    }

    .seo-faq-list details[open] summary::after {
      content: '−';
    }

    .seo-faq-body {
      padding: 0 24px 20px;
      font-size: 0.89rem;
      color: var(--text-muted);
      line-height: 1.72;
    }

    /* ─── CTA Final ─────────────────────────────── */
    .seo-cta-final {
      background: var(--black);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .seo-cta-final::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 450px;
      background: radial-gradient(ellipse, rgba(242, 106, 27, 0.14) 0%, transparent 68%);
      pointer-events: none;
    }

    .seo-cta-final .section-label {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.65);
      margin: 0 auto 22px;
      position: relative;
      z-index: 1;
    }

    .seo-cta-final h2 {
      color: var(--white);
      font-size: clamp(1.9rem, 4vw, 3rem);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .seo-cta-final h2 span {
      color: var(--orange);
    }

    .seo-cta-final>.container>p {
      color: rgba(255, 255, 255, 0.52);
      max-width: 520px;
      margin: 0 auto 38px;
      font-size: 1.05rem;
      position: relative;
      z-index: 1;
    }

    .seo-cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .seo-cta-micro {
      margin-top: 20px !important;
      font-size: 0.81rem !important;
      color: rgba(255, 255, 255, 0.28) !important;
      position: relative;
      z-index: 1;
    }

    /* ─── Responsive ────────────────────────────── */
    @media (max-width: 1024px) {
      .seo-hero-inner {
        gap: 48px;
      }

      .seo-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .seo-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
      }

      .seo-steps::before {
        display: none;
      }

      .seo-step-num {
        box-shadow: none;
      }

      .seo-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .seo-stat-item {
        border-right: none;
        padding-bottom: 20px;
      }

      .seo-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }

      .seo-testi-grid {
        grid-template-columns: 1fr 1fr;
      }

      .seo-local-callout {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .seo-local-stats {
        flex-direction: row;
      }
    }

    @media (max-width: 768px) {
      .seo-hero {
        padding: 100px 0 64px;
      }

      .seo-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .seo-problema-grid {
        grid-template-columns: 1fr;
      }

      .seo-360-grid {
        grid-template-columns: 1fr;
      }

      .seo-features-grid {
        grid-template-columns: 1fr;
      }

      .seo-compare-head-cell,
      .seo-compare-cell {
        padding: 12px 14px;
        font-size: 0.78rem;
      }

      .seo-testi-grid {
        grid-template-columns: 1fr;
      }

      .seo-stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .seo-audit-card {
        padding: 36px 24px;
      }

      .seo-local-callout {
        padding: 28px 24px;
      }
    }

    @media (max-width: 480px) {
      .seo-hero-actions {
        flex-direction: column;
      }

      .seo-steps {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .seo-cta-actions,
      .seo-audit-actions {
        flex-direction: column;
        align-items: center;
      }

      .seo-stats-inner {
        grid-template-columns: 1fr;
      }

      .seo-stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding-bottom: 20px;
      }

      .seo-stat-item:last-child {
        border-bottom: none;
      }

      .seo-compare {
        overflow-x: auto;
      }

      .seo-compare-head,
      .seo-compare-row {
        min-width: 580px;
      }

      .seo-local-stats {
        flex-direction: column;
      }

      .seo-serp-floats {
        grid-template-columns: 1fr 1fr;
      }
    }
