:root {
  --rd-crimson: #932315;
  --rd-red: #b71e0c;
  --rd-scarlet: #d43522;
  --rd-burnt: #cf521c;
  --rd-terracotta: #d76f2d;
  --rd-amber: #f0b140;
  --rd-cream: #fdf9f2;
  --rd-primary: var(--rd-scarlet);
  --rd-primary-dark: var(--rd-red);
  --rd-accent: var(--rd-amber);
  --rd-bg: #fff;
  --rd-bg-warm: var(--rd-cream);
  --rd-text: #1a1a1a;
  --rd-text-muted: #6b6b6b;
  --rd-border: #e8e0d8;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --section-pad: 5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 72px;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.row {
  --bs-gutter-x: 1.5rem;
  margin-right: 0;
  margin-left: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rd-text);
  background: var(--rd-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-scarlet);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--rd-amber);
  vertical-align: middle;
  margin-right: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--rd-text);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--rd-scarlet);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--rd-text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--rd-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.bg-warm {
  background: var(--rd-bg-warm);
}

.bg-brand {
  background: linear-gradient(135deg, var(--rd-crimson) 0%, var(--rd-scarlet) 50%, var(--rd-burnt) 100%);
}

.btn-primary-rd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  background: var(--rd-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--rd-primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary-rd:hover {
  background: var(--rd-primary-dark);
  border-color: var(--rd-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 53, 34, 0.35);
}
.btn-primary-rd.btn-lg-rd {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-outline-rd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  background: transparent;
  color: var(--rd-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--rd-primary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-rd:hover {
  background: var(--rd-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1.4rem;
  background: transparent;
  color: var(--rd-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid var(--rd-border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--rd-primary);
  color: var(--rd-primary);
}

.btn-white-rd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  background: #fff;
  color: var(--rd-scarlet);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-white-rd:hover {
  background: var(--rd-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.btn-ghost-white-rd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost-white-rd:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.rd-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rd-border);
  transition: box-shadow var(--transition);
}
.rd-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.rd-navbar .container-xl {
  height: 100%;
}
.rd-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.rd-navbar__brand {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}
.rd-navbar__brand .rd-navbar__logo {
  height: 50px;
  width: auto;
}
.rd-navbar__brand .brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rd-text);
  letter-spacing: -0.02em;
}
.rd-navbar__brand .brand-dot {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rd-scarlet);
  line-height: 1;
}
.rd-navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.rd-navbar__links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rd-text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.rd-navbar__links li a:hover {
  color: var(--rd-scarlet);
  background: rgba(212, 53, 34, 0.06);
}
.rd-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.rd-navbar__profile .profile-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.rd-navbar__profile .profile-trigger:hover {
  background: var(--rd-bg-warm);
}
.rd-navbar__profile .profile-trigger::after {
  display: none;
}
.rd-navbar__profile .profile-trigger i.bi-chevron-down {
  font-size: 0.7rem;
  color: var(--rd-text-muted);
}
.rd-navbar__profile .profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--rd-border);
}
.rd-navbar__profile .profile-avatar--initials {
  background: var(--rd-scarlet);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rd-navbar__profile .profile-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rd-text);
}

.rd-dropdown {
  border: 1px solid var(--rd-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  min-width: 200px;
}
.rd-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rd-text);
  transition: background var(--transition);
}
.rd-dropdown .dropdown-item i {
  font-size: 0.9rem;
  color: var(--rd-text-muted);
}
.rd-dropdown .dropdown-item:hover {
  background: var(--rd-bg-warm);
  color: var(--rd-scarlet);
}
.rd-dropdown .dropdown-item.text-danger {
  color: #dc3545 !important;
}
.rd-dropdown .dropdown-divider {
  border-color: var(--rd-border);
  margin: 0.35rem 0.5rem;
}

.rd-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.rd-hamburger:hover {
  background: var(--rd-bg-warm);
}
.rd-hamburger span {
  display: block;
  height: 2px;
  background: var(--rd-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.rd-mobile-drawer {
  max-width: 100vw;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100%;
  background: #fff;
  z-index: 1001;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}
.rd-mobile-drawer.is-open {
  right: 0;
}
.rd-mobile-drawer__inner {
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.rd-mobile-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rd-bg-warm);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--rd-text);
  transition: background var(--transition);
}
.rd-mobile-drawer__close:hover {
  background: var(--rd-border);
}
.rd-mobile-drawer__cta {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rd-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.rd-drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.rd-mobile-nav li {
  border-bottom: 1px solid var(--rd-border);
}
.rd-mobile-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--rd-text);
  transition: color var(--transition);
}
.rd-mobile-nav li a:hover {
  color: var(--rd-scarlet);
}

