/* =====================================================
   UNICO INNER PAGES — Shared Stylesheet
   Imports main style.css, adds inner-page specific styles
   ===================================================== */

/* ──────────────────────────────────────────────────
   INNER PAGE HERO BANNER
────────────────────────────────────────────────── */
.inner-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #08076e 0%, #0e0d9a 45%, #1a3a1a 100%);
  margin-top: 0;
  padding-top: 20px; /* offset for fixed navbar + topbar */
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(55,202,55,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px);
}

.inner-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.inner-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.inner-breadcrumb a:hover { color: #37ca37; }

.inner-breadcrumb span { color: rgba(255,255,255,0.35); }

.inner-breadcrumb .current {
  color: #37ca37;
  font-weight: 500;
}

.inner-hero-tag {
  display: inline-block;
  background: rgba(55,202,55,0.2);
  border: 1px solid rgba(55,202,55,0.4);
  color: #37ca37;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.inner-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.inner-hero h1 span {
  color: #37ca37;
}

.inner-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 0 32px;
}

.inner-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.inner-hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.inner-hero-stat {
  min-width: 110px;
}

.inner-hero-stat-num,
.inner-hero-stat strong,
.hero-stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #37ca37;
  line-height: 1;
  display: block;
}

.inner-hero-stat-label,
.inner-hero-stat span,
.hero-stat-lab {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.hero-stat {
  min-width: 110px;
}

/* ──────────────────────────────────────────────────
   INNER PAGE LAYOUT
────────────────────────────────────────────────── */
.inner-main {
  background: #f7f8fc;
  min-height: 60vh;
}

.inner-section {
  padding: 80px 0;
  scroll-margin-top: 112px;
}

.inner-section:nth-child(even) {
  background: #fff;
}

.inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .inner-container { padding: 0 20px; }
  .inner-hero-content { padding: 40px 20px; }
}

/* ──────────────────────────────────────────────────
   SECTION LABEL / TAG
────────────────────────────────────────────────── */
.ip-tag {
  display: inline-block;
  background: rgba(8,7,110,0.07);
  border-left: 3px solid #37ca37;
  color: #08076e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 14px;
}

.ip-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #08076e;
  line-height: 1.25;
  margin: 0 0 14px;
}

.ip-title span { color: #37ca37; }

.ip-desc {
  font-size: 15.5px;
  color: #5a6072;
  line-height: 1.8;
  max-width: 680px;
}

/* ──────────────────────────────────────────────────
   OVERVIEW SECTION (2-col: text + image)
────────────────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-grid.reverse,
.overview-grid--reverse { direction: rtl; }
.overview-grid.reverse > *,
.overview-grid--reverse > * { direction: ltr; }

.overview-text {}

.overview-text p {
  font-size: 15.5px;
  color: #5a6072;
  line-height: 1.85;
  margin-bottom: 20px;
}

.overview-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.overview-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3a4160;
  font-weight: 500;
}

.overview-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(55,202,55,0.12);
  color: #2aaa2a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.overview-img-wrap,
.overview-image,
.overview-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,7,110,0.15);
}

.overview-img-wrap img,
.overview-image img,
.overview-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 20px !important;
}

.overview-img-wrap:hover img,
.overview-image:hover img,
.overview-image-wrap:hover img { transform: scale(1.03); }

.overview-img-badge,
.overview-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8,7,110,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(8,7,110,0.2);
}

.overview-img-badge strong,
.overview-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #37ca37;
  line-height: 1;
}

.overview-img-badge span,
.overview-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
  display: block;
}

@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .overview-grid.reverse { direction: ltr; }
  .overview-checklist { grid-template-columns: 1fr; }
  .overview-img-wrap img,
  .overview-image img,
  .overview-image-wrap img { height: 320px; }
}

/* ──────────────────────────────────────────────────
   KEY FEATURES GRID
────────────────────────────────────────────────── */
.features-section-inner {
  background: #08076e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.features-section-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(55,202,55,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.features-section-inner .ip-tag {
  background: rgba(55,202,55,0.15);
  border-color: #37ca37;
  color: #37ca37;
}

.features-section-inner .ip-title { color: #fff; }

.features-section-inner .ip-desc { color: rgba(255,255,255,0.7); }

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

@media (max-width: 900px) {
  .ip-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 550px) {
  .ip-features-grid { grid-template-columns: 1fr; }
}

.ip-feat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ip-feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #37ca37, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ip-feat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(55,202,55,0.3);
  transform: translateY(-4px);
}

.ip-feat-card:hover::after { transform: scaleX(1); }

.ip-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(55,202,55,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.ip-feat-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.ip-feat-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 900px) {
  .applications-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .applications-grid { grid-template-columns: 1fr; }
}

.app-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(8,7,110,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(8,7,110,0.18);
}

.app-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.app-card:hover .app-card-bg { transform: scale(1.07); }

.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,110,0.88) 0%, rgba(8,7,110,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.app-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ──────────────────────────────────────────────────
   SPECS / TECH DATA TABLE
────────────────────────────────────────────────── */
.specs-table-wrap {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(8,7,110,0.08);
  border: 1px solid rgba(8,7,110,0.1);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.specs-table thead {
  background: #08076e;
  color: #fff;
}

.specs-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.specs-table tbody tr {
  border-bottom: 1px solid rgba(8,7,110,0.06);
  transition: background 0.15s;
}

.specs-table tbody tr:hover { background: rgba(8,7,110,0.03); }

.specs-table tbody tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: #3a4160;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #08076e;
  width: 30%;
}

.specs-table td .spec-badge {
  display: inline-block;
  background: rgba(55,202,55,0.1);
  color: #1a8c1a;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}

/* ──────────────────────────────────────────────────
   PRODUCT RANGE CARDS (sub-products)
────────────────────────────────────────────────── */
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .range-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .range-grid { grid-template-columns: 1fr; }
}

.range-card {
  background: #fff;
  border: 1px solid rgba(8,7,110,0.09);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.range-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #08076e, #37ca37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.range-card:hover {
  border-color: rgba(8,7,110,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8,7,110,0.1);
}

.range-card:hover::before { transform: scaleX(1); }

.range-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(8,7,110,0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.range-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #08076e;
  margin: 0;
}

.range-card p {
  font-size: 13.5px;
  color: #5a6072;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.range-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #08076e;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s, letter-spacing 0.2s;
}

.range-card-link:hover {
  color: #37ca37;
  letter-spacing: 0.8px;
}

/* ──────────────────────────────────────────────────
   INNER PAGE CTA BANNER
────────────────────────────────────────────────── */
.inner-cta-section {
  background: linear-gradient(135deg, #08076e 0%, #0b0a8a 60%, #1a3a1a 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(55,202,55,0.1) 0%, transparent 70%);
}

.inner-cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  position: relative;
}

.inner-cta-section h2 span { color: #37ca37; }

.inner-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
}

.inner-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ──────────────────────────────────────────────────
   ABOUT PAGE SPECIFIC
────────────────────────────────────────────────── */
.about-timeline {
  position: relative;
  padding-left: 32px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #08076e, #37ca37);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #37ca37;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(55,202,55,0.3);
}

.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #37ca37;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #08076e;
  margin: 0 0 8px;
}

