/*
Theme Name: RGXYZ Transactional
Theme URI: https://richardg.xyz/
Author: Richard
Description: Fully custom in-house transactional theme for RGXYZ.
Version: 1.0.0
Text Domain: rgxyz-transactional
*/

:root {
  --brand-brown: #753b0e;
  --brand-mint: #05ffac;
  --brand-amber: #ffad04;

  --text-dark: #111111;
  --text-muted: #5e5e5e;

  --bg-white: #ffffff;
  --bg-soft: #f6f6f6;

  --border-light: #e6e6e6;

  --max-width: 1120px;
  --radius: 10px;

  --shadow-soft: 0 8px 22px rgba(0,0,0,0.06);
  --shadow-medium: 0 14px 34px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin: 0 0 14px 0;
  font-weight: 800;
  line-height: 1.25;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px 0; }

a {
  color: var(--brand-brown);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.muted { color: var(--text-muted); }

.section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 110px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-amber));
  opacity: 0.98;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-amber));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.custom-logo {
  height: 44px;
  width: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.site-nav a:hover {
  border-bottom: 2px solid var(--brand-mint);
  text-decoration: none;
}

.button {
  display: inline-block;
  background: var(--brand-brown);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--brand-brown);
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(117,59,14,0.25);
  text-decoration: none;
}

.button-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  margin-left: 12px;
}

.button-outline:hover {
  background: #ffffff;
  color: var(--brand-brown);
}

.button-small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.hero-visual {
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 400px;
  position: relative;
  z-index: 2;
}

.hero-text-box {
  max-width: 760px;
  position: relative;
}

.hero-watermark {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 208px;
  height: 208px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.34;
  pointer-events: none;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.92);
}

.hero-micro {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.cred-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.cred-line {
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}

.cred-dot {
  margin: 0 10px;
  opacity: 0.85;
  color: var(--brand-amber);
}

.trust-strip {
  background: var(--bg-soft);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117,59,14,0.08);
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-amber));
  opacity: 0.95;
}

.testimonial-strip {
  padding: 70px 0 40px;
}

.testimonial-grid {
  gap: 34px;
}

.testimonial {
  background: #ffffff;
  border: 2px solid rgba(117,59,14,0.16);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-amber));
  opacity: 0.95;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-top: 10px;
}

.testimonial-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.testimonial-role {
  font-weight: 900;
  color: #1a1a1a;
  font-size: 0.98rem;
}

.testimonial-quote {
  margin: 0;
  font-weight: 800;
  color: #1a1a1a;
}

.testimonial-context {
  margin-top: 10px;
  max-width: 900px;
}

.flag-row {
  margin: 10px 0 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1.25rem;
  opacity: 0.92;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 60px 0 40px;
}

.section-head {
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  opacity: 0.95;
}

.grid.grid-3 .card:nth-child(3n+1)::before { background: rgba(5,255,172,0.95); }
.grid.grid-3 .card:nth-child(3n+2)::before { background: rgba(255,173,4,0.98); }
.grid.grid-3 .card:nth-child(3n+3)::before { background: rgba(117,59,14,0.75); }

.grid.grid-4 .card:nth-child(4n+1)::before { background: rgba(5,255,172,0.95); }
.grid.grid-4 .card:nth-child(4n+2)::before { background: rgba(255,173,4,0.98); }
.grid.grid-4 .card:nth-child(4n+3)::before { background: rgba(117,59,14,0.75); }
.grid.grid-4 .card:nth-child(4n+4)::before { background: linear-gradient(90deg, rgba(5,255,172,0.95), rgba(255,173,4,0.98)); }

.section-cta {
  margin-top: 26px;
}

.final-cta {
  padding: 80px 0;
}

.final-card {
  text-align: center;
  box-shadow: var(--shadow-medium);
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #f3f0ec;
  padding: 54px 0 28px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 1.6rem;
}