.rd-hero {
  position: relative;
  padding-top: var(--navbar-h);
  padding-bottom: 3rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rd-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(240, 177, 64, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 53, 34, 0.07) 0%, transparent 50%);
}
.rd-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 249, 242, 0) 0%, rgba(253, 249, 242, 0.3) 100%);
}
.rd-hero .container-xl {
  position: relative;
  z-index: 1;
}
.rd-hero .min-vh-hero {
  min-height: calc(100svh - var(--navbar-h));
  padding: 5rem 0 4rem;
}
.rd-hero__content {
  padding-right: 2rem;
}
.rd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.4rem 0.9rem;
  background: rgba(212, 53, 34, 0.08);
  border: 1px solid rgba(212, 53, 34, 0.18);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rd-scarlet);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.rd-hero__badge i {
  font-size: 0.9rem;
}
.rd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--rd-text);
  margin-bottom: 1.25rem;
}
.rd-hero__title em {
  font-style: italic;
  color: var(--rd-scarlet);
}
.rd-hero__subtitle {
  font-size: 1.1rem;
  color: var(--rd-text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.rd-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.rd-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.rd-hero__stats .stat-pill {
  display: flex;
  flex-direction: column;
}
.rd-hero__stats .stat-pill strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rd-text);
  line-height: 1;
}
.rd-hero__stats .stat-pill span {
  font-size: 0.75rem;
  color: var(--rd-text-muted);
  margin-top: 2px;
}
.rd-hero__stats .stat-divider {
  width: 1px;
  height: 32px;
  background: var(--rd-border);
}
.rd-hero__visual {
  position: relative;
  height: 520px;
}
.rd-hero__visual .hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.rd-hero__visual .hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}
.rd-hero__visual .hero-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rd-hero__visual .hero-card--back {
  width: 65%;
  height: 75%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  opacity: 0.85;
}
.rd-hero__visual .hero-card--front {
  width: 72%;
  height: 82%;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}
.rd-hero__visual .hero-card--front .hero-card__badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-scarlet);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.rd-hero__visual .hero-card--front .hero-card__badge i {
  color: var(--rd-scarlet);
}
.rd-hero__visual .hero-float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--rd-border);
  padding: 0.55rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rd-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: floatPill 3s ease-in-out infinite alternate;
}
.rd-hero__visual .hero-float-pill i {
  color: var(--rd-scarlet);
}
.rd-hero__visual .hero-float-pill--1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}
.rd-hero__visual .hero-float-pill--2 {
  top: 45%;
  right: -2%;
  animation-delay: 1.2s;
}
.rd-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.rd-hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rd-text-muted);
}
.rd-hero__scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rd-scarlet), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes floatPill {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}
.rd-search-bar {
  background: #fff;
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 10;
}

.rd-search-card {
  display: flex;
  align-items: center;
  background: var(--rd-cream);
  border: 1px solid var(--rd-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1060px;
  transform: translateY(-2.5rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.rd-search-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rd-scarlet);
}
.rd-search-card__label i {
  font-size: 1rem;
}

.rd-search-form {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 140px;
}
.search-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rd-text-muted);
  margin-bottom: 3px;
}
.search-field .rd-select {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rd-text);
  cursor: pointer;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 1.2rem;
}

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--rd-border);
  flex-shrink: 0;
}

.search-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
}
.search-btn span {
  display: none;
}
@media (min-width: 576px) {
  .search-btn span {
    display: inline;
  }
}

.rd-trust-bar {
  padding: 2.5rem 0;
  background: var(--rd-bg);
  border-bottom: 1px solid var(--rd-border);
  margin-top: -2.5rem;
}
.rd-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.rd-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rd-trust-bar .trust-item i {
  font-size: 1.5rem;
  color: var(--rd-scarlet);
}
.rd-trust-bar .trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rd-text);
}
.rd-trust-bar .trust-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--rd-text-muted);
}
.rd-trust-bar .trust-sep {
  width: 1px;
  height: 36px;
  background: var(--rd-border);
}

