:root {
  --primary: #0e4f88;
  --primary-dark: #061838;
  --secondary:#11b9b6;
  --accent: #4fafe3;
  --ink: #1e2a32;
  --muted: #475569;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(14, 79, 136, 0.12);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--soft);
  color: var(--ink);
  font-family: "Yekan Bakh FaNum", Tahoma, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header {
  max-width: 600px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.cta-box h2,
.quality-card h2 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-header p,
.quality-card p,
.cta-box p {
  color: var(--muted);
  font-size: 16px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 79, 136, 0.18);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--primary);
  box-shadow: 0 14px 35px rgba(14, 79, 136, 0.24);
  color: #fff;
}

.site-header .btn-primary {
  background: var(--secondary);
  box-shadow: 0 12px 28px rgba(35, 200, 162, 0.26);
  color: #05243e;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--primary);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.site-header {
  background: #061f3f;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-strip {
  background: #051832;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
}

.top-strip__inner,
.top-strip__item,
.top-strip__links,
.navbar__inner,
.brand,
.main-menu,
.mega-trigger,
.hero__actions,
.hero__badges {
  align-items: center;
  display: flex;
}

.top-strip__inner {
  justify-content: space-between;
  min-height: 38px;
}

.top-strip__item,
.top-strip__links {
  gap: 30px;
}

.top-strip__links {
  position: relative;
}

.top-strip__pulse {
  background: var(--secondary);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(35, 200, 162, 0.55);
  display: inline-block;
  height: 9px;
  margin-left: -6px;
  position: relative;
  width: 9px;
  animation: contactPulse 1.8s ease-out infinite;
}

.top-strip__pulse::after {
  border-left: 2px solid var(--secondary);
  border-top: 2px solid var(--secondary);
  content: "";
  height: 7px;
  left: -13px;
  opacity: 0.9;
  position: absolute;
  top: 1px;
  transform: rotate(-45deg);
  width: 7px;
  animation: contactArrow 1.8s ease-in-out infinite;
}

.navbar {
  backdrop-filter: blur(18px);
}

.navbar__inner {
  flex-direction: row-reverse;
  height: 78px;
  justify-content: space-between;
  position: relative;
}

.brand {
  gap: 10px;
}

.brand__mark {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  font-size: 24px;
  font-weight: 950;
  height: 44px;
  place-items: center;
  width: 44px;
}

.brand__text {
  display: grid;
  line-height: 1.2;
}

.brand__text strong {
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.brand__text small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0;
}

.nav-panel {
  align-items: center;
  display: flex;
  gap: 24px;
}

.main-menu {
  gap: 6px;
  list-style: none;
}

.main-menu a,
.mega-trigger {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-weight: 700;
  gap: 7px;
  padding: 11px 13px;
}

.main-menu a:hover,
.main-menu a.active,
.mega-trigger:hover {
  background: transparent;
  color: #fff;
}

.main-menu a.active {
  box-shadow: inset 0 -2px 0 var(--secondary);
}

.has-mega {
  position: static;
}

