:root {
  --gc-green-primary: #1b5e20;
  --gc-green-light: #2e7d32;
  --gc-green-dark: #0d3b0f;
  --gc-gold: #c5a55a;
  --gc-gold-light: #d4ba7a;
  --gc-charcoal: #1a1a2e;
  --gc-off-white: #f8f9fa;
  --gc-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--gc-charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.font-serif {
  font-family: "Playfair Display", serif;
}

.gc-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-pad {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .section-pad {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.text-green-primary {
  color: var(--gc-green-primary) !important;
}

.text-gold {
  color: var(--gc-gold) !important;
}

.bg-gold {
  background: var(--gc-gold) !important;
}

.text-charcoal {
  color: var(--gc-charcoal) !important;
}

.text-charcoal-50 {
  color: rgba(26, 26, 46, 0.5) !important;
}

.text-charcoal-60 {
  color: rgba(26, 26, 46, 0.6) !important;
}

.text-charcoal-70 {
  color: rgba(26, 26, 46, 0.7) !important;
}

.text-charcoal-80 {
  color: rgba(26, 26, 46, 0.8) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.bg-off-white {
  background: var(--gc-off-white) !important;
}

.bg-green-primary-10 {
  background: rgba(27, 94, 32, 0.1) !important;
}

.tracking-wide {
  letter-spacing: 0.04em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.icon-14,
.icon-16,
.icon-20,
.icon-24 {
  stroke-width: 2.2;
  width: 1em;
  height: 1em;
}

.icon-14 {
  font-size: 14px;
}

.icon-16 {
  font-size: 16px;
}

.icon-20 {
  font-size: 20px;
}

.icon-24 {
  font-size: 24px;
}

.rotate-90 {
  transform: rotate(90deg);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.h-100 {
  height: 100%;
}

.gc-top-bar {
  background: var(--gc-green-dark);
  height: 40px;
}

.gc-top-bar a[aria-label] {
  display: block;
  font-size: 0;
  line-height: 0;
}

.gc-top-bar a[aria-label] .icon-16 {
  font-size: 14px;
  line-height: 20px;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--gc-gold);
}

.gc-main-nav {
  /* min-height: 64px; */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  .gc-main-nav {
    min-height: 80px;
  }
}

.gc-main-nav > .gc-container {
  /* min-height: 64px; */
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .gc-main-nav > .gc-container {
    min-height: 80px;
    flex-wrap: nowrap;
  }
}

.gc-logo {
  width: auto;
  height: 48px;
}

@media (min-width: 992px) {
  .gc-logo {
    height: 56px;
  }
}

.navbar-toggler {
  color: var(--gc-charcoal);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.gc-nav-list {
  gap: 4px;
}

@media (min-width: 992px) {
  .gc-nav-list {
    gap: 32px;
    margin-left: 0 !important;
  }
}

.nav-link-gc {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--gc-charcoal);
  transition: color 0.2s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-link-gc:hover {
  color: var(--gc-green-primary);
}

.nav-link-gc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gc-gold);
  transition: width 0.2s ease;
}

.nav-link-gc:hover::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .gc-main-nav .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    border-top: 1px solid #f3f4f6;
    background: #fff;
    margin-top: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 10px 24px 18px;
  }

  .nav-link-gc {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f9fafb;
  }

  .nav-link-gc::after {
    display: none;
  }

  .gc-nav-list {
    align-items: stretch !important;
  }
}

@media (min-width: 992px) {
  .gc-main-nav .navbar-collapse {
    display: flex !important;
    flex: 1 1 auto;
    justify-content: center;
  }
}

.btn {
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-lg {
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
}

.btn:focus-visible {
  box-shadow: none;
}

.btn-gold {
  background: var(--gc-gold);
  border: 0;
  color: var(--gc-charcoal);
  min-height: 46px;
  padding: 10px 24px;
  box-shadow: 0 10px 20px rgba(197, 165, 90, 0.2);
}

.btn-gold:hover,
.btn-gold:active {
  background: var(--gc-gold-light) !important;
  color: var(--gc-charcoal) !important;
}

.nav-apply-btn {
  font-size: 14px;
  line-height: 20px;
  min-height: 40px;
  padding: 10px 24px;
}

.btn-outline-green {
  color: var(--gc-green-primary);
  border: 2px solid var(--gc-green-primary);
  background: transparent;
  min-height: 46px;
}

.btn-outline-green:hover,
.btn-outline-green:active {
  background: var(--gc-green-primary);
  color: #fff;
}

.btn-green {
  background: var(--gc-green-primary);
  border: 0;
  color: #fff;
  min-height: 46px;
  box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.btn-green:hover,
.btn-green:active {
  background: var(--gc-green-light) !important;
  color: #fff !important;
}

.hero-btn-primary {
  padding-left: 32px;
  padding-right: 32px;
}

.btn-callback {
  min-height: 56px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.hero-section {
  min-height: 100vh;
}

.hero-bg-accent {
  background: linear-gradient(90deg, rgba(13, 59, 15, 0.03) 0%, rgba(13, 59, 15, 0) 60%);
}

.hero-inner {
  padding-top: 128px;
  padding-bottom: 64px;
}

@media (min-width: 992px) {
  .hero-inner {
    padding-top: 160px;
    padding-bottom: 96px;
  }
}

.hero-dot {
  width: 8px;
  height: 8px;
}

.hero-eyebrow-pill {
  padding: 6px 16px;
  margin-top: -5px;
}

.hero-eyebrow {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
}

.hero-title {
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-size: clamp(40px, 7vw, 72px);
}

.hero-subhead {
  max-width: 576px;
  line-height: 1.625;
  font-size: 18px;
}

@media (min-width: 576px) {
  .hero-subhead {
    font-size: 20px;
  }
}

.hero-image-shell {
  padding-top: 12px;
}

.hero-deco {
  border-radius: 16px;
  z-index: -1;
}

.hero-deco-a {
  width: 96px;
  height: 96px;
  left: -24px;
  top: -24px;
  background: rgba(197, 165, 90, 0.2);
}

.hero-deco-b {
  width: 128px;
  height: 128px;
  right: -24px;
  bottom: -24px;
  background: rgba(27, 94, 32, 0.1);
}

.hero-image-overlay {
  height: 25%;
  background: linear-gradient(to top, rgba(13, 59, 15, 0.4), rgba(13, 59, 15, 0));
}

.hero-stat-card {
  left: -16px;
  bottom: -16px;
}

@media (min-width: 576px) {
  .hero-stat-card {
    left: -32px;
    bottom: 32px;
  }
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 94, 32, 0.1);
}

.hero-stat-number {
  font-size: 32px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
}

.hero-wave {
  line-height: 0;
}

.trust-row {
  column-gap: 0;
  row-gap: 16px;
}

.trust-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 992px) {
  .trust-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(27, 94, 32, 0.1);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(197, 165, 90, 0.3);
}

.display-10 {
  font-size: clamp(128px, 12vw, 192px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.display-plus {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  vertical-align: top;
}

.experience-line {
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, var(--gc-gold) 0%, rgba(197, 165, 90, 0.3) 100%);
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.section-title-tight {
  line-height: 1.25;
}

.experience-copy {
  max-width: 672px;
}

.link-arrow {
  transition: color 0.2s ease;
}

.link-arrow:hover {
  color: var(--gc-green-light) !important;
}

.value-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-2px);
  border-color: transparent !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gc-green-primary), var(--gc-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover .value-accent {
  opacity: 1;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 94, 32, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: var(--gc-green-primary);
}

.value-card:hover .value-icon i {
  color: #fff !important;
}

.value-card:hover .value-icon svg,
.value-card:hover .value-icon .lucide {
  color: rgb(218, 229, 219) !important;
  stroke: rgb(218, 229, 219) !important;
}

.why-bg-shape {
  top: -32px;
  left: -32px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(27, 94, 32, 0.05);
  z-index: -1;
}

.why-image-box {
  max-width: 568px;
  border-width: 4px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  outline: 1px solid rgba(27, 94, 32, 0.1);
}

.why-image-col {
  display: flex;
  align-items: flex-start;
}

.why-float-card {
  background: var(--gc-green-primary);
  right: -16px;
  bottom: -24px;
  max-width: 200px;
}

@media (min-width: 576px) {
  .why-float-card {
    right: -24px;
  }
}

.why-float-time {
  font-size: 48px;
  line-height: 1;
}

.check-dot {
  width: 24px;
  height: 24px;
  background: rgba(27, 94, 32, 0.1);
  flex-shrink: 0;
}

.products-head {
  max-width: 672px;
}

.section-head-64 {
  margin-bottom: 64px !important;
}

.section-cta-64 {
  margin-top: 64px !important;
}

.testimonials-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .testimonials-section {
    padding-top: 114px;
    padding-bottom: 114px;
  }
}

.loan-card {
  padding: 32px !important;
  transition: all 0.3s ease;
}

.loan-card:hover {
  border-color: rgba(27, 94, 32, 0.4) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.loan-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 94, 32, 0.1);
  transition: all 0.3s ease;
}

.loan-card:hover .loan-icon {
  background: rgba(197, 165, 90, 0.2);
}

.loan-card:hover .loan-icon i {
  color: var(--gc-gold) !important;
}

.steps-row {
  overflow: hidden;
}

.steps-line {
  position: absolute;
  top: 64px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--gc-green-primary), var(--gc-gold), var(--gc-green-primary));
  border-radius: 999px;
  z-index: 0;
}

