:root {
  --navy: #071f36;
  --navy-2: #0b2f50;
  --deep-navy: #031424;
  --green: #3b7f32;
  --green-2: #5a9d43;
  --lime: #8fcf5f;
  --mint: #eef4ec;
  --olive: #d9d8ad;
  --cream: #f7f8f2;
  --white: #ffffff;
  --text: #10233a;
  --muted: #d8e2ec;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--mint);
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 8px 24px rgba(3, 20, 36, 0.08);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 252px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.98rem;
}

.nav-links a:not(.btn) {
  opacity: 0.88;
}

.nav-links a:not(.btn):hover {
  opacity: 1;
  color: var(--green-2);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  padding: 15px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 10px 22px rgba(44, 120, 52, 0.18);
}

.nav-links .btn-primary {
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(44, 120, 52, 0.2);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 31, 54, 0.12);
}

/* GENERAL SECTIONS */

.section {
  padding: 84px 0;
}

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

.eyebrow {
  color: var(--green-2);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.section-subtitle {
  font-size: 1.12rem;
  max-width: 720px;
  margin: 0 auto 42px;
  color: rgba(16, 35, 58, 0.82);
}

/* FOOTER */

.footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

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

/* RESPONSIVE */

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .nav {
    height: 72px;
  }

  .logo {
    width: 195px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SIMPLE LOGO / SALES FOOTER SHARED */

.rrp-hero-logo {
  margin-bottom: 18px;
}

.rrp-hero-logo img {
  width: 185px;
  margin-top: 4px;
}

.rrp-footer {
  background: #fff;
  padding: 36px 0 28px;
  text-align: center;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.rrp-footer img {
  width: 155px;
  margin: 0 auto 18px;
}

.rrp-footer p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 1020px) {
  .rrp-hero-logo img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* SHARED SALES / CTA BUTTON UTILITY */

.rrp-main-btn {
  min-width: 245px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(59, 127, 50, 0.25);
}

@media (max-width: 720px) {
  .rrp-main-btn {
    width: 100%;
  }
}
