:root {
  --bg: #fdfaf6;
  --panel: #ffffff;
  --panel-soft: #fff7f0;
  --text: #1c1917;
  --muted: #78716c;
  --accent: #f97316;
  --accent-soft: #fb923c;
  --accent-warm: #ea580c;
  --line: #fddcb5;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 38px rgba(28, 25, 23, 0.07);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

.site-shell {
  background:
    radial-gradient(1000px 600px at -8% -15%, rgba(249, 115, 22, 0.09) 0%, transparent 56%),
    radial-gradient(760px 460px at 108% 8%, rgba(234, 88, 12, 0.06) 0%, transparent 52%),
    linear-gradient(180deg, #fdfaf6 0%, #fff7f0 42%, #fce8d4 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  border-top: 1px solid rgba(249, 115, 22, 0.12);
  padding: 90px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Inter", sans-serif;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.logo {
  height: 64px;
  width: auto;
  vertical-align: middle;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 1.4rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.35));
  animation: float-logo 5s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.25)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 8px 25px rgba(234, 88, 12, 0.4)); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-links a {
  color: #44403c;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #1c1917;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(234, 88, 12, 0.08) 100%);
}

.nav-links a.active {
  color: #ea580c;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(234, 88, 12, 0.13) 100%);
  box-shadow: inset 0 0 0 1.5px rgba(249, 115, 22, 0.35);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 1.4rem;
  background:
    linear-gradient(135deg, rgba(170, 60, 8, 0.90) 0%, rgba(234, 88, 12, 0.96) 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 34px
    ),
    #7a2c06;
  background-size: 100% 100%, 28px 28px, 100% 100%, 100% 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(70, 18, 0, 0.38) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 1.4rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
  animation: float-logo 5s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.25)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 8px 25px rgba(234, 88, 12, 0.35)); }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tagline-shimmer {
  0%, 100% {
    text-shadow:
      0 0 24px rgba(255, 200, 80, 0.55),
      0 2px 10px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.06em;
  }
  50% {
    text-shadow:
      0 0 50px rgba(255, 220, 80, 1),
      0 0 90px rgba(255, 180, 40, 0.5),
      0 2px 10px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.11em;
  }
}

@keyframes line-grow {
  from { width: 0; opacity: 0; }
  to   { width: clamp(32px, 5vw, 60px); opacity: 0.75; }
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 999px;
  padding: 0.36rem 0.9rem;
  letter-spacing: 2.5px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero p {
  color: #ffffff;
  margin: 0 auto 2.2rem;
  max-width: 620px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.hero-body {
  color: #ffffff;
  font-size: clamp(0.88rem, 1.6vw, 0.97rem);
  line-height: 2;
  margin: 0 auto 2rem;
  max-width: 640px;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  animation: hero-fade-up 0.85s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
  background: #ffffff;
  color: var(--accent);
  padding: 0.96rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: hero-fade-up 0.85s 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.cta-btn span {
  font-size: 1rem;
}

.hero-mission-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #ffd580;
  margin: 0.6rem auto 1.6rem;
  letter-spacing: 0.06em;
  text-shadow:
    0 0 24px rgba(255, 200, 80, 0.55),
    0 2px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  white-space: nowrap;
  animation:
    hero-fade-up 0.85s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both,
    tagline-shimmer 3.5s 1.6s ease-in-out infinite;
}

.hero-mission-tagline::before,
.hero-mission-tagline::after {
  content: "";
  display: block;
  width: clamp(32px, 5vw, 60px);
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #ffd580 60%, transparent);
  flex-shrink: 0;
  opacity: 0.75;
  animation: line-grow 0.65s 0.9s ease-out both;
}

.glow {
  position: absolute;
  display: block;
  z-index: 1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.glow-a {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0) 70%);
  top: 9%;
  left: 8%;
}

.glow-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.16) 0%, rgba(234, 88, 12, 0) 72%);
  right: 8%;
  bottom: 9%;
}

.features,
.about,
.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(241, 245, 249, 0.8) 100%);
}

.features h2,
.about h2,
.contact h2 {
  text-align: center;
  font-size: clamp(2.1rem, 6vw, 3.35rem);
  line-height: 1;
  color: var(--text);
}

.section-divider {
  width: 56px;
  height: 3px;
  margin: 14px auto 38px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 60%, #fb923c 100%);
  border-radius: 999px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
}

/* ── Card illustrations ──────────────────────────────────── */
.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card-illus {
  width: 80px;
  height: 80px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .card-illus {
  transform: scale(1.1) translateY(-3px);
}

.card-sys-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .card-sys-icon {
  transform: scale(1.12) rotate(-4deg);
}

.card-title {
  font-family: "Inter", sans-serif;
  color: var(--accent);
  font-size: clamp(0.9rem, 1.1vw, 1.3rem);
  margin-bottom: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: bold;
}

.center-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.mt-4 {
  margin-top: 2.5rem;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  gap: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.42);
}

