:root {
  --brand-blue: #102842;
  --bg: #0d1f38;
  --bg-deep: #081627;
  --bg-card: #142f4d;
  --bg-card-2: #18365a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --brand-green: #2dd04a;
  --brand-green-dark: #24b13d;
  --text: #e9ecf1;
  --text-muted: rgba(233, 236, 241, 0.68);
  --text-dim: rgba(233, 236, 241, 0.45);
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.35);
  --font: var(--font-inter), system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 0%, #15345a 0%, transparent 60%),
    radial-gradient(circle at 15% 30%, rgba(45, 208, 74, 0.05), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(45, 208, 74, 0.04), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.rd-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.rd-h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--white);
}
.rd-h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
  margin: 0 0 16px;
  text-wrap: balance;
  color: var(--white);
}
.rd-h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--white);
}
.rd-lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.rd-accent { color: var(--brand-green); }

.rd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.rd-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(45, 208, 74, 0.2);
}

/* ---------- Buttons ---------- */
.rd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.rd-btn-lg { padding: 15px 28px; font-size: 15px; }
.rd-btn-block { width: 100%; justify-content: center; }
.rd-btn-green {
  background: var(--brand-green);
  color: #062b10;
  box-shadow: 0 8px 22px rgba(45, 208, 74, 0.25);
}
.rd-btn-green:hover { background: #3ee05a; transform: translateY(-1px); }
.rd-btn-ghost {
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.rd-btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.04); }

.rd-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--brand-green); font-size: 14px;
  transition: gap .2s ease;
}
.rd-link-arrow:hover { gap: 10px; }

/* ---------- Placeholders ---------- */
.rd-placeholder {
  background: repeating-linear-gradient(45deg, #1a3553 0 10px, #1f3d61 10px 20px);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rd-placeholder-label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
  padding: 5px 9px;
  border-radius: 4px;
}

/* ---------- HEADER ---------- */
.rd-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 22, 39, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.rd-topbar {
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.rd-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px;
}
.rd-topbar-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-green); font-weight: 600; }
.rd-header-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
}
.rd-logo img { height: 32px; width: auto; filter: invert(1) brightness(1.8); }
.rd-nav { display: flex; gap: 2px; flex: 1; }
.rd-nav-item { position: relative; }
.rd-nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 8px;
  font-weight: 500; font-size: 14px; color: var(--text-muted);
  transition: background .15s ease, color .15s ease;
}
.rd-nav-item > a:hover { background: rgba(255, 255, 255, 0.05); color: var(--white); }
.rd-nav-item .chev { font-size: 10px; opacity: .6; }
.rd-submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all .18s ease;
}
.rd-nav-item.has-children:hover .rd-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.rd-submenu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.rd-submenu a:hover { background: rgba(255, 255, 255, 0.05); color: var(--white); }
.rd-header-cta .rd-btn { padding: 10px 18px; font-size: 13px; }
.rd-hamburger { display: none; padding: 8px; color: var(--white); }
.rd-mobile-menu { display: none; padding: 16px 24px; border-top: 1px solid var(--border); background: var(--bg-deep); }
.rd-mobile-menu a { display: block; padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text-muted); }

/* ---------- HERO ---------- */
.rd-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.rd-hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center;
}
.rd-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.rd-hero-trust {
  display: flex; align-items: center; gap: 22px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.rd-trust-google { display: flex; align-items: center; gap: 12px; }
.rd-trust-title { font-weight: 700; font-size: 14px; }
.rd-trust-sub { font-size: 12px; opacity: .75; display: flex; align-items: center; gap: 6px; }
.rd-stars { color: #FBBC05; display: inline-flex; gap: 1px; }
.rd-trust-divider { width: 1px; height: 30px; background: var(--border); }
.rd-trust-grid {
  display: grid; grid-template-columns: repeat(2, auto); gap: 4px 22px;
  font-size: 12.5px;
}
.rd-trust-item { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.rd-trust-item svg { color: var(--brand-green); }

.rd-hero-right { position: relative; }
.rd-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
}
.rd-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.rd-hero-stats > div { text-align: center; padding: 6px; }
.rd-hero-stats strong { display: block; font-size: 20px; font-weight: 800; color: var(--brand-green); }
.rd-hero-stats span { font-size: 11px; color: var(--text-dim); }

.rd-hero-float {
  position: absolute; top: 24px; left: -24px;
  background: var(--bg-card-2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
  z-index: 2;
}
.rd-hero-float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(45, 208, 74, 0.15); color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rd-hero-float-title { font-weight: 700; font-size: 13px; }
.rd-hero-float-sub { font-size: 11px; color: var(--text-dim); }

/* ---------- Sections (all dark) ---------- */
.rd-section { padding: 80px 0; position: relative; }
.rd-section-head { margin-bottom: 40px; }
.rd-section-head-center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ---------- ABOUT ---------- */
.rd-about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px;
  align-items: center;
}
.rd-about-text p { color: var(--text-muted); margin: 0 0 14px; font-size: 16px; }
.rd-about-text p a { color: var(--brand-green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.rd-about-text strong { color: var(--white); }
.rd-about-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.rd-section-alt { background: var(--bg-deep); }
.rd-section-alt::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,208,74,0.18), transparent);
}

.rd-loc-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 12px; }
.rd-loc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-muted); font-size: 15.5px; line-height: 1.55;
}
.rd-loc-list li strong { color: var(--white); }
.rd-loc-list-icon {
  flex-shrink: 0; margin-top: 2px;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(45, 208, 74, 0.15); color: var(--brand-green);
  display: inline-flex; align-items: center; justify-content: center;
}

