/*
Theme Name: RockItDrums
Theme URI: https://rockitdrums.com
Author: Christopher Miller
Author URI: https://themillerfirms.com
Description: Custom-built training platform designed for structured progression, direct one-on-one coaching, and real skill development. Engineered for clarity, performance, and conversion.
Version: 1.0
Text Domain: rockitdrums
*/

/* =========================================================
   COLOR SYSTEM
========================================================= */
:root {
  --rid-bg-main: #120d2f;
  --rid-bg-alt: #120d2f;
  --rid-bg-soft: #17123a;
  --rid-bg-panel: rgba(255,255,255,0.07);
  --rid-bg-panel-strong: rgba(255, 255, 255, 0.10);

  --rid-purple: #8b3dff;
  --rid-purple-light: #b06cff;
  --rid-blue: #4da3ff;
  --rid-blue-light: #7cc7ff;

  --rid-gradient-main: linear-gradient(135deg, #7a3cff 0%, #3f7bff 52%, #59c3ff 100%);
  --rid-gradient-dark: linear-gradient(135deg, #120d2f 0%, #1a1d56 48%, #0d2d68 100%);
  --rid-gradient-hero: radial-gradient(circle at top right, rgba(139, 61, 255, 0.35), transparent 32%),
                        radial-gradient(circle at center, rgba(62, 139, 255, 0.22), transparent 28%),
                        linear-gradient(135deg, #0a0820 0%, #17123a 45%, #0e1b4d 100%);

  --rid-text-main: #ffffff;
  --rid-text-soft: #d7d8e5;
  --rid-text-muted: #aeb3cc;
  --rid-text-dark: #0c0d18;

  --rid-border: rgba(255, 255, 255, 0.14);
  --rid-border-strong: rgba(255, 255, 255, 0.16);

  --rid-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --rid-shadow-medium: 0 18px 45px rgba(0, 0, 0, 0.24);
  --rid-shadow-glow: 0 12px 35px rgba(107, 78, 255, 0.28);

  --rid-radius-sm: 16px;
  --rid-radius-md: 22px;
  --rid-radius-lg: 30px;

  --rid-container-pad: 48px;
}

/* =========================================================
   RESET / BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--rid-text-main);
  background: var(--rid-bg-main);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

body.admin-bar .rid-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .rid-site-header {
    top: 46px;
  }
}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */
.rid-page {
  width: 100%;
  overflow-x: hidden;
  background: var(--rid-bg-main);
}

.rid-section {
  width: 100%;
  padding: 90px 0;
  position: relative;
}

.rid-container {
  width: 100%;
  padding-left: var(--rid-container-pad);
  padding-right: var(--rid-container-pad);
  margin: 0 auto;
}

.rid-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rid-purple-light);
}

.rid-section-title {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--rid-text-main);
}

.rid-section-intro {
  max-width: 900px;
  margin: 0;
  font-size: 1.06rem;
  color: var(--rid-text-soft);
}

.rid-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}

.rid-btn-primary {
  background: var(--rid-gradient-main);
  color: #ffffff;
  border: none;
  box-shadow: var(--rid-shadow-glow);
}

.rid-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(107, 78, 255, 0.34);
}

.rid-btn-secondary {
  background: transparent;
  color: var(--rid-text-main);
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.rid-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   HEADER
========================================================= */
.rid-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(9, 8, 28, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rid-border);
}

.rid-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.rid-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rid-brand-name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--rid-text-main);
}

.rid-brand-tagline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rid-purple-light);
}

.rid-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   HERO
========================================================= */
.rid-hero {
  width: 100%;
  padding: 56px 0 84px;
  background:
    radial-gradient(circle at top right, rgba(139, 61, 255, 0.22), transparent 34%),
    radial-gradient(circle at center left, rgba(62, 139, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(89, 195, 255, 0.18), transparent 24%),
    var(--rid-gradient-dark);
  border-bottom: 1px solid var(--rid-border);
}

.rid-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* HERO TEXT */
.rid-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--rid-text-main);
  white-space: nowrap;
}

.rid-hero-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
  color: var(--rid-text-main);
}

.rid-hero-copy p {
  margin: 0;
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--rid-text-soft);
}