.footer-copy {
  max-width: 42ch;
  color: #4f4f4f;
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer-contact a {
  font-weight: 800;
  color: var(--brand-brown);
}

.footer-links {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.25fr;
  gap: 26px;
}

.footer-column h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  line-height: 1.15;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  color: #4f4f4f;
  font-weight: 600;
  line-height: 1.15;
}

.footer-column a:hover {
  color: var(--brand-brown);
  text-decoration: none;
}

.footer-connect-column {
  min-width: 0;
}

.footer-connect-group + .footer-connect-group {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.footer-connect-group h4 {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}

.footer-connect-note {
  margin: 0 0 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.15;
}

.footer-connect-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-connect-list li {
  line-height: 1.15;
}

.footer-connect-list li + li {
  margin-top: 8px;
}

.footer-connect-list a {
  display: inline-block;
  color: #4f4f4f;
  font-weight: 600;
  line-height: 1.15;
}

.footer-connect-list a:hover {
  color: var(--brand-brown);
  text-decoration: none;
}

.footer-cta-card {
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.footer-cta-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-mint), var(--brand-amber));
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-brown);
}

.footer-cta-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.footer-cta-card p {
  color: #4f4f4f;
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer-cta-button {
  width: 100%;
  text-align: center;
}

.footer-secondary-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--brand-brown);
  line-height: 1.15;
}

.footer-secondary-link:hover {
  text-decoration: underline;
}

.footer-trust-line {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.footer-trust-line p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #4e4e4e;
  line-height: 1.15;
}

