:root {
  --bg: #FBF8EC;
  --bg-soft: #F4EFDF;
  --surface: #FFFEF6;
  --surface-2: #F2EDDF;
  --border: rgba(30, 35, 30, .13);
  --border-soft: rgba(30, 35, 30, .08);
  --text: #24292A;
  --text-muted: #4E4B41;
  --text-dim: #5A584D;
  --accent: #E8935C;
  --accent-text: #9E460E;
  --accent-dim: #C97640;
  --accent-soft: rgba(232, 147, 92, .15);
  --blue: #2F6F5E;
  --blue-soft: rgba(47, 111, 94, .12);
  --green: #4B9068;
  --green-soft: rgba(75, 144, 104, .13);
  --teal-dark: #19403F;
  --teal-dark-2: #123331;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1300px;
  --font-d: 'Poppins', sans-serif;
  --font-b: 'Poppins', sans-serif;
  --font-m: 'Poppins', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

section {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d);
  letter-spacing: -.01em;
  color: var(--text);
}

.eyebrow {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--accent-text);
  display: inline-block;
}

.benefits-eyebrow,
.usecases-eyebrow,
.cases-eyebrow,
.pricing-eyebrow,
.how-eyebrow,
.faq-eyebrow {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.testimonials-eyebrow {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F6B88F;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.benefits-eyebrow::before,
.usecases-eyebrow::before,
.cases-eyebrow::before,
.pricing-eyebrow::before,
.how-eyebrow::before,
.faq-eyebrow::before,
.benefits-eyebrow::after,
.usecases-eyebrow::after,
.cases-eyebrow::after,
.pricing-eyebrow::after,
.how-eyebrow::after,
.faq-eyebrow::after {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--accent-text);
  display: inline-block;
}

.testimonials-eyebrow::before,
.testimonials-eyebrow::after {
  content: "";
  width: 16px;
  height: 1.5px;
  background: #F6B88F;
  display: inline-block;
}

/* ================= HERO ================= */
.hero {
  padding: calc(40px + 48px) clamp(16px, 4vw, 28px) 72px;
  position: relative;   
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--accent-text);
  font-style: normal;
}

.hero .sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 100%;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.hero-point .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-point .check svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--accent);
  color: #181008;
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffb066;
}

.btn-primary .pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #181008;
}

.btn-primary .pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #181008;
  animation: pulseDark 1.6s infinite;
}

@keyframes pulseDark {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: transform .15s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.stat-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.stat-strip > div {
  flex: 1;
  min-width: 0;
}

.stat-strip .num {
  font-family: var(--font-d);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--text);
  display: block;
  white-space: nowrap;
}

.stat-strip .label {
  font-size: 10.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 3px;
  white-space: nowrap;
}

/* Hero Form Card */
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 30px;
  box-shadow: 0 30px 80px -45px rgba(20, 24, 20, .3);
}

.form-eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-card h2 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.form-card .form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%236C6A5D' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border: none;
  background: var(--accent);
  color: #181008;
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #ffb066;
}

/* ================= LIVE MITIGATION SECTION ================= */
.live-section {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-dark-2) 85%);
}

.live-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 96px clamp(16px, 4vw, 28px);
}

.live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.live-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: #FBF8EC;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.live-badge .dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.live-badge .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: pulseGreen 1.8s ease-out infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.live-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px;
}

.live-card .live-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251, 248, 236, .65);
  font-weight: 600;
}

.live-card .live-val {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  color: #FBF8EC;
  margin-top: 10px;
  line-height: 1.1;
}

.live-card .live-val.orange {
  color: var(--accent);
}

.live-card .live-val.teal {
  color: #79ddb2;
}

.live-card .live-sub {
  font-size: 13px;
  color: rgba(251, 248, 236, .6);
  margin-top: 8px;
  line-height: 1.45;
}

.live-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.live-timestamp {
  font-size: 13px;
  color: rgba(251, 248, 236, .6);
}

.live-timestamp span {
  color: #FBF8EC;
  font-weight: 600;
}

