/* ================================
   Orbit Capital Global Styles
================================ */

.orbit-page {
  --orbit-green: #004438;
  --orbit-green-dark: #003d34;
  --orbit-green-hover: #00604f;
  --orbit-text: #233832;
  --orbit-heading: #303434;
  --orbit-muted: #4c5b56;
  --orbit-soft-muted: #5a6762;
  --orbit-coral: #f3654b;
  --orbit-coral-hover: #d94f38;
  --orbit-soft-bg: #f8f6f2;
  --orbit-card-border: #dfe7e2;
  --orbit-shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.05);
  --orbit-shadow-hover: 0 18px 36px rgba(0, 0, 0, 0.08);

  font-family: Arial, sans-serif;
  color: var(--orbit-text);
  background: #ffffff;
}

.orbit-page *,
.orbit-page *::before,
.orbit-page *::after {
  box-sizing: border-box;
}

.orbit-container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

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

/* ================================
   Top Navigation
================================ */

.orbit-top-nav {
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 50;
}

.orbit-nav-inner {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-nav-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

/* ================================
   Hero Intro
================================ */

.orbit-hero-intro {
  padding: 80px 0 50px;
  background: #ffffff;
}

.orbit-top-mark {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.orbit-top-mark span {
  width: 10px;
  height: 42px;
  background: #8fb7a6;
  border-radius: 50px;
  opacity: 0.9;
  transform: rotate(-20deg);
}

.orbit-top-mark span:nth-child(2) {
  height: 52px;
  transform: rotate(-10deg);
}

.orbit-top-mark span:nth-child(3) {
  height: 60px;
  transform: rotate(0deg);
}

.orbit-top-mark span:nth-child(4) {
  height: 52px;
  transform: rotate(10deg);
}

.orbit-top-mark span:nth-child(5) {
  height: 42px;
  transform: rotate(20deg);
}

.orbit-hero-intro h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  color: var(--orbit-green);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.orbit-hero-text {
  max-width: 680px;
  margin: 0 auto 12px;
  font-size: 17px;
  line-height: 1.8;
  color: #55615d;
}

.orbit-hero-text.small {
  max-width: 760px;
  font-size: 15px;
}

/* ================================
   Buttons
================================ */

.orbit-btn {
  display: inline-block;
  padding: 13px 28px;
  margin-top: 18px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.orbit-btn-coral {
  background: var(--orbit-coral);
  color: #ffffff;
}

.orbit-btn-coral:hover {
  background: var(--orbit-coral-hover);
  color: #ffffff;
}

.orbit-btn-green {
  background: var(--orbit-green);
  color: #ffffff;
}

.orbit-btn-green:hover {
  background: var(--orbit-green-hover);
  color: #ffffff;
}

/* ================================
   Image Hero
================================ */

.orbit-image-hero {
  min-height: 680px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.orbit-image-hero-content {
  width: min(1120px, 90%);
  margin: 0 auto;
  color: var(--orbit-green);
}

.orbit-mini-logo {
  font-size: 32px;
  letter-spacing: 16px;
  line-height: 1;
  margin-bottom: 40px;
  color: #0b3f34;
}

.orbit-mini-logo span {
  font-size: 12px;
  letter-spacing: 8px;
}

.orbit-image-hero h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 28px;
  color: var(--orbit-green);
  font-weight: 800;
}

.orbit-image-hero p {
  font-size: 20px;
  max-width: 420px;
  line-height: 1.6;
  color: #23423a;
}

/* ================================
   Brand Selection Cards
================================ */

.orbit-selection {
  padding: 70px 0 90px;
  background: #ffffff;
}

.orbit-selection h2 {
  max-width: 780px;
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: #2f3432;
  font-weight: 800;
}

.orbit-card-grid {
  display: grid;
  gap: 34px;
}

.orbit-three {
  grid-template-columns: repeat(3, 1fr);
}

.orbit-four {
  grid-template-columns: repeat(2, 1fr);
}

.orbit-product-card {
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.orbit-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--orbit-shadow-hover);
}

.orbit-product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.orbit-product-card div {
  padding: 22px;
}

.orbit-product-card h3 {
  margin: 0 0 10px;
  color: #102f28;
  font-size: 21px;
}

.orbit-product-card p {
  margin: 0;
  color: var(--orbit-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================================
   About Section
================================ */

.orbit-about {
  padding: 80px 0 100px;
  background: #ffffff;
}

.orbit-two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.orbit-about-copy {
  position: relative;
}

.orbit-floating-small {
  width: 70px;
  position: absolute;
  left: -70px;
  top: -20px;
}

.orbit-eyebrow {
  text-transform: uppercase;
  color: var(--orbit-green);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.orbit-about h2,
.orbit-approach h2,
.orbit-values h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--orbit-heading);
  font-weight: 800;
}

.orbit-about p {
  color: var(--orbit-muted);
  line-height: 1.85;
  font-size: 16px;
}

.orbit-about-image {
  position: relative;
}

.orbit-about-image > img:first-child {
  width: 100%;
  display: block;
}

.orbit-floating-leaf {
  position: absolute;
  width: 110px;
  left: -55px;
  bottom: -40px;
}

/* ================================
   Approach Section
================================ */

.orbit-approach {
  padding: 80px 0 90px;
  background: #ffffff;
}

.orbit-wide-image {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  margin-top: 40px;
}

.orbit-approach-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.orbit-approach-bottom p {
  color: var(--orbit-muted);
  line-height: 1.85;
  font-size: 16px;
}

.orbit-quote-box {
  background: var(--orbit-green);
  padding: 36px;
}

.orbit-quote-box p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

/* ================================
   Values Section
   What We’re All About
================================ */

.orbit-values {
  padding: 95px 0;
  background: var(--orbit-soft-bg);
}

.orbit-values h2 {
  text-align: center;
  margin-bottom: 45px;
  color: var(--orbit-heading);
}

.orbit-value-card {
  background: #ffffff;
  border: 1px solid var(--orbit-card-border);
  border-radius: 8px;
  padding: 30px 34px;
  min-height: 210px;
  box-shadow: var(--orbit-shadow-soft);
  transition: all 0.25s ease;
}

.orbit-value-card:hover {
  transform: translateY(-3px);
  border-color: #cfdad4;
  box-shadow: var(--orbit-shadow-hover);
}

.orbit-value-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 14px;
}

.orbit-value-card h3 {
  margin: 0 0 10px;
  color: #102f28;
  font-size: 22px;
}

.orbit-value-card p {
  margin: 0;
  color: var(--orbit-soft-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================================
   Contact Band
================================ */

.orbit-contact-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #2a9bd6 0%, #23b9a8 100%);
}

.orbit-contact-box {
  width: min(900px, 90%);
  margin: 0 auto;
  background: var(--orbit-coral);
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.orbit-contact-box h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 36px;
}

.orbit-contact-box p {
  margin: 0;
  color: #ffffff;
  line-height: 1.7;
}

.orbit-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 0 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.orbit-form input::placeholder {
  color: #ffffff;
  opacity: 0.85;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.orbit-form button {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.orbit-form button:hover {
  background: var(--orbit-green-dark);
}

/* ================================
   Footer
================================ */

.orbit-footer {
  background: var(--orbit-green-dark);
  color: #ffffff;
  padding: 70px 0 24px;
}

.orbit-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
}

.orbit-footer-logo {
  font-size: 26px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.orbit-footer-logo span {
  display: block;
  font-size: 12px;
  letter-spacing: 5px;
  margin-top: 6px;
}

.orbit-footer p,
.orbit-footer li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 14px;
}

.orbit-footer h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 16px;
}

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

.orbit-footer-bottom {
  width: min(1120px, 90%);
  margin: 50px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.orbit-footer-bottom p {
  margin: 0;
  font-size: 13px;
}

/* ================================
   Responsive
================================ */

@media (max-width: 980px) {
  .orbit-three,
  .orbit-four,
  .orbit-two-col,
  .orbit-approach-bottom,
  .orbit-contact-box,
  .orbit-footer-grid {
    grid-template-columns: 1fr;
  }

  .orbit-image-hero {
    min-height: 560px;
    background-position: center bottom;
  }

  .orbit-floating-small,
  .orbit-floating-leaf {
    display: none;
  }

  .orbit-contact-box {
    padding: 34px 28px;
  }
}

@media (max-width: 600px) {
  .orbit-top-nav {
    padding: 14px 0;
  }

  .orbit-nav-logo {
    max-width: 125px;
  }

  .orbit-hero-intro {
    padding: 55px 0 35px;
  }

  .orbit-image-hero {
    min-height: 500px;
    background-position: center right;
  }

  .orbit-mini-logo {
    font-size: 22px;
    letter-spacing: 10px;
  }

  .orbit-product-card img {
    height: 190px;
  }

  .orbit-selection,
  .orbit-about,
  .orbit-approach,
  .orbit-values {
    padding: 60px 0;
  }

  .orbit-wide-image {
    min-height: 300px;
  }

  .orbit-value-card {
    padding: 26px 24px;
  }

  .orbit-value-card img {
    width: 82px;
    height: 82px;
  }

  .orbit-contact-box h2 {
    font-size: 30px;
  }
}

/* ================================
   Contact Section
================================ */

.orbit-contact {
  padding: 90px 0;
  background: #ffffff;
}

.orbit-contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.orbit-contact h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--orbit-heading);
  font-weight: 800;
}

.orbit-contact p {
  color: var(--orbit-muted);
  line-height: 1.85;
  font-size: 16px;
}

.orbit-contact-card {
  background: var(--orbit-soft-bg);
  border: 1px solid var(--orbit-card-border);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--orbit-shadow-soft);
}

.orbit-contact-card h3 {
  margin: 0 0 24px;
  color: #102f28;
  font-size: 24px;
}

.orbit-contact-card p {
  margin: 0 0 22px;
}

.orbit-contact-card a {
  color: var(--orbit-green);
  text-decoration: none;
  font-weight: 700;
}

.orbit-contact-card .orbit-btn {
  color: #ffffff;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .orbit-contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .orbit-contact {
    padding: 60px 0;
  }

  .orbit-contact-card {
    padding: 28px 24px;
  }
}