.footer-dot {
  display: inline-block;
  margin: 0 10px;
  color: var(--brand-amber);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.footer-copyright {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================================
   CONTACT PAGE
================================ */

.page-hero {
  padding: 70px 0 40px;
  background: linear-gradient(90deg, rgba(5,255,172,0.10), rgba(255,173,4,0.10));
  border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.hero-lede {
  max-width: 820px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: start;
  margin-top: 26px;
}

.contact-card {
  box-shadow: var(--shadow-soft);
}

.contact-form .field-row {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.req {
  color: var(--brand-amber);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 1rem;
  outline: none;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(5,255,172,0.9);
  box-shadow: 0 0 0 4px rgba(5,255,172,0.12);
}

.field-help {
  margin-top: 8px;
  font-size: 0.92rem;
}

.notice {
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0 0;
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.notice-success {
  border-color: rgba(5,255,172,0.55);
  box-shadow: 0 0 0 4px rgba(5,255,172,0.10);
}

.notice-error {
  border-color: rgba(255,173,4,0.55);
  box-shadow: 0 0 0 4px rgba(255,173,4,0.10);
}

.contact-email a {
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-divider {
  height: 1px;
  background: var(--border-light);
  margin: 18px 0;
}

.contact-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.form-actions {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  position: relative;
}

.rgxyz-btn {
  appearance: none;
  display: inline-block;
  width: auto;
  background: var(--brand-brown);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  border: 2px solid var(--brand-brown);
  transition: 0.2s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.rgxyz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(117,59,14,0.25);
  text-decoration: none;
}

.contact-alt {
  font-weight: 700;
}

/* ================================
   ABOUT PAGE
================================ */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(120deg, rgba(255,173,4,0.18), rgba(5,255,172,0.16));
  border-bottom: 1px solid var(--border-light);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  height: 420px;
  background-image: url("https://richardg.xyz/wp-content/uploads/2025/11/logo_with_transpancy_2500.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero .hero-lede {
  font-size: 1.15rem;
  max-width: 720px;
}

.about-story {
  background: linear-gradient(180deg, rgba(5,255,172,0.06), rgba(255,255,255,1));
}

.about-approach {
  background: linear-gradient(180deg, rgba(255,173,4,0.08), rgba(255,255,255,1));
}

.about-proof {
  background: var(--bg-soft);
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.about-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-logo-figure img {
  max-width: 240px;
  height: auto;
  display: block;
}

.about-story-card p {
  margin-bottom: 16px;
}

.about-mvv-row {
  margin-top: 50px;
}

.about-mvv-card {
  padding-top: 26px;
}

.about-pillar {
  min-height: 100%;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 24px;
  align-items: stretch;
}

.about-person-card {
  min-height: 100%;
}

.about-person {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.about-avatar {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-person-meta h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}

.about-person-meta p {
  margin: 0;
}

.about-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.about-kpi-card {
  text-align: center;
}

.about-kpi-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ================================
   BOOKING PAGE
================================ */

.booking-page {
  background: #f7f5f2;
}

.booking-hero .hero-text-box,
.booking-hero-copy {
  max-width: 780px;
}

.booking-page .booking-intro {
  padding-bottom: 30px;
}

.booking-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-brown);
}

.booking-kicker-light {
  color: rgba(255,255,255,0.92);
}

.booking-hero-conversion {
  padding: 64px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(255,173,4,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.booking-hero-copy h1 {
  max-width: 12ch;
  line-height: 1.15;
}

.booking-hero-copy .hero-lede {
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4a413a;
}

.booking-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.booking-trust-point {
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(37,28,21,0.06);
}

.booking-trust-point strong {
  display: block;
  margin-bottom: 6px;
  color: #1f1a17;
  font-size: 0.98rem;
}

.booking-trust-point span {
  display: block;
  color: #5a4e45;
  line-height: 1.55;
  font-size: 0.95rem;
}

.booking-side-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.booking-side-card::before {
  display: none;
}

.booking-side-card-intro {
  padding: 28px;
}

.booking-side-card-highlight {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-color: rgba(255,173,4,0.35);
}

.booking-side-card p {
  line-height: 1.75;
  color: #4e433c;
}

.booking-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #4f443d;
  line-height: 1.7;
}

.booking-list li {
  margin-bottom: 10px;
}

.booking-reassurance {
  padding-top: 10px;
}

.booking-reassurance-strip-wrap {
  padding-top: 8px;
  padding-bottom: 20px;
}

.booking-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-reassurance-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,173,4,0.14);
  border: 1px solid rgba(117,59,14,0.10);
}

.booking-reassurance-item h3 {
  margin-bottom: 12px;
  color: #1f1a17;
}

.booking-reassurance-item p {
  margin: 0;
  color: #4f443d;
  line-height: 1.7;
}

/* FORCE the step cards into a proper row on desktop */
.booking-page .booking-steps {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

/* Step card visual styling */
.booking-step-card {
  text-align: center;
  min-height: 100%;
  background: rgba(255,173,4,0.12) !important;
  border: 1px solid rgba(117,59,14,0.10);
}

.booking-step-card::before {
  background: linear-gradient(90deg, rgba(255,173,4,0.92), rgba(255,173,4,0.55)) !important;
}

.booking-step-number {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-brown), #9a4d12);
  box-shadow: var(--shadow-soft);
}

.booking-tool-section {
  padding-top: 24px;
}

.booking-tool-section-conversion {
  padding-bottom: 36px;
}

.booking-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.booking-main-column,
.booking-sidebar-column {
  min-width: 0;
}

.booking-sidebar-column {
  display: grid;
  gap: 18px;
}

.booking-tool-shell {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  padding: 28px;
  overflow: hidden;
}

.booking-tool-shell-conversion {
  border-radius: 28px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 16px 42px rgba(37,28,21,0.08);
}

.booking-tool-header {
  margin-bottom: 24px;
}

.booking-tool-header h2 {
  margin-bottom: 14px;
  line-height: 1.15;
  color: #1f1a17;
}

.booking-tool-header p {
  max-width: 64ch;
  line-height: 1.75;
}

.booking-shortcode-wrap {
  scroll-margin-top: 120px;
}

/* Plugin wrapper */
.booking-page .rgxyz-consultation-shell,
.booking-page .rgxyz-booking-lite,
.booking-page .rgxyz-consultation-booking,
.booking-page .rgxyz-booking-wrap {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Steps row from plugin */
.booking-page .rgxyz-consultation-steps,
.booking-page .consultation-steps,
.booking-page .rgxyz-steps {
  margin-bottom: 26px !important;
}

/* Date / form / slot area */
.booking-page input[type="text"],
.booking-page input[type="email"],
.booking-page input[type="date"],
.booking-page input[type="datetime-local"],
.booking-page select,
.booking-page textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: none;
}

.booking-page input:focus,
.booking-page select:focus,
.booking-page textarea:focus {
  border-color: rgba(5,255,172,0.9);
  box-shadow: 0 0 0 4px rgba(5,255,172,0.12);
  outline: none;
}

/* Labels */
.booking-page label {
  font-weight: 800;
  color: var(--text-dark);
}

/* Main booking CTA button */
.booking-page button,
.booking-page input[type="submit"],
.booking-page .rgxyz-book-btn,
.booking-page .book-now,
.booking-page .booking-submit {
  appearance: none;
  border: 2px solid var(--brand-brown) !important;
  background: var(--brand-brown) !important;
  color: #ffffff !important;
  padding: 14px 22px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  box-shadow: 0 10px 24px rgba(117,59,14,0.20) !important;
  cursor: pointer;
  transition: 0.2s ease;
}

.booking-page button:hover,
.booking-page input[type="submit"]:hover,
.booking-page .rgxyz-book-btn:hover,
.booking-page .book-now:hover,
.booking-page .booking-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Time slot buttons */
.booking-page .slot,
.booking-page .rgxyz-slot,
.booking-page .time-slot,
.booking-page .rgxyz-time-slot,
.booking-page [data-slot] {
  border-radius: 10px !important;
  border: 1px solid var(--border-light) !important;
  background: #ffffff !important;
  color: var(--text-dark) !important;
  padding: 10px 14px !important;
  transition: 0.2s ease;
}

.booking-page .slot:hover,
.booking-page .rgxyz-slot:hover,
.booking-page .time-slot:hover,
.booking-page .rgxyz-time-slot:hover,
.booking-page [data-slot]:hover {
  border-color: var(--brand-mint) !important;
  box-shadow: 0 0 0 3px rgba(5,255,172,0.12);
}

.booking-page .slot.is-selected,
.booking-page .rgxyz-slot.is-selected,
.booking-page .time-slot.is-selected,
.booking-page .rgxyz-time-slot.is-selected,
.booking-page [data-slot].is-selected,
.booking-page .slot.selected,
.booking-page .rgxyz-slot.selected,
.booking-page .time-slot.selected,
.booking-page .rgxyz-time-slot.selected {
  background: rgba(5,255,172,0.14) !important;
  border-color: rgba(5,255,172,0.9) !important;
  color: var(--text-dark) !important;
  font-weight: 800;
}

.booking-process-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.booking-process-grid {
  gap: 18px;
}

.booking-process-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.booking-process-card::before {
  display: none;
}

.booking-process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--brand-brown);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
}

.booking-process-card p {
  margin: 0;
  color: #4e433c;
  line-height: 1.7;
}

.booking-credibility-section {
  padding-top: 12px;
  padding-bottom: 36px;
}

.booking-credibility-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(37,28,21,0.07);
}

.booking-credibility-copy h2 {
  line-height: 1.15;
  color: #1f1a17;
}

.booking-credibility-copy p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #4e433c;
}

.booking-credibility-stats {
  display: grid;
  gap: 14px;
}

.booking-stat-box {
  padding: 20px;
  border-radius: 20px;
  background: #f7f5f2;
  border: 1px solid rgba(117,59,14,0.10);
}

.booking-stat-box strong {
  display: block;
  color: #1f1a17;
  margin-bottom: 6px;
  font-size: 1rem;
}

.booking-stat-box span {
  color: #5b4f46;
  line-height: 1.5;
  font-size: 0.94rem;
}

.booking-faq-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.booking-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.booking-faq-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.booking-faq-card::before {
  display: none;
}

.booking-faq-card p {
  margin: 0;
  color: #4e433c;
  line-height: 1.7;
}

.booking-final-cta {
  padding-top: 12px;
  padding-bottom: 72px;
}

.booking-final-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand-brown) 0%, #8c4c16 100%);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(37,28,21,0.18);
}