.step-illus {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover .step-illus {
  transform: scale(1.12) rotate(-4deg);
}

.step-num {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 55%, #fb923c 100%);
  color: #ffffff;
  font-weight: 800;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  white-space: nowrap;
}

.step-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-text strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.company-overview {
  max-width: 1080px;
  margin: 0 auto;
}

.company-title {
  color: var(--text);
  font-size: clamp(2.1rem, 6vw, 3.35rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  position: relative;
  padding-bottom: 34px;
  margin-bottom: 1.2rem;
}

.company-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 60%, #fb923c 100%);
}

.company-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.company-row {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  align-items: stretch;
}

.company-row + .company-row {
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.company-key,
.company-value {
  padding: 1.08rem 1.3rem;
  color: var(--text);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
}

.company-key {
  font-weight: 700;
  background: rgba(249, 115, 22, 0.06);
}

.company-value {
  font-weight: 500;
}

.contact-wrap {
  max-width: 760px;
}

.contact p {
  text-align: center;
  color: var(--muted);
  margin: -4px 0 2rem;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.05rem, 3vw, 1.45rem);
}

.contact-form label {
  display: block;
}

.contact-form span {
  display: block;
  color: #78716c;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.45rem 0.15rem;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

input,
textarea {
  width: 100%;
  background: rgba(253, 250, 246, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 12px;
  color: var(--text);
  padding: 0.86rem 0.92rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

textarea {
  resize: vertical;
  margin-bottom: 1.1rem;
}

.submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 55%, #fb923c 100%);
  color: #ffffff;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.25);
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

.footer {
  border-top: 1px solid rgba(249, 115, 22, 0.18);
  background: #ffffff;
  padding: 1.35rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.footer p {
  margin: 0;
  color: #a8a29e;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-logo {
    margin: 0 auto 1.4rem;
  }
  .hero p {
    margin: 0 auto 2.2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .company-key,
  .company-value {
    font-size: 0.98rem;
    padding: 0.95rem 1rem;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 70px;
  }

  .logo {
    height: 52px;
  }

  .hero-logo {
    height: 90px;
    margin-bottom: 1.1rem;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links a {
    padding: 0.42rem 0.62rem;
    font-size: 0.84rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero-inner {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem);
  }

  .row {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, 94vw);
  }

  .nav-links {
    gap: 0.2rem;
  }

  .nav-links a {
    font-size: 0.78rem;
    padding: 0.36rem 0.5rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero-inner {
    padding: 1.45rem 1.05rem;
  }

  .glow-a {
    width: 170px;
    height: 170px;
    left: -10%;
  }

  .glow-b {
    width: 210px;
    height: 210px;
    right: -12%;
  }
}

/* Systems Carousel */
.systems-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.systems-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 1.1rem;
  padding: 1rem 0;
  width: 100%;
}

.systems-carousel::-webkit-scrollbar {
  display: none;
}

.systems-carousel .feature-card {
  flex: 0 0 calc(33.333% - 0.74rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

/* Wrap a feature-card with this anchor when the card should link to a page */
.feature-card-link {
  display: block;
  flex: 0 0 calc(33.333% - 0.74rem);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.feature-card-link .feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.feature-card-link:hover .feature-card {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
}

.card-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}

.feature-card-link:hover .card-cta {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .feature-card-link {
    flex: 0 0 calc(50% - 0.55rem);
  }
}

@media (max-width: 600px) {
  .feature-card-link {
    flex: 0 0 100%;
  }
}

/* ── Core System Section ─────────────────────────────── */
.core-system-section {
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, rgba(234,88,12,0.03) 100%);
}

.core-system-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft), 0 0 0 6px rgba(249,115,22,0.06);
  position: relative;
}

.core-system-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.core-system-icon {
  width: 96px;
  height: 96px;
}

.core-system-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.core-system-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.9rem;
  line-height: 1.2;
}

.core-system-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 1.2rem;
}

.core-system-desc strong {
  color: var(--accent-warm);
}

.core-system-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.2rem;
}

.core-system-highlights li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.core-system-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-btn--sm {
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
}

@media (max-width: 760px) {
  .core-system-inner {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .core-system-icon-wrap {
    width: 110px;
    height: 110px;
  }
  .core-system-highlights {
    grid-template-columns: 1fr;
  }
}

.carousel-btn {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #f97316;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(28, 25, 23, 0.06);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #f97316;
  color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .systems-carousel .feature-card {
    flex: 0 0 calc(50% - 0.55rem);
  }
}
@media (max-width: 600px) {
  .systems-carousel .feature-card {
    flex: 0 0 100%;
  }
}
