/* ═══════════════════════════════════════════════════════════════════════════
   GEOGUARDPRO - MAIN STYLESHEET
   Brand Colors: #129DED (Blue) | #1dcd95 (Teal) | #0f172a (Dark Navy)
   Typography: Sora, weights 300-800
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --pr: #129DED;
  --pr-dk: #0d82c9;
  --pr-lt: #e8f6fe;
  --pr-md: #dbeafe;
  --tl: #1dcd95;
  --tl-dk: #15a878;
  --tl-lt: #e6faf3;
  --dark: #0f172a;
  --text: #333;
  --muted: #666;
  --border: #e0deff;
  --border2: #ddd;
  --bg: #f8fafc;
  --cream: #fff8f0;
  --white: #fff;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(18,157,237,.12);

  /* Border Radius */
  --r: 14px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
}

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-sec {
  /*padding: 60px 0 0;*/
  /*margin-top: 70px;*/
  background: #fff;
  position: relative;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 550px;
}

.hero-left {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--pr);
  letter-spacing: .6px;
  margin-bottom: 20px;
  padding: 7px 14px;
  background: var(--pr-lt);
  border-radius: 8px;
  animation: slideDown .6s ease;
}

.hero-h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.6px;
}

.hero-h1 .highlight {
  color: var(--pr);
  font-weight: 800;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  transition: border-color .2s;
}

.hero-form input:focus {
  outline: none;
  border-color: var(--pr);
  box-shadow: 0 0 0 3px var(--pr-lt);
}

.hero-form .btn {
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(18, 157, 237, .18);
}

.hero-form-note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  /*margin-bottom: 28px;*/
}

/* ── HERO CLIENT LOGOS ─────────────────────────────────────── */
.hero-client-logos {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.hero-client-label {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-client-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-client-row img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .2s, filter .2s;
}

.hero-client-row img:hover {
  opacity: .85;
  filter: grayscale(0%);
}

.hero-logos {
  margin-top: 20px;
}

.hero-logos-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  /*margin-bottom: 12px;*/
}

.hero-logos-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hlogo-item {
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.hlogo-item:hover {
  color: var(--pr);
}

.hlogo-item span {
  display: inline-block;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  height: auto;
}

.hero-illustration img {
  width: 125%;
  max-width: 125%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(18, 157, 237, .08));
}

.hero-banner {
  height: auto;
  background: linear-gradient(135deg, #4a90c9, #006fb5);
  position: relative;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.banner-content {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 1200px;
}

.banner-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  opacity: 1;
  display: block;
}

.banner-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.banner-logo {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  opacity: 0.95;
  transition: opacity .2s ease;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── LOGOS SECTION ────────────────────────────────────────── */
.logos-sec {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.logos-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.logos-item {
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.logos-item:hover {
  color: var(--pr);
}

.logos-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pr);
  opacity: .4;
}

/* ─── TWO CARDS ────────────────────────────────────────────── */
.two-cards {
  padding: 80px 0;
  background: #fff;
}

.two-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.tc-card {
  padding: 44px 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .28s;
  background: #fff;
  cursor: default;
}

.tc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18, 157, 237, .1);
  border-color: var(--pr);
}

.tc-card-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.tc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.tc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── FEATURE STRIP ────────────────────────────────────────── */
.feat-strip {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.feat-strip-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.feat-strip-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.fs-card {
  flex: 1;
  min-width: 150px;
  max-width: calc((100% - 84px) / 6);
  padding: 20px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all .22s;
  background: #fff;
  cursor: default;
}

.fs-card:hover {
  border-color: var(--pr);
  box-shadow: 0 8px 20px rgba(18, 157, 237, .08);
  transform: translateY(-3px);
  background: var(--pr-lt);
}

.fs-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.fs-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

/* ─── BENEFIT STRIP ────────────────────────────────────────── */
.ben-strip {
  padding: 50px 0;
  background: var(--cream);
  border-top: 1px solid #f5e8d8;
}

.ben-strip-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── TESTIMONIAL SECTION ──────────────────────────────────── */
.quote-sec {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quote-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(18, 157, 237, .12), transparent 60%);
}

