/* =========================================================
   How to Calibrate page â scoped to .cal-page only
   ========================================================= */

.cal-page{
  --cal-navy:#0A2D63;
  --cal-orange:#fb6917;
  --cal-teal:#28bcbf;
  --cal-muted:#6b7785;
  --cal-soft:#f4f7fb;
  --cal-font:var(--font);
  background:#fff;
  color:var(--body);
  font-family:var(--cal-font);
}

/* 100px section spacing â most content sections (tips uses tighter spacing) */
.cal-page .cal-videos,
.cal-page .cal-seven,
.cal-page .home-pricing{
  padding-top:100px;
  padding-bottom:100px;
}

.cal-page .cal-hero-features{
  padding-top:0;
  padding-bottom:0;
}

.cal-eyebrow{
  display:block;
  margin:0 0 12px;
  font-family:var(--cal-font);
  font-size:0.78rem;
  font-weight:var(--weight-label, 600);
  letter-spacing:var(--tracking-label, 0.1em);
  text-transform:uppercase;
  color:var(--cal-teal);
}

.cal-section-title{
  margin:0;
  font-family:var(--cal-font);
  font-size:clamp(1.75rem, 3.1vw, 2.85rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-0.03em;
  color:var(--cal-navy);
}

.cal-accent{color:var(--cal-orange);}

.cal-section-head{
  margin-bottom:clamp(36px, 5vw, 52px);
}

.cal-section-head--center{
  text-align:center;
}

/* ===================== HERO (single banner, home-like sizing) ===================== */
.cal-page .hero.cal-hero-banner{
  /* Reuse .hero spacing/size from home.css; keep a single static banner here */
  background:#d8eef8;
}

.cal-hero-banner-photo{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:right center;
  pointer-events:none;
}
.cal-page .cal-hero-banner picture{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
  width:100%;
  height:100%;
  pointer-events:none;
}

.cal-hero-banner-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  width:100%;
  height:100%;
  padding-top:clamp(40px, 7vh, 72px);
  padding-bottom:clamp(56px, 10vh, 96px);
}

.cal-hero-banner-copy{
  max-width:min(48vw, 560px);
  display:flex;
  flex-direction:column;
  gap:0;
}

/* 2 IN 1 pill â match homepage hero banner */
.cal-hero-tagline{
  display:inline-flex;
  align-items:stretch;
  width:fit-content;
  max-width:100%;
  min-height:0;
  margin:0 0 22px;
  padding:0;
  gap:0;
  overflow:hidden;
  font-family:var(--font);
  font-size:12px;
  font-weight:700;
  line-height:1.15;
  white-space:nowrap;
  color:#0A2D63;
  background:#fff;
  border:1.5px solid #fb6917;
  border-radius:999px;
  box-shadow:none;
}

.cal-hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  min-height:0;
  margin:0;
  padding:7px 12px;
  border-radius:0;
  background:#fb6917;
  color:#fff;
  font-size:10px;
  font-weight:800;
  line-height:1;
  letter-spacing:.04em;
  white-space:nowrap;
}

.cal-hero-tagline-copy{
  display:inline-flex;
  align-items:center;
  gap:0.35em;
  padding:7px 14px 7px 12px;
  color:#2479d4;
  font-size:12px;
  font-weight:500;
}

.cal-hero-tagline-copy strong{
  color:#2479d4;
  font-weight:700;
}

.cal-hero-tagline .hero-slide-tagline-in{
  color:#000;
  font-weight:700;
}

.cal-hero-tagline .hero-slide-tagline-rest{
  color:#2479d4;
  font-weight:600;
}

.cal-hero-heading{
  margin:0 0 16px;
  font-family:var(--font);
  font-size:clamp(46px, 5.9vw, 84px);
  font-weight:var(--hero-heading-weight, 800);
  line-height:var(--hero-heading-leading, 1.08);
  letter-spacing:var(--hero-heading-tracking, -0.015em);
  text-transform:uppercase;
}

.cal-hero-heading-orange{
  display:block;
  color:var(--hero-heading-accent, var(--orange));
}