/* VIDEO */
.rid-hero-media {
  border-radius: var(--rid-radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rid-border);
  box-shadow: var(--rid-shadow-medium);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.rid-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .rid-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rid-hero {
    padding: 34px 0 56px;
  }

  .rid-hero-copy h1 {
    white-space: normal;
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .rid-hero-media {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================================
   KEY CONCEPTS
========================================================= */
.rid-key-concepts {
  width: 100%;
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--rid-border);
  background: rgba(255, 255, 255, 0.01);
}

.rid-key-title {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rid-text-soft);
}

.rid-concepts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rid-concept-card {
  border: 1px solid var(--rid-border);
  border-radius: 20px;
  background: var(--rid-bg-panel);
  padding: 22px 16px 20px;
  text-align: center;
  color: var(--rid-text-main);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.rid-concept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 61, 255, 0.5);
  box-shadow:
    0 0 20px rgba(139, 61, 255, 0.25),
    0 0 30px rgba(62, 139, 255, 0.15);
}

.rid-concept-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.rid-concept-text {
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  max-width: 180px;
  margin: 0 auto;
}

/* =========================================================
   Key Concepts - RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .rid-concepts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .rid-concepts-grid {
    grid-template-columns: 1fr;
  }

  .rid-concept-card {
    padding: 16px 14px;
  }

  .rid-concept-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .rid-concept-text {
    font-size: 0.95rem;
    max-width: none;
  }
}
/* =========================================================
   THREE FEATURE STACK
========================================================= */
.rid-three-stack {
  display: grid;
  gap: 34px;
  margin-top: 36px;
}

.rid-feature-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.rid-feature-row:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}

.rid-feature-row:nth-child(even) .rid-feature-media {
  order: 2;
}

.rid-feature-row:nth-child(even) .rid-feature-copy {
  order: 1;
}

.rid-feature-media {
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rid-border);
  box-shadow: var(--rid-shadow-soft);
}

.rid-feature-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--rid-text-main);
}

.rid-feature-copy p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rid-text-soft);
}

@media (max-width: 1024px) {
  .rid-feature-row,
  .rid-feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .rid-feature-row:nth-child(even) .rid-feature-media,
  .rid-feature-row:nth-child(even) .rid-feature-copy {
    order: initial;
  }
}

.rid-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rid-inline-link {
  color: #3e8bff;
  text-decoration: underline;
  font-weight: 800;
}

.rid-inline-link:hover {
  color: #9f7bff;
}



/* =========================================================
   MUSIC STYLES CARD GRID
========================================================= */
.rid-alt-bg {
  background: var(--rid-bg-alt);
  border-top: 1px solid var(--rid-border);
  border-bottom: 1px solid var(--rid-border);
}

.rid-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.rid-card {
  border: 1px solid var(--rid-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--rid-bg-panel);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  box-shadow: var(--rid-shadow-soft);
  transition: all 0.25s ease;
}

.rid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 139, 255, 0.45);
  box-shadow:
    0 0 22px rgba(139, 61, 255, 0.22),
    0 0 34px rgba(62, 139, 255, 0.16);
}

.rid-card-media {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.05);
}

.rid-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.rid-card-body {
  padding: 24px;
  flex: 1;
}

.rid-card-body h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--rid-text-main);
}

.rid-card-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--rid-text-soft);
}

/* =========================================================
   MUSIC STYLES RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .rid-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .rid-card-grid {
    grid-template-columns: 1fr;
  }

  .rid-card-body {
    padding: 22px;
  }
}

/* =========================================================
   CTA BAND
========================================================= */
.rid-cta-band {
  width: 100%;
  padding: 96px 0;
  text-align: center;
  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(139, 61, 255, 0.72) 0%,
      rgba(62, 139, 255, 0.78) 50%,
      rgba(139, 61, 255, 0.72) 100%
    );

  border-top: 6px solid rgba(62, 139, 255, 0.85);
  border-bottom: 6px solid rgba(139, 61, 255, 0.85);

  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.38),
    0 -18px 40px rgba(62, 139, 255, 0.12),
    0 18px 40px rgba(139, 61, 255, 0.12);
}