.rd-why__visual .why-img-wrap {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.rd-why__visual .why-img-wrap .why-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.rd-why__visual .why-img-wrap .why-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  border: 4px solid #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.rd-why__visual .why-img-wrap .why-badge-count {
  position: absolute;
  top: 2rem;
  left: -1rem;
  background: var(--rd-scarlet);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212, 53, 34, 0.3);
}
.rd-why__visual .why-img-wrap .why-badge-count .count-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.rd-why__visual .why-img-wrap .why-badge-count .count-label {
  font-size: 0.72rem;
  opacity: 0.9;
  margin-top: 3px;
}
.rd-why__content {
  padding-left: 1rem;
}
.rd-why__content .why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.rd-why__content .why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rd-why__content .why-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 53, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rd-why__content .why-feature__icon i {
  font-size: 1.1rem;
  color: var(--rd-scarlet);
}
.rd-why__content .why-feature h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--rd-text);
}
.rd-why__content .why-feature p {
  font-size: 0.875rem;
  color: var(--rd-text-muted);
  line-height: 1.6;
  margin: 0;
}

.rd-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.rd-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}
.rd-step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 53, 34, 0.12);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.rd-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rd-scarlet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(212, 53, 34, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rd-step__icon i {
  font-size: 1.4rem;
  color: #fff;
}
.rd-step:hover .rd-step__icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 36px rgba(212, 53, 34, 0.3);
}
.rd-step h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--rd-text);
}
.rd-step p {
  font-size: 0.85rem;
  color: var(--rd-text-muted);
  line-height: 1.6;
  margin: 0;
}

.rd-step-arrow {
  font-size: 1.25rem;
  color: var(--rd-terracotta);
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 0.5rem;
}
@media (max-width: 767px) {
  .rd-step-arrow {
    display: none;
  }
}

.rd-stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.rd-stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rd-stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: inline;
}
.rd-stat-item__suffix {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--rd-amber);
}
.rd-stat-item__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.rd-stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rd-border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}
.story-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.story-card__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.story-card__img-wrap:hover img {
  transform: scale(1.04);
}
.story-card__img-wrap .story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}
.story-card__img-wrap .story-card__overlay i {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.story-card__body {
  padding: 1.5rem;
}
.story-card__body h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--rd-text);
}
.story-card__body .story-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--rd-text-muted);
  margin-bottom: 0.85rem;
}
.story-card__body .story-card__location i {
  font-size: 0.78rem;
  color: var(--rd-terracotta);
}
.story-card__body p {
  font-size: 0.875rem;
  color: var(--rd-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.story-card__body .story-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rd-scarlet);
  letter-spacing: 0.04em;
}
.story-card--featured {
  border-color: var(--rd-amber);
  box-shadow: 0 8px 32px rgba(240, 177, 64, 0.18);
}

.plan-card {
  background: #fff;
  border: 1px solid var(--rd-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rd-amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-card__header {
  margin-bottom: 1.5rem;
}
.plan-card__header h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--rd-text);
}
.plan-card__header .plan-card__price span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rd-scarlet);
}
.plan-card__header .plan-card__price em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--rd-text-muted);
  margin-left: 4px;
}
.plan-card__features {
  list-style: none;
  margin-bottom: 2rem;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  color: var(--rd-text);
  border-bottom: 1px solid var(--rd-border);
}
.plan-card__features li:last-child {
  border-bottom: none;
}
.plan-card__features li i {
  font-size: 1rem;
  color: var(--rd-scarlet);
  flex-shrink: 0;
}
.plan-card__features li.muted {
  color: var(--rd-text-muted);
}
.plan-card__features li.muted i {
  color: var(--rd-border);
}
.plan-card--featured {
  border: 2px solid var(--rd-scarlet);
  box-shadow: 0 16px 48px rgba(212, 53, 34, 0.12);
}

.rd-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.rd-cta__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.rd-cta__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}
.rd-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== ABOUT VALUES GRID ===== */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  background: rgba(212, 53, 34, 0.06);
  border: 1px solid rgba(212, 53, 34, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rd-text);
}

.about-value i {
  font-size: 1rem;
  color: var(--rd-scarlet);
  flex-shrink: 0;
}

/* ===== VALUE CARDS ===== */
.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rd-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.value-card--accent {
  background: var(--rd-cream);
  border-color: rgba(212, 53, 34, 0.15);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 53, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card__icon i {
  font-size: 1.2rem;
  color: var(--rd-scarlet);
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--rd-text);
}

.value-card p {
  font-size: 0.875rem;
  color: var(--rd-text-muted);
  line-height: 1.65;
  margin: 0;
}