.report-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}

.report-link:hover {
  color: #ffb066;
}

/* ================= PRICING SECTION ================= */
.pricing-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 24px 60px -40px rgba(20, 24, 20, .25);
  transition: transform .2s ease, border-color .2s ease;
}

.product-table:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 147, 92, .4);
}

.product-table-head {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-dark-2) 85%);
  color: #FBF8EC;
  padding: 26px 30px;
  text-align: center;
}

.product-table-head h3 {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 700;
  color: #FBF8EC;
}

.product-table-body {
  padding: 28px 30px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.intro-label {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 6px;
}

.intro-block p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-soft);
  flex: 1;
}

.price-columns.single {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin: 0 auto;
}

.price-col {
  padding: 22px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-col:first-child {
  border-right: 1px solid var(--border-soft);
}

.price-columns.single .price-col:first-child {
  border-right: none;
}

.price-col-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 4px;
}

.price-col-sub {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 18px;
  min-height: 32px;
}

.price-tag-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.price-row {
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
}

.price-row-label {
  font-family: var(--font-m);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.price-row-val {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
}

.price-row-val.dash {
  color: var(--text-dim);
  font-weight: 600;
}

.price-configure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: center;
  background: var(--accent);
  color: #181008;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}

.price-configure:hover {
  transform: translateY(-2px);
  background: #ffb066;
}

/* ================= HOW IT WORKS ================= */
.how-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}

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

.how-heading h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-top: 12px;
}

.how-text {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.how-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.how-visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px clamp(16px, 3vw, 44px);
  box-shadow: 0 24px 60px -40px rgba(20, 24, 20, .2);
}

.how-visual-label {
  text-align: center;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.how-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.how-diagram {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.how-diagram svg {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.how-summary {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  text-align: left;
}

.how-steps-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 24px;
}

.how-steps-label {
  flex: none;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 700;
}

.how-steps-divider .rule {
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.how-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-weight: 700;
  font-size: 13px;
}

.step-text {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
  padding-top: 4px;
}

/* ================= BENEFITS SECTION ================= */
.benefits-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.benefits-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin: 0 auto 16px;
  max-width: 760px;
}

.benefits-sub {
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 48px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 220px;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(20, 24, 20, .25);
}

.benefit.teal {
  background: var(--blue-soft);
  border-color: rgba(47, 111, 94, .2);
}

.benefit.teal .benefit-icon-box {
  background: rgba(47, 111, 94, .18);
  color: var(--blue);
}

.benefit.dark {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-dark-2) 85%);
  border-color: transparent;
  color: #FBF8EC;
}

.benefit.dark .benefit-icon-box {
  background: rgba(255, 255, 255, .12);
  color: #FBF8EC;
}

.benefit.dark h3 {
  color: #FBF8EC;
}

.benefit.dark p {
  color: rgba(251, 248, 236, .78);
}

.benefit.terracotta {
  background: var(--accent-soft);
  border-color: rgba(232, 147, 92, .25);
}

.benefit.terracotta .benefit-icon-box {
  background: rgba(232, 147, 92, .22);
  color: var(--accent-dim);
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.benefit h3 {
  font-family: var(--font-d);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.benefit p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= USE CASES ================= */
.usecases-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.usecases-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.usecases-sub {
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.usecase-accordion {
  display: flex;
  gap: 12px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.usecase-panel {
  position: relative;
  flex: 1;
  min-width: 60px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(.4, 0, .2, 1);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-soft);
}

.usecase-panel.active {
  flex: 5;
  border-color: var(--accent);
}

.usecase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 51, 49, 0.9) 0%, rgba(18, 51, 49, 0.25) 50%, rgba(18, 51, 49, 0.45) 100%);
}

.usecase-panel-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}

.usecase-panel.active .usecase-panel-icon {
  opacity: 1;
}

.usecase-panel-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.usecase-panel-label {
  position: absolute;
  left: 18px;
  bottom: 20px;
  right: 18px;
  z-index: 2;
  color: #ffffff;
}