.step-shell {
  width: 128px;
  height: 128px;
}

.step-ring {
  border: 2px dashed rgba(27, 94, 32, 0.2);
}

.step-center {
  width: 96px;
  height: 96px;
  background: var(--gc-green-primary);
  box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.step-no {
  font-size: 48px;
  line-height: 1;
}

.step-copy {
  max-width: 320px;
}

.mobile-arrow {
  width: 32px;
  height: 32px;
  background: rgba(197, 165, 90, 0.1);
}

.stats-section {
  background: linear-gradient(135deg, #1b5e20 0%, #0d3b0f 100%);
}

.stats-pattern {
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}

.stat-line {
  width: 40px;
  height: 2px;
  background: var(--gc-gold);
}

.stat-value {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.testimonial-wrap {
  max-width: 768px;
}

.quote-icon {
  color: rgba(197, 165, 90, 0.3);
  fill: rgba(197, 165, 90, 0.1);
  width: 48px;
  height: 48px;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.6;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(27, 94, 32, 0.2);
  color: var(--gc-green-primary);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.testimonial-nav:hover {
  background: var(--gc-green-primary);
  color: #fff;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(27, 94, 32, 0.2);
  padding: 0;
  transition: all 0.2s ease;
}

.testimonial-dot.active {
  width: 32px;
  background: var(--gc-green-primary);
}

.map-wrap {
  max-width: 896px;
}

.map-wrap img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.coverage-copy {
  max-width: 576px;
}

.contact-left,
.contact-right {
  padding: 32px !important;
}

@media (min-width: 576px) {
  .contact-left,
  .contact-right {
    padding: 48px !important;
  }
}

@media (min-width: 992px) {
  .contact-left,
  .contact-right {
    padding: 64px !important;
  }
}

@media (min-width: 992px) {
  .why-text-col {
    padding-left: 16px !important;
  }
}

.contact-right {
  background: var(--gc-green-primary);
  min-height: 100%;
}

.contact-pattern {
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 24px 24px;
}

.contact-title {
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 40px;
}

.gc-control {
  min-height: 54px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: var(--gc-charcoal);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.gc-control::placeholder {
  color: rgba(26, 26, 46, 0.4);
}

.gc-control:focus {
  background: #f9fafb;
  border-color: rgba(27, 94, 32, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
}

.gc-control:not(textarea) {
  line-height: 24px;
}

textarea.gc-control {
  min-height: 133px;
  resize: none;
}

.gc-select {
  color: rgba(26, 26, 46, 0.4);
}

.gc-select:focus,
.gc-select:valid {
  color: var(--gc-charcoal);
}

.form-gap-5 {
  gap: 20px !important;
}

.contact-lead {
  line-height: 24px;
  margin-bottom: 40px !important;
}

.contact-h2 {
  margin-bottom: 12px !important;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(197, 165, 90, 0.2);
}

/* ISO nav link (red highlight) - used across all pages */
.nav-link-iso {
  color: #dc2626 !important;
  font-weight: 700 !important;
}

.nav-link-iso:hover {
  color: #b91c1c !important;
}

.nav-link-iso::after {
  background: #dc2626 !important;
}

.footer-main {
  background: var(--gc-green-dark);
}

.footer-top {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 992px) {
  .footer-top {
    padding-top: 79px;
    padding-bottom: 79px;
  }
}

.footer-logo {
  width: auto;
  height: 48px;
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 320px;
  line-height: 1.65;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-social:hover {
  background: rgba(197, 165, 90, 0.2);
}

.footer-head {
  color: var(--gc-gold);
  font-size: 16px;
  line-height: 24px;
}

.text-lg-18 {
  font-size: 18px;
  line-height: 28px;
}

.text-lg-relaxed {
  font-size: 18px;
  line-height: 29.25px;
}

.text-base-relaxed {
  font-size: 16px;
  line-height: 26px;
}

.text-sm-relaxed {
  font-size: 14px;
  line-height: 22.75px;
}

.text-contact-value {
  font-size: 18px;
  line-height: 28px;
}

.footer-link,
.footer-link-small {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link-small:hover {
  color: #fff;
}

.footer-mail {
  word-break: break-word;
}

.footer-bottom {
  border-top-width: 1px;
  border-top-style: solid;
}

.animate-fade-in-up {
  animation: fade-in-up 0.7s ease-out both;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}

.animate-slide-in-left {
  animation: slide-in-left 0.7s ease-out both;
}

.animate-slide-in-right {
  animation: slide-in-right 0.7s ease-out both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .animate-fade-in-up,
  .animate-fade-in,
  .animate-slide-in-left,
  .animate-slide-in-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


@media (max-width: 480px) {
  .gc-main-nav {
    padding: 8px 0 !important;
  }
}
