:root {
  --green-dark: #0B3D2E;
  --green-mid: #1A5C42;
  --green-light: #E8F5EE;
  --gold: #C9A84C;
  --gold-hover: #B8922A;
  --gold-light: #F5EDD3;
  --cream: #F8F5EF;
  --text-dark: #1A1A1A;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E0D5;
  --success: #16A34A;
  --danger: #DC2626;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F8F5EF;
  color: #1A1A1A;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Londrina Solid", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.icon-gold {
  color: var(--gold);
}

.icon-arrow-dark {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

.icon-arrow-gold {
  color: var(--gold);
  font-size: 18px;
}

.link-green {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.link-green:hover {
  color: var(--green-dark);
}

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px !important;
  padding: 12px 28px !important;
  font-size: 13.5px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(11, 61, 46, 0.15);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-sm {
  padding: 8px 18px !important;
  font-size: 12px !important;
}
.btn.btn-lg {
  padding: 14px 32px !important;
  font-size: 14.5px !important;
}

@media (max-width: 767.98px) {
  .btn {
    padding: 9px 20px !important;
    font-size: 11.5px !important;
  }
  .btn.btn-lg {
    padding: 11px 24px !important;
    font-size: 13px !important;
  }
}
.btn-gold {
  background-color: #C9A84C !important;
  color: #0B3D2E !important;
  border: none !important;
}
.btn-gold:hover {
  background-color: #B8922A !important;
}

.btn-outline-gold {
  border: 2px solid #C9A84C !important;
  color: #C9A84C !important;
  background: transparent !important;
}
.btn-outline-gold:hover {
  background: #C9A84C !important;
  color: #0B3D2E !important;
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #fff !important;
  background: transparent !important;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.btn-outline-dark {
  border: 2px solid var(--green-dark) !important;
  color: var(--green-dark) !important;
  background: transparent !important;
}
.btn-outline-dark:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
}

.btn-gold-outline {
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}
.btn-gold-outline:hover {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}

.btn-arrow {
  width: 46px;
  height: 46px;
  background: #C9A84C;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-arrow:hover {
  background: #B8922A;
  transform: scale(1.1);
}
.btn-arrow.btn-arrow-dark {
  background: #0B3D2E;
}
.btn-arrow.btn-arrow-dark:hover {
  background: #1A5C42;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 10px;
}
.section-label.section-label-light {
  color: rgba(255, 255, 255, 0.55);
}

.badge-verify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid #C9A84C;
  cursor: default;
  white-space: nowrap;
  line-height: 1.5;
}
.badge-verify.badge-ofa {
  background: #1A5C42;
  color: #fff;
}
.badge-verify.badge-genetics {
  background: #1B3A6B;
  color: #fff;
}
.badge-verify.badge-registration {
  background: #5C2A1A;
  color: #fff;
}
.badge-verify.badge-champion {
  background: #5C4A1A;
  color: #fff;
}

.top-announcement-bar {
  background: var(--gold);
  color: #03140F;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}
.top-announcement-bar .badge {
  background-color: #03140F;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 8px;
}
.top-announcement-bar .code-text {
  background: rgba(255, 255, 255, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .top-announcement-bar {
    padding: 6px 0 !important;
    font-size: 10px !important;
  }
  .top-announcement-bar .badge {
    font-size: 8px !important;
    padding: 2px 5px !important;
    margin-right: 4px !important;
  }
}

.site-nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  padding: 2px 0;
  transition: all 0.3s ease;
  z-index: 1030;
}
.site-nav.shadow {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(11, 61, 46, 0.06);
  border-bottom-color: rgba(11, 61, 46, 0.12);
  padding: 8px 0;
}

.site-nav__logo {
  max-height: 85px;
  width: auto;
  transition: transform 0.25s ease;
}
.site-nav__logo:hover {
  transform: scale(1.02);
}

.site-nav__toggler-icon {
  font-size: 28px;
  color: var(--green-dark);
}

.tb-nav-link {
  color: var(--green-dark) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.25s ease;
}
.tb-nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--green-dark);
  transition: width 0.25s ease, left 0.25s ease;
}
.tb-nav-link:hover, .tb-nav-link.active {
  color: var(--gold) !important;
}
.tb-nav-link:hover::after, .tb-nav-link.active::after {
  width: calc(100% - 32px);
  left: 16px;
  background-color: var(--gold);
}

.site-nav .btn-outline-gold {
  border: 1.5px solid var(--green-mid) !important;
  color: var(--green-dark) !important;
  background: transparent !important;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 18px !important;
  border-radius: 30px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav .btn-outline-gold:hover {
  border-color: var(--green-dark) !important;
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
  box-shadow: 0 4px 12px rgba(26, 92, 66, 0.1);
  transform: translateY(-1px);
}
.site-nav .btn-outline-gold:active {
  transform: translateY(0);
}
.site-nav .btn-gold {
  background: var(--green-dark) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none !important;
  padding: 8px 20px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(11, 61, 46, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav .btn-gold:hover {
  background: var(--green-mid) !important;
  box-shadow: 0 6px 20px rgba(11, 61, 46, 0.25);
  transform: translateY(-1.5px);
}
.site-nav .btn-gold:active {
  transform: translateY(0);
}
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    position: fixed;
    top: 0;
    left: -290px;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(11, 61, 46, 0.15);
    padding: 24px 20px;
    z-index: 1050;
    transition: left 0.3s ease-in-out, visibility 0.3s;
    display: block !important;
    visibility: hidden;
    overflow-y: auto;
  }
  .site-nav .navbar-collapse.show {
    left: 0;
    visibility: visible;
  }
  .site-nav .navbar-collapse.collapsing {
    left: -290px;
    visibility: visible;
    transition: left 0.25s ease-out;
  }
  .site-nav .navbar-collapse .navbar-nav {
    align-items: flex-start !important;
    margin-top: 15px;
  }
  .site-nav .navbar-collapse .tb-nav-link {
    padding: 10px 0 !important;
    width: 100%;
    text-align: left;
  }
  .site-nav .navbar-collapse .tb-nav-link::after {
    display: none;
  }
  .site-nav .navbar-collapse .site-nav__buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }
  .site-nav .navbar-collapse .site-nav__buttons .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 20px !important;
  }
}