.cal-hero-heading-navy{
  display:block;
  color:var(--hero-heading-navy, #0B2545);
}

/* Two-line headline: âCalibrate Right.â / âCare Right.â â each phrase one row */
.cal-hero-heading-line{
  display:block;
  white-space:nowrap;
}
.cal-hero-heading-line .cal-hero-heading-orange,
.cal-hero-heading-line .cal-hero-heading-navy{
  display:inline !important;
  white-space:nowrap;
  width:auto;
}

/* Hindi: Devanagari needs looser tracking so glyphs don't collide */
html[data-lang="hi"] .cal-hero-heading{
  letter-spacing:0.04em;
  line-height:1.12;
}
html[data-lang="hi"] .cal-hero-heading-orange,
html[data-lang="hi"] .cal-hero-heading-navy{
  letter-spacing:0.06em;
}
/* Telugu: slight gap so banner lines donât collide */
html[data-lang="te"] .cal-hero-heading{
  letter-spacing:0.03em;
  line-height:1.14;
}
html[data-lang="te"] .cal-hero-heading-orange,
html[data-lang="te"] .cal-hero-heading-navy{
  letter-spacing:0.04em;
  padding-block:0.04em;
}

.cal-hero-sub{
  margin:0;
  max-width:34ch;
  color:var(--cal-muted);
  font-size:clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight:500;
  line-height:1.45;
}

/* Feature strip â full-width section below hero (not overlapping) */
.cal-hero-features{
  position:relative;
  z-index:1;
  width:100%;
  margin:0;
  padding:0;
  background:#fff;
  box-shadow:0 8px 24px rgba(10,45,99,.06);
}

.cal-hero-features-row{
  display:flex;
  flex-wrap:nowrap;
  justify-content:space-between;
  align-items:center;
  gap:clamp(12px, 2vw, 28px);
  width:100%;
  max-width:none;
  margin:0;
  /* Equal left/right inset so first icon and last label mirror each other */
  padding:22px clamp(24px, 4vw, 48px);
  border-radius:0;
  background:transparent;
  box-shadow:none;
  box-sizing:border-box;
}

.cal-hero-feature{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 1 auto;
  min-width:0;
  color:var(--cal-navy);
  font-size:clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight:700;
  line-height:1.25;
}

.cal-hero-feature-icon{
  flex:0 0 auto;
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(251,105,23,.12);
  color:var(--cal-orange);
  font-size:0.95rem;
}

/* ===================== VIDEO TUTORIALS ===================== */
.cal-videos{
  --cal-fish-green:#22A45A;
  background:#eef1f4;
}

.cal-videos .cal-section-head{
  margin-bottom:clamp(28px, 4vw, 40px);
}

.cal-videos-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:clamp(20px, 2.8vw, 32px);
}

.cal-video-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 32px rgba(10,45,99,.08);
}

.cal-video-thumb{
  position:relative;
  display:grid;
  place-items:center;
  aspect-ratio:16 / 10;
  margin-bottom:0;
  border-radius:20px 20px 0 0;
  background:linear-gradient(160deg, #0a2d63 0%, #081f42 55%, #061830 100%);
  overflow:hidden;
}

.cal-video-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#061830;
}

.cal-video-meta,
.cal-video-lang-wrap,
.cal-video-play{
  z-index:2;
}

.cal-video-lang-wrap{
  position:absolute;
  top:12px;
  right:12px;
}

.cal-video-card:has(.cal-video-lang-wrap.is-open),
.cal-video-thumb:has(.cal-video-lang-wrap.is-open){
  overflow:visible;
  z-index:5;
}

.cal-video-body{
  padding:18px 18px 20px;
}