.rid-cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}

.rid-cta-band p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  font-weight: 600;
}

.rid-cta-band .rid-btn-row {
  justify-content: center;
  margin-top: 34px;
}

.rid-cta-band .rid-btn {
  font-size: 1rem;
  padding: 15px 28px;
}

.rid-cta-band .rid-btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

.rid-cta-band .rid-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* =========================================================
   COMPARISON
========================================================= */
.rid-comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.rid-compare-panel {
  border: 1px solid var(--rid-border);
  border-radius: 24px;
  background: var(--rid-bg-panel);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: var(--rid-shadow-soft);
}

/* LEFT PANEL */
.rid-compare-alt {
  opacity: 0.88;
}

/* RIGHT PANEL - ROCK IT DRUMS HIGHLIGHT */
.rid-compare-main {
  position: relative;
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(62, 160, 255, 0.10)),
    var(--rid-bg-panel);
  border: 1px solid rgba(124, 92, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.28),
    0 0 32px rgba(124, 92, 255, 0.18),
    var(--rid-shadow-soft);
  transform: translateY(-2px);
  overflow: hidden;
}

.rid-compare-main::before {
  content: "ROCK IT DRUMS";
  display: block;
  margin: -28px -28px 24px;
  padding: 10px 18px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(139, 61, 255, 0.95), rgba(62, 139, 255, 0.95));
}

.rid-compare-panel h3 {
  margin: 0 0 18px;
  font-size: 1.7rem;
  line-height: 1.08;
  color: var(--rid-text-main);
}

.rid-compare-main h3 {
  color: #ffffff;
}

.rid-compare-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--rid-text-soft);
}

.rid-compare-main .rid-compare-list {
  color: rgba(255, 255, 255, 0.92);
}

.rid-compare-summary {
  margin-top: 22px;
  max-width: 950px;
  color: var(--rid-text-soft);
  font-size: 1.04rem;
}

.rid-cta-statement {
  margin: 28px auto 0;
  max-width: 860px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.rid-cta-statement strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: #7c5cff;
}

/* =========================================================
   COMPARISON RESPONSIVE
========================================================= */
@media (max-width: 767px) {
  .rid-comparison-wrap {
    grid-template-columns: 1fr;
  }

  .rid-compare-main {
    transform: none;
  }
}

/* =========================================================
   TRUST BLOCK
========================================================= */
.rid-trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}

.rid-trust-media {
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rid-border);
  box-shadow: var(--rid-shadow-soft);
}

.rid-trust-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  color: var(--rid-text-main);
}

.rid-trust-copy p {
  margin: 0 0 14px;
  color: var(--rid-text-soft);
}

.rid-trust-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.rid-trust-points li {
  position: relative;
  padding-left: 18px;
  color: var(--rid-text-soft);
}

.rid-trust-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rid-purple-light);
  font-weight: 700;
}

.rid-trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   REVIEW PLATFORM BLOCKS
========================================================= */
.rid-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 46px;
  width: 100%;
}

.rid-review-platform {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: var(--rid-bg-panel);
  overflow: hidden;
  box-shadow: var(--rid-shadow-soft);
}

.rid-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--rid-border);
  background: rgba(255, 255, 255, 0.06);
}

.rid-review-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.rid-google-logo {
  max-height: 155px;
  width: auto;
}

.rid-yelp-logo {
  max-height: 155px;
  width: auto;
 
}

.rid-stars {
  color: #ffc400;
  font-size: 1.55rem;
  letter-spacing: 3px;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(255, 196, 0, 0.35);
}

.rid-review-card-stars {
  margin: 0 0 10px;
  color: #ffc400;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.28);
}

.rid-review-marquee {
  overflow: hidden;
  padding: 22px 0;
}

.rid-review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ridReviewScroll 38s linear infinite;
}

.rid-review-marquee:hover .rid-review-track,
.rid-review-marquee:focus-within .rid-review-track {
  animation-play-state: paused;
}

.rid-review-card {
  width: 430px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--rid-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--rid-text-soft);
  flex: 0 0 auto;
}

.rid-review-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.rid-review-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--rid-text-main);
}

