/* ── COLOUR VARIABLES (mapped to existing site palette) ── */
:root {
  --ustar-primary: #fa4d09;
  --ustar-gold: #f39800;
  --ustar-dark: #223a66;
  --ustar-dark-2: #152440;
  --ustar-mid: #6F8BA4;
  --ustar-gray: #f4f9fc;
  --ustar-border: #eee;
  --ustar-charcoal: #1a1a2e;
  --ustar-cream: #f8f4ee;
  --ustar-ink: #0d0d0d;
}

/* ── UTILITY ── */
.text-color {
  color: #223a66;
}

.text-color-2 {
  color: #f39800;
}

.title-color {
  color: #fa4d09;
}

.bg-gray {
  background: #f3980026;
}

.bg-primary-dark {
  background: #152440;
}

.bg-primary-darker {
  background: #090f1a;
}

/* ── BUTTONS (Bootstrap 4 + site style.css aligned) ── */
.btn-ustar {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 12px 32px;
  font-family: "Exo", sans-serif;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: all .35s ease;
}

.btn-ustar:focus {
  outline: 0;
  box-shadow: none;
}

.btn-ustar-main {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.btn-ustar-main:hover {
  background: #f39800 !important;
  border-color: #f39800 !important;
  color: #fff !important;
}

.btn-ustar-primary {
  background-color: #fa4d09 !important;
  color: #fff !important;
  border-color: #fa4d09 !important;
}

.btn-ustar-primary:hover {
  background: #f39800 !important;
  border-color: #f39800 !important;
  color: #fff !important;
}

.btn-ustar-outline {
  border: 2px solid #fff !important;
  background: transparent !important;
  color: #fff !important;
}

.btn-ustar-outline:hover {
  border: 2px solid #f39800 !important;
  color: #fff !important;
  background: #f39800 !important;
}

.btn-ustar-white {
  background: #fff !important;
  border-color: #fff !important;
  color: #222 !important;
}

.btn-ustar-white:hover {
  background: #f39800 !important;
  color: #fff !important;
  border-color: #f39800 !important;
}

.btn-ustar-gold {
  background: #f39800;
  color: #fff;
  border-color: #f39800;
}

.btn-ustar-gold:hover {
  background: #fa4d09;
  border-color: #fa4d09;
  color: #fff;
}

/* ── BREADCRUMB ── */
.breadcrumb-ustar {
  background: #f8f4ee;
  border-bottom: 1px solid #e4dfd8;
  padding: 12px 0;
  margin-bottom: 0;
  border-radius: 0;
}

.breadcrumb-ustar ol {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb-ustar li {
  font-size: 13px;
  color: #000;
}

.breadcrumb-ustar li a {
  color: #223a66;
}

.breadcrumb-ustar li+li::before {
  content: '/';
  margin-right: 6px;
  color: #000;
}

/* ── HERO ── */
.hero {
  background: #1a1a2e;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(243, 152, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 10% 80%, rgba(34, 58, 102, 0.18) 0%, transparent 60%);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  color: #f39800;
  font-style: normal;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 152, 0, 0.15);
  border: 1px solid rgba(243, 152, 0, 0.3);
  color: #f39800;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero-eyebrow .fa {
  font-size: 14px;
}

/* ── HERO CARD / FORM ── */
.hero-card {
  background: #fff;
  border-top: 4px solid #f39800;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
  font-size: 21px;
  margin-bottom: 20px;
  color: #222;
}

.hero-card .form-control {
  background: #f4f9fc;
  height: 55px;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.hero-card .form-control:focus {
  box-shadow: none;
  border: 1px solid #223a66;
}

.hero-card textarea.form-control {
  height: auto;
  min-height: 80px;
}

.hero-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 5px;
}

.form-note {
  font-size: 12px;
  color: #000;
  margin-top: 10px;
  text-align: center;
}

/* ── TRUST BADGES ── */
.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 24px;
  color: #f39800;
}