.quote-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(29, 205, 149, .08), transparent 60%);
}

.quote-in {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.quote-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.qm {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pr));
}

.qm.r {
  background: linear-gradient(90deg, var(--pr), transparent);
}

.quote-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 13px;
}

.quote-text {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.qa-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ba4de, #0058b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.qa-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin-bottom: 2px;
}

.qa-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-align: left;
  margin: 0;
}

/* ─── VIDEO SECTION ────────────────────────────────────────── */
.video-sec {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.video-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.video-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
}

.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
  border: 1px solid var(--border);
}

.video-thumb {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-btn {
  width: 70px;
  height: 70px;
  background-color: var(--pr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all .28s;
  border: none;
  cursor: pointer;
}

.video-thumb:hover .video-btn {
  background-color: var(--pr-dk);
  transform: scale(1.1);
}

.video-txt {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ─── TABS ─────────────────────────────────────────────────── */
.tabs-sec {
  padding: 80px 0;
  background: #fff;
}

.tabs-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.tabs-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
}

.tab-btn:hover {
  color: var(--pr);
}

.tab-btn.on {
  color: var(--pr);
  border-bottom-color: var(--pr);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn .3s ease;
}

.tab-pane.on {
  display: block;
}

.tab-pane h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.tab-pane p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── WHY CHOOSE (4 cards) ─────────────────────────────────── */
.why-sec {
  padding: 80px 0;
  background: #fff;
}

.why-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.why-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.why-card {
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .28s;
  background: #fff;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
  border-color: var(--pr);
}

.why-card-ico {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── CASE STUDIES (3 cards) ───────────────────────────────── */
.case-sec {
  padding: 80px 0;
  background: #f9f9f9;
}

.case-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.case-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.case-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .28s;
  background: #fff;
  cursor: default;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
  border-color: var(--pr);
}

.case-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--pr);
}

.case-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.case-metric {
  display: inline-block;
  background: #f0f0f0;
  color: var(--pr);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── INDUSTRIES (5 cards) ─────────────────────────────────── */
.ind-sec {
  padding: 80px 0;
  background: #f0f9ff;
}

.ind-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.ind-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ind-card {
  padding: 28px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all .28s;
  background: #fff;
  cursor: default;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
  border-color: var(--pr);
}

.ind-card-ico {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.ind-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.ind-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── REVIEWS ──────────────────────────────────────────────── */
.review-sec {
  padding: 80px 16px;
  background: #fff;
}

.review-sec-in {
  max-width: 1200px;
  margin: 0 auto;
}

.review-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
  cursor: default;
}

.review-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.review-stars {
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.review-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 12px;
}

.review-author {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}

/* ─── BLOG ─────────────────────────────────────────────────── */
.blog-sec {
  padding: 80px 0;
  background: #fff;
}

.blog-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.blog-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .28s;
  background: #fff;
  cursor: default;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
}

.blog-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #5ba4de, #0058b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.blog-con {
  padding: 24px;
}

.blog-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.read-more {
  font-size: 12px;
  color: var(--pr);
  font-weight: 700;
  text-decoration: none;
  transition: color .18s;
  display: inline-block;
}

.read-more:hover {
  color: var(--pr-dk);
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-sec {
  padding: 80px 16px;
  background: #f0f9ff;
}

.faq-sec-in {
  max-width: 880px;
  margin: 0 auto;
}

.faq-sec h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
  text-align: center;
}

.acc {
  margin-top: 20px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.acc-h {
  width: 100%;
  padding: 16px 20px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all .18s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Sora', sans-serif;
}

.acc-h:hover {
  background: var(--pr-lt);
  color: var(--pr);
}

.acc-h::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
}

.acc-item.on .acc-h {
  background: var(--pr);
  color: #fff;
}

.acc-item.on .acc-h::after {
  content: '−';
}