.rid-review-card details {
  margin-top: 10px;
}

.rid-review-card summary {
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  color: #7c5cff;
  list-style: none;
}

.rid-review-card summary::-webkit-details-marker {
  display: none;
}

.rid-review-card details[open] {
  max-height: 170px;
  overflow-y: auto;
  padding-right: 6px;
}

.rid-review-card details p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--rid-text-soft);
}

.rid-review-disclaimer {
  margin: 18px auto 0;
  max-width: 980px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@keyframes ridReviewScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   TRUST / REVIEWS RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .rid-trust-grid,
  .rid-review-grid {
    grid-template-columns: 1fr;
  }

  .rid-google-logo {
    height: 38px;
  }

  .rid-yelp-logo {
    height: 42px;
  }

  .rid-stars {
    font-size: 1.25rem;
  }

  .rid-review-card {
    width: 330px;
  }
}

/* =========================================================
   FAQ
========================================================= */
.rid-faq-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.rid-faq-item {
  border: 1px solid var(--rid-border);
  border-radius: 20px;
  background: var(--rid-bg-panel);
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: var(--rid-shadow-soft);
}

.rid-faq-item summary {
  list-style: none;
}

.rid-faq-item summary::-webkit-details-marker {
  display: none;
}

.rid-faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rid-text-main);
}

.rid-faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rid-purple-light);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.rid-faq-item[open] .rid-faq-question::after {
  content: "−";
}

.rid-faq-answer {
  padding: 0 24px 24px;
  color: var(--rid-text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* =========================================================
   VALUE COMPARISON
========================================================= */

.rid-price-table {
  margin-top: 36px;
  border: 1px solid var(--rid-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--rid-bg-panel);
}

.rid-price-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rid-border);
  align-items: center;
}

.rid-price-row:last-child {
  border-bottom: none;
}

.rid-price-header {
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  color: var(--rid-text-main);
}

.rid-price-row div {
  color: var(--rid-text-soft);
  font-size: 0.95rem;
}

.rid-price-header div {
  color: var(--rid-text-main);
}

.rid-highlight {
  background: rgba(56, 182, 255, 0.08);
  font-weight: 700;
}

.rid-highlight div {
  color: var(--rid-text-main);
}

.rid-compare-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--rid-text-muted);
}

.rid-compare-cta {
  margin-top: 22px;
}


/* =========================================================
   FINAL CTA / FORM
========================================================= */
.rid-final-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.rid-final-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.03;
  color: var(--rid-text-main);
}

.rid-final-copy p {
  margin: 0 0 14px;
  color: var(--rid-text-soft);
}

.rid-form-shell {
  max-height: 720px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rid-border);
  border-radius: 26px;
  background: var(--rid-bg-panel-strong);
  padding: 30px;
  box-shadow: var(--rid-shadow-medium);
  backdrop-filter: blur(10px);
}

.rid-form-shell h3 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  color: var(--rid-text-main);
}

.rid-form-intro {
  margin: 0 0 18px;
  color: var(--rid-text-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.rid-form-scroll {
  overflow-y: auto;
  padding-right: 10px;
}

.rid-form-scroll::-webkit-scrollbar {
  width: 8px;
}

.rid-form-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.rid-form-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.rid-form-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.rid-form-shell .bgz-form {
  width: 100%;
  max-width: none;
  font-family: inherit;
}

.rid-form-shell .bgz-field {
  margin-bottom: 16px;
}

.rid-form-shell .bgz-field label,
.rid-form-shell .bgz-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--rid-text-main);
}

.rid-form-shell input[type="text"],
.rid-form-shell input[type="email"],
.rid-form-shell input[type="tel"],
.rid-form-shell input[type="number"],
.rid-form-shell input[type="date"],
.rid-form-shell textarea,
.rid-form-shell select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--rid-border-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--rid-text-main);
  font-family: inherit;
  font-size: 0.98rem;
}

.rid-form-shell textarea {
  min-height: 115px;
  resize: vertical;
}

.rid-form-shell input:focus,
.rid-form-shell textarea:focus,
.rid-form-shell select:focus {
  outline: none;
  border-color: rgba(124, 92, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.18);
}