.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider--cream {
  background: var(--cream);
}

.wave-divider--white {
  background: #fff;
}

.wave-divider--dark {
  background: #0B3D2E;
}

.wave-svg {
  width: 100%;
  height: 72px;
  display: block;
}

.section-cream {
  background: var(--cream);
  padding: 72px 0 80px;
}

.section-white {
  background: #fff;
  padding: 72px 0 80px;
}

.section-dark {
  background: var(--green-dark);
  padding: 72px 0 80px;
}

.section-green-light {
  background: var(--green-light);
  padding: 72px 0 80px;
}

.section-title {
  font-size: 48px;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-title--light {
  color: #fff;
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }
}

.section-sub {
  color: var(--text-mid);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}
.section-sub--light {
  color: rgba(255, 255, 255, 0.58);
  max-width: 540px;
}

.hero {
  min-height: 90vh;
  background-color: #03140F;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  mix-blend-mode: overlay;
  filter: grayscale(30%) contrast(110%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(201, 168, 76, 0.18) 0%, rgba(11, 61, 46, 0) 65%), radial-gradient(circle at 15% 75%, rgba(26, 92, 66, 0.3) 0%, rgba(11, 61, 46, 0) 55%), linear-gradient(135deg, #03140F 0%, #0A3C2D 45%, #05241B 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(38px, 5vw, 66px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 490px;
  font-family: "Inter", sans-serif;
}

.hero__cta {
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero__cta.btn-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #B8922A 100%) !important;
  color: #03140F !important;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25) !important;
}
.hero__cta.btn-gold:hover {
  background: linear-gradient(135deg, #F5EDD3 0%, #C9A84C 100%) !important;
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.45) !important;
  transform: translateY(-1.5px);
}
.hero__cta.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
}
.hero__cta.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
  transform: translateY(-1.5px);
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  transition: all 0.2s ease;
}
.hero__trust-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

.hero__trending-breeds {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.65);
}
.hero__trending-breeds .trending-lbl {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.hero__trending-breeds .trending-breed-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.4);
}
.hero__trending-breeds .trending-breed-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateY(-0.5px);
}
.hero__trending-breeds .divider-dot {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.hero__portrait-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.hero__portrait {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: block;
}

.hero__portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.18);
  pointer-events: none;
}

.hero-v3 {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px;
  background-color: #03140F;
}
.hero-v3__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.22;
  filter: brightness(80%) contrast(110%);
}
.hero-v3__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 61, 46, 0.35) 0%, rgba(3, 20, 15, 0.95) 100%), linear-gradient(to bottom, rgba(3, 20, 15, 0.7) 0%, #03140F 100%);
  z-index: 1;
}
.hero-v3__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-v3__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: "Londrina Solid", cursive;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hero-v3__lead {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 600px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-float {
  position: absolute;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.hero-float--tl {
  top: 35px;
  left: -50px;
}
.hero-float--br {
  bottom: 55px;
  right: -55px;
}
.hero-float--mr {
  top: 50%;
  right: -62px;
  transform: translateY(-50%);
}

.hero-float__inner {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-float__icon {
  color: var(--gold);
  font-size: 22px;
}

.hero-float__title {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 13px;
  font-family: "Londrina Solid", cursive;
  line-height: 1.2;
}

.hero-float__sub {
  color: var(--text-mid);
  font-size: 11px;
  font-family: "Inter", sans-serif;
}

.breeder-mission-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.mission-card {
  background: #F4F6F5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(11, 61, 46, 0.05);
}

.mission-content {
  padding: 60px 50px;
}

.mission-badge {
  display: inline-block;
  color: var(--gold);
  background: rgba(11, 61, 46, 0.08);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.mission-title {
  font-family: "Londrina Solid", cursive;
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.mission-text {
  font-family: "Inter", sans-serif;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.m-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.m-feat-icon {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

.m-feat-title {
  font-family: "Londrina Solid", cursive;
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.m-feat-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
}

.mission-img-col {
  position: relative;
  min-height: 380px;
}
.mission-img-col .mission-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .mission-content {
    padding: 40px 30px;
  }
  .mission-img-col {
    min-height: 300px;
  }
}
.badge-panel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px 24px;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.badge-panel-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.badge-panel-icon-slot {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.badge-panel-icon-slot.icon-slot-ofa {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}
.badge-panel-icon-slot.icon-slot-genetics {
  background: rgba(56, 176, 0, 0.12);
  color: #38b000;
}
.badge-panel-icon-slot.icon-slot-registration {
  background: rgba(0, 150, 199, 0.12);
  color: #0096c7;
}
.badge-panel-icon-slot.icon-slot-champion {
  background: rgba(255, 183, 3, 0.12);
  color: #ffb703;
}

.badge-panel-title {
  font-family: "Londrina Solid", cursive;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}

.badge-panel-text {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.badge-panel-badge-bar .badge-verify {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 30px;
}

.btn-gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
  background: transparent;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--green-dark) !important;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.testimonial-clean-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 15px 40px;
}

.quote-icon-wrap {
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.8;
}

.testimonial-quote-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--green-dark);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-clean-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-clean-name {
  font-family: "Londrina Solid", cursive;
  font-size: 16px;
  color: var(--green-dark);
  font-weight: 700;
}

.testimonial-clean-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-mid);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
  line-height: 1;
  border-top: 1px solid rgba(11, 61, 46, 0.1);
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.marquee__track {
  white-space: nowrap;
  display: inline-block;
  animation: marqueeScroll 32s linear infinite;
}

.marquee__inner {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.marquee__item {
  color: var(--green-dark);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.marquee__sep {
  color: var(--green-dark);
  opacity: 0.35;
  font-size: 18px;
}

.qs-section {
  background: var(--cream);
  padding-top: 0;
  padding-bottom: 30px;
}

.qs-container {
  position: relative;
  z-index: 10;
  margin-top: -44px;
}

.qs-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(11, 61, 46, 0.13);
  border-top: 4px solid var(--gold);
}

.qs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: block;
}

.qs-switch {
  width: 42px;
  height: 22px;
  cursor: pointer;
}

.qs-switch-label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.qs-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
}

.section-stats {
  background: var(--cream);
  padding: 70px 0 10px;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0 20px;
}

.stat-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(50% 0%, 57% 11%, 68% 4%, 72% 16%, 84% 12%, 84% 25%, 96% 25%, 93% 37%, 100% 42%, 93% 53%, 100% 60%, 89% 65%, 92% 78%, 79% 79%, 78% 92%, 65% 89%, 60% 100%, 50% 94%, 40% 100%, 35% 89%, 22% 92%, 21% 79%, 8% 78%, 11% 65%, 0% 60%, 7% 53%, 0% 42%, 7% 37%, 4% 25%, 16% 25%, 16% 12%, 28% 16%, 32% 4%, 43% 11%);
  transition: transform 0.2s ease;
}
.stat-stamp:hover {
  transform: translateY(-3px);
}
.stat-stamp--a {
  width: 158px;
  height: 158px;
  background: var(--gold-light);
  margin-bottom: 0;
}
.stat-stamp--b {
  width: 172px;
  height: 172px;
  background: var(--green-light);
  margin-bottom: 36px;
}
.stat-stamp--c {
  width: 152px;
  height: 152px;
  background: var(--gold-light);
  margin-bottom: 14px;
}
.stat-stamp--d {
  width: 164px;
  height: 164px;
  background: var(--green-light);
  margin-bottom: 26px;
}
@media (max-width: 575.98px) {
  .stat-stamp--a, .stat-stamp--b, .stat-stamp--c, .stat-stamp--d {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    align-items: center !important;
  }
  .stat-stamp {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    margin-bottom: 0 !important;
  }
  .stat-stamp__number--46 {
    font-size: 26px !important;
  }
  .stat-stamp__number--50 {
    font-size: 28px !important;
  }
  .stat-stamp__number--40 {
    font-size: 24px !important;
  }
  .stat-stamp__label {
    font-size: 9px !important;
    margin-top: 2px !important;
  }
}
.stat-stamp__number {
  font-family: "Londrina Solid", cursive;
  color: var(--green-dark);
  line-height: 1;
}
.stat-stamp__number--46 {
  font-size: 46px;
}
.stat-stamp__number--50 {
  font-size: 50px;
}
.stat-stamp__number--40 {
  font-size: 40px;
}

.stat-stamp__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .how-row {
    position: relative;
  }
  .how-row::before {
    content: "";
    position: absolute;
    top: 68px;
    left: 22%;
    right: 22%;
    border-top: 2px dashed rgba(201, 168, 76, 0.35);
    z-index: 0;
  }
}
.how-card {
  position: relative;
  z-index: 1;
}

.how-card__body {
  border-radius: 24px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-card__body:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11, 61, 46, 0.1);
}
.how-card__body--gold-light {
  background: var(--gold-light);
}
.how-card__body--green-light {
  background: var(--green-light);
}