.booking-final-card h2,
.booking-final-card p {
  color: #ffffff;
}

.booking-final-card h2 {
  line-height: 1.15;
}

.booking-final-card p {
  margin: 0;
  max-width: 62ch;
  line-height: 1.75;
  opacity: 0.96;
}

.booking-scroll-button {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  white-space: nowrap;
}

.booking-scroll-button:hover {
  text-decoration: none;
}

/* ================================
   PURCHASE PAGE
================================ */

.purchase-page {
  background: #f7f5f2;
}

.purchase-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-brown);
}

.purchase-hero {
  padding: 64px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(255,173,4,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
}

.purchase-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.purchase-hero-copy h1 {
  max-width: 12ch;
  line-height: 1.15;
}

.purchase-hero-copy .hero-lede {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4a413a;
}

.purchase-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.purchase-trust-point {
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(37,28,21,0.06);
}

.purchase-trust-point strong {
  display: block;
  margin-bottom: 6px;
  color: #1f1a17;
  font-size: 0.98rem;
}

.purchase-trust-point span {
  display: block;
  color: #5a4e45;
  line-height: 1.55;
  font-size: 0.95rem;
}

.purchase-side-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.purchase-side-card::before {
  display: none;
}

.purchase-side-card-intro {
  padding: 28px;
}

.purchase-side-card-highlight {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-color: rgba(255,173,4,0.35);
}

.purchase-side-card p {
  line-height: 1.75;
  color: #4e433c;
}

.purchase-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #4f443d;
  line-height: 1.7;
}