.mega-menu {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: 0.82fr 1.6fr;
  inset-inline: 0;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: absolute;
  top: 78px;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 20;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__featured {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-radius: 14px;
  color: #fff;
  padding: 26px;
}

.mega-kicker {
  color: var(--secondary);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.mega-menu__featured h3 {
  font-size: 25px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.mega-menu__featured p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.mega-menu__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.mega-column {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.mega-column h4 {
  color: var(--primary-dark);
  font-size: 15px;
  margin-bottom: 12px;
}

.mega-column a {
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  gap: 10px;
  padding: 9px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-column a:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.mega-column i {
  color: var(--secondary);
  width: 20px;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  display: none;
  height: 42px;
  width: 42px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 58px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 31, 63, 0.35) 0%, rgba(14, 79, 136, 0.15) 50%, rgba(6, 24, 56, 0.8) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  min-height: 520px;
}

.hero__content h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 680px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__badges span {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}

.hero__badges i {
  color: var(--secondary);
}

.trade-orbit {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  display: grid;
  max-width: 560px;
  place-items: center;
  position: relative;
  backdrop-filter: blur(12px);
}

.trade-orbit::before,
.trade-orbit::after {
  border: 1px dashed rgba(14, 79, 136, 0.2);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}

.trade-orbit::after {
  animation: spin 24s linear infinite;
  border-color: rgba(35, 200, 162, 0.28);
  inset: 23%;
}

.orbit-card--main {
  background: var(--primary-dark);
  border-radius: 22px;
  color: #fff;
  display: grid;
  min-width: 220px;
  padding: 26px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.orbit-card strong {
  color: var(--secondary);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.orbit-card small,
.orbit-card span {
  color: rgba(255, 255, 255, 0.75);
}

.orbit-node {
  animation: float 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  display: grid;
  font-size: 28px;
  height: 76px;
  place-items: center;
  position: absolute;
  width: 76px;
  z-index: 3;
}

.orbit-node--ship {
  left: 12%;
  top: 18%;
}

.orbit-node--factory {
  right: 12%;
  top: 24%;
}

.orbit-node--plane {
  bottom: 12%;
  left: 28%;
}

.floating-panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  max-width: 210px;
  padding: 12px;
  position: absolute;
  z-index: 4;
  backdrop-filter: blur(8px);
}

.floating-panel i {
  color: var(--secondary);
  font-size: 22px;
}

.floating-panel--one {
  right: -16px;
  bottom: 25%;
}

.floating-panel--two {
  left: -12px;
  top: 48%;
}

.route-line {
  background: linear-gradient(90deg, transparent, rgba(79, 175, 227, 0.8), transparent);
  height: 2px;
  position: absolute;
  width: 58%;
}

.route-line--one {
  transform: rotate(26deg);
}

.route-line--two {
  transform: rotate(-32deg);
}

.service-panels {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 58px 0 50px;
}

.service-panels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-panel {
  display: block;
  gap: 16px;
  min-height: 330px;
  padding: 28px 34px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.12);
}

.service-panel__head {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.service-panel + .service-panel {
  border-right: 1px solid var(--line);
}

.service-panel__icon {
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.1), rgba(14, 79, 136, 0.08));
  border-radius: 8px;
  color: var(--primary-dark);
  display: grid;
  font-size: 26px;
  height: 56px;
  place-items: center;
  width: 56px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-panel:hover .service-panel__icon {
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.2), rgba(14, 79, 136, 0.15));
  transform: scale(1.05);
}

.service-panel h2 {
  color: var(--primary-dark);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 0;
}

.service-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-panel ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin-bottom: 18px;
}

.service-panel li {
  align-items: flex-start;
  color: var(--ink);
  display: flex;
  font-size: 14px;
  gap: 9px;
  line-height: 1.6;
}

.service-panel li i {
  color: var(--secondary);
  font-size: 13px;
  margin-top: 5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-panel:hover li i {
  color: var(--primary);
  transform: scale(1.1);
}

.service-panel a {
  align-items: center;
  color: var(--secondary);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-panel:hover a {
  color: var(--primary);
  transform: translateX(-4px);
}

.rotator-grid,
.products-grid,
.quality-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.82fr 1.18fr;
}

.rotator-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rotator-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.rotator-btn.active {
  background: var(--primary);
  color: #fff;
}

.rotator-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 360px;
  overflow: hidden;
  padding: 38px;
  position: relative;
}

.rotator-card::after {
  background: linear-gradient(135deg, rgba(35, 200, 162, 0.18), rgba(79, 175, 227, 0.12));
  border-radius: 0 0 0 70px;
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  top: 0;
  width: 160px;
}

.rotator-card > i {
  color: var(--secondary);
  font-size: 44px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.rotator-card h3 {
  color: var(--primary-dark);
  font-size: 32px;
  margin-bottom: 12px;
}

.rotator-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.rotator-card ul,
.check-list {
  list-style: none;
}

.rotator-card li {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 0;
}

.stats-band {
  background: #fff;
  color: var(--ink);
  padding: 24px 0 56px;
}

.stats-grid {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 22px;
  box-shadow: 0 16px 42px rgba(14, 79, 136, 0.07);
}

.stat {
  border-left: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 22px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat:last-child {
  border-left: 0;
}

.stat strong {
  color: var(--primary-dark);
  display: block;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 950;
  line-height: 1.1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat:hover strong {
  color: var(--primary);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.3s ease;
}

.stat:hover span {
  color: var(--ink);
}

.solutions {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.78)),
    linear-gradient(110deg, rgba(100, 116, 139, 0.1), transparent 40%),
    linear-gradient(290deg, rgba(148, 163, 184, 0.14), transparent 42%),
    linear-gradient(45deg, rgba(17, 185, 182, 0.03), transparent 60%),
    #f5f7fa;
  overflow: hidden;
  position: relative;
}

.solutions::before,
.solutions::after {
  content: "";
  filter: blur(14px);
  opacity: 0.96;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.solutions::before {
  background: linear-gradient(135deg, rgba(71, 85, 105, 0.2), rgba(203, 213, 225, 0.18));
  clip-path: polygon(0 16%, 68% 0, 100% 56%, 76% 100%, 14% 82%);
  height: 390px;
  left: -150px;
  top: 52px;
  transform: rotate(-14deg);
  width: 520px;
}

.solutions::after {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.16), rgba(226, 232, 240, 0.3));
  bottom: 26px;
  clip-path: polygon(12% 0, 82% 18%, 100% 74%, 38% 100%, 0 48%);
  height: 330px;
  right: -120px;
  transform: rotate(18deg);
  width: 480px;
}

.solutions .container {
  position: relative;
  z-index: 1;
}

.solutions-shape {
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.solutions-shape--one {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.16), rgba(203, 213, 225, 0.28));
  clip-path: polygon(16% 0, 88% 12%, 100% 70%, 40% 100%, 0 48%);
  height: 230px;
  right: 10%;
  top: 106px;
  transform: rotate(-20deg);
  width: 320px;
}