.rd-ref-strip { margin-top: 60px; width: 100%; }
.rd-ref-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--text-dim);
  text-align: center; margin-bottom: 22px;
}
.rd-ref-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.rd-ref-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: rd-marquee 40s linear infinite;
  will-change: transform;
}
.rd-ref-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.rd-ref-logo:hover { opacity: 1; }
.rd-ref-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes rd-marquee {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rd-ref-marquee-track { animation: none; }
}

/* ---------- SERVICES ---------- */
.rd-services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.rd-service-card {
  position: relative;
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.rd-service-card:hover {
  transform: translateY(-3px);
  background: var(--bg-card-2);
  border-color: var(--border-strong);
}
.rd-service-num {
  position: absolute; top: 20px; right: 28px;
  font-size: 54px; font-weight: 800; color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.04em;
}
.rd-service-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(45, 208, 74, 0.12); color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.rd-service-card p { color: var(--text-muted); margin: 0 0 16px; font-size: 15px; }

/* ---------- CHALLENGES ---------- */
.rd-challenges-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.rd-challenges-right { display: flex; flex-direction: column; gap: 14px; }
.rd-challenge-item {
  display: grid; grid-template-columns: auto auto 1fr; gap: 16px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
}
.rd-challenge-item:hover { background: var(--bg-card-2); }
.rd-challenge-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--brand-green);
  padding-top: 2px;
}
.rd-challenge-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(45, 208, 74, 0.12); color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
}
.rd-challenge-text p { color: var(--text-muted); margin: 0; font-size: 14px; }

/* ---------- TESTIMONIALS ---------- */
.rd-testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 960px; margin: 0 auto;
}
.rd-testi-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.rd-testi-card:hover, .rd-testi-card.active { border-color: var(--brand-green); transform: translateY(-3px); }
.rd-testi-stars { color: #FBBC05; display: flex; gap: 2px; margin-bottom: 12px; }
.rd-testi-text { color: var(--text); font-size: 15px; line-height: 1.6; flex: 1; margin: 0 0 20px; }
.rd-testi-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.rd-testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
}
.rd-testi-name { font-weight: 700; font-size: 14px; color: var(--white); }
.rd-testi-verify { font-size: 12px; color: var(--text-dim); }
.rd-testi-cta { text-align: center; margin-top: 36px; }

/* ---------- COSTS ---------- */
.rd-costs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.rd-costs-text p { color: var(--text-muted); margin: 0 0 28px; }
.rd-costs-text strong { color: var(--white); }
.rd-cost-range {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 22px; margin-bottom: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rd-cost-range-label span { display: block; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.rd-cost-range-label strong { font-size: 20px; color: var(--brand-green); }
.rd-cost-range-label-end { text-align: right; }
.rd-cost-bar {
  height: 6px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.rd-cost-bar-fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--brand-green), #57e070);
}
.rd-costs-media { position: relative; }
.rd-costs-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--bg-card-2); color: var(--white);
  padding: 14px 18px; border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.rd-costs-badge svg { color: var(--brand-green); }
.rd-costs-badge strong { display: block; font-size: 14px; }
.rd-costs-badge span { font-size: 12px; color: var(--text-dim); }

/* ---------- SERVICE AREAS ---------- */
.rd-tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px;
  margin-top: 20px;
}
.rd-tab {
  padding: 9px 20px; border-radius: 999px;
  font-weight: 600; font-size: 13px; color: var(--text-muted);
  transition: all .2s ease;
}
.rd-tab.active { background: var(--brand-green); color: #062b10; }
.rd-cities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.rd-city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .2s ease;
  display: block;
}
.rd-city-card:hover { transform: translateY(-3px); border-color: var(--brand-green); }
.rd-city-img { aspect-ratio: 16/10; border-radius: 0; }
.rd-city-body { padding: 20px 22px; }
.rd-city-eyebrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--brand-green); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.rd-city-body h3 { font-size: 14px; line-height: 1.3; margin: 0 0 12px; color: var(--text-muted); font-weight: 500; }
.rd-city-body h3 span { color: var(--white); font-size: 20px; font-weight: 800; display: inline-block; margin-top: 2px; }