.acc-b {
  display: none;
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.acc-item.on .acc-b {
  display: block;
}

/* ─── FINAL CTA ────────────────────────────────────────────── */
.cta-sec {
  background: linear-gradient(135deg, #5ba4de, #0058b8);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-sec-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-sec h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.2;
}

.cta-sec p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .95);
}

.cta-btn {
  background: #fff;
  color: var(--pr);
  border: none;
}

.cta-btn:hover {
  background: black;
}

/* ─── LOGOS SECTION ────────────────────────────────────────── */
.logos-sec {
  background: #fff;
  padding: 70px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.logos-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 36px;
  display: block;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #f0f0f0;
  transition: all .2s ease;
}

.logo-item:hover {
  border-color: var(--pr);
  background: var(--pr-lt);
}

.logo-item svg {
  width: 100%;
  height: auto;
  max-width: 120px;
}

/* ─── TWO CARDS SECTION ────────────────────────────────────── */
.two-cards {
  padding: 80px 16px;
  background: #fafbfc;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  border-radius: 20px;
  border: none;
  background: #fff;
  transition: all .3s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  padding: 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(18, 157, 237, .15);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.card h3,
.card-h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px 0;
  line-height: 1.3;
  padding: 0 32px;
  padding-top: 32px;
}

.card p,
.card-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding: 0 32px 32px 32px;
}

/* ─── FEATURE STRIP ────────────────────────────────────────── */
.feature-strip {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 16px;
}

.feature-item {
  padding: 18px 14px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
  text-align: center;
  transition: all .22s ease;
}

.feature-item:hover {
  border-color: var(--pr);
  background: var(--pr-lt);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.feature-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

/* ─── SECTION TITLES ───────────────────────────────────────── */
.sec-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}

.sec-subtitle {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
}

/* ─── FEATURES SECTION ─────────────────────────────────────── */
.features-sec {
  padding: 80px 0;
  background: #f0f9ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  padding: 48px 32px;
  border-radius: 16px;
  border: none;
  background: #f8fafc;
  transition: all .3s ease;
  text-align: center;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 20px 48px rgba(18, 157, 237, .12);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pr-lt);
  color: var(--pr);
  margin-bottom: 24px;
  transition: transform .3s ease;
  font-size: 40px;
}

.feature-badge i {
  font-size: 40px;
  font-weight: normal;
}

.feature-badge.badge-blue {
  background: #f0f9ff;
  color: #0d82c9;
}

.feature-badge.badge-cyan {
  background: #ecf8ff;
  color: #0891b2;
}

.feature-badge.badge-green {
  background: #f0fdf4;
  color: #15803d;
}

.feature-badge.badge-pink {
  background: #fef2f8;
  color: #be185d;
}

.feature-badge.badge-yellow {
  background: #fffbeb;
  color: #b45309;
}

.feature-badge.badge-purple {
  background: #f3e8ff;
  color: #7e22ce;
}

.feature-card:hover .feature-badge {
  transform: scale(1.12);
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── CARD IMAGES ──────────────────────────────────────────── */
.card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.case-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 24px;
  display: block;
}

.case-content {
  padding: 0;
}

/* ─── TESTIMONIAL SECTION ──────────────────────────────────── */
.testimonial-sec {
  padding: 80px 0;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: all .28s ease;
}

.testimonial-card:hover {
  border-color: var(--pr);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
}

.testimonial-card.featured {
  border: 2px solid var(--pr);
  box-shadow: 0 12px 40px rgba(18, 157, 237, .15);
  transform: scale(1.02);
}

.testimonial-stars,
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star-icon {
  color: #fbbf24;
  display: inline-block;
}

.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  margin: 0 0 20px;
}

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

.ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pr-lt);
  color: var(--pr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.ta-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.ta-role {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ─── WHY CHOOSE SECTION ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: all .28s ease;
  text-align: center;
}

.why-card:hover {
  border-color: var(--pr);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
  transform: translateY(-2px);
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--pr-lt);
  color: var(--pr);
  font-size: 22px;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── CASE STUDIES SECTION ─────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.case-card {
  border-radius: 16px;
  border: none;
  background: #fff;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(18, 157, 237, .15);
}

.case-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-metric-badge {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  font-weight: 700;
  color: #fff;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.case-metric-badge.badge-blue,
.case-metric-badge.badge-green,
.case-metric-badge.badge-yellow {
  background: #0d82c9;
}

.case-content {
  padding: 32px;
  padding-top: 24px;
}

.case-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.case-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.case-metric {
  display: inline-block;
  background: var(--pr-lt);
  color: var(--pr);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

/* ─── BLOG SECTION ───────────────────────────────────────────── */
.blog-sec {
  padding: 80px 16px;
  background: #fff;
}

.blog-sec-in {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 52px;
}

.blog-card {
  border-radius: 16px;
  border: none;
  background: #fff;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(18, 157, 237, .12);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pr);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #999;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--pr);
  border-radius: 50%;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pr);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
  text-decoration: none;
}

.blog-link:hover {
  gap: 12px;
  color: var(--pr-dk);
}

.blog-link i {
  font-size: 16px;
}

/* ─── INDUSTRIES SECTION ───────────────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ind-card {
  padding: 24px 18px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: all .28s ease;
  text-align: center;
}

.ind-card:hover {
  border-color: var(--pr);
  box-shadow: 0 12px 32px rgba(18, 157, 237, .1);
  transform: translateY(-2px);
}

.ind-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pr-lt);
  color: var(--pr);
  margin-bottom: 16px;
  transition: transform .3s ease;
  font-size: 32px;
}

.ind-number i {
  font-size: 32px;
  font-weight: normal;
}

.ind-number.badge-blue {
  background: #f0f9ff;
  color: #0d82c9;
}

.ind-number.badge-cyan {
  background: #ecf8ff;
  color: #0891b2;
}

.ind-number.badge-green {
  background: #f0fdf4;
  color: #15803d;
}

.ind-number.badge-pink {
  background: #fef2f8;
  color: #be185d;
}

.ind-number.badge-yellow {
  background: #fffbeb;
  color: #b45309;
}

.ind-card:hover .ind-number {
  transform: scale(1.1);
}

.ind-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ind-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── REVIEWS SECTION ──────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: all .2s ease;
}

.review-card:hover {
  border-color: var(--pr);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
  margin: 0 0 12px;
}

.review-author {
  font-size: 12px;
  color: var(--dark);
  font-weight: 600;
}

/* ─── FAQ SECTION ──────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-h {
  width: 100%;
  padding: 20px 24px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: all .18s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Sora', sans-serif;
}

.faq-h:hover {
  background: var(--pr-lt);
  color: var(--pr);
}

.faq-toggle {
  font-size: 20px;
  font-weight: 300;
  transition: transform .3s ease;
}

.faq-item.on .faq-toggle {
  transform: rotate(45deg);
}

.faq-b {
  display: none;
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.on .faq-b {
  display: block;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 0 32px;
  }

  .hero-right {
    display: none;
  }

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

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

  .hero-form {
    flex-direction: column;
  }

  .hero-form input {
    width: 100%;
  }

  .hero-logos-grid {
    gap: 16px;
  }

  .hlogo-item {
    height: 36px;
  }

  .banner-logos {
    gap: 24px;
  }

  .banner-logo {
    font-size: 13px;
  }

  /* ── Home page section grids ── */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .testimonial-card.featured {
    transform: scale(1);
  }

  .features-sec,
  .testimonial-sec {
    padding: 56px 0;
  }

  .why-sec-in,
  .blog-sec-in,
  .ind-sec-in,
  .review-sec-in,
  .faq-sec-in,
  .cta-sec-in {
    padding: 0 16px;
  }

  .two-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .features-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .fs-card,
  .benefit-card {
    max-width: none;
    min-width: auto;
  }

  .feat-strip-row,
  .ben-strip-row {
    flex-direction: column;
  }

  .why-grid,
  .case-grid,
  .ind-grid,
  .review-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .video-thumb {
    height: 280px;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .tab-btn {
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 23px;
  }

  .tab-btn.on {
    border-bottom: none;
    border-left-color: var(--pr);
  }

  .logos-grid {
    padding: 0 16px;
  }

  .cards-grid {
    padding: 0 16px;
  }

  .features-row {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .hero-sec {
    padding: 60px 0 0;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .hero-left {
    padding: 40px 0 24px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-h1 {
    font-size: 26px;
    margin-bottom: 16px;
  }

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

  .hero-form {
    flex-direction: column;
    gap: 10px;
  }

  .hero-form input {
    width: 100%;
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero-form .btn {
    padding: 12px 18px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .banner-logos {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .banner-logo {
    font-size: 12px;
  }

  .hero-banner {
    padding: 32px 16px;
    margin-top: 0;
  }

  .sec-title {
    font-size: 22px;
  }

  .sec-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .features-sec,
  .testimonial-sec {
    padding: 44px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card h4 {
    font-size: 17px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .faq-h {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-b {
    padding: 16px 18px;
  }

  .hero-logos {
    margin-top: 0;
  }

  .hero-logos-grid {
    gap: 14px;
  }

  .hlogo-item {
    height: 32px;
  }

  .logos-sec {
    padding: 40px 0;
  }

  .logos-label {
    font-size: 12px;
    margin-bottom: 20px;
  }

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

  .logo-item {
    height: 50px;
    padding: 10px 12px;
  }

  .cards-grid {
    gap: 20px;
    padding: 0 16px;
  }

  .card {
    padding: 28px;
  }

  .feature-strip {
    padding: 40px 0;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .logos-row {
    gap: 16px;
    padding: 0 16px;
  }

  .two-cards-grid,
  .feat-strip-in,
  .ben-strip-in,
  .video-sec-in,
  .tabs-sec-in,
  .why-sec-in,
  .case-sec-in,
  .ind-sec-in,
  .review-sec-in,
  .blog-sec-in,
  .faq-sec-in,
  .cta-sec-in {
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM OVERVIEW SECTION (Image + Feature List)
   ═══════════════════════════════════════════════════════════════ */
.platform-sec {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.platform-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left: Image ── */
.platform-left {
  position: relative;
}

.platform-img-bg {
  position: absolute;
  inset: -24px -24px -24px -32px;
  background: linear-gradient(135deg, var(--pr-lt) 0%, #e8f6fe 60%, #f0fbf7 100%);
  border-radius: 24px;
  z-index: 0;
}

.platform-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18,157,237,.16), 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid rgba(18,157,237,.12);
}

.platform-img-wrap img {
  width: 125%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* floating badge on image */
.platform-badge {
  position: absolute;
  bottom: 20px;
  left: -18px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  border: 1px solid var(--border);
}

.platform-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pr-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr);
  font-size: 18px;
  flex-shrink: 0;
}

.platform-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.platform-badge-text span {
  font-size: 11px;
  color: var(--muted);
}

/* ── Right: Content ── */
.platform-right {
  padding: 8px 0;
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pr-lt);
  color: var(--pr);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(18,157,237,.2);
}

.platform-h {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

.platform-h span {
  color: var(--pr);
}

.platform-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.platform-feats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.platform-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: default;
  transition: background .15s;
}

.platform-feat:last-child {
  border-bottom: none;
}

.platform-feat-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pr-lt);
  border: 1.5px solid rgba(18,157,237,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pr);
  transition: all .2s;
}

.platform-feat:hover .platform-feat-dot {
  background: var(--pr);
  color: #fff;
  border-color: var(--pr);
}

.platform-feat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
}

.platform-feat:hover .platform-feat-label {
  color: var(--pr);
}

.platform-feat.active .platform-feat-dot {
  background: var(--pr);
  color: #fff;
  border-color: var(--pr);
}

.platform-feat.active .platform-feat-label {
  color: var(--pr);
}

.platform-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .platform-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platform-left {
    order: 2;
  }

  .platform-right {
    order: 1;
  }

  .platform-badge {
    left: 12px;
  }
}

@media (max-width: 560px) {
  .platform-sec {
    padding: 60px 0;
  }

  .platform-h {
    font-size: 24px;
  }
}