.how-card__num {
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: "Londrina Solid", cursive;
  font-size: 110px;
  color: rgba(11, 61, 46, 0.07);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.how-card__icon-wrap {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(11, 61, 46, 0.1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.how-card__icon {
  font-size: 34px;
  color: var(--green-dark);
}

.how-card__title {
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.how-card__text {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.badge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 24px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: background 0.2s;
}
.badge-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge-card__icon-wrap {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.badge-card__icon {
  font-size: 36px;
  color: var(--green-dark);
}

.badge-card__title {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
}

.badge-card__text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.badge-card__badge-wrap {
  margin-bottom: 16px;
}

.swiper-studs {
  padding-bottom: 54px;
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-studs .swiper-pagination {
  bottom: 10px;
}

.swiper-testimonials .swiper-pagination {
  bottom: 4px;
}

.stud-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11, 61, 46, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 61, 46, 0.14);
}

.stud-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f7f5f0;
}

.stud-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stud-card__ribbon-wrap {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 78px;
  height: 78px;
  pointer-events: none;
}

.stud-card__ribbon {
  position: absolute;
  top: 12px;
  right: -22px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 28px;
  transform: rotate(45deg);
  white-space: nowrap;
}

.stud-card__badge-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  background: linear-gradient(to top, rgba(11, 61, 46, 0.68), transparent);
}

.stud-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stud-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.stud-card__name {
  font-size: 20px;
  color: var(--green-dark);
  margin: 0;
}

.stud-card__type-badge {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.stud-card__breed {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.stud-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.stud-card__fee-row {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stud-card__fee-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
}

.stud-card__fee-amount {
  font-size: 24px;
  color: var(--gold);
}

.stagger-imgs {
  position: relative;
  height: 470px;
}

.stagger-img--main {
  position: absolute;
  left: 0;
  top: 0;
  width: 58%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stagger-img--secondary {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 50%;
  height: 295px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.stagger-stamp {
  position: absolute;
  right: 43%;
  top: 34%;
  z-index: 10;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  transform: rotate(-8deg);
}

.stagger-stamp__icon {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 2px;
}

.stagger-stamp__text {
  font-family: "Londrina Solid", cursive;
  font-size: 9px;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.2;
}

.stagger-mobile-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.owners-title {
  font-size: 46px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.owners-lead {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.feat-row {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50px;
  padding: 12px 14px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(11, 61, 46, 0.06);
  margin-bottom: 10px;
}

.feat-row__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
}

.feat-row__icon {
  width: 38px;
  height: 38px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-row__icon i {
  color: var(--green-dark);
  font-size: 16px;
}

.plan-badges {
  display: flex;
  gap: 8px;
  margin: 24px 0 28px;
}

.plan-badge {
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.plan-badge--basic {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-mid);
}
.plan-badge--premium {
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  color: var(--green-dark);
}
.plan-badge--elite {
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  color: var(--green-dark);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.pricing-card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.pricing-card--featured {
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.pricing-card--featured:hover {
  background: rgba(201, 168, 76, 0.15);
}

.pricing-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  font-family: "Inter", sans-serif;
}

.pricing-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.pricing-card__icon-wrap--muted {
  background: rgba(255, 255, 255, 0.1);
}
.pricing-card__icon-wrap--gold {
  background: var(--gold);
}
.pricing-card__icon-wrap--gold-light {
  background: rgba(201, 168, 76, 0.2);
}

.pricing-card__icon {
  font-size: 24px;
  color: var(--gold);
}
.pricing-card__icon--dark {
  color: var(--green-dark);
}

.pricing-card__tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}
.pricing-card__tier--muted {
  color: rgba(255, 255, 255, 0.45);
}
.pricing-card__tier--gold {
  color: var(--gold);
}

.pricing-card__price {
  font-family: "Londrina Solid", cursive;
  font-size: 58px;
  line-height: 1;
}
.pricing-card__price--gold {
  color: var(--gold);
}
.pricing-card__price--white {
  color: #fff;
}

.pricing-card__period {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-card__features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card__features li i {
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-card__features--dark-sep li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.feat-on {
  color: rgba(255, 255, 255, 0.8);
}
.feat-on i {
  color: var(--gold);
}

.feat-off {
  color: rgba(255, 255, 255, 0.35);
}

.feat-on--white {
  color: #fff;
}
.feat-on--white i {
  color: var(--gold);
}

.pricing-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-family: "Inter", sans-serif;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
}

.testimonial-card__quote {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
  font-family: "Inter", sans-serif;
}

.testimonial-card__author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-family: "Londrina Solid", cursive;
  font-size: 17px;
  color: var(--green-dark);
}

.testimonial-card__role {
  color: var(--text-mid);
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

.section-disclaimer {
  background: var(--cream);
  padding: 48px 0 56px;
}

.disclaimer-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.disclaimer-box__icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-box__text {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.65;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.disclaimer-box__note {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  font-family: "Inter", sans-serif;
}

.site-footer {
  background: #0B3D2E;
  border-top: 3px solid #C9A84C;
}

.site-footer__top {
  padding-top: 56px;
  padding-bottom: 44px;
}

.site-footer__logo {
  height: 160px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.site-footer__tagline-sub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.site-footer__tagline {
  color: #C9A84C;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 20px;
}

.site-footer__socials {
  display: flex;
  gap: 14px;
}

.site-footer__col-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #C9A84C;
}
.footer-link.footer-link--icon {
  display: inline;
  font-size: 20px;
}

@media (max-width: 767.98px) {
  .site-footer .site-footer__logo {
    height: 75px;
  }
  .site-footer .site-footer__tagline-sub {
    font-size: 11px;
  }
  .site-footer .site-footer__tagline {
    font-size: 11px;
  }
  .site-footer .site-footer__col-title {
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
  .site-footer .footer-link {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .site-footer .footer-copy {
    font-size: 11px;
  }
  .site-footer .small {
    font-size: 11px !important;
  }
  .site-footer span.text-white-50 {
    font-size: 11px !important;
  }
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-family: "Inter", sans-serif;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0B3D2E !important;
  width: 44px !important;
  height: 44px !important;
  background: #ffffff !important;
  border: 2px solid #C9A84C !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(11, 61, 46, 0.12) !important;
  transition: all 0.2s ease !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 900 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #C9A84C !important;
  color: #0B3D2E !important;
  transform: scale(1.05);
}

.swiper-pagination-bullet-active {
  background: #C9A84C !important;
}

.swiper-studs .swiper-wrapper {
  align-items: stretch;
}

.form-select:focus,
.form-control:focus {
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

.form-switch .form-check-input:checked {
  background-color: #C9A84C !important;
  border-color: #C9A84C !important;
}

@media (max-width: 991px) {
  .hero-float {
    display: none !important;
  }
  .stagger-imgs {
    display: none !important;
  }
}
.form-control,
.form-select {
  border-color: var(--border) !important;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 10px !important;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-label--caps {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.input-group-text {
  background: var(--green-light);
  border-color: var(--border);
  color: var(--green-dark);
}

.input-group > .form-control,
.input-group > .form-select,
.input-group > .input-group-text,
.input-group > .btn {
  border-radius: 0 !important;
}
.input-group > .form-control:first-child,
.input-group > .form-select:first-child,
.input-group > .input-group-text:first-child,
.input-group > .btn:first-child {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.input-group > .form-control:last-child,
.input-group > .form-select:last-child,
.input-group > .input-group-text:last-child,
.input-group > .btn:last-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.form-check-input:checked {
  background-color: #C9A84C !important;
  border-color: #C9A84C !important;
}

.auth-navbar,
.auth-footer {
  background: #0B3D2E;
  padding: 14px 0;
}

.auth-nav__logo {
  max-height: 46px;
  width: auto;
}

.auth-nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.auth-nav-link span {
  color: #C9A84C;
  font-weight: 600;
}

.auth-form-wrap {
  max-width: 440px;
}

.auth-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(11, 61, 46, 0.12);
  overflow: hidden;
}

.auth-card__head {
  background: #0B3D2E;
  padding: 36px 36px 28px;
}

.auth-card__icon-wrap {
  width: 70px;
  height: 70px;
  background: #C9A84C;
  border-radius: 50%;
}

.auth-card__icon {
  font-size: 32px;
  color: #0B3D2E;
}

.auth-card__title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 4px;
}

.auth-card__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.auth-card__body {
  padding: 32px 36px 36px;
}

.auth-divider {
  border-top: 1px solid var(--border);
}

.auth-btn {
  padding: 14px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.auth-btn--md {
  padding: 13px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.auth-btn--sm {
  padding: 12px 16px !important;
  font-size: 14px !important;
}

.auth-forgot-link {
  font-size: 13px;
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}
.auth-forgot-link:hover {
  color: var(--green-dark);
}

.auth-link {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}
.auth-link:hover {
  color: var(--green-dark);
}

.auth-trust-note {
  font-size: 13px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}

.auth-footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.auth-footer-copy a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.auth-footer-copy a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.terms-label {
  font-size: 13px;
  color: var(--text-mid);
}

.terms-link {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}
.terms-link:hover {
  color: var(--green-dark);
}

.step-header {
  background: #0B3D2E;
  padding: 0 0 32px;
}

.step-dots-wrap {
  max-width: 500px;
}

.step-labels {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}
.step-dot.active {
  background: #C9A84C;
  color: #0B3D2E;
}
.step-dot.done {
  background: #1A5C42;
  color: #fff;
}
.step-dot.pending {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}
.step-line.done {
  background: #1A5C42;
}

.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
}

.reg-main {
  flex: 1;
  background: var(--cream);
  padding: 32px 16px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.reg-form-wrap {
  max-width: 520px;
}

.reg-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(11, 61, 46, 0.1);
  padding: 36px;
}

.form-step__title {
  font-size: 34px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.form-step__sub {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.acct-type-card {
  flex: 1;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.acct-type-card--seeker {
  background: var(--green-light);
  border: 2px solid var(--green-mid);
}
.acct-type-card--seeker:has(input:checked) {
  background: #0B3D2E;
  border-color: #0B3D2E;
  color: #fff;
}
.acct-type-card--seeker:has(input:checked) i {
  color: #C9A84C;
}
.acct-type-card--owner {
  background: var(--gold-light);
  border: 2px solid var(--gold);
}
.acct-type-card--owner:has(input:checked) {
  background: #C9A84C;
  border-color: #B8922A;
  color: #0B3D2E;
}
.acct-type-card i {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.success-icon-wrap {
  width: 90px;
  height: 90px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon {
  font-size: 44px;
  color: var(--green-mid);
}

.success-title {
  font-size: 36px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.success-sub {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.success-checklist {
  background: var(--green-light);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.success-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.success-check-item:last-child {
  margin-bottom: 0;
}
.success-check-item i {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.ts-wrapper {
  display: block !important;
}
.ts-wrapper .ts-control {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 9px 38px 9px 14px !important;
  font-size: 14px !important;
  font-family: "Inter", sans-serif !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  min-height: 44px !important;
}
.ts-wrapper .ts-control input {
  font-size: 14px !important;
  font-family: "Inter", sans-serif !important;
  color: var(--text-dark) !important;
}
.ts-wrapper .ts-control .placeholder {
  color: var(--text-light) !important;
  font-style: normal !important;
}
.ts-wrapper.focus .ts-control {
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}
.ts-wrapper.single .ts-control::after {
  border-color: var(--text-mid) transparent transparent !important;
}
.ts-wrapper.single.dropdown-active .ts-control::after {
  border-color: transparent transparent #C9A84C !important;
}
.ts-wrapper .clear-button {
  color: var(--text-light) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin-right: 6px !important;
}
.ts-wrapper .clear-button:hover {
  color: #C9A84C !important;
}

.ts-dropdown {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 28px rgba(11, 61, 46, 0.12) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  overflow: hidden !important;
  margin-top: 4px !important;
}
.ts-dropdown .option {
  padding: 10px 14px !important;
  color: var(--text-dark) !important;
  transition: background 0.12s !important;
}
.ts-dropdown .option.active {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
}
.ts-dropdown .option.selected {
  background: var(--gold-light) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
}
.ts-dropdown .option.selected.active {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
}
.ts-dropdown .no-results {
  color: var(--text-mid) !important;
  padding: 10px 14px !important;
  font-style: italic !important;
}

.form-check-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dark);
}

.pricing-hero {
  background: #0B3D2E;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.pricing-hero__body {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.pricing-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  margin-bottom: 16px;
}

.pricing-hero__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 28px;
  font-family: "Inter", sans-serif;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #E5E0D5;
  border-radius: 30px;
  padding: 6px 14px;
  box-shadow: 0 2px 10px rgba(11, 61, 46, 0.08);
}

.billing-toggle__label {
  font-size: 14px;
  font-weight: 600;
  color: #0B3D2E;
  font-family: "Inter", sans-serif;
}

.billing-toggle__save {
  background: #C9A84C;
  color: #0B3D2E;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  vertical-align: middle;
}

.billing-switch {
  width: 44px !important;
  height: 24px !important;
  cursor: pointer !important;
  background-color: #C9A84C !important;
  border-color: #C9A84C !important;
}

.pp-card {
  border-radius: 24px;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pp-card--basic {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(11, 61, 46, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-card--basic:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(11, 61, 46, 0.12);
}
.pp-card--premium {
  background: #0B3D2E;
  border: 2px solid #C9A84C;
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(11, 61, 46, 0.28);
}
.pp-card--elite {
  background: var(--gold-light);
  border: 1.5px solid #C9A84C;
  box-shadow: 0 2px 14px rgba(11, 61, 46, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-card--elite:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(11, 61, 46, 0.12);
}

.pp-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A84C;
  color: #0B3D2E;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.pp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.pp-card__icon--green {
  background: var(--green-light);
  color: #0B3D2E;
}
.pp-card__icon--gold {
  background: #C9A84C;
  color: #0B3D2E;
}

.pp-card__tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}
.pp-card__tier--muted {
  color: var(--text-light);
}
.pp-card__tier--gold {
  color: #C9A84C;
}
.pp-card__tier--green {
  color: var(--green-mid);
}

.pp-card__price {
  font-family: "Londrina Solid", cursive;
  font-size: 58px;
  line-height: 1;
}
.pp-card__price--dark {
  color: #0B3D2E;
}
.pp-card__price--white {
  color: #fff;
}

.pp-card__per {
  font-size: 13px;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}
.pp-card__per--muted {
  color: var(--text-light);
}
.pp-card__per--white {
  color: rgba(255, 255, 255, 0.45);
}
.pp-card__per--mid {
  color: var(--text-mid);
}

.pp-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pp-feat li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.pp-feat li i {
  font-size: 16px;
  flex-shrink: 0;
}

.pp-feat--light li {
  border-bottom: 1px solid var(--border);
}
.pp-feat--light li:last-child {
  border-bottom: none;
}

.pp-feat--dark li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pp-feat--dark li:last-child {
  border-bottom: none;
}

.pp-feat--gold li {
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}
.pp-feat--gold li:last-child {
  border-bottom: none;
}

.pp-on {
  color: var(--text-dark);
}
.pp-on i {
  color: #C9A84C;
}

.pp-on-white {
  color: #fff;
}
.pp-on-white i {
  color: #C9A84C;
}

.pp-on-green {
  color: var(--text-dark);
}
.pp-on-green i {
  color: #0B3D2E;
}

.pp-off {
  color: var(--text-light);
}

.pp-off-dark {
  color: rgba(255, 255, 255, 0.4);
}

.marquee--card {
  border-radius: 16px;
  margin-bottom: 60px;
  margin-top: 12px;
}

.split-section {
  background: #fff;
  border-radius: 24px;
  padding: 52px 44px;
  box-shadow: 0 2px 16px rgba(11, 61, 46, 0.08);
}

.split-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.split-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-left: 3px solid #C9A84C;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.split-badge__icon {
  color: #C9A84C;
  font-size: 24px;
}

.split-badge__title {
  font-family: "Londrina Solid", cursive;
  font-size: 16px;
  color: #0B3D2E;
}

.split-badge__sub {
  font-size: 12px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.split-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.split-feat-item:last-child {
  border-bottom: none;
}

.split-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.split-feat-icon i {
  color: #0B3D2E;
  font-size: 18px;
}

.split-feat__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.split-feat__sub {
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.compare-section {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(11, 61, 46, 0.08);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.compare-table thead tr {
  background: #0B3D2E;
}
.compare-table th {
  padding: 14px 12px;
  text-align: center;
  font-family: "Londrina Solid", cursive;
  font-size: 14px;
}
.compare-table th:first-child {
  padding-left: 18px;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 12px 0 0 0;
}
.compare-table th.th-basic {
  color: rgba(255, 255, 255, 0.7);
}
.compare-table th.th-premium {
  color: #C9A84C;
  background: rgba(201, 168, 76, 0.15);
}
.compare-table th.th-elite {
  color: rgba(255, 255, 255, 0.7);
  border-radius: 0 12px 0 0;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table td {
  padding: 13px 12px;
  text-align: center;
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.compare-table td:first-child {
  padding-left: 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}
.compare-table td.td-premium {
  background: rgba(201, 168, 76, 0.05);
}
.compare-table td.td-strong {
  font-weight: 600;
}
.compare-table td.td-gold {
  font-weight: 600;
  color: #C9A84C;
}
.compare-table td.td-muted {
  color: var(--text-mid);
}

.faq-section {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-button {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.accordion-item:last-child {
  border-bottom: none;
}

.accordion-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

.apply-hero {
  background: #0B3D2E;
  padding: 52px 0 24px;
}

.apply-hero__title {
  font-size: clamp(36px, 4vw, 54px);
  color: #fff;
  margin-bottom: 8px;
}

.apply-hero__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

.steps-bar {
  background: #fff;
  border-radius: 20px;
  padding: 20px 32px 18px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(11, 61, 46, 0.15);
}

.steps-track {
  display: flex;
  align-items: flex-start;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-conn {
  position: absolute;
  top: 34px;
  left: 50%;
  right: -50%;
  height: 3px;
  background: #D1D5DB;
  z-index: 0;
  transition: background 0.4s;
}
.step-conn.filled {
  background: #C9A84C;
}

.step-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  flex-shrink: 0;
}
.step-node.done {
  background: #C9A84C;
  color: #0B3D2E;
  border: 3px solid #C9A84C;
}
.step-node.active {
  background: #C9A84C;
  color: #0B3D2E;
  border: 3px solid #C9A84C;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}
.step-node.pending {
  background: #fff;
  color: #9CA3AF;
  border: 2.5px solid #D1D5DB;
}

.step-chev {
  height: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 4px;
}
.step-chev i {
  font-size: 12px;
}

.step-lbl {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
.step-lbl.done {
  color: #C9A84C;
}
.step-lbl.active {
  color: #0B3D2E;
  font-weight: 700;
}
.step-lbl.pending {
  color: #9CA3AF;
}

.apply-form-bg {
  background: var(--cream);
  padding: 40px 0 80px;
}

.apply-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(11, 61, 46, 0.1);
  padding: 40px;
}

.apply-step__title {
  font-size: 30px;
  color: #0B3D2E;
  margin-bottom: 4px;
}

.apply-step__sub {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.apply-step__sub--sm {
  margin-bottom: 24px;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: "Inter", sans-serif;
}
.upload-zone:hover {
  border-color: #C9A84C;
  background: var(--gold-light);
}
.upload-zone--lg {
  padding: 40px 24px;
}
.upload-zone[data-dz] {
  padding: 0;
  cursor: default;
  overflow: hidden;
}
.upload-zone[data-dz]:hover {
  border-color: var(--border);
  background: none;
}
.upload-zone[data-dz].dz--dragover {
  border-color: #C9A84C;
  background: #F5EDD3;
}
.upload-zone[data-dz].dz--has-files {
  border-style: solid;
  border-color: #C9A84C;
}

.dz-face {
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: padding 0.2s;
}
.upload-zone--lg .dz-face {
  padding: 40px 24px 32px;
}
.dz--has-files .dz-face {
  padding: 12px 24px 10px;
}
.upload-zone--lg.dz--has-files .dz-face {
  padding: 20px 24px 14px;
}

.dz-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}
.dz-preview:empty {
  display: none;
}

.dz-item {
  position: relative;
  flex-shrink: 0;
}
.dz-item__img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #C9A84C;
  display: block;
}
.dz-item__doc {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid #E5E0D5;
  background: #F8F5EF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #C9A84C;
}
.dz-item__name {
  font-size: 10px;
  color: #4B5563;
  text-align: center;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80px;
  font-family: "Inter", sans-serif;
}
.dz-item__rm {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: #DC2626;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  line-height: 1;
}

.upload-zone__icon {
  font-size: 28px;
  color: #C9A84C;
  display: block;
  margin-bottom: 6px;
}
.upload-zone__icon--lg {
  font-size: 44px;
  margin-bottom: 10px;
}

.upload-zone__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.upload-zone__title--lg {
  font-family: "Londrina Solid", cursive;
  font-size: 22px;
  margin-bottom: 4px;
}

.upload-zone__sub {
  font-size: 12px;
  color: var(--text-light);
}
.upload-zone__sub--lg {
  font-size: 13px;
  color: var(--text-mid);
}

.upload-zone__pills {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
}

.upload-pill {
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.upload-pill--green {
  background: var(--green-light);
}
.upload-pill--gold {
  background: var(--gold-light);
  color: #0B3D2E;
}

.doc-box {
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.doc-box--green {
  background: var(--green-light);
}
.doc-box--gold {
  background: var(--gold-light);
}

.doc-box__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.doc-box__head--sm {
  margin-bottom: 12px;
}

.doc-box__icon {
  font-size: 22px;
  color: #0B3D2E;
}

.doc-box__title {
  font-size: 20px;
  color: #0B3D2E;
  margin: 0;
}

.doc-box__sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.badge-select {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 8px;
}
.badge-select:has(input:checked) {
  border-color: #C9A84C;
  background: var(--gold-light);
}
.badge-select input {
  display: none;
}
.badge-select .badge-select__icon {
  color: #C9A84C;
  font-size: 18px;
}
.badge-select .badge-select__label {
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.badge-select input:checked ~ .badge-select__label {
  color: #0B3D2E;
  font-weight: 700;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 10px;
}
.plan-card:has(input:checked) {
  border-color: #C9A84C;
  background: var(--gold-light);
}
.plan-card input {
  display: none;
}
.plan-card--last {
  margin-bottom: 24px;
}

.plan-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-card__icon {
  font-size: 24px;
  color: #C9A84C;
}

.plan-card__name {
  font-family: "Londrina Solid", cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.plan-card__badge {
  background: #C9A84C;
  color: #0B3D2E;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.plan-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}

.plan-card__price {
  font-family: "Londrina Solid", cursive;
  font-size: 28px;
  color: #C9A84C;
}

.plan-card__per {
  font-size: 14px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}

.info-box {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.info-box--gold {
  background: var(--gold-light);
}
.info-box i {
  color: #C9A84C;
}

.apply-success__icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.apply-success__icon {
  font-size: 48px;
  color: var(--green-mid);
}

.apply-success__title {
  font-size: 40px;
  color: #0B3D2E;
  margin-bottom: 8px;
}

.apply-success__sub {
  color: var(--text-mid);
  font-size: 16px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.apply-checklist {
  background: var(--green-light);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.apply-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-mid);
  font-family: "Inter", sans-serif;
}
.apply-check-item:last-child {
  margin-bottom: 0;
}
.apply-check-item i {
  flex-shrink: 0;
  margin-top: 2px;
}
.apply-check-item i.done-icon {
  color: var(--green-mid);
}
.apply-check-item i.pending-icon {
  color: var(--text-light);
}

.search-hero {
  background: #0B3D2E;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.search-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.95), rgba(26, 92, 66, 0.85));
}

.search-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
}

.search-hero__title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.bc-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.bc-link--active {
  color: rgba(255, 255, 255, 0.85);
}

.filter-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
  position: sticky;
  top: 110px;
  scroll-padding-top: 120px;
  scroll-margin-top: 120px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s ease;
  z-index: 111;
}
.filter-panel::-webkit-scrollbar {
  width: 8px;
}
.filter-panel::-webkit-scrollbar-track {
  background: rgba(11, 61, 46, 0.03);
  border-radius: 4px;
}
.filter-panel::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.45);
  border-radius: 4px;
}
.filter-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.75);
}
.filter-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.45) rgba(11, 61, 46, 0.03);
}

@media (max-width: 991px) {
  .filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1050;
    border-radius: 0;
    transform: translateX(100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    margin-top: 0;
  }
  .filter-panel.show {
    transform: translateX(0);
  }
}
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  backdrop-filter: blur(2px);
}

.filter-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-header__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
}

.filter-clear {
  color: #C9A84C;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.filter-footer {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}

.filter-sub-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.filter-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  display: block;
}

.filter-sub-panel {
  background: var(--green-light);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.filter-search-wrap {
  position: relative;
  margin-bottom: 12px;
}
.filter-search-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
  pointer-events: none;
}
.filter-search-wrap input {
  padding-left: 30px !important;
}

.filter-accordion .accordion-button {
  font-size: 14px !important;
  padding: 18px 20px;
}
.filter-accordion .accordion-button:not(.collapsed) {
  color: #0B3D2E;
}
.filter-accordion .accordion-button::after {
  filter: opacity(0.5);
}
.filter-accordion .accordion-item {
  border-bottom: 1px solid var(--border);
}
.filter-accordion .accordion-item:last-child {
  border-bottom: none;
}
.filter-accordion .accordion-body {
  padding: 8px 20px 22px;
}

input[type=range] {
  accent-color: #C9A84C;
  cursor: pointer;
  width: 100%;
}

.slider-val {
  font-size: 12px;
  font-weight: 700;
  color: #C9A84C;
}

.irs-grid-text:last-of-type {
  transform: translateX(-40%) !important;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
}

.range-pair {
  display: flex;
  align-items: center;
  gap: 8px;
}

.range-half {
  flex: 1;
  text-align: center;
}

.irs {
  padding: 0 12px;
}

.search-bar {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 1px 6px rgba(11, 61, 46, 0.06);
}

.view-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
}

.filter-chip__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--green-mid);
  font-size: 14px;
  line-height: 1;
}

.view-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.view-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.listing-card-item {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(11, 61, 46, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.listing-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 61, 46, 0.14);
}

.view-grid .listing-card-item {
  flex-direction: column;
  height: 100%;
}

.view-grid .card-img-wrap {
  height: 210px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: #f7f5f0;
}

.view-list .listing-card-item {
  flex-direction: row;
  border-left: 4px solid #C9A84C;
  min-height: 168px;
}

.view-list .card-img-wrap {
  width: 180px;
  min-width: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: #f7f5f0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card-inner-body {
  padding: 15px 17px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-name {
  font-family: "Londrina Solid", cursive;
  font-size: 17px;
  color: var(--green-dark);
  margin: 0;
}

.card-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-breed {
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
}

.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
}

.card-services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  font-size: 11px;
  color: var(--text-mid);
}
.card-services-row span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.card-services-row i {
  color: #C9A84C;
}

.card-foot {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-fee-lbl {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-fee {
  font-family: "Londrina Solid", cursive;
  font-size: 20px;
  color: #C9A84C;
}

.featured-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 78px;
  height: 78px;
  pointer-events: none;
}

.featured-ribbon__band {
  position: absolute;
  top: 12px;
  right: -22px;
  background: #C9A84C;
  color: #0B3D2E;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 28px;
  transform: rotate(45deg);
  white-space: nowrap;
}

.card-badges-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  background: linear-gradient(to top, rgba(11, 61, 46, 0.68), transparent);
}

.page-item.active .page-link {
  background-color: #C9A84C !important;
  border-color: #C9A84C !important;
  color: #0B3D2E !important;
  font-weight: 600;
}

.page-link {
  color: #0B3D2E;
}
.page-link:hover {
  background: var(--gold-light);
  color: #0B3D2E;
}

.ts-sm .ts-control {
  padding: 5px 30px 5px 10px !important;
  min-height: 34px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
}
.ts-sm .ts-control input {
  font-size: 13px !important;
}
.ts-sm .ts-dropdown {
  font-size: 13px !important;
}
.ts-sm .ts-dropdown .option {
  padding: 8px 12px !important;
}

.ts-sort {
  min-width: 160px;
  max-width: 220px;
}

@media (max-width: 767px) {
  .view-grid {
    grid-template-columns: 1fr;
  }
  .view-list .card-img-wrap {
    width: 120px;
    min-width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .view-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.profile-hero {
  background: #0B3D2E;
  padding: 32px 0 28px;
}

.profile-hero__title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  margin-bottom: 8px;
}

.content-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(11, 61, 46, 0.08);
  margin-bottom: 24px;
}

.content-card__title {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.content-card__body {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.content-card__body:last-child {
  margin-bottom: 0;
}

.gallery-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11, 61, 46, 0.08);
  margin-bottom: 24px;
}

.gallery-main {
  height: 420px;
  background-color: #f7f5f0;
}
.gallery-main .swiper-slide {
  background-color: #f7f5f0;
}

.gallery-thumbs-wrap {
  padding: 12px 16px;
  background: #fff;
}

.gallery-thumb {
  width: 80px !important;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-thumb {
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
  border-radius: 10px;
  overflow: hidden;
}
.swiper-thumb.swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid #C9A84C;
  outline-offset: 2px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #C9A84C !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.swiper-pagination-bullet-active {
  background: #C9A84C !important;
}

.health-item {
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.health-item--green {
  background: var(--green-light);
}
.health-item--gold {
  background: var(--gold-light);
}

.health-item__icon {
  font-size: 24px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.health-item__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--green-dark);
}

.health-item__result {
  font-size: 12px;
  color: var(--text-mid);
}

.ped-card {
  border-radius: 14px;
  padding: 18px;
  height: 100%;
}
.ped-card--sire {
  background: var(--green-light);
  border-left: 3px solid var(--green-mid);
}
.ped-card--dam {
  background: var(--gold-light);
  border-left: 3px solid #C9A84C;
}

.ped-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.ped-card__name {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.ped-card__info {
  font-size: 13px;
  color: var(--text-mid);
}

.disclaimer-banner {
  background: var(--gold-light);
  border-left: 4px solid #C9A84C;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer-banner__icon {
  color: #C9A84C;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-banner__text {
  margin: 0;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.65;
}

.profile-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(11, 61, 46, 0.12);
  overflow: hidden;
  margin-bottom: 20px;
}

.profile-card__head {
  background: #0B3D2E;
  padding: 24px;
  text-align: center;
}

.profile-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #C9A84C;
  overflow: hidden;
  margin: 0 auto 14px;
}
.profile-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__name {
  font-size: 34px;
  color: #fff;
  margin-bottom: 4px;
}

.profile-card__breed {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.profile-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
}

.profile-card__body {
  padding: 20px 22px;
}

.profile-card__cta {
  padding: 0 22px 22px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-lbl {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.info-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.info-fee {
  font-family: "Londrina Solid", cursive;
  font-size: 28px;
  color: #C9A84C;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
}
.service-chip i {
  color: #C9A84C;
}

.owner-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(11, 61, 46, 0.07);
}

.owner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C9A84C;
  flex-shrink: 0;
}

.owner-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.owner-since {
  font-size: 12px;
  color: var(--text-mid);
}

.owner-badge {
  font-size: 12px;
  color: var(--green-mid);
  font-weight: 600;
  margin-top: 2px;
}

.owner-note {
  background: var(--green-light);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-mid);
}

.scam-modal-head {
  background: #0B3D2E;
  padding: 28px 28px 20px;
  text-align: center;
}

.scam-modal-icon {
  font-size: 48px;
  color: #C9A84C;
  display: block;
  margin-bottom: 10px;
}

.scam-modal-title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px;
}

.scam-modal-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.scam-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.scam-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
}
.scam-list__item:last-child {
  border-bottom: none;
}

.scam-list__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.scam-alert {
  background: var(--gold-light);
  border-left: 3px solid #C9A84C;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.scam-alert a {
  color: var(--green-dark);
}

.modal-profile .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

.filter-sub-panel .filter-sub-label {
  color: var(--green-dark) !important;
}

.view-btn i {
  font-size: 15px !important;
}

.info-icon i {
  font-size: 16px !important;
  color: var(--green-dark) !important;
}

.owner-card h4 {
  font-size: 18px !important;
  color: var(--green-dark) !important;
}

.irs--round .irs-bar,
.irs--round .irs-bar--single {
  background: var(--gold) !important;
}

.irs--round .irs-handle {
  border: 3px solid var(--gold) !important;
  background: #fff !important;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
}

.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

.irs--round .irs-grid-pol {
  background: var(--gold) !important;
}

.irs--round .irs-bar {
  background: var(--gold) !important;
}

.password-group .form-control,
.password-group .input-group-text,
.password-group .btn {
  border-radius: 0 !important;
}

@media (max-width: 575.98px) {
  .reg-main {
    padding: 16px 8px 36px;
  }
  .reg-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .apply-form-bg {
    padding: 16px 0 40px;
  }
  .apply-form-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .steps-bar {
    padding: 16px 12px 14px;
    border-radius: 14px;
  }
  .step-lbl {
    font-size: 9.5px;
    margin-top: 6px;
  }
  .step-node {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .step-conn {
    top: 29px;
  }
  .step-chev {
    height: 14px;
    margin-bottom: 2px;
  }
}
@media (max-width: 767.98px) {
  .auth-btn {
    padding: 10px !important;
    font-size: 13.5px !important;
  }
  .auth-btn--md {
    padding: 9px !important;
    font-size: 13px !important;
  }
  .auth-btn--sm {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}

/*# sourceMappingURL=userside.css.map */