.usecase-panel-label h3 {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin: 0;
  transition: all 0.35s ease;
}

.usecase-panel.active .usecase-panel-label h3 {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 19px;
  margin-bottom: 8px;
}

.usecase-panel-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 360px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.usecase-panel.active .usecase-panel-desc {
  opacity: 1;
  max-height: 120px;
  transition: opacity 0.4s ease 0.2s, max-height 0.4s ease 0.2s;
}

/* ================= CASE STUDIES ================= */
.cases-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.cases-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.cases-sub {
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.cases-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 48px;
}

.case-grid {
  position: relative;
}

.case-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
}

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

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 280px;
  transition: transform .2s ease, border-color .2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 147, 92, .4);
}

.case-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.case-card h3 {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.case-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.case-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.case-stat .num {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}

.case-stat .lbl {
  color: var(--text-dim);
  font-size: 11.5px;
  margin-top: 1px;
}

.carousel-next {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(20, 24, 20, 0.2);
  z-index: 3;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.carousel-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================= FILTERING SECTION ================= */
#filtering {
  padding: 96px clamp(16px, 4vw, 28px);
}

#filtering .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

#filtering .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

#filtering .section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

#filtering .section-head p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

#filtering .tabbar {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(20, 24, 20, .04);
}

#filtering .tab {
  background: transparent;
  border: none;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  outline: none;
  white-space: nowrap;
}

#filtering .tab:hover:not(.active) {
  color: var(--text);
}

#filtering .tab.active {
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(232, 147, 92, .3);
}

#filtering .tab-panel {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

#filtering .tab-panel.active {
  display: grid;
  animation: filterFadeIn 0.35s ease;
}

@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#filtering .tab-panel h3 {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

#filtering .tab-panel p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

#filtering .tab-panel p:last-child {
  margin-bottom: 0;
}

#filtering .iso-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

#filtering .iso-art {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px -30px rgba(20, 24, 20, .2);
}

#filtering .iso-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-dark-2) 85%);
}

.testimonials-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding:96px clamp(16px, 4vw, 28px);
}

.testimonials-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  color: #FBF8EC;
  margin-bottom: 48px;
}

.testimonial-grid {
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 280px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(251, 248, 236, .85);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  flex: none;
}

.testimonial-author .name {
  color: #FBF8EC;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
}

.testimonial-author .role {
  color: rgba(251, 248, 236, .55);
  font-size: 12px;
  margin-top: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251, 248, 236, .3);
  transition: background .25s ease, width .25s ease;
  cursor: pointer;
}

.testimonial-dots span.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 96px clamp(16px, 4vw, 28px);
  max-width: 820px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.faq-question .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--accent);
  transition: transform .25s ease, border-color .2s ease, color .2s ease;
  line-height: 1;
}

