.finance-hero {
  background: radial-gradient(circle at 85% 30%, rgba(255,120,40,.15), transparent 40%),
              linear-gradient(180deg, #061226, #071327);
  padding: 30px 40px;
  color: #fff;
  overflow: hidden;
  margin-top: 80px;
}

.finance-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.finance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(80,140,255,.12);
  border: 1px solid rgba(80,140,255,.2);
  font-size: 13px;
  margin-bottom: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #4ea1ff;
  border-radius: 50%;
}

.finance-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
}

.finance-title span {
  color: #ff6a21;
}

.finance-desc {
  margin-top: 20px;
  color: #9fb1c7;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

/* BUTTONS */

.finance-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  background: #ff6a21;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  box-shadow: 0 15px 40px rgba(255,100,30,.35);
  transition: .3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255,100,30,.5);
}

.btn-secondary {
  padding: 16px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  color: #cdd6e4;
  text-decoration: none;
  transition: .3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.05);
}

/* RIGHT */

.finance-media {
  position: relative;
}

.finance-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.finance-image-wrap img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}

.finance-media:hover img {
  transform: scale(1.05);
}

/* GLOW */

.finance-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,100,30,.25), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove {
  0% { transform: translateY(0) }
  50% { transform: translateY(-10px) }
  100% { transform: translateY(0) }
}

/* RESPONSIVE */

@media(max-width:1000px){
  .finance-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .finance-desc {
    margin: auto;
  }

  .finance-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* INFRA SECTION */

.infra-section {
  background: #f5f7fa;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* container */

.infra-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.infra-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.infra-desc {
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

/* FEATURES */

.infra-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.infra-item {
  display: flex;
  gap: 14px;
  transition: all .3s ease;
}

.infra-item:hover {
  transform: translateY(-4px);
}

.infra-item h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.infra-item p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

/* ICON */

.infra-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,100,30,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff6a21;
  transition: .3s ease;
}

.infra-item:hover .infra-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255,100,30,.2);
}

/* RIGHT IMAGE */

.infra-right {
  position: relative;
}

.infra-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.infra-image img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}

.infra-right:hover img {
  transform: scale(1.05);
}

/* SUBTLE GLOW (very important for premium feel) */

.infra-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(80,140,255,.15), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  opacity: .6;
}

/* RESPONSIVE */

@media(max-width:1000px){
  .infra-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .infra-desc {
    margin: auto;
  }

  .infra-features {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SECTION BASE
================================ */
.solutions {
  background: linear-gradient(180deg, #071327, #091a34); /* dark gradient */
  padding: 120px 40px;
  font-family: Inter, system-ui;
  color: white;
  text-align: center;
}

/* ================================
   HEADER
================================ */
.solutions-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* orange underline */
.solutions-line {
  width: 120px;
  height: 4px;
  margin: auto;
  background: #ff6a21;
  border-radius: 4px;
  margin-bottom: 80px;
}

/* ================================
   GRID LAYOUT
================================ */
.solutions-grid {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards */
  gap: 30px;
}

/* ================================
   CARD
================================ */
.solution-card {
  background: #f3f4f6; /* light card */
  color: #0f172a;

  padding: 40px;
  border-radius: 18px;

  text-align: left;

  /* subtle shadow */
  box-shadow: 0 20px 50px rgba(0,0,0,.15);

  /* smooth hover */
  transition:
    transform .35s ease,
    box-shadow .35s ease;

  position: relative;
  overflow: hidden;
}

/* hover lift */
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(0,0,0,.25),
    0 0 40px rgba(80,140,255,.12);
}

/* ================================
   ICON
================================ */
.solution-icon {
  font-size: 26px;
  color: #ff6a21;
  margin-bottom: 20px;

  /* subtle interaction */
  transition: transform .3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.15);
}

/* ================================
   TITLE
================================ */
.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ================================
   DESCRIPTION
================================ */
.solution-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ================================
   LINK
================================ */
.solution-link {
  font-weight: 600;
  color: #ff6a21;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: gap .3s ease;
}

/* arrow slide effect */
.solution-link:hover {
  gap: 10px;
}

/* ================================
   GLOW SWEEP EFFECT (premium touch)
================================ */
.solution-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: .6s;
}

/* sweep animation on hover */
.solution-card:hover::before {
  left: 140%;
}

/* ================================
   FLOAT ANIMATION (very subtle)
================================ */
.solution-card {
  animation: floatCard 7s ease-in-out infinite;
}