.cal-video-meta{
  position:absolute;
  top:12px;
  left:12px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:0.64rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.cal-video-lang{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0;
  padding:5px 11px;
  border:0;
  border-radius:999px;
  color:#fff;
  font-family:inherit;
  font-size:0.62rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  cursor:pointer;
  line-height:1.2;
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}

.cal-video-lang i{
  font-size:0.55rem;
  transition:transform .2s ease;
}

.cal-video-lang-wrap.is-open .cal-video-lang i{
  transform:rotate(180deg);
}

.cal-video-lang-menu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  z-index:6;
  min-width:148px;
  margin:0;
  padding:6px;
  list-style:none;
  border-radius:12px;
  background:#fff;
  box-shadow:0 12px 28px rgba(10,45,99,.18);
  border:1px solid rgba(10,45,99,.08);
}

.cal-video-lang-menu[hidden]{
  display:none;
}

.cal-video-lang-menu button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin:0;
  padding:9px 12px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:var(--cal-navy);
  font-family:inherit;
  font-size:0.78rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  line-height:1.2;
}

.cal-video-lang-menu button:hover,
.cal-video-lang-menu button:focus-visible{
  background:rgba(10,45,99,.06);
  outline:none;
}

.cal-video-lang-menu button[aria-selected="true"]{
  color:var(--cal-card-accent, var(--cal-orange));
  background:rgba(10,45,99,.04);
}

.cal-video-lang-menu button[aria-selected="true"]::after{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
}

.cal-video-play{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:#fff;
  font-size:1rem;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}

.cal-video-play i{margin-left:3px;}
.cal-video-play:hover{
  transform:scale(1.06);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}

.cal-video-card.is-playing .cal-video-play{
  opacity:0;
  pointer-events:none;
  transform:scale(0.92);
}

.cal-video-card.is-playing .cal-video-thumb:hover .cal-video-play,
.cal-video-card.is-playing .cal-video-thumb:focus-within .cal-video-play{
  opacity:1;
  pointer-events:auto;
}

.cal-video-card.is-playing .cal-video-play i{
  margin-left:0;
}

/* Shrimp card â orange accents */
.cal-video-card--shrimp{
  --cal-card-accent:var(--cal-orange);
}
.cal-video-card--shrimp .cal-video-lang{background:var(--cal-orange);}
.cal-video-card--shrimp .cal-video-play{color:var(--cal-orange);}
.cal-video-card--shrimp .cal-video-notes li::before{background:var(--cal-orange);}

/* Fish card â green accents */
.cal-video-card--fish{
  --cal-card-accent:var(--cal-fish-green);
}
.cal-video-card--fish .cal-video-lang{background:var(--cal-fish-green);}
.cal-video-card--fish .cal-video-play{color:var(--cal-fish-green);}
.cal-video-card--fish .cal-video-notes li::before{background:var(--cal-fish-green);}

.cal-video-title{
  margin:0 0 6px;
  color:var(--cal-navy);
  font-size:clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight:800;
  letter-spacing:-0.02em;
}

.cal-video-desc{
  margin:0 0 14px;
  color:var(--cal-muted);
  font-size:0.88rem;
  line-height:1.45;
}

.cal-video-notes-label{
  display:block;
  margin:0 0 10px;
  color:#8b949e;
  font-family:var(--cal-font);
  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.cal-video-notes ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
}

.cal-video-notes li{
  position:relative;
  padding-left:16px;
  color:#5a6570;
  font-family:var(--cal-font);
  font-size:0.875rem;
  font-weight:400;
  line-height:1.55;
}

.cal-video-notes li::before{
  content:'';
  position:absolute;
  left:0;
  top:0.45em;
  width:6px;
  height:6px;
  border-radius:50%;
}

/* ===================== THE 7 STEPS ===================== */
.cal-seven{
  background:var(--cal-soft);
}

.cal-seven-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:clamp(28px, 4vw, 40px);
}

.cal-seven-head .cal-eyebrow{
  margin-bottom:2px;
}

.cal-seven-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 26px;
  border-radius:var(--radius-pill);
  background:var(--cal-orange);
  color:#fff;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  text-decoration:none;
  white-space:nowrap;
  transition:filter .2s ease, transform .2s ease;
}

.cal-seven-cta:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.cal-seven-track{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:12px;
}

.cal-seven-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  min-height:148px;
  padding:18px 14px;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(10,45,99,.06);
}

