/* Enrollment Page Styles */
:root{
  --turquoise: #40E0D0;    /* Primary turquoise */
  --teal-light: #8dd3c7;   /* Light teal */
  --dark-bg: #1a3333;      /* Dark background */
  --text-light: #e8f5f5;   /* Light text */
  --green-accent: #4a7c2a; /* Green accent */
  --gold: #CD7F32;
  --maxw: 720px;           /* comfortable mobile max width */
}

html{
  margin:0;
  padding:0;
  overflow-x: hidden;
}

body{
  margin:0;
  padding:0;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('./media/background.jpg') center/cover no-repeat;
  background-size: cover;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  pointer-events: none;
}
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:20px 18px 120px;
  position: relative;
  z-index: 2;
}

h1,h2,h3{
  font-family: 'Anybody', sans-serif;
  line-height:1.1;
  margin:0 0 12px;
  color:var(--turquoise);
}

h1{
  font-size:calc(40px + 2.2vw);
} /* ~40–48 on phones */

h2{
  font-size:calc(30px + 1.2vw);
} /* ~28–34 */

h3{
  font-size:calc(18px + .9vw);
}  /* ~22–26 */

p,li{
  font-size:25px;
  line-height:1.6;
  margin:0 0 14px;
  color: #ffffff;
}

.muted{
  opacity:.82
}

.hero{
  -webkit-backdrop-filter: blur(20px);
  max-width: none;
  margin: 14px auto 0;
  padding: 1.1rem 0 1.6rem;
  width: 100%;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.2fr 380px;
  grid-template-areas:
    "title media"
    "description media"
    "actions media";
  column-gap: 6rem;
  row-gap: 0.8rem;
  align-items: start;
  max-width: none;
  margin: 0;
}

.hero-heading {
  grid-area: title;
  min-width: 0;
  padding-right: 2rem;
}

.hero-copy-block {
  min-width: 0;
  display: contents;
}

.hero-title {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.7vw, 3.8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  display: block;
  margin-top: 0.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--turquoise);
}

.hero-description {
  grid-area: description;
  width: 100%;
  max-width: 560px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
  text-align: left;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0.95rem 1.65rem;
  font-size: 0.98rem;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-cta.secondary {
  display: none;
}

.hero-media {
  grid-area: media;
  position: relative;
  width: 100%;
  width: 400px;
  margin-left: auto;
}

.hero-media-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  padding: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.tag{
  display:inline-block;
  background:rgba(64, 224, 208, 0.15);
  color:var(--turquoise);
  padding:6px 10px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
  border: 1px solid rgba(64, 224, 208, 0.3);
}

.cta{
  display:block;
  text-align:center;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(64, 224, 208, 0.5);
  color:var(--turquoise);
  text-decoration:none;
  padding:16px 18px;
  border-radius:16px;
  font-weight:700;
  margin:18px 0 6px;
  box-shadow:0 10px 20px rgba(64, 224, 208, 0.3);
  transition: all 0.3s ease;
}

.cta:hover {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
  border-color: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(64, 224, 208, 0.4);
}

.cta.secondary{
  background:rgba(0, 0, 0, 0.3);
  color:var(--turquoise);
  border:2px solid var(--turquoise)
}

.cta.secondary:hover {
  background:rgba(64, 224, 208, 0.15);
  transform: translateY(-2px);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(64, 224, 208, 0.3);
  padding:10px 12px;
  border-radius:999px;
  font-size:14px;
  color:var(--teal-light);
  background: rgba(26, 51, 51, 0.3);
}

.grid{
  display:grid;
  gap:14px
}

.section-media {
  width: 100%;
  object-fit: cover;
  border: none;
  border-radius: 12px;
  display: block;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.ratio-2-3 {
  aspect-ratio: 2 / 3;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.card{
  background: rgba(26, 51, 51, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius:20px;
  padding:16px 14px;
  box-shadow:0 8px 22px rgba(0,0,0,.3)
}

.em{
  font-weight:700;
  color:var(--turquoise)
}

.list{
  padding-left:50px
}

/* FAQ-specific list styling */
.card ul {
  margin: 12px 0;
  padding-left: 20px;
  list-style-type: none;
}

.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.65em;
  transform: translateY(-50%);
  color: var(--turquoise);
  font-weight: bold;
  font-size: 1.2em;
}

.card p + p {
  margin-top: 12px;
}

.card br {
  display: block;
  content: "";
  margin-top: 8px;
}

/* FAQ emphasis styling */
.card em {
  font-style: normal;
  font-weight: bold;
  color: var(--turquoise);
}

/* FAQ link styling */
.card a {
  color: var(--turquoise);
  text-decoration: underline;
  font-weight: 700;
}

.card a:hover {
  color: var(--turquoise);
  text-decoration: underline;
  opacity: 0.8;
}

.sp{
  height:8px
}

figure.ph{
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(64, 224, 208, 0.3);
  border-radius:18px;
  background:rgba(26, 51, 51, 0.3);
  color:var(--teal-light);
  font-size:14px;
  height:180px;
  margin:10px 0 18px
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
  font-size:16px
}

.table th{
  font-weight:700;
  text-align:left;
  color:var(--turquoise)
}

.table td, .table th{
  padding:10px 12px;
  background:rgba(26, 51, 51, 0.4);
  border: 1px solid rgba(64, 224, 208, 0.2);
}

.table tr{
  box-shadow:0 6px 14px rgba(0,0,0,.04);
  border-radius:12px
}

.table tr td:first-child, .table tr th:first-child{
  border-top-left-radius:12px;
  border-bottom-left-radius:12px
}

.table tr td:last-child, .table tr th:last-child{
  border-top-right-radius:12px;
  border-bottom-right-radius:12px
}

.footnote{
  font-size:13px;
  opacity:.7
}

header.top{
  position:sticky;
  top:0;
  backdrop-filter:saturate(140%) blur(20px);
  -webkit-backdrop-filter:saturate(140%) blur(20px);
  background:rgba(26, 51, 51, 0.85);
  border-bottom:1px solid rgba(64, 224, 208, 0.3);
  z-index:100;
  position: relative;
}

header .bar{
  max-width: 1200px;
  margin:0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 28px;
}

.brand{
  font-family:'Anybody', sans-serif;
  font-size: clamp(1.2rem, 1rem + 0.45vw, 1.6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color:var(--turquoise);
  white-space: nowrap;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-cta{
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(64, 224, 208, 0.16);
}

.divider{
  height:1px;
  background:linear-gradient(90deg, rgba(64, 224, 208, 0.2), rgba(64, 224, 208, 0.05), rgba(64, 224, 208, 0.2));
  margin:18px 0
}

footer{
  padding:40px 0 24px;
  text-align:center;
  color:var(--teal-light);
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

a.whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px
}

.wa-dot{
  width:10px;
  height:10px;
  background:#25D366;
  border-radius:50%
}

.langnav{
  position: relative;
  display:flex;
  align-items: center;
  gap:8px;
  padding: 4px;
  border: 1px solid rgba(64, 224, 208, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.langnav-toggle{
  display:none;
}

.langnav-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.langnav a{
  font-size:13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color:var(--teal-light);
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition: all 0.3s ease;
}

.langnav a:hover {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
}

.langnav a.active{
  background:rgba(64, 224, 208, 0.2);
  color:var(--turquoise);
  border-color:rgba(64, 224, 208, 0.5)
}

.video-btn {
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
  color: var(--turquoise);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex: 0 0 auto;
}

.video-btn:hover {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(64, 224, 208, 0.4);
}

.video-btn:active {
  transform: scale(0.95);
}

.badge{
  display:inline-block;
  border:1px solid rgba(64, 224, 208, 0.3);
  background: rgba(26, 51, 51, 0.3);
  border-radius:10px;
  padding:6px 10px;
  font-size:12px;
  color: var(--teal-light);
  opacity:.9
}

.slots{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px
}

.slot{
  background:rgba(26, 51, 51, 0.4);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius:12px;
  padding:10px;
  text-align:center;
  box-shadow:0 6px 12px rgba(0,0,0,.3);
  font-weight:600;
  color: var(--turquoise);
}

.slot.filled{
  opacity:.45;
  text-decoration:line-through
}

/* Language sections - hidden by default */
.lang-section {
  display: none;
}

.lang-section.active {
  display: block;
}

/* Income Calculator */
.calc-intro {
  text-align: center;
  font-size: 16px;
  color: var(--teal-light);
  margin: -8px 0 16px;
  font-style: italic;
  opacity: 0.9;
}

.calculator-card {
  padding: 28px 24px;
}

.calc-slider-container-container{
  border: 3px solid var(--gold);
  background-color: var(--dark-bg);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  justify-content: center;
}

.calc-slider-container {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold);
}

.calc-slider-container:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.calc-slider-label {
  text-align: center;
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.calc-display {
  margin-bottom: 24px;
}

.calc-quantity-display {
  text-align: center;
  padding: 20px;
  background: rgba(64, 224, 208, 0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(64, 224, 208, 0.2);
}

.calc-quantity-label {
  display: block;
  color: var(--teal-light);
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-quantity-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.calc-quantity-value span:first-child {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 42px;
  font-family: 'Anybody', sans-serif;
  line-height: 1;
  transition: all 0.3s ease;
}

.calc-unit-inline {
  color: var(--teal-light);
  font-size: 16px;
  opacity: 0.8;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
}

.calc-label {
  color: var(--teal-light);
  font-size: 20px;
  font-weight: 600;
}

.calc-value {
  color: rgb(249, 204, 26);
  font-weight: 800;
  font-size: 30px;
  font-family: 'Anybody', sans-serif;
  transition: all 0.3s ease;
}

.calc-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(64, 224, 208, 0.2), rgba(64, 224, 208, 0.05), rgba(64, 224, 208, 0.2));
  margin: 8px 0;
}

.calc-total {
  padding-top: 16px;
}

.calc-breakdown {
  margin: 12px 0;
}

.calc-breakdown .calc-row {
  padding: 10px 0;
  font-size: 15px;
}

.calc-breakdown .calc-label {
  font-size: 15px;
}

.calc-breakdown .calc-value {
  font-size: 18px;
}

.calc-breakdown .calc-row-values {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.calc-breakdown .calc-row-values .calc-result-row {
  margin-bottom: 0;
  min-width: 150px;
  padding: 12px 14px;
}

.calc-results {
  margin-top: 16px;
}



.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(64, 224, 208, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-result-column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  background: rgba(64, 224, 208, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-result-column .calc-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0px;
  align-items: center;
}

.calc-result-column .calc-comment {
  color: var(--teal-light);
  font-size: 14px;
  opacity: 0.9;
}

.calc-row .calc-comment {
  color: var(--teal-light);
  font-size: 14px;
  opacity: 0.9;
}

.calc-income {
  color: rgb(249, 204, 26);
  font-weight: 700;
  font-size: 26px;
  font-family: 'Anybody', sans-serif;
  text-shadow: 0 0 20px rgba(249, 204, 26, 0.4);
  transition: all 0.3s ease;
}

.calc-yearly {
  background: rgba(64, 224, 208, 0.08);
  border-color: rgba(64, 224, 208, 0.2);
}

.calc-yearly-label {
  color: var(--teal-light);
  font-size: 14px;
  opacity: 0.9;
}

.calc-yearly-value {
  color: var(--turquoise);
  font-weight: 600;
  font-size: 20px;
  font-family: 'Anybody', sans-serif;
  transition: all 0.3s ease;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: white;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--gold);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--text-light), rgb(249, 204, 26), black );
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.5);
  transition: all 0.3s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(64, 224, 208, 0.8);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--text-light), rgb(249, 204, 26), black);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.5);
  transition: all 0.3s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(64, 224, 208, 0.8);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 18px;
  color: white;
  opacity: 0.8;
  text-align: center;
}

.calc-slider-labels span {
  line-height: 1.4;
}

.calc-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(64, 224, 208, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(64, 224, 208, 0.15);
  transition: all 0.3s ease;
}

.calc-highlight:hover {
  background: rgba(64, 224, 208, 0.1);
  border-color: rgba(64, 224, 208, 0.25);
  transform: translateX(4px);
}

.highlight-icon {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.15);
  border-radius: 50%;
}

.calc-highlight span:last-child {
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 500;
}

/* Keep calculator rows from forcing horizontal overflow */
.calc-row > *,
.calc-result-row > *,
.calc-result-column .calc-row > * {
  min-width: 0;
}

.product-price-section {
  gap: 18px;
}

.product-price-section__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.product-price-section__heading h2 {
  margin-bottom: 10px;
}

.product-price-section__heading p {
  margin: 0;
  color: rgba(232, 245, 245, 0.8);
  font-size: 1rem;
  line-height: 1.55;
}

.product-price-shell {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(205, 127, 50, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(64, 224, 208, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(10, 24, 24, 0.9), rgba(26, 51, 51, 0.72));
  border: 1px solid rgba(205, 127, 50, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.product-price-state {
  margin: 0;
  color: var(--teal-light);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
}

.product-price-state[hidden] {
  display: none !important;
}

.product-price-state--error {
  color: #ffd9b3;
}

.product-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-price-grid[hidden] {
  display: none !important;
}

.product-price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-width: 0;
  padding: 14px 14px 0;
  border-radius: 22px;
  border: 1px solid rgba(64, 224, 208, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 35, 35, 0.94)),
    rgba(9, 27, 27, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.product-price-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

.product-price-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 29, 29, 0.22), transparent 70%);
  filter: blur(12px);
  transform: translateY(35%);
  pointer-events: none;
}

.product-price-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--product-pot-scale, 1));
  transform-origin: center center;
}