/* stagger effect */
.solution-card:nth-child(2) { animation-delay: 1s; }
.solution-card:nth-child(3) { animation-delay: 2s; }
.solution-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:1100px){
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-header h2 {
    font-size: 32px;
  }
}   

/* RESILLIWENT SOLUTIONS */

/* =========================================
   SECTION BASE
========================================= */
.resilient {
  background: #f3f4f6; /* light gray bg */
  padding: 120px 40px;
  font-family: Inter, system-ui;
}

/* =========================================
   CONTAINER (GRID)
========================================= */
.resilient-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
}

/* =========================================
   IMAGE
========================================= */
.resilient-image {
  border-radius: 22px;
  overflow: hidden;

  /* depth shadow */
  box-shadow: 0 30px 80px rgba(0,0,0,.25);

  position: relative;
}

/* image base */
.resilient-image img {
  width: 100%;
  display: block;

  transition: transform .6s ease, filter .6s ease;
}

/* hover zoom */
.resilient-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* light sweep effect */
.resilient-image::after {
  content: "";
  position: absolute;

  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: .6s;
}

.resilient-image:hover::after {
  left: 140%;
}

/* subtle floating */
.resilient-image {
  animation: floatImage 7s ease-in-out infinite;
}

/* =========================================
   CONTENT
========================================= */
.resilient-content h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

/* highlight orange text */
.resilient-content h2 span {
  color: #f25c0d;
}

/* description */
.resilient-desc {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

/* =========================================
   LIST
========================================= */
.resilient-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* item */
.resilient-item {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 16px;
  color: #0f172a;

  transition: transform .3s ease;
}

/* hover micro interaction */
.resilient-item:hover {
  transform: translateX(6px);
}

/* =========================================
   CHECK ICON
========================================= */
.check {
  width: 26px;
  height: 26px;

  border-radius: 50%;

  border: 2px solid #3b82f6;

  position: relative;
}

/* check mark */
.check::after {
  content: "✓";

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  color: #3b82f6;
  font-size: 14px;
  font-weight: 700;
}

/* glow pulse */
.check {
  animation: pulseCheck 3s infinite ease-in-out;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulseCheck {
  0% { box-shadow: 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 0 15px rgba(59,130,246,.4); }
  100% { box-shadow: 0 0 0 rgba(59,130,246,0); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:1000px){
  .resilient-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resilient-content {
    text-align: center;
  }

  .resilient-desc {
    margin: auto;
  }
}

@media(max-width:600px){
  .resilient {
    padding: 80px 20px;
  }

  .resilient-content h2 {
    font-size: 32px;
  }

  .resilient-desc {
    font-size: 16px;
  }
}

/* COMPARISON  */

/* =========================================
   SECTION BASE
========================================= */
.benchmark {
  background: linear-gradient(180deg, #071327, #091a34);
  padding: 120px 40px;
  font-family: Inter, system-ui;
  color: white;
  text-align: center;
}

/* =========================================
   HEADER
========================================= */
.benchmark-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benchmark-header p {
  color: #8ea2bd;
  font-size: 18px;
  margin-bottom: 70px;
}

/* =========================================
   GRID
========================================= */
.benchmark-grid {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================================
   CARD BASE
========================================= */
.benchmark-card {
  padding: 40px;
  border-radius: 18px;
  text-align: left;

  position: relative;
  overflow: hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border .35s ease;
}

/* hover lift */
.benchmark-card:hover {
  transform: translateY(-6px);
}

/* =========================================
   LEGACY CARD (DARK BLUE)
========================================= */
.legacy {
  background: linear-gradient(
    180deg,
    rgba(30,45,70,.7),
    rgba(12,20,36,.95)
  );

  border: 1px solid rgba(255,255,255,.06);

  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* =========================================
   MODERN CARD (ORANGE GLOW)
========================================= */
.modern {
  background: linear-gradient(
    180deg,
    rgba(60,30,20,.8),
    rgba(30,15,10,.95)
  );

  border: 1px solid rgba(255,120,40,.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,.6),
    0 0 40px rgba(255,120,40,.08);
}

/* glow on hover */
.modern:hover {
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 60px rgba(255,120,40,.2);
}

/* =========================================
   BADGE (ACTIVE)
========================================= */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;

  background: #ff6a21;
  color: white;

  font-size: 12px;
  font-weight: 700;

  padding: 6px 12px;
  border-radius: 20px;
}

/* =========================================
   TITLE
========================================= */
.card-title {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 30px;
}

.card-title h3 {
  font-size: 20px;
  font-weight: 700;
}

/* icon color */
.icon {
  font-size: 20px;
  color: #ff6a21;
}

/* =========================================
   ROWS
========================================= */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255,255,255,.08);

  font-size: 16px;
}

/* left text */
.row span {
  color: #8ea2bd;
}

/* right value */
.row strong {
  color: white;
  font-weight: 600;
}

/* =========================================
   GLOW SWEEP EFFECT
========================================= */
.benchmark-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.2),
    transparent
  );

  transform: skewX(-20deg);
  transition: .6s;
}

.benchmark-card:hover::before {
  left: 140%;
}

/* =========================================
   FLOAT ANIMATION
========================================= */
.benchmark-card {
  animation: floatCard 7s ease-in-out infinite;
}

.benchmark-card:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:900px){
  .benchmark-grid {
    grid-template-columns: 1fr;
  }

  .benchmark-header h2 {
    font-size: 32px;
  }
}

/* METRICS  */

/* =========================================
   SECTION BASE
========================================= */
.metrics {
  background: #f3f4f6;
  padding: 120px 40px;
  font-family: Inter, system-ui;
  text-align: center;
}

/* =========================================
   GRID
========================================= */
.metrics-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* =========================================
   ITEM
========================================= */
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform .3s ease;
}

/* hover lift */
.metric:hover {
  transform: translateY(-6px);
}

/* =========================================
   CIRCLE BASE
========================================= */
.circle {
  width: 160px;
  height: 160px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  margin-bottom: 25px;
}

/* number */
.circle span {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

/* =========================================
   PROGRESS RING USING CONIC GRADIENT
========================================= */
.circle::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 50%;

  /* dynamic progress (controlled via JS) */
  background: conic-gradient(
    var(--color) calc(var(--progress) * 1%),
    #e5e7eb 0
  );

  /* thickness */
  -webkit-mask: radial-gradient(circle, transparent 68%, black 69%);
  mask: radial-gradient(circle, transparent 68%, black 69%);
}

/* =========================================
   COLORS
========================================= */
.orange {
  --color: #f25c0d;
}

.blue {
  --color: #4f7df3;
}

.green {
  --color: #22c55e;
}

/* =========================================
   TEXT
========================================= */
.metric h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.metric p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  max-width: 280px;
}

/* =========================================
   GLOW (SUBTLE PREMIUM TOUCH)
========================================= */
.circle {
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 10px 30px rgba(0,0,0,.08);
}

.circle.orange {
  box-shadow: 0 0 25px rgba(236, 85, 4, 0.5);
}

.circle.blue {
  box-shadow: 0 0 25px rgba(11, 75, 235, 0.5);
}

.circle.green {
  box-shadow: 0 0 25px rgba(3, 248, 93, 0.5);
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:900px){
  .metrics-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* CTA  */

/* =========================================
   SECTION WRAPPER
========================================= */
.consult-cta {
  padding: 120px 40px;
  background: linear-gradient(180deg, #061327, #091a34);
  font-family: Inter, system-ui;
}

/* =========================================
   MAIN CONTAINER (CARD)
========================================= */
.consult-box {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;

  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 60px rgba(80,140,255,.08);
}

/* =========================================
   LEFT PANEL (ORANGE)
========================================= */
.consult-left {
  background: #f25c0d;
  color: white;

  padding: 80px 70px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

/* subtle animated glow */
.consult-left::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 50%);

  animation: glowMove 10s ease-in-out infinite;
  pointer-events: none;
}

/* =========================================
   LEFT TEXT
========================================= */
.consult-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.consult-left p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 420px;
  opacity: .95;
}

/* =========================================
   INFO BLOCKS
========================================= */
.consult-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-item .icon {
  font-size: 20px;
  margin-top: 4px;
}

/* =========================================
   RIGHT PANEL (FORM)
========================================= */
.consult-right {
  background: #f3f4f6;
  padding: 60px;
}

/* =========================================
   FORM STRUCTURE
========================================= */
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* two-column row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* =========================================
   INPUT GROUP
========================================= */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 600;
}

/* =========================================
   INPUT STYLING
========================================= */
.form-group input,
.form-group select {
  height: 54px;
  border-radius: 12px;

  border: 1px solid #d6dde7;
  background: #eef1f5;

  padding: 0 16px;
  font-size: 15px;

  transition: all .25s ease;
}

/* hover */
.form-group input:hover,
.form-group select:hover {
  border-color: #4f86ff;
}