.solutions-shape--two {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.28), rgba(241, 245, 249, 0.32));
  clip-path: polygon(0 26%, 64% 0, 100% 46%, 74% 100%, 18% 86%);
  height: 190px;
  left: 20%;
  top: 300px;
  transform: rotate(18deg);
  width: 280px;
}

.solutions-shape--three {
  background: linear-gradient(135deg, rgba(71, 85, 105, 0.14), rgba(226, 232, 240, 0.34));
  clip-path: polygon(8% 8%, 76% 0, 100% 42%, 82% 100%, 0 78%);
  bottom: 54px;
  height: 220px;
  right: 42%;
  transform: rotate(28deg);
  width: 350px;
}

.solutions .section-header {
  position: relative;
  z-index: 2;
}

.solutions .section-header::after {
  background: rgba(255, 255, 255, 0.48);
  clip-path: polygon(12% 0, 100% 22%, 84% 100%, 0 76%);
  content: "";
  filter: blur(10px);
  height: 120px;
  left: 50%;
  position: absolute;
  top: -22px;
  transform: translateX(-50%);
  width: min(620px, 100%);
  z-index: -1;
}

.solution-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.solution-card,
.metro-card,
.quality-card,
.quality-stack,
.product-matrix,
.timeline-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(14, 79, 136, 0.07);
}

.metro-card {
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metro-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.05) 0%, rgba(14, 79, 136, 0.08) 50%, rgba(79, 175, 227, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.metro-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.98));
  border-color: rgba(14, 79, 136, 0.3);
  box-shadow: 0 40px 80px rgba(14, 79, 136, 0.22), 0 12px 32px rgba(17, 185, 182, 0.18), 0 0 0 1px rgba(14, 79, 136, 0.1);
  transform: translateY(-12px) scale(1.02);
}

.metro-card:hover::before {
  opacity: 1;
}

.metro-card:hover::after {
  opacity: 1;
}

.metro-card > * {
  position: relative;
  z-index: 1;
}