.faq-question .plus::before {
  content: "+";
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
  border-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 280px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  padding-bottom: 20px;
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: calc(72px + 24px);
    padding-bottom: 48px;
  }

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

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

  .price-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecases-section {
    padding: 64px clamp(16px, 4vw, 28px);
  }

  .usecase-accordion {
    flex-direction: column;
    height: auto;
    gap: 10px;
    border-radius: 0;
    overflow: visible;
  }

  .usecase-panel {
    min-height: 54px;
    height: auto;
    flex: none;
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.35s ease;
    cursor: pointer;
  }

  .usecase-panel.active {
    min-height: 160px;
    padding: 20px 18px 22px;
    border-color: var(--accent);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
  }

  .usecase-panel-icon {
    position: static;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    display: none;
    opacity: 1;
  }

  .usecase-panel.active .usecase-panel-icon {
    display: flex;
  }

  .usecase-panel-label {
    position: static;
    width: 100%;
  }

  .usecase-panel-label h3 {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 15.5px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .usecase-panel-label h3::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease, color 0.2s ease;
  }

  .usecase-panel.active .usecase-panel-label h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .usecase-panel.active .usecase-panel-label h3::after {
    content: "×";
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
  }

  .usecase-panel-desc {
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .case-card {
    flex-basis: 88%;
  }

  .carousel-next {
    right: 4px;
  }

  #filtering .tabbar {
    display: flex;
    justify-content: center;
    border-radius: 999px;
    margin: 0 auto 32px;
  }

  #filtering .tab-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-card {
    flex-basis: 88%;
  }

  .stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .stat-strip .label {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .section-pad,
  .pricing-section,
  .how-section,
  .benefits-section,
  .cases-section,
  #filtering,
  .testimonials-section,
  .faq-section {
    padding: 64px clamp(16px, 4vw, 28px);
  }

  .hero {
    padding-top: calc(72px + 32px);
    padding-bottom: 40px;
  }

  .hero-cta,
  .cta-row {
    flex-direction: column;
  }

  .hero-cta .btn,
  .cta-row .btn-primary,
  .cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .how-diagram,
  .how-caption,
  .how-visual-label {
    display: none;
  }

  .how-summary {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

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

  .hero-form-card {
    padding: 22px;
  }
}

@media (max-width: 600px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }

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

  #filtering .tabbar {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 4px;
    gap: 4px;
    border-radius: 999px;
  }

  #filtering .tabbar::-webkit-scrollbar {
    display: none;
  }

  #filtering .tab {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}

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

  .wrap {
    padding: 0 14px;
  }

  .hero {
    padding: calc(72px + 20px) 14px 40px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero .sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .stat-strip .num {
    font-size: 19px;
  }

  .stat-strip .label {
    font-size: 10.5px;
    white-space: normal;
  }

  .section-pad,
  .pricing-section,
  .how-section,
  .benefits-section,
  .cases-section,
  #filtering,
  .testimonials-section,
  .faq-section {
    padding: 48px 14px;
  }

  .live-section {
    padding: 48px 14px;
  }

  .live-title {
    font-size: 20px;
  }

  .live-card {
    padding: 20px 16px;
  }

  .live-card .live-val {
    font-size: 28px;
  }

  .pricing-section h2,
  .how-heading h2,
  .benefits-section h2,
  .usecases-section h2,
  .cases-section h2,
  #filtering .section-head h2,
  .testimonials-section h2,
  .faq-section h2 {
    font-size: clamp(22px, 6.5vw, 28px);
    margin-bottom: 12px;
  }

  .benefits-sub,
  .usecases-sub,
  .cases-sub,
  .how-text p,
  #filtering .section-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .how-visual-card {
    padding: 20px 12px;
  }

  .how-summary {
    font-size: 13.5px;
  }

  .form-card {
    padding: 20px 16px;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .product-table-head {
    padding: 20px 16px;
  }

  .product-table-head h3 {
    font-size: 17px;
  }

  .product-table-body {
    padding: 20px 16px 8px;
  }

  .price-amount {
    font-size: 22px;
  }

  .price-col {
    padding: 16px 8px;
  }

  .case-card,
  .testimonial-card {
    flex-basis: 92%;
    padding: 20px 16px;
    min-width: 0;
  }

  #filtering .tabbar {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 3px;
    gap: 3px;
    border-radius: 999px;
    margin-bottom: 24px;
  }

  #filtering .tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  #filtering .tab-panel h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #filtering .tab-panel p {
    font-size: 13.5px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .faq-answer p {
    font-size: 13.5px;
  }
}

@media (max-width: 360px) {
  .wrap {
    padding: 0 10px;
  }

  .hero {
    padding: calc(72px + 16px) 10px 36px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-pad,
  .pricing-section,
  .how-section,
  .benefits-section,
  .cases-section,
  #filtering,
  .testimonials-section,
  .faq-section {
    padding: 40px 10px;
  }

  .form-card,
  .live-card,
  .how-visual-card,
  .product-table-body,
  .case-card,
  .testimonial-card {
    padding: 16px 12px;
  }

  #filtering .tab {
    padding: 7px 12px;
    font-size: 11.5px;
  }
}
