/* ============================================
   VMITR — READYMAG-INSPIRED THEME
   Clean white + yellow nav + orange/green accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== LOADING SCREEN ===== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.6s ease;
}

#loader-wrapper.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

#loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#loader-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  animation: logoFadeIn 1s ease-out;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 79, 0, 0.1);
  border-top: 3px solid #FF4F00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ===== STICKY NAV ===== */
.rm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rm-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.rm-nav-logo a {
  display: flex;
  align-items: center;
}

.rm-nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.rm-nav-logo img:hover {
  transform: scale(1.06);
}

.rm-nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #FFE500;
  border-radius: 50px;
  padding: 4px 8px;
  box-shadow: 0 2px 12px rgba(255, 229, 0, 0.25);
}

.rm-nav-center a {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  color: #1a1a1a;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.rm-nav-center a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.rm-nav-center a.active {
  background: rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.rm-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rm-nav-right .login-btn {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.25s;
}

.rm-nav-right .login-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.rm-nav-right .signup-btn {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #FF4F00;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(255, 79, 0, 0.2);
}

.rm-nav-right .signup-btn:hover {
  background: #e64500;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 79, 0, 0.3);
}

/* ===== MOBILE NAV TOGGLE ===== */
.rm-mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.rm-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px auto;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO SHOWCASE ===== */
.rm-hero {
  padding-top: 72px;
  overflow: hidden;
  background: #fff;
}

.rm-showcase {
  padding: 16px 0 0;
}

.rm-showcase-row {
  display: flex;
  gap: 14px;
  padding: 0 32px;
  margin-bottom: 14px;
  width: max-content;
}

.rm-showcase-row.scroll-left {
  animation: scrollLeft 50s linear infinite;
}

.rm-showcase-row.scroll-right {
  animation: scrollRight 55s linear infinite;
}

.rm-showcase-card {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rm-showcase-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rm-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rm-showcase-card:hover img {
  transform: scale(1.08);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ===== HEADLINE SECTION ===== */
.rm-headline {
  text-align: center;
  padding: 72px 32px 56px;
  max-width: 920px;
  margin: 0 auto;
}

.rm-headline h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 36px;
  letter-spacing: -1.5px;
}

.rm-cta-btn {
  display: inline-block;
  background: #FF4F00;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 79, 0, 0.2);
  letter-spacing: 0.3px;
}

.rm-cta-btn:hover {
  background: #e64500;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 79, 0, 0.35);
}

.rm-cta-btn:active {
  transform: translateY(-1px);
}

/* ===== FEATURE CARDS ===== */
.rm-features {
  padding: 32px 32px 72px;
  max-width: 1240px;
  margin: 0 auto;
}

.rm-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rm-feature-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rm-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.rm-feature-card.orange-card {
  background: linear-gradient(145deg, #FF9500, #FF6B00);
  color: #fff;
}

.rm-feature-card.green-card {
  background: linear-gradient(145deg, #1a6e1f, #0d3d10);
  color: #fff;
}

.rm-feature-card.light-card {
  background: #f5f5f5;
  color: #1a1a1a;
}

.rm-feature-card .card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.rm-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.rm-feature-card p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 440px;
}

/* ===== FULL-WIDTH BANNER ===== */
.rm-banner {
  margin: 0 32px 72px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  padding: 52px;
}

.rm-banner.dark-green {
  background: linear-gradient(155deg, #0d3d10 0%, #1a5c1e 45%, #145218 100%);
}

.rm-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  max-width: 550px;
  position: relative;
  z-index: 2;
}

.rm-banner .geo-shapes {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.rm-banner .geo-shapes .shape {
  position: absolute;
  border-radius: 10px;
  transition: transform 0.6s ease;
}

.rm-banner .geo-shapes .shape-1 {
  width: 320px;
  height: 210px;
  background: rgba(10, 74, 14, 0.6);
  bottom: 8%;
  right: 8%;
  transform: rotate(-8deg);
}

.rm-banner .geo-shapes .shape-2 {
  width: 260px;
  height: 190px;
  background: rgba(20, 92, 24, 0.5);
  bottom: 22%;
  right: 28%;
  transform: rotate(5deg);
}

.rm-banner .geo-shapes .shape-3 {
  width: 220px;
  height: 150px;
  background: rgba(26, 110, 31, 0.4);
  bottom: 35%;
  right: 4%;
  transform: rotate(-3deg);
}

.rm-banner:hover .shape-1 {
  transform: rotate(-6deg) translateY(-4px);
}

.rm-banner:hover .shape-2 {
  transform: rotate(7deg) translateX(4px);
}

.rm-banner:hover .shape-3 {
  transform: rotate(-1deg) translateY(-6px);
}

/* ===== ABOUT SECTION ===== */
.rm-about {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.rm-about-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #999;
  margin-bottom: 28px;
}

.rm-about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.rm-about-grid h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  color: #1a1a1a;
}

.rm-about-grid h2 span {
  color: #FF4F00;
}

.rm-about-grid .about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* ===== SERVICES LIST ===== */
.rm-services {
  padding: 40px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.rm-services-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #999;
  margin-bottom: 20px;
}

.rm-services h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 48px;
  color: #1a1a1a;
}

.rm-services h2 span {
  color: #FF4F00;
}

.rm-service-item {
  padding: 32px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease;
  cursor: default;
}

.rm-service-item:first-child {
  border-top: 1px solid #eee;
}

.rm-service-item:hover {
  padding-left: 16px;
  border-bottom-color: #FF4F00;
}

.rm-service-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.rm-service-item p {
  font-size: 15px;
  color: #777;
  max-width: 500px;
  line-height: 1.6;
}

/* ===== STATS ROW ===== */
.rm-stats {
  padding: 64px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.rm-stat {
  text-align: center;
}

.rm-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF4F00, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rm-stat .num span {
  -webkit-text-fill-color: #1a5c1e;
}

.rm-stat .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-top: 8px;
  font-weight: 500;
}

/* ===== TEAM ===== */
.rm-team {
  padding: 80px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.rm-team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.rm-team-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
}

.rm-team-header h2 span {
  color: #FF4F00;
}

.rm-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.rm-team-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  cursor: pointer;
}

.rm-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.rm-team-card:hover img {
  transform: scale(1.07);
}

.rm-team-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.rm-team-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.rm-team-card .overlay h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rm-team-card .overlay p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.rm-cta-section {
  padding: 80px 32px 100px;
  text-align: center;
}

.rm-cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.22;
  max-width: 880px;
  margin: 0 auto 36px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.rm-cta-section h2 span {
  color: #FF4F00;
}

/* ===== ICON BOXES ===== */
.rm-iconboxes {
  padding: 40px 32px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.rm-iconbox {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.rm-iconbox:hover {
  border-color: #FF4F00;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.rm-iconbox img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.rm-iconbox h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.rm-iconbox p {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
}

/* ===== CONTACT SPLIT ===== */
.rm-contact-split {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
}

.rm-contact-text {
  background: linear-gradient(135deg, #1a5c1e, #0d3d10);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rm-contact-text .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.rm-contact-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.rm-contact-text h2 span {
  color: #FF4F00;
}

.rm-contact-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 400px;
}

.rm-contact-image {
  position: relative;
  overflow: hidden;
}

.rm-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PARTNERS ===== */
.rm-partners {
  padding: 60px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.rm-partners-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rm-partner {
  opacity: 0.4;
  transition: opacity 0.3s ease;
  flex: 0 0 auto;
}

.rm-partner:hover {
  opacity: 0.8;
}

.rm-partner img {
  height: 48px;
}

/* ===== TAPE BANNERS ===== */
.rm-tapes {
  padding: 40px 0;
  overflow: hidden;
}

.rm-tape {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  width: max-content;
}

.rm-tape.scroll-left {
  animation: scrollLeft 30s linear infinite;
}

.rm-tape.scroll-right {
  animation: scrollRight 35s linear infinite;
}

.rm-tape-item {
  padding: 10px 24px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
  transition: all 0.3s;
}

.rm-tape-item:hover {
  border-color: #FF4F00;
  color: #FF4F00;
}

.rm-tape-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  padding: 8px 24px;
}

/* ===== FOOTER ===== */
.rm-footer {
  background: #1a1a1a;
  color: #999;
  padding: 56px 40px 28px;
}

.rm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rm-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.rm-footer-top h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.rm-footer-top h3 span {
  background: linear-gradient(135deg, #FF4F00, #1a5c1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rm-footer-links {
  display: flex;
  gap: 28px;
}

.rm-footer-links a {
  font-size: 14px;
  color: #888;
  transition: color 0.3s;
}

.rm-footer-links a:hover {
  color: #fff;
}

.rm-footer-logo {
  margin-bottom: 20px;
}

.rm-footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.rm-footer-logo img:hover {
  transform: scale(1.06);
}

.rm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.rm-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rm-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== VIDEO SECTION ===== */
.rm-video-section {
  margin: 0 32px 80px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  /* 16:9 Aspect Ratio Container */
  width: calc(100% - 64px);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.rm-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rm-video-container iframe,
.rm-video-container #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-controls {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.video-btn {
  background: #FF4F00;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 79, 0, 0.3);
}

.video-btn.outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.video-btn:hover {
  transform: translateY(-2px);
  background: #e64500;
}

.video-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .rm-video-section {
    margin: 0 20px 48px;
    width: calc(100% - 40px);
  }

  .rm-video-overlay h2 {
    font-size: 32px;
  }

  .rm-video-overlay p {
    font-size: 15px;
  }

  .video-controls {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .video-btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rm-features-grid {
    gap: 16px;
  }

  .rm-feature-card {
    min-height: 320px;
    padding: 32px;
  }

  .rm-about-grid h2 {
    font-size: 42px;
  }

  .rm-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

@media (max-width: 768px) {
  .rm-nav {
    padding: 10px 20px;
  }

  .rm-nav-center {
    display: none;
  }

  .rm-mobile-toggle {
    display: block;
  }

  .rm-showcase-card {
    flex: 0 0 240px;
    height: 160px;
  }

  .rm-headline {
    padding: 48px 20px 40px;
  }

  .rm-features {
    padding: 20px 20px 48px;
  }

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

  .rm-feature-card {
    min-height: 280px;
  }

  .rm-banner {
    margin: 0 20px 48px;
    padding: 36px;
    min-height: 300px;
  }

  .rm-about {
    padding: 48px 20px;
  }

  .rm-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rm-about-grid h2 {
    font-size: 36px;
  }

  .rm-services {
    padding: 24px 20px 48px;
  }

  .rm-services h2 {
    font-size: 32px;
  }

  .rm-stats {
    flex-direction: column;
    gap: 36px;
    padding: 48px 20px;
  }

  .rm-stat .num {
    font-size: 48px;
  }

  .rm-team {
    padding: 48px 20px;
  }

  .rm-team-header h2 {
    font-size: 32px;
  }

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

  .rm-cta-section {
    padding: 48px 20px 64px;
  }

  .rm-iconboxes {
    padding: 24px 20px 48px;
  }

  .rm-iconboxes-grid {
    grid-template-columns: 1fr;
  }

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

  .rm-contact-image {
    min-height: 260px;
  }

  .rm-footer {
    padding: 40px 20px 24px;
  }

  .rm-footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .rm-footer-top h3 {
    font-size: 28px;
  }

  .rm-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .rm-showcase-card {
    flex: 0 0 200px;
    height: 130px;
  }

  .rm-headline h1 {
    font-size: 28px;
  }

  .rm-feature-card h3 {
    font-size: 22px;
  }

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