 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white: #FFFFFF;
    --off-white: #F7F6F2;
    --grey: #6B7280;
    --light-grey: #E5E7EB;
    --card-dark: #1A2234;
  }

  html { scroll-behavior: smooth; }

.label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 14px;
    display: block;
  }
  .label.yellow { color: var(--yellow); }
  .label.white { color: rgba(255,255,255,0.5); }

  /* HERO */
  .hero {
    background: var(--dark);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    border-radius: 50%;
    opacity: 0.06;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 60px; left: 40%;
    width: 1px; height: 120px;
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    opacity: 0.4;
  }
  .hero-left {
    padding: 80px 0 80px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-agency {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-agency::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7vw, 100px);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }
  .hero-title .accent { color: var(--yellow); }
  .hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    /* max-width: 420px; */
    margin: 24px 0 48px;
  }
  /* .hero-meta { display: flex; gap: 32px; flex-wrap: wrap; } */
  .hero-meta-item {display: flex;gap: 10px;align-items: center;margin-bottom: .5rem;}
  .hero-meta-item .mlabel {
    font-size: 10px;
    width: 12%;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    /* color: rgba(255,255,255,0.3); */
  }
  .hero-meta-item .mvalue {
    font-size: 13px;
    font-weight: 600;
    /* color: var(--white); */
  }
  .hero-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
  }
  .hero-stat-block {
    background: var(--card-dark);
    border: 1px solid rgba(245,197,24,0.15);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    max-width: 340px;
    position: relative;
  }
  .hero-stat-block::before {
    content: 'KEY RESULT';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    padding: 3px 12px;
    border-radius: 20px;
  }
  .hero-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .hero-big-num span { color: var(--yellow); }
  .hero-num-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
  }
  .hero-num-sub {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
  }

  /* SECTIONS */
  .section { padding: 100px 0; }
  .section.dark { background: var(--navy); }
  .section.darker { background: var(--dark); }
  .section.white { background: var(--white); }
  .section-head { margin-bottom: 56px; }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4vw, 56px);
    letter-spacing: 0.01em;
    line-height: 1.05;
  }
  .section-title.white { color: var(--white); }
  .section-title.dark-txt { color: var(--dark); }
  .ydiv {
    width: 48px; height: 4px;
    background: #f46b25;
    margin-bottom: 20px;
    border-radius: 2px;
  }

  /* INTRO */
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .intro-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.05;
    color: var(--dark);
    letter-spacing: 0.01em;
  }
  .intro-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #374151;
  }
  .intro-body p + p { margin-top: 16px; }
  .timeline-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .timeline-badge {
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .timeline-text { font-size: 14px; color: var(--grey); font-weight: 500; }

  /* CLIENT CARDS */
  .client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .client-card { background: var(--white); padding: 32px 24px; }
  .client-card:first-child { border-radius: 12px 0 0 12px; }
  .client-card:last-child { border-radius: 0 12px 12px 0; }
  .client-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .client-card-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
  .client-card-text { font-size: 13px; color: var(--grey); line-height: 1.6; }

  /* PROBLEM */
  .problem-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
  }
  .problem-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 5.5vw, 80px);
    line-height: 1.0;
    /* color: var(--white); */
    letter-spacing: 0.01em;
  }
  .problem-big .yellow { color: var(--yellow); }
  .problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .problem-card {background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.3s;
  }
  .problem-card:hover { border-color: rgba(245,197,24,0.3); }
  .problem-card-icon { font-size: 28px; margin-bottom: 16px; }
  .problem-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .problem-card-text { font-size: 13px; color: var(--white); line-height: 1.65; }

  /* STRATEGY */
  .strategy-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--light-grey);
    align-items: start;
  }
  .strategy-row:first-child { border-top: 1px solid var(--light-grey); }
  .strategy-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--yellow); line-height: 1; }
  .strategy-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
  .strategy-text { font-size: 14px; color: #4B5563; line-height: 1.75;}

  /* TOOLS */
  .tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 56px; }
  .tools-grid-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 56px; }
  .tool-tile {background: #2f70d8!important;padding: 36px 25px;transition: background 0.3s;}
  .tool-tile:hover { background: #1E2D4A; }
  .tool-tile:nth-child(1) { border-radius: 12px 0 0 12px;background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important; }
  .tool-tile:nth-child(5) { border-radius: 0 12px 12px 0; background: linear-gradient(270deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important;}
  .tool-tile:nth-child(6) { border-radius: 0 0 12px 0; }
  .tools-grid-four .tool-tile:nth-child(1) { border-radius: 12px 0 0 12px;background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important; }
  .tools-grid-four .tool-tile:nth-child(4) { border-radius: 0 12px 12px 0; background: linear-gradient(270deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important;}


  .tools-grid-five { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 56px; }
  .tool-tile {background: #2f70d8!important;padding: 36px 25px;transition: background 0.3s;}
  .tool-tile:hover { background: #1E2D4A; }
  .tool-tile:nth-child(1) { border-radius: 12px 0 0 12px;background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important; }
  .tool-tile:nth-child(5) { border-radius: 0 12px 12px 0; background: linear-gradient(270deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important;}
  .tool-tile:nth-child(6) { border-radius: 0 0 12px 0; }
  .tools-grid-five .tool-tile:nth-child(1) { border-radius: 12px 0 0 12px;background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important; }
  .tools-grid-five .tool-tile:nth-child(5) { border-radius: 0 12px 12px 0; background: linear-gradient(270deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%) !important;}
  .tool-icon {
    margin-bottom: 1rem;
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .tool-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .tool-role { font-size: 12px; color: var(--white); }

  /* LEADS CHART */
  .chart-wrap {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 48px;
    margin-top: 56px;
    border: 1px solid rgba(245,197,24,0.1);
  }
  .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .chart-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
  .chart-subtitle { font-size: 13px; color: rgba(255,255,255,0.4); }
  .chart-legend { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
  }
  .legend-dot { width: 10px; height: 10px; border-radius: 50%; }
  .legend-dot.before { background: rgba(255,255,255,0.2); }
  .legend-dot.after { background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%); }
  .leads-chart-svg { width: 100%; overflow: visible; }
  .chart-bottom-stats { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
  .cbs-card { border-radius: 10px; padding: 16px 24px; flex: 1; min-width: 160px; }
  .cbs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
  .cbs-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }
  .cbs-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

  /* KEYWORD RANKINGS */
  .rankings-wrap { margin-top: 40px; border-radius: 16px; overflow: hidden; border: 1px solid var(--light-grey); }
  .rankings-header-bar {
    background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%);
    display: grid;
    grid-template-columns: 40px 1fr 185px 185px;
    padding: 16px 24px;
  }
  .rh-cell { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
  .rh-cell.center { text-align: center; }
  .rank-row {
    display: grid;
    grid-template-columns: 40px 1fr 185px 185px;
    padding: 15px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    align-items: center;
    transition: background 0.2s;
  }
  .rank-row:last-child { border-bottom: none; }
  .rank-row:hover { background: #fafaf8; }
  .rank-num-cell { font-size: 12px; font-weight: 700; color: var(--grey); }
  .rank-keyword { font-size: 14px; font-weight: 600; color: var(--dark); }
  .rank-position-cell, .rank-old-cell { display: flex; justify-content: center; }
  .rank-badge { display: inline-block; font-size: 13px; font-weight: 800; padding: 4px 14px; border-radius: 100px; }
  .rank-badge.top1 { background: #F5C518; color: #0F0F0F; }
  .rank-badge.top3 { background: #E8F5E9; color: #2E7D32; }
  .rank-badge.top5 { background: #E3F2FD; color: #1565C0; }
  .rank-badge.top10 { background: #FFF3E0; color: #E65100; }
  .rank-old { font-size: 12px; font-weight: 600; color: rgba(200,50,50,0.55); background: rgba(255,60,60,0.06); border-radius: 100px; padding: 4px 12px; display: inline-block; }

  .rank-summary-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
  .rss-card { border-radius: 12px; padding: 24px; text-align: center; }
  .rss-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; letter-spacing: 0.02em; }
  .rss-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 8px; }

  /* BEFORE / AFTER */
  .ba-wrap { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: stretch; border-radius: 16px; overflow: hidden; margin-top: 56px; }
  .ba-before { background: #161616; padding: 56px 48px; }
  .ba-after { background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%); padding: 56px 48px; }
  .ba-divider { background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--yellow); font-weight: 900; }
  .ba-section-label { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 36px; display: block; }
  .ba-before .ba-section-label { color: #fff; }
  .ba-after .ba-section-label { color: #fff; }
  .ba-stat { margin-bottom: 28px; }
  .ba-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; letter-spacing: 0.02em; }
  .ba-before .ba-num { color: #fff; }
  .ba-after .ba-num { color: var(--white); }
  .ba-lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
  .ba-before .ba-lbl { color: #fff; }
  .ba-after .ba-lbl { color: #fff; }
  .ba-badge { display: inline-block; background: var(--white); color: #000; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; margin-left: 10px; vertical-align: middle; letter-spacing: 0.05em; }

  /* CLOSING */
  .closing { background: var(--dark); padding: 120px 0 80px; text-align: center; }
  .closing-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 6vw, 88px); color: var(--white); letter-spacing: 0.01em; line-height: 1; margin-bottom: 24px; }
  .closing-title span { color: var(--yellow); }
  .closing-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.4); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
  .closing-services { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
  .service-pill { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600; padding: 10px 22px; border-radius: 100px; letter-spacing: 0.05em; transition: all 0.3s; }
  .service-pill:hover { background: linear-gradient(90deg, hsla(23, 99%, 63%, 1) 0%, hsla(343, 88%, 67%, 1) 100%); color: var(--dark); border-color: var(--yellow); }
  .closing-footer { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.25); font-weight: 500; }
  .closing-footer a { color: var(--yellow); text-decoration: none; font-weight: 600; }

  /* ANIMATION */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
.organic_leads {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}
.website-ba-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .wba-card { border-radius: 16px; overflow: hidden; border: 2px solid transparent; }
  .wba-card.before { border-color: rgba(200,155,109,0.3); }
  .wba-card.after  { border-color: rgba(217,164,65,0.5); }
  .wba-label-bar {
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .wba-card.before .wba-label-bar { background: rgba(200,155,109,0.15); color: rgba(75,46,30,0.6); }
  .wba-card.after  .wba-label-bar { background: rgba(217,164,65,0.15); color: var(--brown); }
  .wba-dot { width: 8px; height: 8px; border-radius: 50%; }
  .wba-card.before .wba-dot { background: rgba(200,155,109,0.5); }
  .wba-card.after  .wba-dot { background: var(--gold); }
  .wba-img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .wba-caption {
    padding: 14px 20px;
    font-size: 12px;
    color: #7a6050;
    background: var(--white);
    font-weight: 500;
  }
.traffic-ba {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
  }
  .tba-before { background: #1e1008; padding: 48px 40px; }
  .tba-after  {     background: linear-gradient(90deg, hsla(217, 73%, 37%, 1) 0%, hsla(217, 72%, 53%, 1) 100%); padding: 48px 40px; }
  .tba-divider { background: var(--brown); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); font-weight: 900; }
  .tba-lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 32px; display: block; }
  .tba-before .tba-lbl { color: #fff; }
  .tba-after  .tba-lbl { color: #fff; }
  .tba-stat { margin-bottom: 28px; }
  .tba-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px; line-height: 1;
    letter-spacing: -0.01em;
  }
  .tba-before .tba-num { color: #fff; }
  .tba-after .tba-num { color: #fff; }
  .tba-metric { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
  .tba-before .tba-metric { color: #fff; }
  .tba-after  .tba-metric { color: #fff; }
  .tba-badge {
    display: inline-block;
    background: #2E1C10; color: var(--gold);
    font-size: 11px; font-weight: 800;
    padding: 3px 10px; border-radius: 20px;
    margin-left: 10px; vertical-align: middle;
    letter-spacing: 0.05em;
  }

  /* Progress bars */
  .bar-compare { margin-top: 32px; }
  .bar-row { margin-bottom: 24px; }
  .bar-row-head {
    display: flex; justify-content: space-between;
    font-size: 12px; font-weight: 600;
    margin-bottom: 8px;
  }
  .bar-bg {
    background: rgba(248,243,237,0.07);
    border-radius: 100px;
    height: 12px;
    overflow: hidden;
    position: relative;
  }
  .bar-old { position: absolute; left: 0; top: 0; height: 100%; border-radius: 100px; background: rgba(248,243,237,0.15); }
  .bar-new {
    position: absolute; left: 0; top: 0; height: 100%; border-radius: 100px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    transform-origin: left;
    animation: growW 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
  }

.bar-compare {
    background: var(--card-dark);
    border-radius: 16px;
    padding: 40px 48px;
    border: 1px solid rgba(245, 197, 24, 0.1);
}



  /* STATES STRIP */
  .states-strip { display: flex; gap: 2px; margin-top: 32px; }
  .state-pill { background: var(--white); border-radius: 8px; padding: 14px 20px; flex: 1; text-align: center; border-top: 3px solid var(--red); }
  .state-pill-name { font-size: 13px; font-weight: 700; color: var(--black); }
  .state-pill-sub  { font-size: 11px; color: var(--charcoal); margin-top: 3px; }

















@media (max-width: 767px){
  .traffic-ba{grid-template-columns: auto;}
  .state-pill{width: 250px;}
  .states-strip{overflow: scroll;}
  .hero-meta-item .mlabel{width: 28%;}
  .tools-grid-five{overflow: scroll;}
  .tools-grid-five .tool-tile{width: 250px;}
  .intro-grid{grid-template-columns: auto;gap: 20px;}
  .timeline-row{margin-top: 25px;}
  .section-head{margin-bottom: 26px;}
  .hero-meta {gap: 14px;justify-content: space-between;}
  .hero-meta-item .mvalue{font-size: 12px;}
  .client-grid{grid-template-columns: auto;gap: 25px;}
  .problem-header{grid-template-columns: auto;gap: 25px;}
  .intro-body{padding-top: 0!important;}
  .problem-cards{grid-template-columns: auto;gap: 16px;}
  .strategy-row{gap: 15px;grid-template-columns: 60px 1fr;}
  .tools-grid{grid-template-columns: auto;gap: 16px;}
  .case-studies-section h2 br{display: none;}
  .rank-summary-stats{grid-template-columns: auto;gap: 16px;}
  .rankings-header-bar{overflow: scroll;}
  .rank-row{overflow: scroll;}
  .rank-keyword{white-space: nowrap;}
  .chart-wrap{padding: 28px;}
  .organic_leads {grid-template-columns: auto;gap: 0;}

}

  @keyframes growBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }