/* Body background color for finder page */
body {
  background-color: #3e3e3e !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure main navbar appears above lateral nav */
.navbar.fixed-top {
  z-index: 1030 !important;
}

/* Side Navigation Bar */
.side-nav {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
}

.nav-progress-bar {
  position: relative;
  height: 240px; /* 6 sections -> keep consistent */
  padding-left: 16px;        /* room for labels when nested */
}

/* The vertical track inside the progress bar */
.nav-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.4);
  border-radius: 1px;
}

.nav-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;               /* same as track */
  height: calc(100% / 6);
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;                       /* 6 equal rows matching bar segments */
  grid-template-rows: repeat(6, 1fr);
  align-items: center;                 /* center content within each row */
  height: 240px; /* match progress bar for 6 items */
}

.nav-item-sidebar {
  margin: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;            /* take full grid row height */
  align-items: center;      /* vertically center the link */
}

.nav-item-sidebar.active {
  opacity: 1;
  transform: translateX(0);
}

.side-nav:hover .nav-item-sidebar {
  opacity: 0.6;
  transform: translateX(0);
}

.side-nav:hover .nav-item-sidebar.active {
  opacity: 1;
}

.nav-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-item-sidebar.active .nav-link {
  color: #fff;
}

.side-nav:hover .nav-item-sidebar:not(.active) .nav-link {
  color: rgba(128, 128, 128, 0.8);
}

.nav-link:hover {
  color: #fff !important;
}

/* Progress bar positioning based on active section */
.side-nav[data-active="intro"] .nav-progress-bar::after {
  top: 0;
  height: calc(100% / 6);
}

.side-nav[data-active="dji-m350"] .nav-progress-bar::after {
  top: calc(100% / 6);
  height: calc(100% / 6);
}

.side-nav[data-active="finder-functions"] .nav-progress-bar::after {
  top: calc(200% / 6);
  height: calc(100% / 6);
}

.side-nav[data-active="finder-specs"] .nav-progress-bar::after {
  top: calc(300% / 6);
  height: calc(100% / 6);
}

.side-nav[data-active="services"] .nav-progress-bar::after {
  top: calc(400% / 6);
  height: calc(100% / 6);
}

.side-nav[data-active="pricing"] .nav-progress-bar::after {
  top: calc(500% / 6);
  height: calc(100% / 6);
}

/* Minimal mobile approach */
@media (max-width: 768px) {
  .side-nav {
    left: 10px;
    transform: translateY(-50%) scale(0.9);
  }
  
  .nav-progress-bar {
    height: 180px; /* was 150px; scale for 6 items */
    margin-right: 12px;
  }
  
  .nav-menu {
    height: 180px; /* was 150px */
  }
  
  .nav-link {
    font-size: 12px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Wrapper for centering sections */
.section-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.text-container {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.text-container.fade-in {
  opacity: 1 !important;
}

.futura {
  font-family: 'Futura', sans-serif;
}

.futura-ivaq-color {
  font-family: 'Futura', sans-serif;
  color: #FFC000;
}

h0 {
  font-size: calc(1.75rem + 1.5vw);
  font-weight: 500; /* Adjusted font weight to match h1,h2,h3... */
}

@media (min-width: 1200px) {
  .h0, h0 {
      font-size: 3rem;
  }
}

ht {
  font-size: calc(2.75rem + 1.5vw);
  font-weight: 500; /* Adjusted font weight to match h1,h2,h3... */
}

@media (min-width: 1200px) {
  .ht, ht {
      font-size: 4rem;
  }
}

hf {
  font-size: calc(3.75rem + 2.5vw);
}

@media (min-width: 1200px) {
  .hf, hf {
      font-size: 6rem;
  }
}

  /* Keep highlighted “IVAQ Finder” not bold in key headings */
  #packageTitle .futura,
  #summaryTitle .futura,
  #purchaseSummaryTitle .futura,
  #requestDemo .futura,
  #requestFinder .futura {
    font-weight: 400 !important;
  }

/* Responsive image width for DJI M350 */
.w-md-65 {
  max-width: 100% !important;
  width: 100% !important;
}

@media (min-width: 768px) {
  .w-md-65 {
    max-width: 65% !important;
    width: 65% !important;
  }
}

@media (min-width: 1200px) {
  .w-md-65 {
    max-width: 55% !important;
    width: 55% !important;
  }
}

/* More specific selector to override any conflicting styles */
img.img-fluid.w-md-65 {
  max-width: 950% !important;
  width: 95% !important;
}

@media (min-width: 768px) {
  img.img-fluid.w-md-65 {
    max-width: 65% !important;
    width: 65% !important;
  }
}

@media (min-width: 1200px) {
  img.img-fluid.w-md-65 {
    max-width: 55% !important;
    width: 55% !important;
  }
}



/* Featurettes */
/*-------------*/
.container-featurette-finder {
  width: 96% !important;
  max-width: 96% !important;
  margin-bottom: 0 !important;
  border-radius: 0.75rem;
  background-color: rgb(30,30,30); /* rgb(30,35,40) */
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.container-techspecs-finder {
  width: 95%;
  max-width: 95%;
  margin: 0;
  margin-bottom: 0 !important;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom, rgb(30,30,30) 0%, #3e3e3e 100%);
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Custom Bootstrap Table Styling to match container background */
.container-featurette-finder .table-dark {
  --bs-table-bg: rgb(30,30,30);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
  --bs-table-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  background-color: rgb(30,30,30);
  border-color: rgba(255, 255, 255, 0.1);
}

.container-featurette-finder .table-dark th,
.container-featurette-finder .table-dark td {
  background-color: rgb(30,30,30);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.container-featurette-finder .table-dark thead th {
  background-color: rgba(25,25,25, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

/* Even row striping - lighter background for better visibility */
.container-featurette-finder .table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.03) !important;
}

.container-featurette-finder .table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ensure striped rows maintain their color on hover */
.container-featurette-finder .table-striped.table-hover tbody tr:nth-of-type(even):hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

/* Consistent column widths across all tables */
.container-featurette-finder .table th:first-child,
.container-featurette-finder .table td:first-child {
  width: 60%;
}

.container-featurette-finder .table th:nth-child(2),
.container-featurette-finder .table td:nth-child(2) {
  width: 25%;
}

.container-featurette-finder .table th:nth-child(3),
.container-featurette-finder .table td:nth-child(3) {
  width: 15%;
}

/* Gradient background for benefits section and footer */
.benefits-section-onwards {
  background: linear-gradient(to bottom, rgb(30,35,41¡0) 0%, #3e3e3e 100%);
  min-height: 100vh;
  width: 95%;
  max-width: 95%;
  margin: 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-radius: 0.75rem;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Custom Play/Pause Button - Based on CodePen by Aaron Iker */
.play-pause-button {
    --play: #FFFFFF; /* #6D58FF */
    --play-shadow: rgba(221, 221, 221, 0.24);
    --pause: #ffffff71; /* #2B3044 */
    --pause-shadow: rgba(255, 255, 255, 0.24);
    --color: #000000;
    --icon: var(--color);
    margin: 0;
    line-height: 20px;
    font-size: 14px;
    padding: 11px 12px 11px 36px;
    border-radius: 22px;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    display: flex;
    position: relative;
    backface-visibility: hidden;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(var(--y, 0)) translateZ(0);
    color: var(--color);
    box-shadow: 0 var(--shadow-y, 6px) var(--shadow-b, 16px) var(--shadow, var(--pause-shadow));
    background: radial-gradient(circle, var(--play) 0%, var(--play) 50%, var(--pause) 50.5%, var(--pause) 100%);
    background-size: 400% 400%;
    background-position: 0% 0%;
    transition: background .8s, box-shadow .3s, transform .3s;
}

.play-pause-button:hover {
    --y: -1px;
    --shadow-y: 8px;
    --shadow-b: 20px;
}

.play-pause-button:active {
    --y: 1px;
    --shadow-y: 4px;
    --shadow-b: 12px;
}

.play-pause-button:before,
.play-pause-button:after {
    content: '';
    background: var(--icon);
    width: var(--width, 16px);
    height: 12px;
    position: absolute;
    left: 18px;
    top: 15px;
    backface-visibility: hidden;
    transform-origin: 50% 100%;
    transform: translateX(var(--x, 0)) translateZ(0);
    -webkit-clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
    clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
    transition: clip-path .6s ease;
}

.play-pause-button:after {
    --width: 3px;
    --x: 6px;
}

.play-pause-button i {
    display: block;
    font-weight: bold;
    font-style: normal;
    backface-visibility: hidden;
    opacity: var(--o, 1);
    transform: translateX(var(--x, 0));
    transition: transform .6s, opacity .6s;
}

.play-pause-button i:nth-child(2) {
    --o: 0;
    --x: 0;
}

.play-pause-button i:nth-child(3) {
    --x: -50%;
}

.play-pause-button i:nth-child(4) {
    --o: 0;
}

.play-pause-button i:last-child {
    --x: -50%;
}

.play-pause-button.paused {
    --shadow: var(--play-shadow);
    animation: var(--name, background-paused) .8s ease forwards;
}

.play-pause-button.paused i:first-child {
    --x: 40%;
}

.play-pause-button.paused i:nth-child(2) {
    --o: 1;
    --x: 100%;
}

.play-pause-button.paused i:nth-child(3) {
    --x: 50%;
}

.play-pause-button.paused i:nth-child(4) {
    --o: 1;
    --x: 50%;
}

.play-pause-button.paused i:last-child {
    --x: 0;
    --o: 0;
}

.play-pause-button.paused:before {
    -webkit-clip-path: polygon(0 0, 11px 6px, 11px 6px, 0 12px);
    clip-path: polygon(0 0, 11px 6px, 11px 6px, 0 12px);
    transition-delay: .9s;
}

.play-pause-button.paused:after {
    animation: to-play .9s ease forwards;
}

.play-pause-button.paused.playing {
    --shadow: var(--pause-shadow);
    --name: background-playing;
}

.play-pause-button.paused.playing:before {
    -webkit-clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
    clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
    transition-delay: 0s;
}

.play-pause-button.paused.playing:after {
    animation: to-pause 1.3s ease forwards;
}

.play-pause-button.paused.playing i:first-child {
    --x: 0;
}

.play-pause-button.paused.playing i:nth-child(2) {
    --o: 0;
    --x: 0;
}

.play-pause-button.paused.playing i:nth-child(3) {
    --x: -50%;
    --o: 1;
}

.play-pause-button.paused.playing i:nth-child(4) {
    --o: 0;
    --x: 0;
}

.play-pause-button.paused.playing i:last-child {
    --x: -50%;
    --o: 1;
}

@keyframes to-play {
    15% {
        transform: translateX(6px) scaleY(1.1);
    }
    30% {
        transform: translateX(6px) scaleY(.9);
    }
    45% {
        transform: translateX(6px) scaleY(1.15);
        -webkit-clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
        clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
        transform-origin: 50% 100%;
    }
    60%,
    100% {
        -webkit-clip-path: polygon(0 9px, 3px 9px, 3px 12px, 0 12px);
        clip-path: polygon(0 9px, 3px 9px, 3px 12px, 0 12px);
        transform-origin: 50% 10.5px;
    }
    60% {
        transform: translateX(6px);
    }
    99% {
        transform: translateX(0) rotate(-270deg);
    }
    100% {
        transform: translateX(0) rotate(-270deg) scale(0);
    }
}

@keyframes to-pause {
    0%,
    50% {
        -webkit-clip-path: polygon(0 9px, 3px 9px, 3px 12px, 0 12px);
        clip-path: polygon(0 9px, 3px 9px, 3px 12px, 0 12px);
        transform-origin: 50% 10.5px;
    }
    0%,
    39% {
        transform: translateX(0) rotate(-270deg) scale(0);
    }
    40% {
        transform: translateX(0) rotate(-270deg);
    }
    50% {
        transform: translateX(6px) rotate(0deg);
    }
    60%,
    100% {
        transform: translateX(6px);
        -webkit-clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
        clip-path: polygon(0 0, 3px 0, 3px 12px, 0 12px);
        transform-origin: 50% 100%;
    }
    70% {
        transform: translateX(6px) scaleY(1.15);
    }
    80% {
        transform: translateX(6px) scaleY(.9);
    }
    90% {
        transform: translateX(6px) scaleY(1.05);
    }
    100% {
        transform: translateX(6px);
    }
}

@keyframes background-paused {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 50% 50%;
    }
}

@keyframes background-playing {
    from {
        background-position: 50% 50%;
    }
    to {
        background-position: 100% 100%;
    }
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

*:before,
*:after {
    box-sizing: inherit;
}

/* Animated color cycle for highlight text (gold <-> blue) */
@keyframes ivaqColorCycle {
  0%   { color: #FFC000; }
  50%  { color: #2D6BFF; }
  100% { color: #FFC000; }
}

.color-cycle-ivaq {
  animation: ivaqColorCycle 3.2s ease-in-out infinite;
  will-change: color;
}

@media (prefers-reduced-motion: reduce) {
  .color-cycle-ivaq { animation: none; }
}

/* ------------------------------ */
/* Pricing Configurator (Pricing) */
/* ------------------------------ */
.pricing-configurator {
  /* Neutral base; premium gold applied when .premium-selected is present */
  background: #3a3a3a; /* subtle contrast against container-featurette-finder */
  border: 3px solid #e9e9e9;
  border-radius: 20px;
  padding: 16px;
}

/* Premium selected: apply golden background treatment */
.pricing-configurator.premium-selected {
  background:
    linear-gradient(135deg, rgba(201,162,39,0.14) 0%, rgba(255,215,128,0.08) 45%, rgba(201,162,39,0.12) 100%),
    #3a3a3a; /* base */
  border-color: rgba(201, 162, 39, 0.35); /* soft gold tint */
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.10) inset; /* faint inner glow */
}

.model-display-area {
  /* background: #3e3e3e; */
  min-height: 440px;
  border-radius: 18px;
  /* border: 3px solid #e9e9e9; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 16px; */
  text-align: center;
}

/* Finder STL container and canvas sizing */
#finder-stl-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#finder-stl-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}



.package-option {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 2px dotted rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all .2s ease;
}

.package-option[data-value="early"] {
  border: 2px solid rgba(255,255,255,0.85);
}

.package-option:hover { filter: brightness(1.05); background: #5a5a5a}

/* Do not apply hover brightness/background to Early Access option */
.package-option[data-value="early"]:hover {
  filter: none;
  background: inherit; /* keep original (or selected) background */
}
/* Ensure selected Early keeps white background on hover */
.package-option.selected[data-value="early"]:hover {
  background: #ffffff;
}

.package-option input[type="radio"] {
  position: absolute;
  inset: 0; /* make it clickable anywhere */
  opacity: 0;
  cursor: pointer;
  z-index: 1; /* allow inner interactive elements to layer above */
}
.package-option[data-value="early"] .addon-section {
  position: relative; /* create stacking context above radio overlay */
  z-index: 2;
}
.package-option.selected[data-value="early"] .addon-section {
  position: relative;
  z-index: 2;
}

.package-option .package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-option .package-name { color: #fff; font-weight: 600; }
.package-option .package-price { color: #fff; opacity: .9; font-weight: 600; }

.package-option.selected {
  background: #ffffff;
  border: 2px solid #2D6BFF; /* blue highlight like mockups */
  box-shadow: 0 0 0 4px rgba(45,107,255,0.2) inset;
}

.package-option.selected .package-name { color: #202020; }
.package-option.selected .package-price { color: #2D6BFF; }

/* Premium selected: gold theme overrides */
.package-option.selected[data-value="premium"] {
  border: 2px solid #C9A227; /* rich gold */
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25) inset; /* soft gold glow */
}
.package-option.selected[data-value="premium"] .package-price {
  color: #C9A227; /* match border gold */
}

/* Early Access: container treatment like premium but with a subtle blue tint */
.pricing-configurator.early-selected {
  background:
    linear-gradient(135deg, rgba(201,162,39,0.34) 0%, rgba(43,89,255,0.48) 45%, rgba(201,162,39,0.32) 100%),
    #3a3a3a; /* base */
  border-color: rgba(201, 162, 39, 0.32);
  box-shadow: 0 0 0 2px rgba(43, 89, 255, 0.12) inset; /* faint blue inner glow */
}

/* Early Access panel: white background with gold/blue gradient border */
.package-option.selected[data-value="early"] {
  background: #ffffff;
  color: #202020;
  border: 2px solid #b357ff;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12) inset, 0 0 0 1px rgba(43,89,255,0.08) inset;
}
.package-option.selected[data-value="early"] .package-name { color: #b357ff; }
.package-option.selected[data-value="early"] .package-price { color: #b357ff; }

/* Early Access supporting texts: highlight and maintain readability */
.package-option[data-value="early"] .limited-offer {
  color: #FFD54F; /* warm highlight on dark background */
  font-weight: 700;
  margin-top: 6px;
}
.package-option[data-value="early"] .early-desc {
  color: rgba(255,255,255,0.8);
}
/* When selected (white panel), switch to dark/readable colors */
.package-option.selected[data-value="early"] .limited-offer {
  color: #B8860B; /* golden-brown accent on white */
}
.package-option.selected[data-value="early"] .early-desc {
  color: #333; /* readable on white */
}

/* Inline DJI selector inside Early card */
/* Default (unselected card) inherits dark theme; keep text white */
.package-option[data-value="early"] .addon-option label,
.package-option[data-value="early"] .addon-option small,
.package-option[data-value="early"] .addon-option .addon-price {
  color: #fff;
}
/* Override Bootstrap .text-muted inside Early add-on (unselected: keep white) */
.package-option[data-value="early"] .addon-option small {
  color: #fff !important;
}
/* When Early Access card is selected (white panel), make inner add-on dark grey, no border, white text */
.package-option.selected[data-value="early"] .addon-section {
  background:rgba(190,190,190,0.1);
  border: none;
}
.package-option.selected[data-value="early"] .addon-option label,
.package-option.selected[data-value="early"] .addon-option .addon-price {
  color: #333;
}
/* When Early is selected (white panel), make the small note readable (not muted) */
.package-option.selected[data-value="early"] .addon-option small {
  color: #717171 !important;
}

.compare-options-btn {
  width: 100%;
  background: #5a5a5a;
  color: #eee;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 80ms ease;
}

.compare-options-btn:hover {
  background: #6a6a6a; /* subtle lighten */
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08), 0 2px 12px rgba(0,0,0,0.25);
}

.compare-options-btn:active {
  transform: translateY(1px);
}

/* Optional: subtle gold tint on hover when premium is selected */
.pricing-configurator.premium-selected .compare-options-btn:hover {
  background: #6b5924; /* muted gold-ish */
  box-shadow: inset 0 0 0 2px rgba(201,162,39,0.2), 0 2px 12px rgba(0,0,0,0.25);
}

.pricing-configurator .billing-toggle {
  display: grid;
  margin-top: 4px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px; /* pill */
  padding: 4px;
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
}
.pricing-configurator .billing-toggle .btn-group { flex-wrap: nowrap; }
.pricing-configurator .billing-toggle .btn {
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  border-width: 1px;
  border-color: transparent;
  color: rgba(255,255,255,0.8);
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.pricing-configurator .billing-toggle .btn-outline-light {
  background: rgba(255,255,255,0.06);
  border-color: transparent;
  color: rgba(255,255,255,0.75);
}
.pricing-configurator .billing-toggle .btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.pricing-configurator .billing-toggle .btn-check:checked + .btn-outline-light,
.pricing-configurator .billing-toggle .btn-outline-light.active {
  background: linear-gradient(90deg, #2D6BFF, #2B59FF);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(43, 89, 255, 0.25);
}
.pricing-configurator .billing-toggle .btn-outline-light:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(43, 89, 255, 0.35);
}
/* Seamless pill join */
.pricing-configurator .billing-toggle .rounded-end-0 { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.pricing-configurator .billing-toggle .rounded-start-0 { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.pricing-configurator .billing-toggle .btn .text-muted { color: rgba(255,255,255,0.65) !important; }

/* Disabled state when Early Access is selected */
.pricing-configurator .billing-toggle.disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(20%);
}

.addon-section {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 12px 16px;
}

.addon-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.addon-price { color: #fff; opacity: .9; font-weight: 600; }

/* Summary bar */
.summary-box {
  background: #5a5a5a;
  border-radius: 20px;
}

.send-request-btn {
  width: 100%;
  background: linear-gradient(90deg, #2D6BFF, #2B59FF);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .model-display-area { min-height: 320px; }
}

/* ------------------------------ */
/* Purchase Process styles        */
/* ------------------------------ */
.purchase-process {
  background: #3a3a3a;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.15);
  /* Shared sizing variables */
  --pp-circle-size: clamp(72px, 10vw, 110px);
  --pp-arrow-width: clamp(48px, 9vw, 140px);
  --pp-gap: clamp(12px, 2.5vw, 28px);
}
.pp-steps {
  min-height: calc(var(--pp-circle-size) + 20px);
  gap: var(--pp-gap);
}
.pp-step { min-width: 0; }
.pp-step, .pp-connector { justify-self: center; }
.pp-circle {
  width: var(--pp-circle-size); height: var(--pp-circle-size);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px dashed rgba(255,255,255,0.8);
  margin: 0 auto;
}
.pp-circle span { color: #fff; font-weight: 700; font-size: clamp(18px, 3vw, 28px); }
.pp-circle--muted { background: #9b9b9b; }
.pp-circle--primary { background: #2D6BFF; }
.pp-step-label { font-weight: 600; }
.pp-meta { margin-bottom: 8px; text-align: center; }

/* Connector sized to match circle center line */
.pp-connector { min-width: 90px; }
@media (min-width: 992px) {
  .pp-connector { display: grid !important; grid-template-rows: auto 1fr; align-items: center; min-height: var(--pp-circle-size); width: 100%; }
}

/* Services: enlarge back-face paragraph text on lg and up */
@media (min-width: 992px) {
  #services .back .card-body p.breakline {
    font-size: 1.15rem;
  }
}
.pp-arrow {
  width: var(--pp-arrow-width); height: 2px; background: rgba(255,255,255,0.6);
  position: relative; margin: 0 auto;
}
.pp-arrow::after {
  content: '';
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border-left: 8px solid rgba(255,255,255,0.6);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Layout: stack on small, grid on large for alignment */
@media (max-width: 991.98px) {
  .pp-steps { gap: 20px; }
  .pp-connector { display: none !important; }
}
@media (min-width: 992px) {
  .pp-steps { display: grid !important; grid-auto-flow: column; grid-auto-columns: minmax(90px, 1fr); align-items: center; justify-items: center; }
}