.cal-seven-num{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--cal-orange);
  color:#fff;
  font-size:0.95rem;
  font-weight:800;
}

.cal-seven-card h3{
  margin:0;
  color:var(--cal-navy);
  font-size:clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight:700;
  line-height:1.3;
}

.cal-seven-card.is-final{
  background:var(--cal-navy);
  box-shadow:0 12px 28px rgba(10,45,99,.28);
}

.cal-seven-card.is-final h3{color:#fff;}

/* Pricing already styled by home.css â keep page section padding */
.cal-page .home-pricing{
  scroll-margin-top:110px;
}

/* ===================== HOW TO CARE ===================== */
.cal-care-section{
  margin:0;
  padding:clamp(44px, 6vw, 72px) 0 clamp(36px, 4.5vw, 52px);
  background:linear-gradient(180deg, #f7f9fb 0%, #eef3f7 100%);
  scroll-margin-top:110px;
}

.cal-care-inner{
  max-width:1120px;
  margin:0 auto;
}

.cal-care-head{
  text-align:center;
  max-width:680px;
  margin:0 auto clamp(24px, 3.5vw, 36px);
}

.cal-care-eyebrow{
  display:block;
  margin-bottom:10px;
  color:var(--cal-teal);
  font-size:0.78rem;
  letter-spacing:3.5px;
}

.cal-care-heading{
  margin:0 0 10px;
  font-family:var(--cal-font);
  font-size:clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight:800;
  line-height:1.12;
  letter-spacing:-0.03em;
  color:var(--cal-navy);
}

.cal-care-sub{
  margin:0;
  color:#0A2D63;
  font-family:var(--cal-font);
  font-size:clamp(0.9rem, 1.15vw, 1rem);
  font-weight:500;
  line-height:1.45;
  letter-spacing:0.01em;
}

.cal-care-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:clamp(12px, 1.6vw, 18px);
  align-items:stretch;
}

.cal-care-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  min-width:0;
  background:#fff;
  border:1px solid rgba(10, 45, 99, 0.08);
  border-radius:12px;
  box-shadow:0 4px 14px rgba(10, 45, 99, 0.05);
  overflow:hidden;
}

.cal-care-card--warn .cal-care-icon{
  color:#c0392b;
}

.cal-care-media{
  position:relative;
  flex:0 0 auto;
  aspect-ratio:4 / 5;
  max-height:210px;
  background:#fff;
  overflow:hidden;
}

.cal-care-step{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--cal-navy);
  color:#fff;
  font-family:var(--cal-font);
  font-size:0.82rem;
  font-weight:800;
  line-height:1;
  letter-spacing:0;
  box-shadow:0 2px 6px rgba(10, 45, 99, 0.18);
}

.cal-care-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
}

.cal-care-body{
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1 1 auto;
  padding:14px 14px 16px;
  background:#fff;
}

.cal-care-title-row{
  display:flex;
  align-items:flex-start;
  gap:8px;
  min-width:0;
}

.cal-care-icon{
  flex:0 0 auto;
  width:0.95rem;
  margin-top:0.15em;
  color:var(--cal-teal);
  font-size:0.9rem;
  line-height:1;
}

.cal-care-title{
  margin:0;
  color:var(--cal-navy);
  font-family:var(--cal-font);
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.045em;
  line-height:1.3;
  text-transform:uppercase;
}

.cal-care-text{
  margin:0;
  color:var(--cal-navy);
  font-family:var(--cal-font);
  font-size:0.78rem;
  font-weight:400;
  line-height:1.45;
}

/* ===================== CALIBRATION & CARE TIPS ===================== */
.cal-combo-section{
  margin:0;
  padding:12px 0 48px;
  background:linear-gradient(180deg, #eef3f7 0%, #f7f9fb 55%, #f7f9fb 100%);
  scroll-margin-top:110px;
  overflow:visible;
}

.cal-combo-inner{
  max-width:1320px;
  width:100%;
  margin:0 auto;
  overflow:visible;
}
.cal-combo-section .cal-combo-inner.container{
  max-width:1320px;
}

.cal-combo-frame{
  position:relative;
  margin-top:0;
  padding:clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 28px);
  border:1px solid #d5dee8;
  border-radius:16px;
  background:#f7f9fb;
  box-sizing:border-box;
}

.cal-combo-heading-row{
  display:flex;
  align-items:center;
  gap:clamp(12px, 1.8vw, 22px);
  margin:0 0 clamp(14px, 2vw, 20px);
  width:100%;
}

.cal-combo-heading-line{
  flex:1 1 auto;
  height:1px;
  min-width:24px;
  background:#c9d4e0;
  border-radius:1px;
}

.cal-combo-title{
  position:static;
  transform:none;
  margin:0;
  padding:0;
  background:transparent;
  text-align:center;
  font-family:var(--cal-font);
  font-size:clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight:800;
  letter-spacing:0.08em;
  line-height:1.15;
  white-space:nowrap;
  display:inline-flex;
  align-items:baseline;
  gap:0.38em;
  flex:0 0 auto;
}

.cal-combo-title-navy{
  color:#0A2D63;
  font-weight:800;
}

.cal-combo-title-muted{
  color:#9aa8b8;
  font-weight:600;
  font-size:0.82em;
  letter-spacing:0;
}

.cal-combo-title-green{
  color:#1f8f5a;
  font-weight:800;
}

.cal-combo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(16px, 2vw, 24px);
  align-items:stretch;
}

.cal-combo-card{
  display:grid;
  align-items:start;
  gap:clamp(14px, 1.8vw, 20px);
  min-width:0;
  min-height:0;
  padding:clamp(16px, 1.8vw, 22px);
  border-radius:14px;
  box-sizing:border-box;
  overflow:hidden;
}

.cal-combo-card--calib{
  grid-template-columns:minmax(140px, 0.85fr) minmax(0, 1.15fr);
  border:1px solid #b7d3ef;
  background:#f3f8fc;
}

.cal-combo-card--care{
  grid-template-columns:minmax(0, 1.15fr) minmax(140px, 0.85fr);
  border:1px solid #b7dec8;
  background:#f2faf5;
}

.cal-combo-media{
  min-width:0;
  width:100%;
  max-width:200px;
  justify-self:center;
  align-self:center;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  border:none;
  box-shadow:none;
  outline:none;
  aspect-ratio:3 / 4;
}

.cal-combo-media img{
  width:100%;
  height:100%;
  min-height:0;
  max-height:none;
  object-fit:cover;
  object-position:center;
  display:block;
  border:none;
  border-radius:10px;
}

/* Care tips: shift crop left so the meter/beaker stays fully visible */
.cal-combo-card--care .cal-combo-media img{
  object-position:72% center;
}

.cal-combo-content{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:10px;
  min-width:0;
  padding:0;
}

.cal-combo-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  max-width:100%;
  font-family:var(--cal-font);
  font-size:clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight:800;
  letter-spacing:0.05em;
  text-transform:uppercase;
  line-height:1.2;
}

.cal-combo-card--calib .cal-combo-chip{color:#0A2D63;}
.cal-combo-card--care .cal-combo-chip{color:#1f8f5a;}

.cal-combo-chip-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:9px;
  flex:0 0 auto;
  line-height:0;
}

.cal-combo-chip-icon svg,
.cal-combo-chip-icon i{
  display:block;
  width:16px;
  height:16px;
  font-size:0.9rem;
  line-height:16px;
  text-align:center;
}

.cal-combo-card--calib .cal-combo-chip-icon{
  background:#d9e8f8;
  color:#1f5fbf;
}

.cal-combo-card--care .cal-combo-chip-icon{
  background:#d5efdf;
  color:#1f8f5a;
}

.cal-combo-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cal-combo-list li{
  position:relative;
  padding-left:26px;
  color:#0A2D63;
  font-family:var(--cal-font);
  font-size:clamp(0.84rem, 1.15vw, 0.95rem);
  font-weight:500;
  line-height:1.45;
}

.cal-combo-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.18em;
  width:16px;
  height:16px;
  border-radius:50%;
  border:1.5px solid currentColor;
  box-sizing:border-box;
  background-repeat:no-repeat;
  background-position:center;
  background-size:9px 9px;
}

.cal-combo-card--calib .cal-combo-list li{
  color:#0A2D63;
}
.cal-combo-card--calib .cal-combo-list li::before{
  color:#2f6fed;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.2l2.3 2.3 4.9-4.9' fill='none' stroke='%232f6fed' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cal-combo-card--care .cal-combo-list li{
  color:#0A2D63;
}
.cal-combo-card--care .cal-combo-list li::before{
  color:#22a45a;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.2l2.3 2.3 4.9-4.9' fill='none' stroke='%2322a45a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cal-storage-note{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0 8px;
  width:max-content;
  min-width:100%;
  max-width:none;
  box-sizing:border-box;
  padding:14px 18px;
  border:1.5px solid #36C7D6;
  border-radius:10px;
  overflow:visible;
  background:rgba(54, 199, 214, 0.06);
}
.cal-storage-note .storage-note-text{
  flex:0 0 auto;
  margin:0;
  white-space:nowrap;
  font-size:0.9rem;
  line-height:1.55;
  color:#0A2D63;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1100px){
  .cal-seven-track{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
  .cal-seven-card:nth-child(5),
  .cal-seven-card:nth-child(6),
  .cal-seven-card:nth-child(7){
    grid-column:span 1;
  }

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

  .cal-care-media{
    max-height:230px;
  }

  .cal-combo-card--calib{
    grid-template-columns:minmax(120px, 0.8fr) minmax(0, 1.2fr);
    gap:16px;
    padding:16px;
    min-height:0;
  }

  .cal-combo-card--care{
    grid-template-columns:minmax(0, 1.2fr) minmax(120px, 0.8fr);
    gap:16px;
    padding:16px;
    min-height:0;
  }

  .cal-combo-media{
    max-width:160px;
  }
}

@media (max-width:900px){
  .cal-hero-banner-copy{max-width:min(70vw, 520px);}
  .cal-hero-features{
    margin:0;
    padding:0;
  }
  .cal-hero-features-row{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    justify-content:initial;
    gap:18px 16px;
    padding:18px clamp(24px, 4vw, 40px);
  }
  .cal-videos-grid{grid-template-columns:1fr;}
  .cal-video-body{padding:16px 16px 18px;}

  .cal-combo-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .cal-combo-frame{
    padding:18px 14px 14px;
  }

  .cal-combo-heading-row{
    margin-bottom:14px;
    gap:10px;
  }

  .cal-combo-title{
    white-space:normal;
    font-size:clamp(0.92rem, 3.4vw, 1.1rem);
    letter-spacing:0.06em;
    max-width:min(100%, 18rem);
    flex-wrap:wrap;
    justify-content:center;
    line-height:1.2;
  }

  .cal-combo-card{
    min-height:0;
  }

  .cal-combo-card--calib{
    grid-template-columns:minmax(110px, 0.75fr) minmax(0, 1.25fr);
  }

  .cal-combo-card--care{
    grid-template-columns:minmax(0, 1.25fr) minmax(110px, 0.75fr);
  }

  .cal-combo-media{
    max-width:132px;
  }

  .cal-combo-media img{
    min-height:0;
  }
}

@media (max-width:768px){
  .cal-page .cal-videos{
    padding-top:36px;
    padding-bottom:72px;
  }

  .cal-page .cal-seven,
  .cal-page .home-pricing{
    padding-top:72px;
    padding-bottom:72px;
  }

  .cal-care-section{
    padding:36px 0 36px;
  }

  .cal-care-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .cal-care-media{
    aspect-ratio:4 / 5;
    max-height:220px;
    min-height:0;
  }

  /* Mobile only: widen SHAKE art — less side padding, larger fill */
  .cal-care-card:nth-child(2) .cal-care-media{
    display:flex;
    align-items:center;
    justify-content:center;
    max-height:300px;
    padding:8px 2px 4px;
    box-sizing:border-box;
    overflow:hidden;
  }

  .cal-care-card:nth-child(2) .cal-care-media img{
    width:118%;
    height:auto;
    max-width:none;
    max-height:100%;
    object-fit:contain;
    object-position:center center;
    transform:scale(1.08);
    transform-origin:center center;
  }

  .cal-care-body{
    gap:8px;
    padding:14px 14px 16px;
  }

  .cal-care-title{
    font-size:0.8rem;
  }

  .cal-care-text{
    font-size:0.8rem;
  }

  .cal-combo-section{
    padding:8px 0 48px;
  }

  .cal-storage-note{
    margin-top:14px;
    margin-bottom:10px;
    padding:12px 14px;
    width:max-content;
    min-width:100%;
    max-width:none;
  }
  .cal-storage-note .storage-note-text{
    white-space:nowrap;
    font-size:0.84rem;
  }

  .cal-combo-frame{
    margin-top:0;
    padding:16px 12px 12px;
  }

  .cal-combo-heading-row{
    margin-bottom:12px;
    gap:8px;
  }

  .cal-combo-title{
    white-space:normal;
    font-size:clamp(0.88rem, 3.8vw, 1rem);
    letter-spacing:0.04em;
    max-width:min(100%, 16rem);
    gap:0.28em;
    line-height:1.25;
  }

  .cal-combo-heading-line{
    min-width:12px;
  }

  .cal-combo-card--calib,
  .cal-combo-card--care{
    grid-template-columns:1fr;
    gap:12px;
    padding:14px;
    min-height:0;
  }

  .cal-combo-card--calib .cal-combo-media,
  .cal-combo-card--care .cal-combo-media{
    order:1;
    width:100%;
    max-width:100%;
    max-height:none;
    justify-self:stretch;
    aspect-ratio:4 / 3;
  }

  .cal-combo-card--calib .cal-combo-media img,
  .cal-combo-card--care .cal-combo-media img{
    min-height:0;
    max-height:none;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .cal-combo-card--care .cal-combo-media img{
    object-position:72% center;
  }

  .cal-combo-card--calib .cal-combo-content,
  .cal-combo-card--care .cal-combo-content{
    order:2;
  }

  .cal-combo-chip{
    font-size:0.8rem;
    gap:8px;
    letter-spacing:0.04em;
  }

  .cal-combo-chip-icon{
    width:32px;
    height:32px;
    border-radius:8px;
  }

  .cal-combo-list{
    gap:8px;
  }

  .cal-combo-list li{
    font-size:0.82rem;
    line-height:1.4;
    padding-left:26px;
  }

  .cal-combo-list li::before{
    width:15px;
    height:15px;
    background-size:8px 8px;
  }

  .cal-page .hero.cal-hero-banner{
    aspect-ratio:4 / 5;
    max-height:none;
    min-height:520px;
    margin-top:calc(var(--banner-height, 0px) + var(--navbar-height, 48px));
  }

  /* Mobile: keep kit low in frame; sky leaves room for copy */
  .cal-hero-banner-photo{
    object-fit:cover;
    object-position:center 78%;
    transform:none;
  }

  .cal-hero-banner-inner{
    /* Mobile only: sit copy in sky below navbar (not flush against it) */
    align-items:flex-start;
    justify-content:center;
    padding-top:36px;
    padding-bottom:clamp(150px, 30dvh, 240px);
  }

  .cal-hero-banner-copy{
    max-width:min(88vw, 340px);
    width:100%;
    margin-inline:auto;
    align-items:center;
    text-align:center;
    transform:none;
    gap:0;
  }

  .cal-hero-heading{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:max-content;
    max-width:100%;
    margin-inline:auto;
    margin-bottom:0;
    font-size:clamp(36px, 9.5vw, 52px);
    line-height:1.05;
    text-align:center;
  }

  .cal-hero-heading-line{
    display:block;
    white-space:nowrap;
  }

  .cal-hero-heading-orange,
  .cal-hero-heading-navy{
    display:block;
    width:auto;
    white-space:nowrap;
    text-align:center;
    font-weight:var(--hero-heading-weight, 800);
  }

  .cal-hero-heading-line .cal-hero-heading-orange,
  .cal-hero-heading-line .cal-hero-heading-navy{
    display:inline !important;
    font-size:1em;
    letter-spacing:0.01em;
    white-space:nowrap;
    width:auto;
  }

  html[data-lang="hi"] .cal-hero-heading{
    line-height:1.14;
  }
  html[data-lang="hi"] .cal-hero-heading-orange,
  html[data-lang="hi"] .cal-hero-heading-navy{
    letter-spacing:0.06em;
  }
  html[data-lang="te"] .cal-hero-heading{
    line-height:1.16;
  }
  html[data-lang="te"] .cal-hero-heading-orange,
  html[data-lang="te"] .cal-hero-heading-navy{
    letter-spacing:0.04em;
  }

  /* Telugu mobile: keep full headline visible (no edge crop) */
  html[data-lang="te"] .cal-hero-banner-copy{
    max-width:min(94vw, 360px);
    overflow:visible;
  }
  html[data-lang="te"] .cal-hero-heading{
    width:100%;
    max-width:100%;
    font-size:clamp(26px, 7.2vw, 34px);
    line-height:1.18;
    overflow:visible;
  }
  html[data-lang="te"] .cal-hero-heading-orange,
  html[data-lang="te"] .cal-hero-heading-navy{
    width:100%;
    max-width:100%;
    white-space:normal;
    overflow-wrap:anywhere;
    letter-spacing:0.02em;
  }
  html[data-lang="te"] .cal-hero-heading-line{
    white-space:nowrap;
  }
  html[data-lang="te"] .cal-hero-heading-line .cal-hero-heading-orange,
  html[data-lang="te"] .cal-hero-heading-line .cal-hero-heading-navy{
    display:inline !important;
    width:auto;
    max-width:none;
    white-space:nowrap;
    overflow-wrap:normal;
  }
  html[data-lang="te"] .cal-hero-heading-orange{
    font-size:1em;
  }

  .cal-hero-tagline{
    white-space:nowrap;
    max-width:100%;
    margin:0 auto 16px;
    align-self:center;
  }

  .cal-hero-sub{
    margin-inline:auto;
    text-align:center;
  }

  /* Benefits: full-width 2x2 grid on mobile (no left-hugging column) */
  .cal-hero-features-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    justify-content:initial;
    gap:16px 12px;
    padding:18px 20px;
  }
  .cal-hero-feature{
    justify-content:flex-start;
    gap:10px;
    font-size:0.9rem;
    line-height:1.3;
  }
  .cal-hero-feature-icon{
    width:34px;
    height:34px;
    font-size:0.85rem;
  }

  .cal-seven-head{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:center;
    column-gap:12px;
    row-gap:2px;
  }

  .cal-seven-head > div{
    display:contents;
  }

  .cal-seven-head .cal-eyebrow{
    grid-column:1 / -1;
    margin-bottom:0;
  }

  .cal-seven-head .cal-section-title{
    grid-column:1;
    min-width:0;
  }

  .cal-seven-cta{
    grid-column:2;
    align-self:center;
    flex-shrink:0;
    width:auto;
    padding:10px 18px;
    font-size:0.72rem;
  }

  .cal-seven-track{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .cal-seven-card{
    flex:0 0 min(68vw, 220px);
    scroll-snap-align:start;
    min-height:0;
    gap:8px;
    padding:12px 12px 14px;
  }

  .cal-seven-num{
    width:30px;
    height:30px;
    font-size:0.85rem;
  }

  .cal-seven-card h3{
    font-size:0.82rem;
    line-height:1.25;
  }
}

@media (max-width:520px){
  .cal-hero-features-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 12px;
    padding:18px 16px;
  }
  .cal-hero-feature{
    justify-content:flex-start;
    font-size:0.88rem;
  }
  .cal-video-play{width:56px;height:56px;}
}