/* ---------- STATS ---------- */
.rd-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1000px; margin: 0 auto;
}
.rd-stat-card {
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rd-stat-num {
  font-size: 36px; font-weight: 800; color: var(--brand-green);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.rd-stat-label { font-size: 13px; color: var(--text-muted); }

/* ---------- TEAM ---------- */
.rd-team-vehicle {
  position: relative;
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.rd-team-vehicle-caption {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.rd-team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 1000px; margin: 0 auto;
}
.rd-team-card { text-align: center; }
.rd-team-photo {
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  margin: 0 auto 14px; max-width: 180px;
  border: 2px solid var(--border-strong);
}
.rd-team-name { font-weight: 700; font-size: 15px; color: var(--white); margin: 0 0 2px; }
.rd-team-role { font-size: 12px; color: var(--text-dim); }

/* ---------- FOUNDER ---------- */
.rd-founder {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px;
  align-items: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.rd-founder-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.rd-founder-leads { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rd-founder-lead { text-align: center; }
.rd-founder-lead-photo { max-width: 180px; margin: 0 auto; }
.rd-founder-name { font-size: 18px; font-weight: 800; color: var(--white); margin-top: 14px; }
.rd-founder-role { font-size: 12px; color: var(--brand-green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.rd-founder p { color: var(--text-muted); font-size: 16px; margin: 0 0 14px; }

/* ---------- FAQ ---------- */
.rd-faq-inner { max-width: 780px; margin: 0 auto; }
.rd-faq-list { display: flex; flex-direction: column; gap: 10px; }
.rd-faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s ease;
}
.rd-faq-item.open { border-color: var(--brand-green); }
.rd-faq-item button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px; font-weight: 600; text-align: left;
  color: var(--white);
}
.rd-faq-item button:hover { background: var(--bg-card-2); }
.rd-faq-item.open button svg { color: var(--brand-green); }
.rd-faq-a {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.rd-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.rd-contact-left p { color: var(--text-muted); margin: 0 0 28px; }
.rd-contact-facts { display: flex; flex-direction: column; gap: 12px; }
.rd-contact-fact {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rd-contact-fact > svg { color: var(--brand-green); flex-shrink: 0; }
.rd-contact-fact span { display: block; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.rd-contact-fact strong { font-size: 14px; color: var(--white); }

.rd-contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.rd-contact-form h3 { margin: 0 0 22px; }
.rd-field { margin-bottom: 14px; }
.rd-field label {
  display: block; font-size: 12px; font-weight: 600;
  margin-bottom: 6px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.rd-field input, .rd-field select, .rd-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color .15s ease;
}
.rd-field input:focus, .rd-field select:focus, .rd-field textarea:focus {
  outline: none; border-color: var(--brand-green);
}
.rd-field textarea { resize: vertical; }
.rd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rd-form-note { font-size: 11px; color: var(--text-dim); text-align: center; margin: 10px 0 0; }

/* ---------- FOOTER ---------- */
.rd-footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 70px 0 24px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}
.rd-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* Elementor container override: when a footer-grid class is used on an
   Elementor flex container, force the grid layout. */
.elementor-element.rd-footer-grid > .e-con-inner,
.e-con.rd-footer-grid > .e-con-inner,
.e-con-inner > .e-con.rd-footer-grid,
.elementor .rd-footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  gap: 36px !important;
}
@media (max-width: 960px) {
  .elementor .rd-footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .elementor .rd-footer-grid { grid-template-columns: 1fr !important; }
}
.rd-footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--white); font-size: 17px; letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.rd-footer-logo img { height: 26px; width: auto; filter: invert(1) brightness(2); }
.rd-footer-tag { line-height: 1.6; max-width: 34ch; }
.rd-footer h4 { font-size: 12px; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; }
.rd-footer p { margin: 0 0 5px; line-height: 1.7; }
.rd-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.rd-footer a:hover { color: var(--brand-green); }
.rd-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: var(--text-dim);
}
.rd-footer-links { display: flex; gap: 22px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .rd-nav { display: none; }
  .rd-hamburger { display: block; }
  .rd-header-inner { justify-content: space-between; }
  .rd-header-cta { display: none; }
  .rd-mobile-menu { display: block; }
  .rd-hero-inner, .rd-about-grid, .rd-challenges-grid, .rd-costs-grid, .rd-contact-grid, .rd-founder { grid-template-columns: 1fr; gap: 40px; }
  .rd-services-grid, .rd-testi-grid, .rd-cities-grid, .rd-team-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-founder-leads { grid-template-columns: 1fr 1fr; }
  .rd-stats { grid-template-columns: repeat(2, 1fr); }
  .rd-ref-grid { grid-template-columns: repeat(4, 1fr); }
  .rd-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .rd-section { padding: 50px 0; }
  .rd-hero { padding: 40px 0 70px; }
  .rd-services-grid, .rd-testi-grid, .rd-cities-grid, .rd-team-grid, .rd-stats, .rd-field-row { grid-template-columns: 1fr; }
  .rd-ref-grid { grid-template-columns: repeat(3, 1fr); }
  .rd-footer-grid { grid-template-columns: 1fr; }
  .rd-footer-bottom { flex-direction: column; gap: 10px; }
  .rd-topbar-inner { font-size: 12px; }
  .rd-topbar-inner span:first-child { display: none; }
  .rd-hero-float { position: static; left: auto; top: auto; transform: none; max-width: none; margin-top: 14px; }
  .rd-contact-form, .rd-founder { padding: 24px; }
}