.rid-form-shell select option {
  color: #111111;
}

.rid-form-shell .bgz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.rid-form-shell .bgz-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--rid-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--rid-text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.rid-form-shell .bgz-inline input {
  width: auto;
  min-height: auto;
  accent-color: #7c5cff;
}

.rid-form-shell .bgz-consent-field .bgz-inline {
  border-radius: 14px;
  line-height: 1.4;
}

.rid-form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--rid-gradient-main);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(124, 92, 255, 0.25);
}

.rid-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(124, 92, 255, 0.32);
}

/* =========================================================
   FINAL CTA / FORM RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .rid-final-grid {
    grid-template-columns: 1fr;
  }

  .rid-form-shell {
    max-height: none;
  }

  .rid-form-scroll {
    overflow: visible;
    padding-right: 0;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.rid-site-footer {
  width: 100%;
  padding: 28px 0;
  border-top: 1px solid var(--rid-border);
  color: var(--rid-text-muted);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.01);
}

.rid-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .rid-hero-grid,
  .rid-feature-row,
  .rid-feature-row:nth-child(even),
  .rid-comparison-wrap,
  .rid-trust-grid,
  .rid-final-grid {
    grid-template-columns: 1fr;
  }

  .rid-feature-row:nth-child(even) .rid-feature-media,
  .rid-feature-row:nth-child(even) .rid-feature-copy {
    order: initial;
  }

  .rid-concepts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rid-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rid-program-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  :root {
    --rid-container-pad: 20px;
  }

  .rid-section {
    padding: 60px 0;
  }

  .rid-header-inner {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .rid-header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .rid-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rid-btn {
    width: 100%;
  }

  .rid-hero {
    padding: 34px 0 56px;
  }

  .rid-hero-media,
  .rid-feature-media,
  .rid-trust-media {
    min-height: 260px;
  }

  .rid-concepts-grid,
  .rid-card-grid,
  .rid-form-grid {
    grid-template-columns: 1fr;
  }

  .rid-form-group.rid-span-2 {
    grid-column: span 1;
  }

  .rid-footer-inner {
    flex-direction: column;
  }
}

/* =========================================================
   FINAL MOBILE FIXES — VALUE TABLE + BIZGRIDS FORM
========================================================= */
@media (max-width: 767px) {

  /* VALUE COMPARISON TABLE */
  .rid-price-table {
    border-radius: 18px;
  }

  .rid-price-header {
    display: none;
  }

  .rid-price-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }

  .rid-price-row div {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .rid-price-row div:first-child {
    font-weight: 900;
    color: var(--rid-text-main);
  }

  .rid-highlight {
    border-left: 4px solid var(--rid-purple-light);
  }

  /* FINAL FORM */
  .rid-form-shell {
    padding: 22px;
    max-height: none;
  }

  .rid-form-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .rid-form-shell .bgz-inline {
    display: flex;
    width: 100%;
    border-radius: 14px;
    padding: 11px 12px;
  }

  .rid-form-shell .bgz-field {
    margin-bottom: 18px;
  }

  .rid-form-shell input[type="text"],
  .rid-form-shell input[type="email"],
  .rid-form-shell input[type="tel"],
  .rid-form-shell input[type="number"],
  .rid-form-shell input[type="date"],
  .rid-form-shell textarea,
  .rid-form-shell select {
    font-size: 16px;
  }
}


/* =========================================================
   THANK YOU PAGE
========================================================= */
.rid-thankyou-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--rid-border);
  border-radius: 28px;
  background: var(--rid-bg-panel);
  text-align: center;
  box-shadow: var(--rid-shadow-medium);
}

.rid-thankyou-copy {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--rid-text-soft);
}

.rid-thankyou-highlight {
  margin: 32px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(124, 92, 255, 0.34);
  border-radius: 18px;
  background: rgba(124, 92, 255, 0.08);
  color: var(--rid-text-main);
  max-width: 760px;
}

.rid-thankyou-buttons {
  justify-content: center;
  margin-top: 34px;
}

/* MOBILE */
@media (max-width: 767px) {
  .rid-thankyou-shell {
    padding: 28px 22px;
  }
}