/* ===== RAPID RESCORE - MAIN STYLESHEET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1A237E;
  --blue:       #1565C0;
  --accent:     #1E88E5;
  --cta:        #2E7D32;
  --cta-hover:  #1B5E20;
  --white:      #FFFFFF;
  --bg-gray:    #F5F7FA;
  --text:       #1A2B45;
  --text-light: #546E7A;
  --border:     #E0E7EF;
  --green:      #2E7D32;
}

body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); }
.rr-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.rr-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.rr-navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.rr-logo-link { display: flex; align-items: center; }
.rr-logo-img { height: 38px; width: auto; }

.rr-nav-links { display: flex; align-items: center; gap: 22px; }
.rr-nav-links a {
  font-size: 14px; font-weight: 700; color: var(--text);
  transition: color .2s; white-space: nowrap;
}
.rr-nav-links a:hover, .rr-nav-links a.active { color: var(--blue); }

.rr-btn-login {
  background: transparent !important;
  color: var(--navy) !important;
  font-weight: 800 !important; font-size: 14px;
  padding: 8px 16px; border-radius: 6px;
  border: 1.5px solid var(--border) !important;
  transition: all .2s !important;
}
.rr-btn-login:hover { border-color: var(--blue) !important; color: var(--blue) !important; }

.rr-btn-cta {
  background: var(--cta) !important;
  color: var(--white) !important;
  font-weight: 800 !important; font-size: 14px;
  padding: 10px 20px; border-radius: 6px;
  transition: background .2s !important;
  white-space: nowrap;
}
.rr-btn-cta:hover { background: var(--cta-hover) !important; }

.rr-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.rr-hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--navy); border-radius: 2px;
}
.rr-mobile-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  position: absolute; width: 100%; left: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 999;
}
.rr-mobile-menu.open { display: block; }
.rr-mobile-menu a {
  display: block; padding: 12px 0;
  font-weight: 700; font-size: 15px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.rr-mobile-menu a:last-child { border-bottom: none; }
.rr-mobile-menu .rr-btn-cta {
  display: block; text-align: center;
  margin-top: 12px; border-radius: 6px;
  padding: 12px; color: var(--white) !important;
}

/* ===== BUTTONS ===== */
.rr-btn {
  display: inline-block; padding: 14px 36px;
  border-radius: 8px; font-weight: 800; font-size: 16px;
  cursor: pointer; transition: all .2s; border: none;
}
.rr-btn-primary { background: var(--cta); color: var(--white); }
.rr-btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,.35);
}
.rr-btn-blue { background: var(--blue); color: var(--white); }
.rr-btn-blue:hover { background: var(--navy); transform: translateY(-1px); }
.rr-btn-white { background: var(--white); color: var(--navy); }
.rr-btn-white:hover { background: #f0f4ff; }
.rr-btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.rr-btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===== HERO SECTION ===== */
.rr-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--accent) 100%);
  color: var(--white); padding: 80px 0 90px; overflow: hidden;
}
.rr-hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.rr-hero-text h1 {
  font-size: 48px; font-weight: 900;
  line-height: 1.12; margin-bottom: 22px;
}
.rr-hero-text p {
  font-size: 18px; color: rgba(255,255,255,0.88);
  margin-bottom: 36px; line-height: 1.7; max-width: 520px;
}
.rr-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.rr-hero-img {
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  width: 100%; max-height: 420px; object-fit: cover;
}