.purchase-list li {
  margin-bottom: 10px;
}

.purchase-reassurance-strip-wrap {
  padding-top: 8px;
  padding-bottom: 20px;
}

.purchase-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.purchase-reassurance-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,173,4,0.14);
  border: 1px solid rgba(117,59,14,0.10);
}

.purchase-reassurance-item h3 {
  margin-bottom: 12px;
  color: #1f1a17;
}

.purchase-reassurance-item p {
  margin: 0;
  color: #4f443d;
  line-height: 1.7;
}

.purchase-overview-section {
  padding-top: 24px;
  padding-bottom: 16px;
}

.purchase-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.purchase-tool-section {
  padding-top: 16px;
  padding-bottom: 36px;
}

.purchase-tool-shell {
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(37,28,21,0.08);
  padding: 28px;
  overflow: hidden;
}

.purchase-tool-header {
  margin-bottom: 24px;
}

.purchase-tool-header h2 {
  margin-bottom: 14px;
  line-height: 1.15;
  color: #1f1a17;
}

.purchase-tool-header p {
  max-width: 68ch;
  line-height: 1.75;
}

.purchase-shortcode-wrap {
  scroll-margin-top: 120px;
}

.purchase-shortcode-wrap > *:first-child {
  margin-top: 0 !important;
}

.purchase-process-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.purchase-process-grid {
  gap: 18px;
}

.purchase-process-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.purchase-process-card::before {
  display: none;
}

.purchase-process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--brand-brown);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
}

.purchase-process-card p {
  margin: 0;
  color: #4e433c;
  line-height: 1.7;
}

.purchase-guidance-section {
  padding-top: 12px;
  padding-bottom: 36px;
}

.purchase-guidance-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(117,59,14,0.10);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(37,28,21,0.07);
}

.purchase-guidance-copy h2 {
  line-height: 1.15;
  color: #1f1a17;
}