.trust-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-ustar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(243, 152, 0, 0.08);
  border: 1px solid rgba(243, 152, 0, 0.3);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.badge-ustar .fa {
  font-size: 16px;
  color: #f39800;
}

/* ── SECTION COMMON ── */
.lp-section {
  padding: 80px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f39800;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 45px);
  color: #222;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
}

/* ── WHY USTAR CARDS ── */
.why-card {
  border: 1.5px solid #ede9e2;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  background: #fff;
  height: 100%;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f39800, #fa4d09);
  opacity: 0;
  transition: opacity 0.25s;
}

.why-card:hover {
  border-color: #f39800;
  box-shadow: 0 8px 32px rgba(243, 152, 0, 0.12);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  font-size: 35px;
  margin-bottom: 16px;
  color: #fa4d09;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  color: #000;
  line-height: 1.6;
}

/* ── KIT CONTENTS ── */
.kit-contents {
  background: #1a1a2e;
  color: #fff;
}

.kit-contents .section-title {
  color: #fff;
}

.kit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 152, 0, 0.2);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
  height: 100%;
}

.kit-item:hover {
  background: rgba(243, 152, 0, 0.1);
  border-color: #f39800;
}

.kit-item .fa {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f39800;
}

.kit-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.kit-item p {
  color: rgba(255, 255, 255, 0.5);
}

/* ── PROCESS STEPS ── */
.process {
  background: #f8f4ee;
}

.step-num {
  width: 56px;
  height: 56px;
  background: #f39800;
  color: #222;
  font-family: "Alegreya", serif;
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.step p {
  color: #000;
  max-width: 200px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, #f39800, #fa4d09, #f39800);
  z-index: 0;
}

/* ── PRODUCTS ── */
.prod-card {
  border: 1.5px solid #ede9e2;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
  height: 100%;
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.prod-thumb {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a3a50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.prod-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(243, 152, 0, 0.15));
}

.prod-thumb .fa {
  color: #f39800;
  position: relative;
  z-index: 1;
}

.prod-body {
  padding: 28px;
}

.prod-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.prod-body p {
  color: #000;
  margin-bottom: 12px;
}

.prod-link {
  font-size: 13px;
  font-weight: 600;
  color: #f39800;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prod-link:hover {
  color: #fa4d09;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1b2e 100%);
}

.testimonials .section-title {
  color: #fff;
}

.test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(243, 152, 0, 0.15);
  padding: 36px 30px;
  position: relative;
  height: 100%;
}

.test-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: "Alegreya", serif;
  font-size: 80px;
  color: #f39800;
  opacity: 0.25;
  line-height: 1;
}

.test-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  background: #f39800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #222;
}

.test-author strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.test-author span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.stars {
  color: #f39800;
  font-size: 13px;
  margin-bottom: 12px;
}

/* ── FAQ ── */
.faq {
  background: #f8f4ee;
}

.faq-item {
  border-bottom: 1.5px solid #e4dfd8;
  display: block;
  width: 100%;
}

.faq-q {
  padding: 20px 0;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: #f39800;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #000;
  line-height: 1.7;
  display: block;
  width: 100%;
}

.faq-a p {
  padding-bottom: 18px;
  margin-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #f39800 0%, #fa4d09 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 45px);
  color: #222;
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  color: rgba(13, 13, 13, 0.7);
  margin-bottom: 32px;
  position: relative;
  font-weight: bold;
}

/* ── FOOTER ── */
.footer-ustar {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0 24px;
}

.footer-ustar a {
  color: #f39800;
  font-size: 19px;
  text-decoration: none;
}

.footer-ustar a:hover {
  color: #fa4d09;
}

.footer-ustar p {
  font-size: 13px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-ustar .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-ustar .footer-copy {
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fade-in {
  animation: fadeUp 0.7s ease both;
}

.fade-in:nth-child(1) {
  animation-delay: 0s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.3s;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 991px) {
  .process-line {
    display: none;
  }

  .step {
    margin-bottom: 32px;
  }

  .step:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 0 50px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {

  h2,
  .h2 {
    font-size: 26px;
    line-height: 36px;
  }
}