/* ===== STATS STRIP ===== */
.rr-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.rr-stats-inner {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.rr-stat-item {
  text-align: center; padding: 12px 48px;
  border-right: 1px solid var(--border);
}
.rr-stat-item:last-child { border-right: none; }
.rr-stat-num {
  font-size: 34px; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.rr-stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; font-weight: 700; }

/* ===== FEATURES STRIP ===== */
.rr-features-strip {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.rr-features-strip-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px 36px;
}
.rr-feature-item {
  display: flex; align-items: center;
  gap: 10px; font-size: 15px; font-weight: 700;
  color: var(--text);
}
.rr-check-icon {
  width: 22px; height: 22px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rr-check-icon svg { width: 13px; height: 13px; fill: white; }

/* ===== SECTION HEADER ===== */
.rr-section-header {
  text-align: center; max-width: 720px;
  margin: 0 auto 60px;
}
.rr-section-header h2 {
  font-size: 38px; font-weight: 900;
  color: var(--navy); margin-bottom: 14px;
}
.rr-section-header p {
  font-size: 17px; color: var(--text-light); line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.rr-how-it-works { padding: 90px 0; background: var(--white); }
.rr-step-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
}
.rr-step-row:last-child { margin-bottom: 0; }
.rr-step-row.reverse { direction: rtl; }
.rr-step-row.reverse > * { direction: ltr; }
.rr-step-text {}
.rr-step-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E3F2FD; color: var(--blue);
  font-size: 13px; font-weight: 800; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 18px;
}
.rr-step-badge span {
  background: var(--blue); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.rr-step-text h3 {
  font-size: 30px; font-weight: 900;
  color: var(--navy); margin-bottom: 16px; line-height: 1.25;
}
.rr-step-text p {
  font-size: 16px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 24px;
}
.rr-step-features { list-style: none; }
.rr-step-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.rr-step-features li:last-child { border-bottom: none; }
.rr-step-features li::before {
  content: '✓'; color: var(--green); font-size: 16px; font-weight: 900; flex-shrink: 0;
}
.rr-step-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.rr-step-img-wrap img {
  width: 100%; height: 340px; object-fit: cover;
}

/* ===== TRUST / COVERED ===== */
.rr-trust {
  background: var(--bg-gray); padding: 80px 0;
  border-top: 1px solid var(--border);
}
.rr-trust-grid {
  display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-top: 40px;
}
.rr-trust-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
  display: flex; align-items: center; gap: 24px;
  max-width: 400px; width: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
}
.rr-trust-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.rr-trust-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rr-trust-icon.blue { background: #E3F2FD; }
.rr-trust-icon.green { background: #E8F5E9; }
.rr-trust-icon svg { width: 36px; height: 36px; }
.rr-trust-card h4 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.rr-trust-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* ===== BUNDLE / PROMO ===== */
.rr-bundle-section { background: var(--bg-gray); padding: 80px 0; border-top: 1px solid var(--border); }
.rr-bundle-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  max-width: 960px; margin: 0 auto;
}
.rr-bundle-left { background: var(--white); padding: 50px 48px; }
.rr-bundle-left h3 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 28px; }
.rr-bundle-includes { list-style: none; }
.rr-bundle-includes li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 700; color: var(--text);
}
.rr-bundle-includes li:last-child { border-bottom: none; }
.rr-bundle-includes li span.tick { color: var(--green); font-size: 18px; font-weight: 900; }
.rr-bundle-right {
  background: linear-gradient(160deg, #0D1B6E 0%, #1A237E 50%, #1565C0 100%);
  padding: 50px 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.rr-bundle-right h3 { font-size: 28px; font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.3; }
.rr-bundle-right p { font-size: 16px; color: rgba(255,255,255,0.82); margin-bottom: 32px; line-height: 1.7; }
.rr-bundle-right small { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 18px; display: block; }

/* ===== TESTIMONIALS ===== */
.rr-testimonials { padding: 90px 0; background: var(--white); }
.rr-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.rr-testi-card {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: transform .2s;
}
.rr-testi-card:hover { transform: translateY(-3px); }
.rr-testi-stars { color: #FF9800; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.rr-testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.rr-testi-author { display: flex; align-items: center; gap: 12px; }
.rr-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; flex-shrink: 0;
}
.rr-testi-name { font-size: 15px; font-weight: 800; color: var(--navy); }
.rr-testi-role { font-size: 13px; color: var(--text-light); }

/* ===== THEMES SECTION ===== */
.rr-themes-section { padding: 90px 0; background: var(--bg-gray); border-top: 1px solid var(--border); }
.rr-themes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rr-theme-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s;
}
.rr-theme-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(21,101,192,0.14); }
.rr-theme-preview { height: 200px; background: #E3F2FD; overflow: hidden; }
.rr-theme-preview img { width: 100%; height: 100%; object-fit: cover; }
.rr-theme-info { padding: 20px 22px; }
.rr-theme-info h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.rr-theme-info p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }

/* ===== BOTTOM CTA ===== */
.rr-bottom-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--accent) 100%);
  color: var(--white); padding: 100px 0; text-align: center;
}
.rr-bottom-cta h2 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.rr-bottom-cta p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.rr-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.rr-footer { background: var(--navy); color: var(--white); padding: 70px 0 0; }
.rr-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.rr-footer-logo { height: 36px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.rr-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 260px; }
.rr-footer-col h3 { font-size: 13px; font-weight: 800; margin-bottom: 18px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.rr-footer-col ul { list-style: none; }
.rr-footer-col ul li { margin-bottom: 10px; }
.rr-footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .2s; }
.rr-footer-col ul li a:hover { color: var(--white); }
.rr-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 26px 0; }
.rr-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.6; }

/* ===== PAGE BANNER ===== */
.rr-page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); padding: 70px 0 80px; text-align: center;
}
.rr-page-banner h1 { font-size: 44px; font-weight: 900; margin-bottom: 14px; }
.rr-page-banner p { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.rr-page-banner .rr-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.rr-page-banner .rr-breadcrumb a { color: rgba(255,255,255,0.7); }
.rr-page-banner .rr-breadcrumb a:hover { color: white; }

/* ===== SETUP GUIDE PAGE ===== */
.rr-guide-section { padding: 80px 0; background: var(--bg-gray); }
.rr-guide-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.rr-guide-step {
  background: var(--white); border-radius: 16px;
  padding: 40px 44px; margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border-left: 5px solid var(--blue);
  display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start;
}
.rr-guide-step-num {
  width: 64px; height: 64px; background: #E3F2FD;
  color: var(--blue); border-radius: 50%;
  font-size: 26px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rr-guide-step-content h3 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.rr-guide-step-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.rr-guide-step-content ul { list-style: none; }
.rr-guide-step-content ul li {
  font-size: 14px; color: var(--text); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.6;
}
.rr-guide-step-content ul li::before { content: '→'; color: var(--blue); font-weight: 900; flex-shrink: 0; }
.rr-guide-tip {
  background: #E3F2FD; border: 1px solid #BBDEFB;
  border-radius: 10px; padding: 16px 20px; margin-top: 14px;
  font-size: 14px; color: var(--blue); font-weight: 700;
}
.rr-guide-tip::before { content: '💡 Tip: '; }

/* ===== SUPPORT PAGE ===== */
.rr-support-section { padding: 80px 0; background: var(--bg-gray); }
.rr-support-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.rr-faq-item {
  background: var(--white); border-radius: 12px; padding: 24px 28px;
  margin-bottom: 14px; border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.rr-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.rr-faq-item h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.rr-faq-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== PRICING PAGE ===== */
.rr-pricing-section { padding: 80px 0; background: var(--bg-gray); }
.rr-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 1050px; margin: 0 auto; }
.rr-pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 18px; padding: 44px 36px; text-align: center;
  transition: all .2s; position: relative;
}
.rr-pricing-card.featured { border-color: var(--blue); box-shadow: 0 12px 48px rgba(21,101,192,0.18); transform: scale(1.04); }
.rr-pricing-badge {
  background: var(--blue); color: white; font-size: 12px; font-weight: 800;
  padding: 5px 18px; border-radius: 20px;
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
}
.rr-pricing-card h3 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.rr-pricing-price { font-size: 52px; font-weight: 900; color: var(--blue); margin: 22px 0 6px; line-height: 1; }
.rr-pricing-price sup { font-size: 26px; vertical-align: super; }
.rr-pricing-price small { font-size: 16px; color: var(--text-light); }
.rr-pricing-desc { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.rr-pricing-features { list-style: none; text-align: left; margin-bottom: 34px; }
.rr-pricing-features li {
  padding: 9px 0; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.rr-pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 15px; flex-shrink: 0; }

/* ===== CONTACT FORM ===== */
.rr-contact-section { padding: 80px 0; background: var(--bg-gray); }
.rr-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.rr-contact-info h2 { font-size: 30px; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.rr-contact-info p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.rr-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.rr-contact-icon { width: 50px; height: 50px; border-radius: 50%; background: #E3F2FD; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rr-contact-icon svg { width: 26px; height: 26px; }
.rr-contact-item h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.rr-contact-item p { font-size: 14px; color: var(--text-light); margin: 0; }
.rr-form-card { background: var(--white); border-radius: 18px; padding: 44px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.rr-form-card h3 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 28px; }
.rr-form-group { margin-bottom: 20px; }
.rr-form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rr-form-group input, .rr-form-group textarea, .rr-form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text); outline: none; background: var(--white);
  transition: border-color .2s;
}
.rr-form-group input:focus, .rr-form-group textarea:focus, .rr-form-group select:focus { border-color: var(--blue); }
.rr-form-group textarea { resize: vertical; min-height: 130px; }
.rr-form-submit {
  width: 100%; padding: 14px; background: var(--cta); color: white;
  border: none; border-radius: 8px; font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer; transition: background .2s, transform .2s;
}
.rr-form-submit:hover { background: var(--cta-hover); transform: translateY(-1px); }

/* ===== THEMES PAGE ===== */
.rr-themes-page { padding: 80px 0; background: var(--bg-gray); }
.rr-themes-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rr-nav-links { gap: 14px; }
}
@media (max-width: 960px) {
  /* Legacy classes */
  .rr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .rr-hero-text h1 { font-size: 36px; }
  .rr-hero-text { text-align: center; }
  .rr-hero-btns { justify-content: center; }
  .rr-step-row { grid-template-columns: 1fr; gap: 32px; }
  .rr-step-row.reverse { direction: ltr; }
  .rr-themes-grid { grid-template-columns: 1fr 1fr; }
  .rr-footer-grid { grid-template-columns: 1fr 1fr; }
  .rr-pricing-card.featured { transform: none; }
  .rr-bundle-grid { grid-template-columns: 1fr; }
  .rr-support-grid { grid-template-columns: 1fr; }
  .rr-contact-grid { grid-template-columns: 1fr; }
  .rr-guide-step { grid-template-columns: 1fr; }
  .rr-guide-step-num { margin-bottom: 0; }
  .rr-stats-inner { flex-wrap: wrap; }
  .rr-stat-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  /* New inline-style helper classes for index.php */
  .rr-hero-grid   { grid-template-columns: 1fr !important; gap: 40px !important; }
  .rr-step-grid   { grid-template-columns: 1fr !important; gap: 32px !important; }
  .rr-pricing-grid{ grid-template-columns: 1fr !important; max-width: 540px !important; margin-left: auto !important; margin-right: auto !important; }
  .rr-testi-grid  { grid-template-columns: 1fr !important; max-width: 480px !important; margin: 0 auto !important; }
  .rr-stats-row   { flex-wrap: wrap !important; }
  .rr-stats-row > div { border-right: none !important; border-bottom: 1px solid #E0E7EF !important; width: 50% !important; }
}
@media (max-width: 640px) {
  .rr-nav-links { display: none; }
  .rr-hamburger { display: flex; }
  .rr-hero-text h1 { font-size: 28px; }
  .rr-section-header h2 { font-size: 28px; }
  .rr-bottom-cta h2 { font-size: 28px; }
  .rr-footer-grid { grid-template-columns: 1fr; }
  .rr-themes-grid { grid-template-columns: 1fr; }
  .rr-page-banner h1 { font-size: 30px; }
  .rr-features-strip-inner { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  /* New classes */
  .rr-testi-grid  { max-width: 100% !important; }
  .rr-stats-row > div { width: 100% !important; }
  .rr-hero-grid h1 { font-size: 32px !important; }
}