.timeline-item p {
  font-size: 14px;
  color: #5a6072;
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: #fff;
  border: 1px solid rgba(8,7,110,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(8,7,110,0.05);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(8,7,110,0.12);
  border-color: rgba(8,7,110,0.15);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #08076e;
  margin: 0 0 10px;
}

.value-card p {
  font-size: 13.5px;
  color: #5a6072;
  line-height: 1.7;
  margin: 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #08076e;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

.stat-strip-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-strip-item:last-child { border-right: none; }

.stat-strip-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #37ca37;
  line-height: 1;
  display: block;
}

.stat-strip-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   SHARED INNER PAGE COMPONENT FIXES
   Covers mixed markup used across all inner pages
   ===================================================== */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: #08076e;
  transform: translateY(-2px);
}

.features-section-inner .inner-container {
  position: relative;
  z-index: 1;
}

.ip-feat-card h3,
.ip-feat-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.range-card h3,
.range-card h4,
.value-card h3,
.value-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #08076e;
  margin: 0 0 10px;
}

.range-card h3 { font-size: 16px; }
.value-card h3 { font-size: 17px; }

.stats-strip {
  max-width: 1200px;
  margin: 60px auto 60px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(8,7,110,0.15);
}

.stats-strip .stat-item,
.stats-strip .stat-strip-item {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}

.stats-strip .stat-item:last-child,
.stats-strip .stat-strip-item:last-child {
  border-right: 0;
}

.stats-strip .stat-item strong,
.stats-strip .stat-strip-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #37ca37;
  line-height: 1;
}

.stats-strip .stat-item span,
.stats-strip .stat-strip-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.applications-grid {
  align-items: stretch;
}

.app-card {
  min-height: 250px;
  height: auto;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.app-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.app-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8,7,110,0.08) 0%, rgba(5,4,55,0.42) 100%);
  pointer-events: none;
}

.app-card-content,
.app-card > :not(.app-card-bg) {
  position: relative;
  z-index: 1;
}

.app-card-icon {
  font-size: 36px;
  line-height: 1;
  margin: 0 0 18px;
  color: #37ca37;
}

.app-card h3,
.app-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px;
}

.app-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0;
}

.inner-section .ip-tag,
.inner-cta-section .ip-tag,
.features-section-inner .ip-tag {
  vertical-align: middle;
}

.inner-section [style*="text-align:center"] .ip-tag,
.inner-section .ip-tag[style*="text-align:center"] {
  display: inline-flex;
}

.ip-title {
  background: transparent !important;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .btn-outline-white {
    width: 100%;
    max-width: 280px;
  }

  .stats-strip {
    margin: 40px 20px 0;
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip .stat-item,
  .stats-strip .stat-strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 26px 16px;
  }

  .stats-strip .stat-item:nth-last-child(-n+2),
  .stats-strip .stat-strip-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .app-card {
    min-height: 220px;
  }
  .specs-table-wrap{
    overflow-x: scroll;
  }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip .stat-item:nth-last-child(-n+2),
  .stats-strip .stat-strip-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .stats-strip .stat-item:last-child,
  .stats-strip .stat-strip-item:last-child {
    border-bottom: 0;
  }
}

/* ──────────────────────────────────────────────────
   CONTACT STRIP
────────────────────────────────────────────────── */
.contact-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,7,110,0.06);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  color: #3a4160;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-strip-item:hover {
  background: rgba(8,7,110,0.1);
  color: #08076e;
}

.contact-strip-icon {
  width: 32px;
  height: 32px;
  background: #08076e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-strip-icon svg {
  width: 16px; height: 16px;
  color: #fff;
}

/* ──────────────────────────────────────────────────
   INNER PAGE FADE ANIMATIONS
────────────────────────────────────────────────── */
.ip-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ip-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.ip-fade:nth-child(2) { transition-delay: 0.1s; }
.ip-fade:nth-child(3) { transition-delay: 0.2s; }
.ip-fade:nth-child(4) { transition-delay: 0.3s; }
.ip-fade:nth-child(5) { transition-delay: 0.4s; }
.ip-fade:nth-child(6) { transition-delay: 0.5s; }