.product-price-card--set .product-price-card__image {
  object-fit: cover;
  transform: scale(1);
}

.product-price-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.product-price-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price-card__price-row,
.product-price-card__cost-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.product-price-card__price-label,
.product-price-card__cost-label {
  color: rgba(232, 245, 245, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}

.product-price-card__name {
  margin: 0;
  color: #f4fffd;
  font-size: 1rem;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price-card__price {
  color: #f5c78d;
  font-family: 'Anybody', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  text-align: right;
}

.product-price-card__cost {
  color: #bfe7e1;
  font-family: 'Anybody', sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1;
  flex: 0 0 auto;
  text-align: right;
}

.sensorcraft-visual-wrap {
  width: 100%;
}

.sensorcraft-visual {
  width: min(15vw, 100%);
  max-width: none;
  margin-left: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  header .bar{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "controls";
    padding: 12px 16px 14px;
    align-items: start;
    gap: 10px 12px;
  }

  .brand{
    grid-area: brand;
    font-size: 0.95rem;
    line-height: 1.04;
    letter-spacing: 0.02em;
    white-space: nowrap;
    max-width: none;
    justify-self: center;
    text-align: center;
  }

  .header-controls {
    grid-area: controls;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .langnav{
    flex: 1 1 auto;
    min-width: 0;
    display: block;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .langnav-toggle{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(64, 224, 208, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--turquoise);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    cursor: pointer;
  }

  .langnav-current{
    line-height: 1;
  }

  .langnav-caret{
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
  }

  .langnav.is-open .langnav-caret{
    transform: rotate(-135deg) translateY(-1px);
  }

  .langnav-links{
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 15;
    display: none;
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(64, 224, 208, 0.24);
    border-radius: 18px;
    background: rgba(18, 39, 39, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  .langnav.is-open .langnav-links{
    display: flex;
  }

  .langnav a{
    min-width: 0;
    padding: 10px 12px;
    text-align: center;
    font-size: 0.76rem;
    border: 1px solid rgba(64, 224, 208, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .video-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .header-actions {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .header-cta{
    width: auto;
    min-width: 42px;
    height: 42px;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    border-radius: 50%;
  }

  .whatsapp-cta{
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-cta::before{
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin: 0 auto;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.21c-.27-.14-1.59-.78-1.84-.87-.25-.09-.43-.14-.61.14-.18.27-.7.87-.86 1.05-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.71-1.33-1.58-1.49-1.85-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.47.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.47-.07-.14-.61-1.47-.84-2.02-.22-.52-.45-.45-.61-.46h-.52c-.18 0-.47.07-.72.34-.25.27-.95.93-.95 2.27 0 1.34.97 2.63 1.11 2.82.14.18 1.91 2.91 4.63 4.08.65.28 1.16.45 1.56.58.66.21 1.26.18 1.73.11.53-.08 1.59-.65 1.82-1.28.22-.63.22-1.17.16-1.28-.07-.11-.25-.18-.52-.32Z'/%3E%3Cpath d='M16.01 3.2C8.95 3.2 3.23 8.9 3.23 15.95c0 2.25.59 4.46 1.72 6.4L3.14 28.8l6.62-1.73a12.8 12.8 0 0 0 6.25 1.6h.01c7.05 0 12.77-5.7 12.77-12.75 0-3.42-1.33-6.64-3.75-9.06A12.68 12.68 0 0 0 16.01 3.2Zm0 23.3h-.01a10.6 10.6 0 0 1-5.39-1.47l-.39-.23-3.93 1.03 1.05-3.83-.25-.39a10.56 10.56 0 0 1-1.62-5.65c0-5.85 4.76-10.6 10.62-10.6 2.83 0 5.49 1.1 7.48 3.09a10.52 10.52 0 0 1 3.11 7.5c0 5.85-4.77 10.6-10.62 10.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.21c-.27-.14-1.59-.78-1.84-.87-.25-.09-.43-.14-.61.14-.18.27-.7.87-.86 1.05-.16.18-.31.2-.58.07-.27-.14-1.12-.41-2.14-1.31-.79-.71-1.33-1.58-1.49-1.85-.16-.27-.02-.41.12-.55.12-.12.27-.31.41-.47.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.47-.07-.14-.61-1.47-.84-2.02-.22-.52-.45-.45-.61-.46h-.52c-.18 0-.47.07-.72.34-.25.27-.95.93-.95 2.27 0 1.34.97 2.63 1.11 2.82.14.18 1.91 2.91 4.63 4.08.65.28 1.16.45 1.56.58.66.21 1.26.18 1.73.11.53-.08 1.59-.65 1.82-1.28.22-.63.22-1.17.16-1.28-.07-.11-.25-.18-.52-.32Z'/%3E%3Cpath d='M16.01 3.2C8.95 3.2 3.23 8.9 3.23 15.95c0 2.25.59 4.46 1.72 6.4L3.14 28.8l6.62-1.73a12.8 12.8 0 0 0 6.25 1.6h.01c7.05 0 12.77-5.7 12.77-12.75 0-3.42-1.33-6.64-3.75-9.06A12.68 12.68 0 0 0 16.01 3.2Zm0 23.3h-.01a10.6 10.6 0 0 1-5.39-1.47l-.39-.23-3.93 1.03 1.05-3.83-.25-.39a10.56 10.56 0 0 1-1.62-5.65c0-5.85 4.76-10.6 10.62-10.6 2.83 0 5.49 1.1 7.48 3.09a10.52 10.52 0 0 1 3.11 7.5c0 5.85-4.77 10.6-10.62 10.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .login-cta::before{
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 17v-2h4V9h-4V7h6v10h-6Zm-6 4c-.55 0-1.02-.2-1.41-.59C2.2 20.02 2 19.55 2 19V5c0-.55.2-1.02.59-1.41C2.98 3.2 3.45 3 4 3h9v2H4v14h9v2H4Zm14-4-1.38-1.45 2.55-2.55H9v-2h10.17l-2.54-2.54L18 7l5 5-5 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 17v-2h4V9h-4V7h6v10h-6Zm-6 4c-.55 0-1.02-.2-1.41-.59C2.2 20.02 2 19.55 2 19V5c0-.55.2-1.02.59-1.41C2.98 3.2 3.45 3 4 3h9v2H4v14h9v2H4Zm14-4-1.38-1.45 2.55-2.55H9v-2h10.17l-2.54-2.54L18 7l5 5-5 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .hero {
    padding: 4px 0 10px;
    margin-top: 4px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "title"
      "description"
      "actions";
    gap: 12px;
    max-width: 100%;
  }

  .hero-heading {
    order: 2;
    padding-right: 0;
  }

  .hero-copy-block {
    display: block;
  }

  .hero-media {
    order: 1;
    margin-top: 0;
  }

  .hero-title {
    margin-bottom: 10px;
    font-size: clamp(1.72rem, 8.4vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .hero-description {
    width: 100%;
    max-width: none;
    margin-bottom: 14px;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.92rem;
    line-height: 1.42;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
  }

  .hero-cta {
    width: min(100%, 320px);
    flex: 0 1 auto;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .hero-cta.secondary {
    display: inline-flex;
    width: auto;
    min-height: 0;
    padding: 8px 14px;
  }

  .hero-media-frame {
    width: min(100%, 220px);
    margin: 0 auto;
    padding: 10px;
    border-radius: 20px;
  }

  .calculator-card {
    padding: 20px 14px;
  }

  .calc-row {
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .calc-label {
    font-size: 18px;
  }

  .calc-value {
    font-size: 18px;
  }

  .calc-income {
    font-size: 22px;
    text-align: right;
  }

  .calc-results .calc-result-row {
    gap: 8px;
    align-items: flex-start;
  }

  .calc-results .calc-result-row .calc-label {
    flex: 1 1 62%;
    font-size: 16px;
  }

  .calc-results .calc-result-row .calc-income {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .calc-breakdown .calc-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0;
  }

  .calc-breakdown .calc-label {
    width: 100%;
    font-size: 14px;
  }

  .calc-breakdown .calc-result-row {
    width: 100%;
    margin-bottom: 0;
    padding: 12px;
  }

  .calc-breakdown .calc-row-values {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .calc-breakdown .calc-row-values .calc-result-row {
    width: auto;
    min-width: 0;
    margin-bottom: 0;
    padding: 12px 10px;
  }

  .calc-breakdown .calc-value {
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .calc-quantity-display {
    padding: 16px;
  }

  .calc-quantity-value span:first-child {
    font-size: 34px;
  }

  .calc-unit-inline {
    font-size: 14px;
  }

  .calc-slider-container {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .product-price-shell {
    padding: 18px 14px;
    border-radius: 24px;
  }

  .product-price-grid {
    gap: 12px;
  }

  .product-price-card {
    padding: 12px;
    border-radius: 20px;
  }

  .product-price-card__name {
    font-size: 0.92rem;
  }

  .product-price-card__price {
    font-size: 1.15rem;
  }

  .product-price-card__cost {
    font-size: 0.95rem;
  }

  .sensorcraft-visual {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .calc-intro {
    font-size: 14px;
  }

  .calc-label {
    font-size: 16px;
  }

  .calc-value {
    font-size: 16px;
  }

  .calc-income {
    font-size: 20px;
  }

  .calc-quantity-value span:first-child {
    font-size: 30px;
  }

  .calc-slider-labels {
    font-size: 10px;
  }

  .product-price-section__heading p,
  .product-price-state {
    font-size: 0.92rem;
  }
}

@media (min-width:768px){
  .wrap{
    padding:28px 24px 140px;
    max-width: 1200px;
  }
  figure.ph{
    height:240px
  }
  .calc-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .calc-highlight {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  .calc-highlight:hover {
    transform: translateY(-4px);
  }
  .side-media {
    grid-template-columns: 1fr 380px !important;
    gap: 3rem !important;
  }
  .side-media img,
  .side-media iframe {
    width: 100%;
    height: auto;
  }
  .sensorcraft-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 32vw) !important;
  }
  .product-price-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  /* When video/image is first child, reverse the columns */
  .side-media > div:first-child:has(img),
  .side-media > div:first-child:has(iframe) {
    order: 2;
  }
  .side-media > div:last-child:not(:has(img)):not(:has(iframe)) {
    order: 1;
  }
}

@media (min-width: 1100px) {
  .product-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row dense;
    column-gap: 16px;
    row-gap: 22px;
  }

  .product-price-card {
    margin-bottom: 6px;
  }

  .product-price-card--featured {
    grid-column: span 2;
    gap: 14px;
    padding: 14px 14px 0;
    border-color: rgba(103, 223, 214, 0.24);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .product-price-card--master {
    order: 9;
  }

  .product-price-card--set {
    order: 10;
  }

  .product-price-card[data-product-sku="S-NOSENSOR"] {
    order: 1;
  }

  .product-price-card[data-product-sku="M-NOSENSOR"] {
    order: 2;
  }

  .product-price-card[data-product-sku="S-SENSOR"] {
    order: 3;
  }

  .product-price-card[data-product-sku="L-NOSENSOR"] {
    order: 4;
  }

  .product-price-card[data-product-sku="M-SENSOR"] {
    order: 5;
  }

  .product-price-card[data-product-sku="XL-NOSENSOR"] {
    order: 6;
  }

  .product-price-card[data-product-sku="L-SENSOR"] {
    order: 7;
  }

  .product-price-card[data-product-sku="XL-SENSOR"] {
    order: 8;
  }

  .product-price-card--featured .product-price-card__name {
    font-size: 1.18rem;
    -webkit-line-clamp: 3;
  }

  .product-price-card--featured .product-price-card__price {
    font-size: 1.65rem;
  }

  .product-price-card--featured .product-price-card__cost {
    font-size: 1.16rem;
  }

  .product-price-card--featured .product-price-card__content {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 8px;
  }

  .product-price-card--featured .product-price-card__image-wrap {
    aspect-ratio: 5 / 4;
    border-radius: 20px;
  }

  .product-price-card--featured .product-price-card__pricing {
    gap: 8px;
  }

  .product-price-card:not(.product-price-card--featured) {
    min-height: 100%;
  }
}

/* Intro Video Popup */
.intro-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 10001;
  overflow: hidden;
}

.intro-popup.show {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-video-container {
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  overflow: hidden;
}

.intro-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-content {
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
}

.intro-question {
  font-family: 'Anybody', sans-serif;
  font-size: 2.5rem;
  color: var(--turquoise);
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 1.2rem;
  color: var(--teal-light);
  font-weight: 300;
}

.scroll-arrow {
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Hide main content initially when intro is shown */
body.intro-active .wrap,
body.intro-active .top {
  display: none;
}

/* Responsive intro video */
@media (max-width: 768px) {
  .intro-video-container {
    width: auto;
    height: 88vh;
    max-height: 90vh;
    max-width: 95vw;
    aspect-ratio: 9 / 16;
    margin-bottom: 16px;
  }
  
  .intro-question {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .scroll-indicator span {
    font-size: 1rem;
  }
  
  .side-media {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .side-media > div {
    order: 1;
  }
  .side-media > div:has(img),
  .side-media > div:has(iframe) {
    order: 2;
  }
  .side-media img,
  .side-media iframe {
    display: block;
    width: 100% !important;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  #hero-video {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 2px;
  }

  .hero-title {
    font-size: clamp(1.52rem, 7.8vw, 2.1rem);
  }

  .hero-title-accent {
    margin-top: 0.2rem;
  }

  .hero-description {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.36;
  }

  .hero-media-frame {
    width: min(100%, 180px);
    padding: 8px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .intro-video-container {
    width: 95vw;
    height: auto;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
  }
}

/* Schedule Call Popup */
.schedule-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 10002;
  overflow-y: auto;
  padding: 20px;
}

.schedule-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-popup-content {
  background: rgba(26, 51, 51, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(64, 224, 208, 0.4);
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.schedule-popup-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.schedule-popup-header h2 {
  color: var(--turquoise);
  font-family: 'Anybody', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.schedule-popup-header p {
  color: var(--teal-light);
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.schedule-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
  color: var(--turquoise);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  padding: 0;
}

.schedule-close-btn:hover {
  background: rgba(64, 224, 208, 0.25);
  transform: scale(1.1);
}

.schedule-section {
  margin-bottom: 24px;
}

.schedule-section-title {
  color: var(--turquoise);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.schedule-calendar-day {
  background: rgba(26, 51, 51, 0.5);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--teal-light);
}

.schedule-calendar-day:hover:not(.disabled) {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
  transform: translateY(-2px);
}

.schedule-calendar-day.selected {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  color: var(--turquoise);
  font-weight: 600;
}

.schedule-calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.schedule-calendar-day-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}

.schedule-calendar-day-number {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.schedule-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.schedule-time-slot {
  background: rgba(26, 51, 51, 0.5);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--teal-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.schedule-time-slot:hover:not(.disabled) {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
  transform: translateY(-2px);
}

.schedule-time-slot.selected {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  color: var(--turquoise);
  font-weight: 600;
}

.schedule-time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.schedule-timezone-display {
  background: rgba(64, 224, 208, 0.08);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  color: var(--teal-light);
  font-size: 0.9rem;
  margin-top: 12px;
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-form-group label {
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(64, 224, 208, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(26, 51, 51, 0.5);
  color: var(--text-light);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.schedule-form-group input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: rgba(26, 51, 51, 0.7);
}

.schedule-form-group input::placeholder {
  color: rgba(232, 245, 245, 0.4);
}

.schedule-submit-btn {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(64, 224, 208, 0.5);
  color: var(--turquoise);
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.schedule-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
  border-color: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.schedule-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.schedule-message {
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.schedule-message.success {
  background: rgba(74, 124, 42, 0.2);
  border: 1px solid rgba(74, 124, 42, 0.4);
  color: #4a7c2a;
}

.schedule-message.error {
  background: rgba(204, 68, 68, 0.2);
  border: 1px solid rgba(204, 68, 68, 0.4);
  color: #c44;
}

.schedule-message.info {
  background: rgba(64, 224, 208, 0.1);
  border: 1px solid rgba(64, 224, 208, 0.3);
  color: var(--teal-light);
}

.testimonials-band {
  overflow: visible;
}

.testimonials-shell {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 36px), 1100px);
  height: min(80vh, 880px);
  transform: translateX(-50%);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(205, 127, 50, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(64, 224, 208, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(11, 27, 27, 0.96), rgba(26, 51, 51, 0.88));
  border: 1px solid rgba(205, 127, 50, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonials-heading {
  margin: 0 auto 18px;
  max-width: 760px;
  text-align: center;
}

.testimonials-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  border-color: rgba(205, 127, 50, 0.4);
  background: rgba(205, 127, 50, 0.1);
  color: #f5c78d;
}

.testimonials-heading h2 {
  margin-bottom: 8px;
}

.testimonials-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(232, 245, 245, 0.82);
  font-size: 1rem;
  line-height: 1.45;
}

.testimonials-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  gap: 14px;
  align-items: start;
  flex: 1 1 auto;
  min-height: 0;
}

.testimonial-focus {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 0;
  height: 100%;
  padding: 16px 18px;
  border-radius: 30px;
  border: 1px solid rgba(64, 224, 208, 0.24);
  background:
    linear-gradient(180deg, rgba(64, 224, 208, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(6, 114, 104, 0.94), rgba(8, 48, 49, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-height: 210px;
}

.testimonial-focus__media {
  display: none;
  position: relative;
  z-index: 1;
}

.testimonial-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--testimonial-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.76;
}

.testimonial-focus::after {
  content: "“";
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1;
  font-family: 'Anybody', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(232, 245, 245, 0.12);
}

.testimonial-focus__topline {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
}

.testimonial-focus__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.testimonial-focus__persona {
  margin: 0;
  color: #f4fffd;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.testimonial-focus__role {
  margin: 0;
  color: rgba(232, 245, 245, 0.72);
  font-size: 0.8rem;
  line-height: 1.25;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
}

.testimonial-focus__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #effcf9;
  font-family: 'Anybody', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.72);
}

.testimonial-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.testimonial-selector {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(205, 127, 50, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 39, 39, 0.85));
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.testimonial-selector:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 127, 50, 0.46);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.testimonial-selector.is-active {
  border-color: rgba(64, 224, 208, 0.58);
  background: linear-gradient(180deg, rgba(64, 224, 208, 0.16), rgba(14, 43, 43, 0.92));
  box-shadow: 0 0 0 1px rgba(64, 224, 208, 0.12), 0 22px 42px rgba(0, 0, 0, 0.24);
}

.testimonial-selector__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.testimonial-selector__title {
  font-family: 'Anybody', sans-serif;
  font-size: 0.94rem;
  line-height: 1.15;
  color: #f6fffd;
}

.testimonial-selector__role {
  color: rgba(232, 245, 245, 0.64);
  font-size: 0.76rem;
  line-height: 1.25;
}

.testimonial-selector__snippet {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(232, 245, 245, 0.74);
  font-size: 0.83rem;
  line-height: 1.34;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.testimonial-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(205, 127, 50, 0.22), rgba(64, 224, 208, 0.12)),
    rgba(10, 29, 29, 0.96);
}

.testimonial-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-portrait img[hidden],
.testimonial-portrait__fallback[hidden] {
  display: none !important;
}

.testimonial-portrait--focus {
  width: clamp(84px, 10vw, 112px);
  flex: 0 0 clamp(84px, 10vw, 112px);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.testimonial-portrait--focus-card {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 22px;
}

.testimonial-portrait__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #f6fff8;
  font-family: 'Anybody', sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(64, 224, 208, 0.24), transparent 50%),
    linear-gradient(160deg, rgba(205, 127, 50, 0.18), rgba(12, 40, 40, 0.98));
}

@media (max-width: 768px) {
  .testimonials-shell {
    box-sizing: border-box;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none;
    border-radius: 30px;
    padding: 22px 14px 24px;
    height: auto;
    overflow: visible;
  }

  .testimonials-heading {
    margin-bottom: 16px;
  }

  .testimonials-heading h2 {
    font-size: clamp(1.7rem, 6vw, 2.25rem);
  }

  .testimonials-heading p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .testimonials-stage {
    box-sizing: border-box;
    grid-template-columns: 1fr;
    gap: 12px;
    flex: 0 0 auto;
  }

  .testimonial-focus {
    box-sizing: border-box;
    min-height: 0;
    margin-bottom: 6px;
    padding: 0;
    border-radius: 24px;
    justify-content: flex-start;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(64, 224, 208, 0.08), transparent 34%),
      linear-gradient(180deg, rgba(7, 22, 23, 0.18), rgba(7, 22, 23, 0.82) 56%),
      linear-gradient(145deg, rgba(6, 114, 104, 0.94), rgba(8, 48, 49, 0.96));
  }

  .testimonial-focus__media {
    display: block;
  }

  .testimonial-focus::before {
    display: none;
  }

  .testimonial-focus::after {
    display: none;
  }

  .testimonial-portrait--focus-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .testimonial-focus__topline,
  .testimonial-focus__quote {
    position: relative;
    z-index: 1;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-focus__topline {
    margin-top: 0;
    padding-top: 14px;
  }

  .testimonial-focus__topline {
    gap: 6px;
  }

  .testimonial-focus__persona {
    font-size: 1.02rem;
  }

  .testimonial-focus__role {
    font-size: 0.78rem;
  }

  .testimonial-focus__quote {
    max-width: none;
    font-size: clamp(0.98rem, 3.9vw, 1.18rem);
    line-height: 1.22;
    text-wrap: pretty;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .testimonial-selector-grid {
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    height: auto;
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 2px 4px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .testimonial-selector-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-selector {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex: 0 0 auto;
    width: 62px;
    min-width: 62px;
    min-height: 62px;
    height: 62px;
    padding: 3px;
    border-radius: 999px;
    align-items: center;
    justify-items: center;
    text-align: center;
    scroll-snap-align: start;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .testimonial-selector__content {
    display: none;
  }

  .testimonial-selector__title {
    display: none;
  }

  .testimonial-selector__role {
    display: none;
  }

  .testimonial-selector__snippet {
    display: none;
  }

  .testimonial-portrait {
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .testimonial-portrait--focus-card {
    aspect-ratio: 16 / 11;
    border-radius: 22px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .schedule-popup-content {
    padding: 24px 16px;
    max-height: 95vh;
  }
  
  .schedule-popup-header h2 {
    font-size: 1.5rem;
  }
  
  .schedule-calendar {
    gap: 6px;
  }
  
  .schedule-calendar-day {
    padding: 8px 4px;
  }
  
  .schedule-calendar-day-number {
    font-size: 1rem;
  }
  
  .schedule-times {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
  }
  
  .schedule-time-slot {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .testimonial-focus__topline {
    align-items: flex-start;
  }

  .testimonial-focus {
    margin-bottom: 8px;
  }

  .testimonial-focus__topline,
  .testimonial-focus__quote {
    padding-left: 13px;
    padding-right: 13px;
  }

  .testimonial-selector-grid {
    gap: 9px;
  }

  .testimonial-selector {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    height: 54px;
    padding: 3px;
  }

  .testimonial-focus__quote {
    font-size: clamp(0.94rem, 4.7vw, 1.08rem);
  }
}