/* focus glow */
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4f86ff;

  box-shadow:
    0 0 0 2px rgba(79,134,255,.15),
    0 0 18px rgba(79,134,255,.2);
}

/* =========================================
   BUTTON
========================================= */
.consult-btn {
  margin-top: 10px;

  height: 64px;
  border-radius: 14px;

  border: none;
  cursor: pointer;

  font-size: 18px;
  font-weight: 700;

  background: #f25c0d;
  color: white;

  box-shadow:
    0 12px 30px rgba(242,92,13,.35);

  transition: all .3s ease;
}

/* hover */
.consult-btn:hover {
  transform: translateY(-3px);
  background: #ff6b1b;

  box-shadow:
    0 18px 40px rgba(242,92,13,.5);
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes glowMove {
  0% { opacity: .6 }
  50% { opacity: 1 }
  100% { opacity: .6 }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1000px) {

  .consult-box {
    grid-template-columns: 1fr;
  }

  .consult-right {
    padding: 40px 25px;
  }

  .consult-left {
    padding: 50px 30px;
  }

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

/* =================================
   FINTECH PAGE BUTTON EFFECTS
   matched to actual button colors
   ================================= */

.btn-primary,
.btn-secondary,
.consult-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color .45s ease,
    background-color .45s ease,
    background .45s ease,
    border-color .45s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

/* animated layers */
.btn-primary::before,
.btn-secondary::before,
.consult-btn::before,
.btn-primary::after,
.btn-secondary::after,
.consult-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    opacity .35s ease,
    background .45s ease;
}

/* subtle fill sweep */
.btn-primary::before,
.btn-secondary::before,
.consult-btn::before {
  transform: translateX(-102%);
}

/* gloss sweep */
.btn-primary::after,
.btn-secondary::after,
.consult-btn::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.07) 35%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.07) 65%,
    transparent 100%
  );
  transform: translateX(-130%) skewX(-20deg);
  opacity: 0;
}

.btn-primary:hover,
.btn-secondary:hover,
.consult-btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.consult-btn:hover::before {
  transform: translateX(0);
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.consult-btn:hover::after {
  transform: translateX(130%) skewX(-20deg);
  opacity: 1;
}

.btn-primary:active,
.btn-secondary:active,
.consult-btn:active {
  transform: translateY(-1px);
}

/* keep text above layers */
.btn-primary,
.btn-secondary,
.consult-btn {
  z-index: 1;
}

/* ---------------------------------
   PRIMARY BUTTON
   orange solid -> subtle orange glass
   --------------------------------- */
.btn-primary {
  background: #ff7a32;
  color: #fff !important;
  border: 1px solid #ff7a32;
  box-shadow: 0 12px 32px rgba(255,120,40,.30);
}

.btn-primary::before {
  background: rgba(255,122,50,.05);
}

.btn-primary:hover {
  background: rgba(255,122,50,.02);
  color: #ff7a32 !important;
  border-color: #ff7a32;
  box-shadow:
    0 0 0 1px rgba(255,122,50,.12),
    0 14px 30px rgba(255,120,40,.14);
}

/* ---------------------------------
   SECONDARY BUTTON
   translucent -> slightly brighter
   --------------------------------- */
.btn-secondary {
  background: rgba(255,255,255,.03);
  color: #ecf2fb !important;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.btn-secondary::before {
  background: rgba(255,255,255,.03);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.035);
  color: #ffffff !important;
  border-color: rgba(255,255,255,.20);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 12px 26px rgba(0,0,0,.16);
}

/* ---------------------------------
   CONSULT BUTTON
   orange solid -> subtle orange glass
   --------------------------------- */
.consult-btn {
  background: #ff7a32;
  color: #fff !important;
  border: 1px solid #ff7a32;
  box-shadow: 0 10px 25px rgba(255,122,50,.35);
}

.consult-btn::before {
  background: rgba(255,122,50,.05);
}

.consult-btn:hover {
  background: rgba(255,122,50,.02);
  color: #ff7a32 !important;
  border-color: #ff7a32;
  box-shadow:
    0 0 0 1px rgba(255,122,50,.12),
    0 16px 32px rgba(255,122,50,.16);
}

/* focus */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.consult-btn:focus-visible {
  outline: 2px solid rgba(90,150,255,.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-secondary,
  .consult-btn,
  .btn-primary::before,
  .btn-secondary::before,
  .consult-btn::before,
  .btn-primary::after,
  .btn-secondary::after,
  .consult-btn::after {
    transition: none !important;
  }
}