.rd-footer__main {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
}
.rd-footer__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rd-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.rd-footer__brand .rd-navbar__logo {
  height: 40px;
  width: auto;
}
.rd-footer__brand .brand-mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.rd-footer__brand .brand-dot {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rd-amber);
}
.rd-footer__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  flex: 1;
}
.rd-footer__nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.rd-footer__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.rd-footer__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0.3rem;
  flex-shrink: 0;
}
.rd-footer__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}
.rd-footer__social {
  display: flex;
  gap: 0.35rem;
}
.rd-footer__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  transition: all var(--transition);
}
.rd-footer__social a:hover {
  background: var(--rd-scarlet);
  border-color: var(--rd-scarlet);
  color: #fff;
  transform: translateY(-2px);
}
.rd-footer__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color var(--transition);
}
.rd-footer__phone i {
  color: var(--rd-amber);
}
.rd-footer__phone:hover {
  color: #fff;
}
.rd-footer__bottom {
  background: #0a0a0a;
  padding: 0.65rem 0;
}
.rd-footer__bottom p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-align: center;
}
.rd-footer__bottom p strong {
  color: rgba(255, 255, 255, 0.5);
}
.rd-footer__bottom p a {
  color: var(--rd-amber);
}
.rd-footer__bottom p a:hover {
  color: #fff;
}
@media (max-width: 767.98px) {
  .rd-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .rd-footer__brand {
    margin-bottom: 0.1rem;
    margin: 0 auto;
  }
  .rd-footer__nav {
    gap: 0rem;
    row-gap: 0.1rem;
    margin: 0 auto;
  }
  .rd-footer__nav a {
    font-size: 0.82rem;
    padding: 0.25rem 0.6rem;
  }
  .rd-footer__nav .rd-footer__divider {
    display: none;
  }
  .rd-footer__right {
    margin-left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .rd-footer__social {
    gap: 0.4rem;
  }
  .rd-footer__social a {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }
  .rd-footer__phone {
    font-size: 0.82rem;
  }
}

.rd-toast-container {
  position: fixed;
  top: calc(var(--navbar-h) + 16px);
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.rd-toast-container .rd-toast {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: #fff;
  border-left: 4px solid var(--rd-scarlet);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rd-text);
  min-width: 280px;
  max-width: 380px;
  animation: toastIn 0.3s ease forwards;
}
.rd-toast-container .rd-toast i {
  font-size: 1rem;
}
.rd-toast-container .rd-toast.toast-success {
  border-color: #22c55e;
}
.rd-toast-container .rd-toast.toast-success i {
  color: #22c55e;
}
.rd-toast-container .rd-toast.toast-error {
  border-color: var(--rd-scarlet);
}
.rd-toast-container .rd-toast.toast-error i {
  color: var(--rd-scarlet);
}
.rd-toast-container .rd-toast.toast-warning {
  border-color: var(--rd-amber);
}
.rd-toast-container .rd-toast.toast-warning i {
  color: var(--rd-amber);
}
.rd-toast-container .rd-toast.toast-info {
  border-color: #3b82f6;
}
.rd-toast-container .rd-toast.toast-info i {
  color: #3b82f6;
}
.rd-toast-container .rd-toast.toast-out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(24px);
  }
}
@media (max-width: 991.98px) {
  :root {
    --section-pad: 3.5rem;
  }
  .rd-search-card {
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-1.5rem);
    gap: 1rem;
  }
  .rd-search-form {
    flex-direction: column;
  }
  .rd-search-form .search-field {
    min-width: 100%;
  }
  .rd-search-form .search-divider {
    display: none;
  }
  .rd-search-form .search-btn {
    width: 100%;
    justify-content: center;
  }
  .rd-search-form .search-btn span {
    display: inline;
  }
  .rd-trust-bar__inner {
    gap: 1.5rem;
  }
  .trust-sep {
    display: none;
  }
  .rd-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .rd-cta__actions {
    justify-content: center;
  }
  .rd-stat-sep {
    display: none;
  }
  .rd-hero .min-vh-hero {
    padding-top: 3rem;
  }
  .rd-hero__content {
    padding-right: 0;
    text-align: center;
  }
  .rd-hero__cta {
    justify-content: center;
  }
  .rd-hero__stats {
    justify-content: center;
  }
  .rd-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .rd-why__content {
    padding-left: 0;
  }
  .rd-why__visual .why-img-wrap .why-badge-count {
    left: 1rem;
  }
}
@media (max-width: 575.98px) {
  :root {
    --section-pad: 2.5rem;
  }
  .rd-hero__title {
    font-size: 2.4rem;
  }
  .rd-stat-item {
    min-width: 130px;
  }
  .rd-steps {
    gap: 1rem;
  }
  .rd-step {
    min-width: 100%;
    max-width: 100%;
  }
  .rd-footer__top {
    padding: 3rem 0 2rem;
  }
}/*# sourceMappingURL=style.css.map */