.purchase-guidance-copy p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #4e433c;
}

.purchase-guidance-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.purchase-text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-brown);
}

.purchase-text-link:hover {
  text-decoration: underline;
}

.purchase-faq-section {
  padding-top: 36px;
  padding-bottom: 72px;
}

.purchase-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.purchase-faq-card {
  border-radius: 22px;
  border: 1px solid rgba(117,59,14,0.10);
  box-shadow: 0 12px 32px rgba(37,28,21,0.06);
}

.purchase-faq-card::before {
  display: none;
}

.purchase-faq-card p {
  margin: 0;
  color: #4e433c;
  line-height: 1.7;
}

/* Purchase page plugin clean-up */
.purchase-page .sharedaddy,
.purchase-page .sd-sharing,
.purchase-page .sd-like,
.purchase-page .jp-relatedposts,
.purchase-page .sharedaddy-wrap,
.purchase-page .post-meta,
.purchase-page .entry-meta,
.purchase-page .comments-area,
.purchase-page .comment-respond,
.purchase-page .likes-widget-placeholder,
.purchase-page .sharedaddy.sd-sharing-enabled,
.purchase-page .share-this,
.purchase-page .like-this {
  display: none !important;
}

/* Purchase plugin output styling */
.purchase-page .rgxyz-scp-wrap,
.purchase-page .rgxyz-checkout-pro,
.purchase-page .rgxyz-program-pricing-wrap,
.purchase-page .rgxyz-program-pricing {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.purchase-page .rgxyz-scp-section,
.purchase-page .rgxyz-program-section {
  margin-bottom: 44px !important;
}

.purchase-page .rgxyz-scp-section:last-child,
.purchase-page .rgxyz-program-section:last-child {
  margin-bottom: 0 !important;
}

.purchase-page .rgxyz-scp-section h2,
.purchase-page .rgxyz-program-section h2,
.purchase-page .rgxyz-scp-section h3,
.purchase-page .rgxyz-program-section h3 {
  color: #1f2a44;
}

.purchase-page .rgxyz-scp-intro,
.purchase-page .rgxyz-program-intro,
.purchase-page .rgxyz-scp-section > p,
.purchase-page .rgxyz-program-section > p {
  color: #5a4e45;
  line-height: 1.7;
}

.purchase-page .rgxyz-scp-grid,
.purchase-page .rgxyz-program-grid {
  gap: 24px !important;
  align-items: stretch !important;
}

.purchase-page .rgxyz-scp-card,
.purchase-page .rgxyz-program-card,
.purchase-page .pricing-card,
.purchase-page .program-card {
  position: relative !important;
  background: #ffffff !important;
  border: 1px solid rgba(17,17,17,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(37,28,21,0.06) !important;
  overflow: visible !important;
  padding-top: 34px !important;
}

.purchase-page .rgxyz-scp-card.is-featured,
.purchase-page .rgxyz-program-card.is-featured,
.purchase-page .pricing-card.is-featured,
.purchase-page .program-card.is-featured,
.purchase-page .rgxyz-scp-card.featured,
.purchase-page .rgxyz-program-card.featured,
.purchase-page .pricing-card.featured,
.purchase-page .program-card.featured {
  border-color: rgba(255,173,4,0.95) !important;
  box-shadow: 0 12px 32px rgba(255,173,4,0.14) !important;
}

.purchase-page .rgxyz-scp-badge,
.purchase-page .rgxyz-program-badge,
.purchase-page .pricing-badge,
.purchase-page .program-badge {
  position: absolute !important;
  top: -14px !important;
  right: 20px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 8px 18px !important;
  background: var(--brand-amber) !important;
  color: #1f1a17 !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 16px rgba(255,173,4,0.22) !important;
  white-space: nowrap !important;
}

.purchase-page .rgxyz-scp-card h3,
.purchase-page .rgxyz-program-card h3,
.purchase-page .pricing-card h3,
.purchase-page .program-card h3 {
  color: #1f2a44 !important;
  line-height: 1.2 !important;
}

.purchase-page .rgxyz-scp-price,
.purchase-page .rgxyz-program-price,
.purchase-page .pricing-price,
.purchase-page .program-price {
  color: #2d1405 !important;
  font-weight: 900 !important;
}

.purchase-page .rgxyz-scp-card p,
.purchase-page .rgxyz-program-card p,
.purchase-page .pricing-card p,
.purchase-page .program-card p,
.purchase-page .rgxyz-scp-card li,
.purchase-page .rgxyz-program-card li,
.purchase-page .pricing-card li,
.purchase-page .program-card li {
  color: #4f443d !important;
  line-height: 1.65 !important;
}

.purchase-page .rgxyz-scp-card ul,
.purchase-page .rgxyz-program-card ul,
.purchase-page .pricing-card ul,
.purchase-page .program-card ul {
  padding-left: 1.2rem !important;
}

.purchase-page .rgxyz-scp-card button,
.purchase-page .rgxyz-scp-card .button,
.purchase-page .rgxyz-scp-card a.button,
.purchase-page .rgxyz-scp-card a[href*="checkout"],
.purchase-page .rgxyz-program-card button,
.purchase-page .rgxyz-program-card .button,
.purchase-page .rgxyz-program-card a.button,
.purchase-page .rgxyz-program-card a[href*="checkout"],
.purchase-page .pricing-card button,
.purchase-page .pricing-card .button,
.purchase-page .pricing-card a.button,
.purchase-page .program-card button,
.purchase-page .program-card .button,
.purchase-page .program-card a.button {
  appearance: none !important;
  border: 2px solid var(--brand-brown) !important;
  background: var(--brand-brown) !important;
  color: #ffffff !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(117,59,14,0.20) !important;
  transition: 0.2s ease !important;
}

.purchase-page .rgxyz-scp-card button:hover,
.purchase-page .rgxyz-scp-card .button:hover,
.purchase-page .rgxyz-scp-card a.button:hover,
.purchase-page .rgxyz-scp-card a[href*="checkout"]:hover,
.purchase-page .rgxyz-program-card button:hover,
.purchase-page .rgxyz-program-card .button:hover,
.purchase-page .rgxyz-program-card a.button:hover,
.purchase-page .rgxyz-program-card a[href*="checkout"]:hover,
.purchase-page .pricing-card button:hover,
.purchase-page .pricing-card .button:hover,
.purchase-page .program-card button:hover,
.purchase-page .program-card .button:hover {
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

.purchase-page .rgxyz-scp-china-notice,
.purchase-page .rgxyz-china-notice,
.purchase-page .china-payment-notice {
  border-radius: 18px !important;
  border: 1px solid rgba(5,255,172,0.28) !important;
  background: rgba(5,255,172,0.08) !important;
  box-shadow: none !important;
}

.purchase-page .rgxyz-scp-modal,
.purchase-page .rgxyz-modal,
.purchase-page .terms-modal,
.purchase-page .refund-modal {
  border-radius: 18px !important;
}

/* Custom guidance cards on purchase page */
.purchase-guidance {
  padding: 40px 0;
}

.purchase-guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.purchase-guidance-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(37,28,21,0.06);
  transition: 0.2s ease;
}

.purchase-guidance-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5,255,172,0.6);
  box-shadow: 0 14px 32px rgba(37,28,21,0.08);
}