.metro-card i {
  color: var(--secondary);
  font-size: 32px;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metro-card:hover i {
  color: var(--primary);
  transform: scale(1.15) translateY(-4px);
}

.metro-card strong {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metro-card:hover strong {
  color: var(--primary);
  transform: translateY(-4px);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metro-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.metro-card:hover span {
  color: var(--ink);
}

.solution-card {
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.85));
  border: 1px solid rgba(226, 232, 240, 0.8);
  min-height: 260px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow, background;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover,
.metro-card:hover {
  box-shadow: 0 32px 64px rgba(14, 79, 136, 0.18), 0 8px 24px rgba(17, 185, 182, 0.12);
  transform: translateY(-12px) scale(1.02);
}

.solution-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  border-color: rgba(14, 79, 136, 0.3);
  box-shadow: 0 40px 80px rgba(14, 79, 136, 0.22), 0 12px 32px rgba(17, 185, 182, 0.18), 0 0 0 1px rgba(14, 79, 136, 0.1);
  transform: translateY(-12px) scale(1.02);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.05) 0%, rgba(14, 79, 136, 0.08) 50%, rgba(79, 175, 227, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card i {
  color: var(--secondary);
  font-size: 36px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover i {
  color: var(--primary);
  transform: scale(1.1) translateY(-4px);
}

.solution-card h3 {
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover h3 {
  color: var(--primary);
  transform: translateY(-4px);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-card p,
.metro-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.solution-card:hover p {
  color: var(--ink);
}

.industries {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.metro-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  margin-top: 36px;
}

/* Metro Grid Rotating - Desktop */
.metro-grid-rotating {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  margin-top: 36px;
  min-height: 400px;
}

.metro-grid-rotating .metro-card {
  display: flex;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metro-grid-rotating .metro-card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.metro-grid-rotating .metro-card-small:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.metro-grid-rotating .metro-card-small:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.metro-grid-rotating .metro-card-small:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.metro-grid-rotating .metro-card-small:nth-child(5) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

/* Highlight active featured card */
.metro-grid-rotating .metro-card-featured {
  z-index: 2;
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.15), 0 8px 24px rgba(17, 185, 182, 0.1);
  border-color: rgba(14, 79, 136, 0.3);
}

.metro-grid-rotating .metro-card-featured::before {
  opacity: 1;
}

.metro-grid-rotating .metro-card-featured::after {
  opacity: 1;
}

/* NEW: Industries Grid Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.industries-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.industries-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(14, 79, 136, 0.18), 0 12px 32px rgba(17, 185, 182, 0.12);
  border-color: rgba(14, 79, 136, 0.25);
}

.industries-card--featured {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  min-height: 320px;
}

.industries-card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.industries-card-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 79, 136, 0.08), rgba(17, 185, 182, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.industries-card-image .image-placeholder i {
  font-size: 64px;
  color: var(--primary);
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
}

.industries-card-image .image-placeholder span {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
}

.industries-card-content {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industries-card-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}

.industries-card h3 {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.industries-card:hover h3 {
  color: var(--primary);
}

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

/* NEW: Benefits Grid Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.12);
  border-color: rgba(17, 185, 182, 0.2);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.1), rgba(14, 79, 136, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.2), rgba(14, 79, 136, 0.15));
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 32px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  color: var(--secondary);
}

.benefit-card h3 {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

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

.metro-card-featured {
  position: relative;
  z-index: 2;
}

.metro-card-small {
  position: relative;
  z-index: 1;
}

.metro-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.metro-prev,
.metro-next {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.metro-prev:hover,
.metro-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.metro-dots {
  display: flex;
  gap: 8px;
}

.metro-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.metro-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.metro-dot:hover {
  background: var(--secondary);
}

.timeline {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin: 36px 0 18px;
}

.timeline-step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 14px;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  font-weight: 800;
  gap: 8px;
  padding: 18px;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 79, 136, 0.12);
  border-color: rgba(14, 79, 136, 0.2);
}

.timeline-step:hover::before {
  opacity: 1;
}

.timeline-step span {
  color: var(--secondary);
  font-size: 22px;
  font-weight: 950;
  transition: color 0.3s ease;
}

.timeline-step:hover span {
  color: var(--primary);
}

.timeline-step.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 12px 32px rgba(14, 79, 136, 0.2);
}

.timeline-step.active::before {
  background: var(--secondary);
  opacity: 1;
}

.timeline-step.active span {
  color: #fff;
}

.timeline-panel {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 54px 1fr;
  padding: 28px;
}

.timeline-panel i {
  background: #eafaf6;
  border-radius: 14px;
  color: var(--secondary);
  display: grid;
  font-size: 26px;
  height: 54px;
  place-items: center;
  width: 54px;
}

.timeline-panel h3 {
  color: var(--primary-dark);
  font-size: 25px;
  margin-bottom: 4px;
}

.timeline-panel p {
  color: var(--muted);
}

.product-matrix {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  padding: 18px;
}

.product-matrix div {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  min-height: 96px;
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.product-matrix div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-matrix div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 79, 136, 0.12);
  border-color: rgba(14, 79, 136, 0.2);
}

.product-matrix div:hover::before {
  opacity: 1;
}

.product-matrix i {
  color: var(--primary);
  font-size: 28px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-matrix div:hover i {
  color: var(--secondary);
  transform: scale(1.1);
}

.product-matrix span {
  color: var(--ink);
  font-weight: 800;
  transition: color 0.3s ease;
}

.product-matrix div:hover span {
  color: var(--primary);
}

.quality {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 251, 0.95));
}

.quality-card {
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-weight: 800;
  gap: 10px;
}

.check-list i {
  color: var(--secondary);
}

.quality-stack {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.quality-stack div {
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark), rgba(6, 24, 56, 0.9));
  border-radius: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 22px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.quality-stack div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.1), rgba(79, 175, 227, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quality-stack div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 79, 136, 0.2);
}

.quality-stack div:hover::before {
  opacity: 1;
}

.quality-stack div:nth-child(even) {
  background: linear-gradient(135deg, var(--primary), rgba(14, 79, 136, 0.9));
  transform: translateX(-24px);
}

.quality-stack div:nth-child(even):hover {
  transform: translateX(-24px) translateY(-4px);
}

.quality-stack strong {
  color: var(--secondary);
  font-size: 30px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quality-stack div:hover strong {
  transform: scale(1.1);
}

.quality-stack span {
  direction: ltr;
  font-weight: 900;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quality-stack div:hover span {
  transform: translateX(4px);
}

.cta {
  background: linear-gradient(135deg, var(--primary-dark), rgba(6, 24, 56, 0.95));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  background: #061f35;
  color: rgba(255, 255, 255, 0.76);
  padding: 66px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 420px;
}

.site-footer .brand__text strong,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  font-size: 17px;
  margin-bottom: 14px;
}

.site-footer a {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes contactPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35, 200, 162, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(35, 200, 162, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(35, 200, 162, 0);
  }
}

@keyframes contactArrow {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(0) rotate(-45deg);
  }

  50% {
    opacity: 1;
    transform: translateX(-5px) rotate(-45deg);
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    inset-inline: 20px;
    padding: 18px;
    position: absolute;
    top: 86px;
  }

  .nav-panel .main-menu a,
  .nav-panel .mega-trigger {
    color: var(--ink);
  }

  .nav-panel .main-menu a:hover,
  .nav-panel .main-menu a.active,
  .nav-panel .mega-trigger:hover {
    color: var(--primary);
  }

  .nav-panel.is-open {
    display: block;
  }

  .main-menu,
  .nav-panel {
    align-items: stretch;
  }

  .main-menu {
    display: grid;
  }

  .mega-menu {
    display: none;
    grid-template-columns: 1fr;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .has-mega.is-open .mega-menu {
    display: grid;
  }

  .mega-menu__grid,
  .service-panels__grid,
  .solution-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid,
  .rotator-grid,
  .products-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    border-bottom: 1px solid var(--line);
  }

  .service-panel + .service-panel {
    border-right: 0;
  }

  .trade-orbit {
    margin-inline: auto;
    width: min(100%, 560px);
  }

  .nav-cta {
    margin-top: 14px;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .navbar__inner {
    height: 68px;
  }

  .nav-panel {
    top: 76px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__grid {
    min-height: auto;
  }

  .trade-orbit {
    border-radius: 22px;
  }

  .floating-panel {
    display: none;
  }

  .stats-grid,
  .service-panels__grid,
  .solution-grid,
  .mega-menu__grid,
  .timeline,
  .product-matrix,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Metro Grid Mobile - Carousel Mode */
  .metro-grid-rotating {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }

  .metro-grid-rotating .metro-card {
    display: none;
    min-height: 280px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .metro-grid-rotating .metro-card.metro-card-featured.active {
    display: flex;
    opacity: 1;
  }

  .metro-grid-rotating .metro-card--large {
    min-height: 320px;
  }

  .metro-card,
  .metro-card--large,
  .metro-card--wide {
    min-height: 280px;
  }

  .metro-controls {
    margin-top: 16px;
  }

  .stat {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-panel {
    grid-template-columns: 1fr;
  }

  .quality-stack div:nth-child(even) {
    transform: none;
  }

  .cta-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
  /* NEW: Industries Grid Mobile */
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-card--featured {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* NEW: Intro Section Styles */
.intro-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  padding: 120px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-content {
  max-width: 600px;
}

.intro-content .eyebrow {
  font-size: 20px;
  margin-bottom: 20px;
}

.intro-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.intro-stat {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.12);
  border-color: rgba(14, 79, 136, 0.2);
}

.intro-stat strong {
  display: block;
  font-size: 42px;
  font-weight: 950;
  color: var(--primary);
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-stat span {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.intro-visual {
  position: relative;
  height: 400px;
}

.intro-visual__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro-visual__item {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 16px 42px rgba(14, 79, 136, 0.07);
}

.intro-visual__item--main {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
}

.intro-visual__item--main i {
  font-size: 64px;
  color: #fff;
  margin-bottom: 16px;
}

.intro-visual__item--main span {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.intro-visual__item--secondary {
  width: 140px;
  height: 140px;
  background: #fff;
  z-index: 2;
}

.intro-visual__item--secondary:nth-child(2) {
  top: 0;
  left: 0;
}

.intro-visual__item--secondary:nth-child(3) {
  top: 0;
  right: 0;
}

.intro-visual__item--secondary:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.intro-visual__item--secondary i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.intro-visual__item--secondary span {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 14px;
}

.intro-visual__item:hover {
  transform: scale(1.05);
  box-shadow: 0 32px 64px rgba(14, 79, 136, 0.15);
  z-index: 4;
}

/* NEW: Showcase Section Styles */
.showcase-section {
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.8), rgba(255, 255, 255, 0.9));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(14, 79, 136, 0.18), 0 12px 32px rgba(17, 185, 182, 0.12);
  border-color: rgba(14, 79, 136, 0.3);
}

.showcase-card--featured {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  min-height: 400px;
}

.showcase-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.showcase-card--featured .showcase-card__visual {
  height: 240px;
}

.showcase-card__image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 79, 136, 0.1), rgba(17, 185, 182, 0.08));
  position: relative;
}

.showcase-card__image i {
  font-size: 80px;
  color: var(--primary);
  opacity: 0.9;
  z-index: 2;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-card:hover .showcase-card__image i {
  transform: scale(1.15) translateY(-8px);
  color: var(--secondary);
}

.showcase-card__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 79, 136, 0.15), rgba(17, 185, 182, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-card:hover .showcase-card__gradient {
  opacity: 1;
}

.showcase-card__content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-card__number {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(17, 185, 182, 0.1);
  border-radius: 999px;
}

.showcase-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.showcase-card:hover h3 {
  color: var(--primary);
}

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

.showcase-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.showcase-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

.showcase-card__list i {
  color: var(--secondary);
  font-size: 12px;
}

/* NEW: Benefits Section Styles */
.benefits-section {
  background: linear-gradient(135deg, var(--primary-dark), rgba(6, 24, 56, 0.95));
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-section .section-header h2,
.benefits-section .section-header p {
  color: #fff;
}

.benefits-section .eyebrow {
  color: var(--secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.1), rgba(79, 175, 227, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.benefit-card:hover .benefit-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 36px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon i {
  color: var(--secondary);
  transform: scale(1.1);
}

.benefit-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1040px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .intro-visual {
    height: 300px;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-card--featured {
    grid-column: 1 / -1;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .intro-section,
  .showcase-section,
  .benefits-section {
    padding: 80px 0;
  }
  
  .intro-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .intro-visual__item--main {
    width: 160px;
    height: 160px;
  }
  
  .intro-visual__item--secondary {
    width: 120px;
    height: 120px;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-card__visual {
    height: 180px;
  }
  
  .showcase-card--featured .showcase-card__visual {
    height: 200px;
  }
}
/* ============================================
   INDUSTRIES PAGE - PROFESSIONAL REDESIGN
   ============================================ */

/* Hero Section Enhancement */
.hero .hero__content h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero__content p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.hero__actions {
  gap: 20px;
  margin-top: 40px;
}

.hero__actions .btn {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 900;
}

/* Introduction Section - Professional Redesign */
.intro-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-content {
  max-width: 680px;
}

.intro-content .eyebrow {
  font-size: 22px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(17, 185, 182, 0.1);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.intro-content h2 {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--primary-dark);
}

.intro-content p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.intro-stat {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.intro-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-stat:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(14, 79, 136, 0.15);
  border-color: rgba(14, 79, 136, 0.2);
}

.intro-stat:hover::before {
  opacity: 1;
}

.intro-stat strong {
  display: block;
  font-size: 48px;
  font-weight: 950;
  color: var(--primary);
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-stat span {
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
}

/* Intro Visual - Professional Design */
.intro-visual {
  position: relative;
  height: 480px;
}

.intro-visual__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro-visual__item {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.08);
  z-index: 1;
}

.intro-visual__item--main {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
}

.intro-visual__item--main i {
  font-size: 72px;
  color: #fff;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.intro-visual__item--main span {
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

.intro-visual__item--secondary {
  width: 160px;
  height: 160px;
  background: #fff;
  z-index: 2;
}

.intro-visual__item--secondary:nth-child(2) {
  top: 0;
  left: 0;
  animation-delay: 0.2s;
}

.intro-visual__item--secondary:nth-child(3) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}

.intro-visual__item--secondary:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

.intro-visual__item--secondary i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
  animation: float 4s ease-in-out infinite;
}

.intro-visual__item--secondary span {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 16px;
}

.intro-visual__item:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 40px 80px rgba(14, 79, 136, 0.2);
  z-index: 4;
}

/* Showcase Section - Professional Redesign */
.showcase-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(17, 185, 182, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(79, 175, 227, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-section .section-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 950;
  margin-bottom: 20px;
}

.showcase-section .section-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 48px 96px rgba(14, 79, 136, 0.2), 0 16px 40px rgba(17, 185, 182, 0.15);
  border-color: rgba(14, 79, 136, 0.3);
}

.showcase-card--featured {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  min-height: 440px;
}

.showcase-card__visual {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.showcase-card--featured .showcase-card__visual {
  height: 280px;
}

.showcase-card__image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 79, 136, 0.12), rgba(17, 185, 182, 0.1));
  position: relative;
}

.showcase-card__image i {
  font-size: 96px;
  color: var(--primary);
  opacity: 0.9;
  z-index: 2;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-card:hover .showcase-card__image i {
  transform: scale(1.2) translateY(-12px);
  color: var(--secondary);
}

.showcase-card__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 79, 136, 0.2), rgba(17, 185, 182, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-card:hover .showcase-card__gradient {
  opacity: 1;
}

.showcase-card__content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-card__number {
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(17, 185, 182, 0.12);
  border-radius: 999px;
}

.showcase-card h3 {
  font-size: 28px;
  font-weight: 950;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.showcase-card:hover h3 {
  color: var(--primary);
}

.showcase-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

.showcase-card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.showcase-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}

.showcase-card__list i {
  color: var(--secondary);
  font-size: 14px;
}

/* Benefits Section - Professional Redesign */
.benefits-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #061838 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-section .section-header h2,
.benefits-section .section-header p {
  color: #fff;
}

.benefits-section .eyebrow {
  color: var(--secondary);
  font-size: 22px;
}

.benefits-section .section-header h2 {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 950;
  margin-bottom: 24px;
}

.benefits-section .section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 185, 182, 0.15), rgba(79, 175, 227, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.benefit-card:hover .benefit-icon {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.15);
}

.benefit-icon i {
  font-size: 42px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon i {
  color: var(--secondary);
  transform: scale(1.1);
}

.benefit-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* CTA Section Enhancement */
.cta {
  padding: 120px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
}

.cta-box .btn {
  min-height: 60px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 900;
  background: #fff;
  color: var(--primary);
  border: none;
}

.cta-box .btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .intro-grid {
    gap: 80px;
  }
  
  .showcase-grid {
    gap: 30px;
  }
  
  .benefits-grid {
    gap: 30px;
  }
}

@media (max-width: 1040px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .intro-visual {
    height: 400px;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-card--featured {
    grid-column: 1 / -1;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-box {
    padding: 48px;
  }
}

@media (max-width: 760px) {
  .hero .hero__content h1 {
    font-size: clamp(36px, 5vw, 48px);
  }
  
  .intro-section,
  .showcase-section,
  .benefits-section {
    padding: 100px 0;
  }
  
  .intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .intro-visual {
    height: 320px;
  }
  
  .intro-visual__item--main {
    width: 200px;
    height: 200px;
  }
  
  .intro-visual__item--secondary {
    width: 140px;
    height: 140px;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-card__visual {
    height: 200px;
  }
  
  .showcase-card--featured .showcase-card__visual {
    height: 240px;
  }
  
  .showcase-card__content {
    padding: 32px;
  }
  
  .cta-box {
    padding: 40px 32px;
  }
  
  .cta-box h2 {
    font-size: clamp(28px, 4vw, 40px);
  }
}

/* Animation Enhancements */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Additional Professional Touches */
.showcase-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover::after {
  opacity: 1;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::after {
  opacity: 1;
}

/* Gradient Text Effects */
.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Shadows */
.enhanced-shadow {
  box-shadow: 0 24px 48px rgba(14, 79, 136, 0.12),
              0 8px 24px rgba(17, 185, 182, 0.08),
              0 0 0 1px rgba(14, 79, 136, 0.05);
}

.enhanced-shadow:hover {
  box-shadow: 0 40px 80px rgba(14, 79, 136, 0.18),
              0 12px 32px rgba(17, 185, 182, 0.12),
              0 0 0 1px rgba(14, 79, 136, 0.1);
}

/* ============================================
   NEW: INDUSTRIES HERO REDESIGN
   ============================================ */

.industries-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 31, 63, 0.85) 0%,
    rgba(14, 79, 136, 0.6) 50%,
    rgba(6, 24, 56, 0.9) 100%
  );
  z-index: 2;
}

.hero-particle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(17, 185, 182, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79, 175, 227, 0.12) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-main-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 24px;
  margin-bottom: 40px;
  animation: float 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--secondary);
  font-size: 20px;
}

.hero-badge span {
  font-weight: 800;
  font-size: 16px;
}

.hero-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-line {
  display: block;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 42px;
  font-weight: 950;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--secondary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
}

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

.btn-hero {
  min-height: 60px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 900;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  min-height: 60px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 900;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-industries {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.floating-item i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.floating-item span {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.floating-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.floating-item-1 {
  top: 10%;
  left: 20%;
  animation: float 4s ease-in-out infinite;
}

.floating-item-2 {
  top: 20%;
  right: 15%;
  animation: float 4s ease-in-out infinite 0.2s;
}

.floating-item-3 {
  top: 60%;
  left: 10%;
  animation: float 4s ease-in-out infinite 0.4s;
}

.floating-item-4 {
  top: 50%;
  right: 25%;
  animation: float 4s ease-in-out infinite 0.6s;
}

.floating-item-5 {
  bottom: 20%;
  left: 30%;
  animation: float 4s ease-in-out infinite 0.8s;
}

.floating-item-6 {
  bottom: 10%;
  right: 10%;
  animation: float 4s ease-in-out infinite 1s;
}

.hero-orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
}

.orbital-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.orbital-ring-2 {
  border-color: rgba(17, 185, 182, 0.3);
  animation: spin 30s linear infinite reverse;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-center i {
  font-size: 48px;
  color: var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  font-size: 14px;
  animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow i {
  color: var(--secondary);
  font-size: 18px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Hero */
@media (max-width: 1040px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .hero-orbital {
    width: 250px;
    height: 250px;
  }
  
  .floating-item {
    width: 80px;
    height: 80px;
    padding: 15px;
  }
  
  .floating-item i {
    font-size: 24px;
  }
  
  .floating-item span {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .industries-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: clamp(36px, 5vw, 48px);
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-stat {
    align-items: center;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-hero,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .hero-orbital {
    width: 200px;
    height: 200px;
  }
  
  .orbital-center {
    width: 80px;
    height: 80px;
  }
  
  .orbital-center i {
    font-size: 36px;
  }
}