.purchase-guidance-card h3,
.purchase-guidance-card p,
.purchase-guidance-card .text-link {
  position: static !important;
  inset: auto !important;
  float: none !important;
  clear: both !important;
  transform: none !important;
}

.purchase-guidance-card h3 {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #1f2a44;
}

.purchase-guidance-card p {
  margin: 0 0 14px 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4f443d;
}

.purchase-guidance-card .text-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-brown);
}

.purchase-guidance-card .text-link:hover {
  text-decoration: underline;
}

/* Booking page clean-up */
.booking-page .sharedaddy,
.booking-page .sd-sharing,
.booking-page .sd-like,
.booking-page .jp-relatedposts,
.booking-page .sharedaddy-wrap,
.booking-page .post-meta,
.booking-page .entry-meta,
.booking-page .comments-area,
.booking-page .comment-respond,
.booking-page .likes-widget-placeholder,
.booking-page .sharedaddy.sd-sharing-enabled {
  display: none !important;
}

/* Plugin footer-ish clutter */
.booking-page .booking-page-share,
.booking-page .share-this,
.booking-page .like-this {
  display: none !important;
}

/* Small helper copy under tool */
.booking-page .muted small,
.booking-page small.muted {
  color: var(--text-muted);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid-3,
  .trust-grid,
  .about-kpi-row,
  .grid-4,
  .booking-trust-points,
  .booking-reassurance-grid,
  .booking-faq-grid,
  .purchase-trust-points,
  .purchase-reassurance-grid,
  .purchase-overview-grid,
  .purchase-faq-grid,
  .purchase-guidance-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 80px 0 60px;
  }

  .about-hero {
    padding: 80px 0 70px;
  }

  .about-hero::after {
    width: 220px;
    height: 220px;
    right: -30px;
    bottom: -20px;
    opacity: 0.07;
  }

  h1 {
    font-size: 2rem;
  }

  .button-outline {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }

  .cred-line {
    font-size: 0.92rem;
  }

  .hero-watermark {
    width: 168px;
    height: 168px;
    right: -10px;
    bottom: -10px;
    opacity: 0.32;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .booking-tool-shell,
  .purchase-tool-shell {
    padding: 18px;
  }

  .booking-page .booking-steps {
    grid-template-columns: 1fr !important;
  }

  .booking-hero-grid,
  .booking-layout-grid,
  .booking-credibility-card,
  .purchase-hero-grid,
  .purchase-guidance-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .booking-final-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-hero-copy h1,
  .purchase-hero-copy h1 {
    max-width: none;
  }

  .booking-side-card,
  .booking-process-card,
  .booking-faq-card,
  .booking-tool-shell-conversion,
  .booking-credibility-card,
  .booking-final-card,
  .purchase-side-card,
  .purchase-process-card,
  .purchase-faq-card,
  .purchase-guidance-card,
  .footer-cta-card {
    border-radius: 22px;
  }

  .footer-trust-line p {
    line-height: 1.4;
  }

  .purchase-page .rgxyz-scp-card,
  .purchase-page .rgxyz-program-card,
  .purchase-page .pricing-card,
  .purchase-page .program-card {
    padding-top: 38px !important;
  }

  .purchase-page .rgxyz-scp-badge,
  .purchase-page .rgxyz-program-badge,
  .purchase-page .pricing-badge,
  .purchase-page .program-badge {
    top: -12px !important;
    right: 16px !important;
    font-size: 0.76rem !important;
    padding: 7px 14px !important;
  }
}

@media (max-width: 767px) {
  .page-hero.booking-hero-conversion,
  .page-hero.purchase-hero {
    padding-top: 44px;
  }

  .booking-side-card,
  .booking-process-card,
  .booking-faq-card,
  .booking-tool-shell-conversion,
  .booking-credibility-card,
  .booking-final-card,
  .purchase-side-card,
  .purchase-process-card,
  .purchase-faq-card,
  .purchase-guidance-card,
  .purchase-tool-shell {
    padding: 22px;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-dot {
    margin: 0 6px;
  }

  .purchase-page .rgxyz-scp-badge,
  .purchase-page .rgxyz-program-badge,
  .purchase-page .pricing-badge,
  .purchase-page .program-badge {
    right: 12px !important;
    max-width: calc(100% - 24px) !important;
  }
}

@media (min-width: 900px) {
  .about-two-col {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}