:root {
  --ink: #222831;
  --muted: #747b83;
  --line: #e7e9ec;
  --paper: #ffffff;
  --mist: #f6f7f8;
  --dark: #2f363b;
  --accent: #b9964a;
  --accent-2: #61b6d7;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  font-family: "Lato", sans-serif;
}

body,
button,
input,
select,
textarea {
  margin: 0;
  color: var(--ink);
  font-family: "Lato", sans-serif !important;
  font-size: 17px;
  background: var(--paper);
  line-height: 1.55;
  /* overflow-x: hidden; */
}

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

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

button,
.button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    color 0.28s var(--ease),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

button:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 100px;
  z-index: 50;
  color: #fff;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
  /* border: 1px solid #fff; */
  border-left: none;
  border-right: none;
  border-top-color: transparent;
  background: rgba(0, 0, 0, 0.5);
}

.site-header.is-scrolled {
  height: 100px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1410px;
  padding-left: 50px;
  padding-right: 50px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  position: relative;
  width: 160px;
  height: 30px;
  flex: 0 0 auto;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.logo-color {
  opacity: 0;
}

.site-header.is-scrolled .logo-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-color {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.main-nav {
  margin-left: auto;
  font-size: 16px;
  font-weight: 800;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;

  list-style: none;
}

.main-nav li {
  position: relative;
  padding: 0 13px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  opacity: 0.95;
  padding: 27px 0;
  line-height: 1;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    min-height 0.3s ease;
  font-size: 16px;
  padding: 0;
  font-weight: normal;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

.site-header.is-scrolled .nav-link {
  min-height: 40px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after,
.has-submenu:hover > .nav-link::after,
.has-submenu:focus-within > .nav-link::after {
  transform: scaleX(1);
}

.nav-btn-item {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  line-height: 1;
}

.nav-login-btn:hover {
  background-color: #1d4ed8;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.35);
  transform: translateY(-1px);
}

.nav-login-btn::after {
  display: none !important;
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 280px;
  padding: 8px 0;
  display: block;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  color: #8d8f92;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.24s ease,
    transform 0.24s var(--ease),
    visibility 0.24s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.main-nav .submenu li {
  display: block;
}

.main-nav .submenu a {
  display: block;
  padding: 11px 24px;
  color: #8c8f92;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    padding-left 0.2s ease;
}

.main-nav .submenu a:hover,
.main-nav .submenu a:focus {
  color: var(--ink);
  background: #f7f7f7;
  padding-left: 30px;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../images/H1.png") center / cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    120deg,
    rgba(13, 18, 24, 0.82),
    rgba(13, 18, 24, 0.36),
    rgba(13, 18, 24, 0.7)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.hero-copy {
  width: min(920px, calc(100% - 36px));
  text-align: center;
  padding-top: 74px;
}

.hero-title {
  margin: 0;
  font-size: 115px;
  line-height: 0.86;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  text-align: left;
  font-weight: bold;
}

/* .hero-title strong {
  font-weight: 800;
} */

.hero-title p {
  font-weight: bold;
  font-family: "Lato", sans-serif;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  position: absolute;
  top: 4px;
  right: -10px;
  line-height: 50px;
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  margin-left: 12px;
}

.hero-buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 10;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 90%;
}

.hero-buttons .button1 {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.hero-buttons .button1:hover {
  background: #ffffff;
  color: #000000;
}

.hero-text-section {
  padding: 55px 20px;
  background: #f6f7fc;
  text-align: center;
  border-bottom: 1px solid var(--line, #e2e8f0);
}

.hero-title-dark {
  margin: 0;
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-title-dark strong {
  color: #000000;
  font-weight: 900;
}

.hero-version-tag {
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
  color: #0066cc;
  background: rgba(0, 102, 204, 0.08);
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.hero-subtitle-dark {
  margin: 16px 0 0;
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-subtitle-dark strong {
  color: #0066cc;
}

.quick-features {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}

.feature-row {
  min-height: 135px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
}

.service-icon,
.tech-logo {
  display: grid;
  place-items: center;

  color: #9ba2a9;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

/* .service:hover .service-icon,
.tech-logo:hover {
  transform: translateY(-5px) rotate(-4deg);
  color: var(--accent);
  border-color: rgba(185, 150, 74, .5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
} */

.mini-feature p {
  color: var(--muted);
}

.section {
  position: relative;
}

.section.mist {
  background: #f6f7fc;
}

.section.dark {
  color: #fff;
  background: linear-gradient(135deg, #071828 0%, #0f2a42 50%, #071828 100%);
  padding-top: 75px;
  padding-bottom: 75px;
}

.section.image-band {
  color: #fff;
  background:
    linear-gradient(rgba(36, 42, 47, 0.82), rgba(36, 42, 47, 0.82)),
    url("../images/business-support-1.jpg") center / cover fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.container {
  margin: 0 auto;
  max-width: 1410px;
  padding-left: 50px;
  padding-right: 50px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.demo-library {
  overflow: hidden;
}

.demo-library-grid {
  /* width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 51vw) minmax(420px, 560px);
  gap: clamp(52px, 8vw, 130px);
  align-items: center; */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.demo-library-media {
  justify-self: start;
  width: min(58vw, 920px);
  margin-left: clamp(-180px, -7vw, -40px);
}

.demo-library-media img {
  width: 100%;
  max-width: none;
}

.demo-library-copy {
  max-width: 560px;
}

.demo-library-copy .section-title {
  font-weight: 700;
  line-height: 1.14;
}

.eyebrow-line {
  width: 48px;
  height: 2px;

  background: #000;
  margin-bottom: 30px;
}

.mt-3 {
  margin-top: 20px;
}

.testimonial .eyebrow-line {
  background: #fff;
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 700;
  /* margin-top: 50px; */
  padding-bottom: 20px;
  font-family: "Lato";
  color: #000;
}

.iot-feature-list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.iot-feature-list ul li {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial .section-title {
  color: #fff;
  font-weight: 600;
}

.section-copy {
  color: var(--muted);
}

.stars {
  margin: 28px 0;
  color: #f3b61f;
  font-size: 41px;
  letter-spacing: 8px;
}

.features-section {
  /* min-height: clamp(560px, 38vw, 700px); */
  padding: 0;
  overflow: hidden;
}

.features-grid {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.features-copy-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  width: 50%;
}

.features-section .section-title .counter {
  font-weight: 800;
}

.features-bg {
  width: 50%;
  display: flex;
  align-items: end;
}

.features-bg img {
  height: 100%;
  object-fit: contain;
}

.floating-hero {
  width: min(620px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.16));
  animation: float 5.6s ease-in-out infinite;
}

.center {
  text-align: center;
}

.center .eyebrow-line {
  margin-left: auto;
  margin-right: auto;
}

#portfolio {
  padding: 100px 0;
}

.mockup-wrap {
  width: min(1200px, 100%);
  margin: 46px auto 26px;
  position: relative;
}

.mockup-wrap img {
  margin: 0 auto;
  filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.12));
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
  color: var(--muted);
  font-size: 16px;
  margin-top: 20px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #283035;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker img {
  width: 250px;
  height: 118px;
  object-fit: cover;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.8;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ticker img:hover {
  opacity: 1;
  transform: scale(1.04);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 38px;
  padding: 0;
  list-style: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-list li {
  margin: 7px 0;
}

.feature-list li::before {
  content: "◎";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.6);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.service {
  padding: 24px 20px;
  text-align: center;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 22px;
  background: #fff;
}

.service h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.signup {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.signup h2 {
  margin: 0 0 24px;
  font-weight: 300;

  font-size: 40px;
  font-family: "Lato";
  line-height: 50px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 5px;
}

.form-row input {
  min-height: 44px;
  border: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0 14px;
  font-size: 16px;
  outline: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.form-row input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.form-row button {
  min-height: 44px;
  border: 0;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px 18px;
  text-align: center;
  transition:
    transform 0.28s var(--ease),
    background 0.28s ease;
}

.counter-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.12);
}

.counter {
  display: block;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.section-title .counter {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

.counter-card span:last-child {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-style: italic;
}

.support-people {
  /* width: min(820px, 100%); */
  margin: 45px auto 0;
}

.support-section {
  padding: 75px 0 0;
}

.site-footer {
  background: #2d3439;
  color: rgba(255, 255, 255, 0.74);
  padding: 70px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 16px;
}

.footer-grid p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-bottom,
.stagger > * {
  opacity: 0;
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.feature-list.stagger {
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.feature-list.stagger.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal {
  transform: translateY(24px);
}

.reveal-bottom,
.stagger > * {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-54px);
}

.reveal-right {
  transform: translateX(54px);
}

.is-visible,
.stagger.is-visible > * {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.05) translateY(0);
  }

  to {
    transform: scale(1.14) translateY(-12px);
  }
}

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

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

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* @media (max-width: 1280px) {
  .mockup-wrap {
    max-height: 480px;
  }

  .mockup-wrap img {
    max-height: 480px;
  }
} */

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
  }

  .site-header .logo-white {
    opacity: 0;
  }

  .site-header .logo-color {
    opacity: 1;
  }

  .nav-inner {
    width: calc(100% - 64px);
    max-width: 680px;
    min-height: 76px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    gap: 18px;
  }

  .brand {
    width: 168px;
    height: 24px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    border: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    flex: 0 0 44px;
    margin-right: 20px;
    position: relative;
    z-index: 60;
  }

  .menu-toggle:hover,
  .menu-toggle:focus {
    transform: none;
    box-shadow: none;
    background: transparent;
    color: var(--ink);
    outline: 0;
  }

  .menu-toggle:focus-visible {
    box-shadow: inset 0 0 0 2px #9ba2a9;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition:
      transform 0.22s var(--ease),
      opacity 0.22s ease;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 0 18px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.24s ease,
      transform 0.24s var(--ease),
      visibility 0.24s ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > ul {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 10px 0 0;
    display: block;
  }

  .nav-link {
    min-height: auto;
    padding: 16px 0;
    white-space: nowrap;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-header.is-scrolled .nav-link {
    min-height: auto;
  }

  .nav-link::after {
    display: none;
  }

  .submenu::before {
    display: none;
  }

  .main-nav .submenu {
    position: static;
    width: 100%;
    padding: 4px 0 10px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .main-nav .submenu a {
    padding: 8px 0;
    font-size: 14px;
    white-space: normal;
  }

  .main-nav .submenu a:hover,
  .main-nav .submenu a:focus {
    padding-left: 0;
    background: transparent;
  }

  .hero {
    min-height: 430px;
    margin-bottom: 24px;
  }

  .features-section {
    min-height: 520px;
  }

  .features-grid {
    min-height: inherit;
    grid-template-columns: 52% 48%;
  }

  .features-copy {
    width: min(460px, 100%);
  }

  .features-section .section-title {
    font-size: clamp(34px, 4vw, 44px);
  }

  .features-bg {
    min-height: inherit;
    background-position: 0% 100%;
    background-size: 78vw auto;
  }

  .feature-row,
  .split,
  .split.reverse,
  .demo-library-grid,
  .copy-columns,
  .feature-list,
  .services,
  .tech-grid,
  .counter-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo-library-grid {
    max-width: 1410px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
    gap: 46px;
  }

  .demo-library-media {
    width: 100%;
    margin-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    border: 0;
    gap: 10px;
  }

  .form-row input,
  .form-row button {
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 620px) {
  .brand {
    width: 148px;
    height: 21px;
  }

  .hero {
    min-height: 360px;
    margin-bottom: 22px;
  }

  .hero-copy {
    padding-top: 76px;
  }

  .hero-title {
    font-size: clamp(38px, 14vw, 68px);
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .features-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .features-copy-cell {
    justify-content: flex-start;
    padding: 66px 18px;
  }

  .features-copy {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .features-section .section-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .features-section .section-copy {
    font-size: 15px;
  }

  .features-bg {
    display: none;
  }

  .hero-version {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .section {
    padding: 66px 0;
  }

  .support-section {
    padding-bottom: 0;
  }

  .feature-row,
  .split,
  .split.reverse,
  .features-grid,
  .demo-library-grid,
  .copy-columns,
  .feature-list,
  .services,
  .tech-grid,
  .counter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ticker img {
    width: 190px;
    height: 90px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.mini-feature h3 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 28px;
  font-family: lato;
  color: #000000;
  margin-bottom: 0px;
}

.mini-feature p {
  margin: 0.85em 0;
  margin-bottom: 0;

  font-size: 16px;
  font-weight: 400;
  font-family: "Lato", sans-serif;

  line-height: 26px;
}

.mini-icon {
  border: none;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin-top: 0;
  font-size: 50px;
}

.features-section .section-title {
  line-height: 1.12;
  font-weight: 600;
  font-size: 40px;
  color: #1da1f2;
  font-family: lato;
}

.features-section .section-copy {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  margin: 0.85em 0;
}

.button1 {
  border: 3px solid #000;
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
  background: transparent;
  border-width: 2px;
  padding: 15px 30px 13px;
  font-size: 13px;
  min-width: 139px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  display: inline-block;
}

.features-copy-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  vertical-align: middle;
  background-color: #f8f8f8;
}

.copy-columns p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.copy-columns .mt-45 {
  margin-top: 45px;
}

.dark-title {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.1em;
}

.dark-line {
  /* margin-top: 45px; */
  margin-bottom: 45px;
  /* color: #fff; */
  background: #fff;
  width: 60px;
}

.Feature-section .feature-list li {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #b0b0b0;
}

.demo-library {
  background-repeat: no-repeat;
  background-image: url(file:///C:/Users/SST-26/Desktop/LinkedIOT/LinkedIOT//images/H4.png);
  background-position: 0% 50%;
  background-attachment: scroll;
}

.demo-library-copy {
  padding-top: 75px;
  padding-bottom: 75px;
}

.demo-library-copy .section-title {
  font-weight: 700;
  line-height: 1.14;
  font-size: 40px;
  font-family: "Lato";
  padding-bottom: 20px;
}

.demo-library-copy h3 {
  margin: 0 0 15px 0;
}

.demo-library-copy p {
  margin: 0 0 10px 0;
}

#elements,
#industries,
#pricing,
#about {
  padding-bottom: 75px;
  padding-top: 75px;
}

#pricing .reveal-bottom {
  max-width: 1050px;
  margin: 0 auto;
}

#elements .section-title {
  margin-top: 0px;
}

#elements .eyebrow-line {
  width: 50px;
  border-color: #000000;
}

a.button1.platform.mt-3 {
  border: 3px solid #fff;
  color: #fff;
}

.market-leading {
  /* background-color: #f1f1f1; */
  padding: 20px 0;
  border-bottom: 3px solid #000;
}

.market-leading img {
  height: 520px;
  margin: 0 auto;
}

.tech-logo img {
  height: 90px;
}

.tech-logo {
  min-height: 68px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #4a4a4a;
  font-weight: 700;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.03em;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.tech-logo:hover {
  transform: translateY(-3px);
  color: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

#shop {
  padding-bottom: 70px;
  padding-top: 70px;
}

#shop .section-title {
  font-size: 30px;
}

/* ── Partner Feature List ── */
.partner-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.partner-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.partner-feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-size: 10px;
  top: 5px;
}

/* ── Demo Content (BG image overlay section) ── */
.demo-content {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.demo-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(30, 41, 59, 0.82) 40%,
    rgba(15, 23, 42, 0.9) 100%
  );
  z-index: 1;
}

.demo-content > * {
  position: relative;
  z-index: 2;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.demo-content .section-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.demo-content .eyebrow-line {
  background: var(--accent-2);
  width: 60px;
  height: 3px;
  margin-bottom: 40px;
}

.demo-content .section-copy {
  color: rgba(255, 255, 255, 0.85);
  max-width: 1050px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-content .section-copy:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.demo-content .section-copy h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin: 0 0 10px;
}

.demo-content .section-copy p {
  margin: 0 0 10px;
  line-height: 1.7;
  font-size: 16px;
}

.demo-content .section-copy p:last-child {
  margin-bottom: 0;
}

.demo-content .section-copy b {
  color: #fff;
  font-weight: 600;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -55px;
  /* hidden initially */
  height: auto;
  background: #fff;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.caption h3 {
  margin: 0;
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding: 15px;
}

.arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  opacity: 0;
  transition: 0.4s;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item:hover .caption {
  bottom: 0;
}

.masonry-item:hover .arrow {
  opacity: 1;
}

body {
  font-family: "Lato", sans-serif;
}

.masonry-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 15px;
  background: #2f363b;
  gap: 15px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1/1;
  text-decoration: none;
  background: #000;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.masonry-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease-in-out;
  will-change: transform, opacity;
}

.masonry-item.show {
  opacity: 0.7;
  transform: translateY(0);
}

/* Hover */

.masonry-item:hover img {
  transform: scale(1.12);
}

.masonry-item:hover h3 {
  transform: translateY(0);

  opacity: 1;
}

/* Tablet */

@media (max-width: 1024px) {
  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mockup-wrap img {
  width: 100%;
  display: block;
  height: 580px;
  object-fit: contain;
}

/* -------------------- HOTSPOT -------------------- */

.hotspot {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
}

/* Number Circle */

.dot {
  width: 100%;
  height: 100%;
  background: #1da1f2;
  border-radius: 50%;
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  text-decoration: none;
}

.av-image-hotspot-pulse {
  display: block;
  background: #1da1f2;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  position: absolute;
  animation: av_pulsate 2s linear infinite;
  opacity: 0;
  top: -8px;
  left: -8px;
  z-index: 1;
}

/* Tooltip */

.tooltip-box {
  position: absolute;
  z-index: 1;
  width: 275px;
  background: #fff;
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 25px;
  color: #313131;
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

/* Arrow */

.tooltip-box:after {
  content: "";

  position: absolute;

  width: 18px;
  height: 18px;

  background: #fff;

  transform: rotate(45deg);
}

/* ========================================================= */
/* HOTSPOT 1 */
/* ========================================================= */

.hotspot-1 {
  top: 8%;
  left: 20%;
}

.hotspot-1 .tooltip-box {
  bottom: 40px;
  left: -125px;
}

.hotspot-1 .tooltip-box:after {
  left: 50%;
  bottom: -9px;
  margin-left: -9px;
}

/* ========================================================= */
/* HOTSPOT 2 */
/* ========================================================= */

.hotspot-2 {
  top: 41%;
  right: 35%;
}

.hotspot-2 .tooltip-box {
  bottom: -12px;
  left: 40px;
}

.hotspot-2 .tooltip-box:after {
  left: 0;
  margin-left: -9px;
  top: 50%;
  margin-top: -9px;
}

/* ========================================================= */
/* HOTSPOT 3 */
/* ========================================================= */

.hotspot-3 {
  bottom: 40px;
  right: 16%;
}

.hotspot-3 .tooltip-box {
  right: -127px;
  top: 42px;
  z-index: 1;
}

.hotspot-3 .tooltip-box:after {
  right: -9px;
  margin-top: -9px;
  left: 50%;
  top: 0px;
  margin-left: -9px;
}

/* ========================================================= */
/* HOTSPOT 4 */
/* ========================================================= */

.hotspot-4 {
  bottom: 25%;
  left: 51%;
}

.hotspot-4 .tooltip-box {
  top: 44px;
  left: -124px;
}

.hotspot-4 .tooltip-box:after {
  left: 50%;
  top: -9px;
  margin-left: -9px;
}

/* ========================================================= */
/* HOTSPOT 5 */
/* ========================================================= */

.hotspot-5 {
  bottom: 44%;
  left: 15%;
}

.hotspot-5 .tooltip-box {
  left: -125px;
  bottom: 42px;
}

.hotspot-5 .tooltip-box:after {
  margin-top: -9px;
  left: 50%;
  bottom: -9px;
  margin-left: -9px;
}

@keyframes av_pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.features {
  background: url(../images/B0.png) center / cover no-repeat;
  padding-top: 124px;
  height: 500px;
}
/* 
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images/B0.png) center / cover no-repeat;
  padding-top: 85px;
  height: 822px;
} */

/* .features::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  transform: scale(1.08);
  animation: heroZoom 16s ease-in-out infinite alternate;
} */

.features img {
  max-width: 800px;
}

.feature-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.features::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    120deg,
    rgba(13, 18, 24, 0.82),
    rgba(13, 18, 24, 0.36),
    rgba(13, 18, 24, 0.7)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
  height: 500px;
}
.features-desc {
  font-size: 38px;
  line-height: 46px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
/* .features-desc {
  font-size: 38px;
  line-height: 48px;
  font-weight: bold;
  color: #fff;
  max-width: 950px;
  text-align: center;
  margin: 50px 0 30px;
} */
.feature-overview h3 {
  font-size: 40px;
  font-family: lato;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.container {
  max-width: 1410px;
}
.enfold-tab-section h3 {
  font-size: 40px;
  font-family: lato;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.feature-overview {
  padding-top: 75px;
  padding-bottom: 75px;
}
.feature-overview p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  /* margin: 0 .85em; */
  font-family: "Lato", sans-serif;
  margin: 0.85em 0;
}
.below-line {
  width: 50px;
  height: 2px;
  background: #000;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.below-line1 {
  width: 50px;
  height: 2px;
  background: #000;
  margin-bottom: 10px;
  margin-top: 10px;
}
.features-style {
  background: #f8f8f8;
  padding-top: 55px;
  padding-bottom: 55px;
}
.feature-style-contain {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.feature-style-text {
  max-width: 480px;
  width: 50%;
  margin-top: 135px;
}
.feature-style-text h3 {
  font-size: 30px;
  font-weight: bold;
  font-family: "Lato";
  margin: 0;
}
.feature-style-text h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  line-height: 25px;
  margin: 0.85em 0;
}
.feature-style-text p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 26px;
  margin: 0.85em 0;
  color: #000000;
  margin-bottom: 55px;
}
.feature-style-text a {
  border: 2px solid rgba(0, 0, 0, 0.6);

  font-size: 13px;
  min-width: 139px;
  padding: 15px 30px 13px;
}
.features-style-generator {
  padding-top: 55px;
  padding-bottom: 55px;
}
.feature-style-image {
  width: 50%;
}

.additional-features-contain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.additional-features-list {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
}
.additional-features-list h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  color: #000;
  font-family: "Lato", sans-serif;
  height: 52px;
}

.additional-features-list h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  color: #000;
  height: 52px;
}

.additional-features-list p {
  font-size: 17px;
  font-weight: 300;
  line-height: 26px;
  color: #000;
}
.additional-features {
  padding-bottom: 75px;
}
.feature-style-image {
  width: 50%;
  max-width: 550px;
}

/* ================================================================
   SOLUTIONS PAGES — Hub + Detail
   ================================================================ */

/* ── Solutions Hero ── */
.solutions-hero {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  text-align: center;
  padding-top: 100px;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #0d1218 0%, #1a2636 40%, #0d1218 100%);
}

.solutions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(29, 161, 242, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(185, 150, 74, 0.12) 0%,
      transparent 50%
    );
}

.solutions-hero-inner {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 40px));
  padding: 60px 0 70px;
}

.solutions-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1da1f2;
  background: rgba(29, 161, 242, 0.12);
  border: 1px solid rgba(29, 161, 242, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.solutions-hero h1 {
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.solutions-hero h1 span {
  color: #1da1f2;
}

.solutions-hero p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

/* ── Solutions Hub Grid ── */
.solutions-hub {
  padding: 90px 0 100px;
  background: #f6f7fc;
}

.solutions-hub-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-hub-header .section-title {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #000;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.solutions-hub-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ── Solution Card ── */
.solution-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.36s var(--ease),
    box-shadow 0.36s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.solution-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1218, #1a2636);
  flex-shrink: 0;
}

.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.solution-card:hover .solution-card-image img {
  transform: scale(1.08);
}

.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 18, 30, 0.72) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.32s ease;
}

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

.solution-card-cta {
  background: #1da1f2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.solution-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.solution-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card-body h3 {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.solution-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.solution-card-arrow {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1da1f2;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.solution-card:hover .solution-card-arrow {
  gap: 10px;
}

/* ── Solution Detail Hero ── */
.solution-detail-hero {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  padding-top: 100px;
}

/* .solution-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #071828 0%, #0f2a42 50%, #071828 100%);
} */

/* .solution-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(29, 161, 242, 0.22) 0%,
    transparent 60%
  );
} */

.solution-detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1410px;
  margin: 0 auto;
  padding: 70px 50px 80px;
  width: 100%;
}

.solution-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  font-weight: 500;
}

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

.solution-breadcrumb a:hover {
  color: #1da1f2;
}

.solution-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.solution-hero-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(29, 161, 242, 0.4));
}

.solution-detail-hero h1 {
  margin: 0 0 18px;
  font-family: "Lato", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 860px;
}

.solution-detail-hero .hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 900px;
  margin: 0 0 32px;
}

.solution-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solution-hero-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ── Solution Overview Section ── */
.solution-overview {
  padding: 90px 0;
  background: #fff;
}

.solution-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.solution-overview-text h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  line-height: 1.2;
}

.solution-overview-text .eyebrow-line {
  background: #1da1f2;
  width: 48px;
  height: 3px;
  margin-bottom: 24px;
}

.solution-overview-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 18px;
}

.solution-overview-text p:last-child {
  margin-bottom: 0;
}

.solution-overview-visual {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.solution-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.solution-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(29, 161, 242, 0.1);
  transition: transform 0.28s var(--ease);
}

.solution-stat-card:hover {
  transform: translateY(-5px);
}

.solution-stat-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.solution-stat-value {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1da1f2;
  line-height: 1;
  margin-bottom: 6px;
}

.solution-stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── Solution Features Grid ── */
.solution-features {
  padding: 90px 0;
  background: #f6f7fc;
}

.solution-features-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px 0;
}

.solution-features-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 14px;
}

.solution-features-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.solution-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.solution-feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(29, 161, 242, 0.08);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease;
}

.solution-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(29, 161, 242, 0.12);
  border-color: rgba(29, 161, 242, 0.3);
}

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

.solution-feature-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

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

/* ── Use Cases Section ── */
.solution-use-cases {
  padding: 90px 0;
  background: #fff;
}

.solution-use-cases-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.solution-use-cases-inner h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 14px;
}

.solution-use-cases-inner > .eyebrow-line {
  background: #1da1f2;
  width: 48px;
  height: 3px;
  margin-bottom: 46px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-case-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #f6f7fc;
  border-radius: 12px;
  padding: 24px 22px;
  transition: background 0.25s ease;
}

.use-case-item:hover {
  background: #eef5ff;
}

.use-case-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #1da1f2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.use-case-item h4 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.use-case-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Solution CTA Banner ── */
.solution-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #071828 0%, #0f2a42 50%, #071828 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.solution-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(29, 161, 242, 0.15) 0%,
    transparent 70%
  );
}

.solution-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 50px;
}

.solution-cta h2 {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.solution-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 36px;
}

.solution-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-sol {
  background: #1da1f2;
  color: #fff;
  border: 2px solid #1da1f2;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.25s ease;
}

.btn-primary-sol:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(29, 161, 242, 0.4);
  background: #0d8fd9;
  border-color: #0d8fd9;
}

.btn-outline-sol {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition:
    transform 0.28s var(--ease),
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn-outline-sol:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Explore More Solutions ── */
.explore-more-solutions {
  padding: 80px 0;
  background: #f6f7fc;
  text-align: center;
}

.explore-more-solutions h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin: 0 0 40px;
}

.explore-more-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.explore-more-pill {
  background: #fff;
  border: 1px solid #e0e4ea;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease);
}

.explore-more-pill:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #fff;
  transform: translateY(-3px);
}

/* ── Nav Dropdown Caret ── */
.nav-caret {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.has-submenu:hover .nav-caret,
.has-submenu:focus-within .nav-caret {
  transform: rotate(180deg);
}

/* ── Responsive: Solutions ── */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }

  .solution-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

  .solution-features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }

  .solution-features-header {
    padding: 0 30px 0;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .solution-use-cases-inner {
    padding: 0 30px;
  }

  .solution-detail-hero-inner {
    padding: 60px 30px 70px;
  }

  .solution-cta-inner {
    padding: 0 30px;
  }

  .solution-cta h2 {
    font-size: 28px;
  }

  .solutions-hero h1 {
    font-size: clamp(30px, 8vw, 48px);
  }
}

@media (max-width: 620px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .solution-features-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .solution-overview-grid {
    padding: 0 18px;
  }

  .solution-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-use-cases-inner {
    padding: 0 18px;
  }

  .explore-more-grid {
    padding: 0 18px;
  }

  .solution-cta-inner {
    padding: 0 18px;
  }

  .solution-cta h2 {
    font-size: 24px;
  }

  .solutions-hub {
    padding: 60px 0 70px;
  }

  .solution-overview {
    padding: 60px 0;
  }

  .solution-features {
    padding: 60px 0;
  }

  .solution-use-cases {
    padding: 60px 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   ENERGY MANAGEMENT PAGE — Custom Sections
══════════════════════════════════════════════════════════════ */

/* ── Hero Banner Section ── */
.energy-hero .solution-detail-hero-inner {
  width: 100%;
}

.energy-hero-text h1,
.energy-hero-text .hero-desc {
  max-width: 100%;
}

.energy-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.energy-hero-banner-wrap {
  position: relative;
}

.energy-hero-banner-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(29, 161, 242, 0.25);
  background: #0f2a42;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.energy-hero-banner-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 30px 80px rgba(29, 161, 242, 0.3),
    0 0 0 1px rgba(29, 161, 242, 0.45);
}

.energy-banner-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.energy-banner-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(7, 24, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(29, 161, 242, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #1da1f2;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(29, 161, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 161, 242, 0);
  }
}

/* ── Hero Image Section ── */
.energy-hero-image {
  background: linear-gradient(180deg, #071828 0%, #0c1e30 50%, #fff 50%);
  padding: 0 0 60px;
}

.energy-hero-image-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

.energy-hero-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(29, 161, 242, 0.15);
}

.energy-hero-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.energy-hero-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(29, 161, 242, 0.08);
}

/* ── Energy Use Cases Cards ── */
.energy-use-cases {
  background: #fff;
}

.energy-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.energy-uc-card {
  background: #f6f7fc;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease,
    background 0.3s ease;
}

.energy-uc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(29, 161, 242, 0.12);
  border-color: rgba(29, 161, 242, 0.3);
  background: #fff;
}

.energy-uc-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.energy-uc-card h4 {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.3;
}

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

/* ── Video / Live Demo Section ── */
.energy-video-demo {
  padding: 90px 0;
  background: linear-gradient(135deg, #071828 0%, #0f2a42 50%, #071828 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.energy-video-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(29, 161, 242, 0.15) 0%,
    transparent 65%
  );
}

.energy-video-demo-inner {
  position: relative;
  z-index: 1;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.energy-video-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.energy-video-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 480px;
}

.energy-video-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.energy-video-buttons .btn-icon {
  margin-right: 8px;
}

.energy-video-visual {
  display: flex;
  justify-content: center;
}

.energy-video-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    135deg,
    rgba(29, 161, 242, 0.12) 0%,
    rgba(15, 42, 66, 0.6) 100%
  );
  border: 1px solid rgba(29, 161, 242, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.energy-video-placeholder:hover {
  border-color: rgba(29, 161, 242, 0.55);
  box-shadow: 0 0 40px rgba(29, 161, 242, 0.2);
}

.energy-video-play-ring {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(29, 161, 242, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.energy-video-placeholder:hover .energy-video-play-ring {
  background: rgba(29, 161, 242, 0.2);
  transform: scale(1.1);
}

.energy-video-play-icon {
  font-size: 24px;
  color: #1da1f2;
  margin-left: 4px;
}

.energy-video-overlay-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ── How It Works Section ── */
.energy-how-it-works {
  padding: 90px 0;
  background: #f6f7fc;
}

.energy-how-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.energy-how-header {
  text-align: center;
  margin-bottom: 48px;
}

.energy-how-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 14px;
}

.energy-how-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

.energy-how-image {
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.energy-how-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.energy-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.energy-how-step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(29, 161, 242, 0.08);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.energy-how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 161, 242, 0.1);
}

.energy-how-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1da1f2, #0d8fd9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin: 0 auto 16px;
}

.energy-how-step h4 {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

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

/* ── Dashboard Samples Gallery ── */
.energy-dashboards {
  padding: 90px 0;
  background: #fff;
}

.energy-dashboards-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.energy-dashboards-header {
  text-align: center;
  margin-bottom: 48px;
}

.energy-dashboards-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 14px;
}

.energy-dashboards-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.energy-dashboards-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.energy-dash-item {
  border-radius: 14px;
  overflow: hidden;
  background: #f6f7fc;
  border: 1px solid rgba(29, 161, 242, 0.08);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease;
}

.energy-dash-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(29, 161, 242, 0.12);
  border-color: rgba(29, 161, 242, 0.25);
}

.energy-dash-item img {
  width: 100%;
  display: block;
}

.energy-dash-caption {
  padding: 16px 20px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Why Choose Linked IoT ── */
.energy-why-choose {
  padding: 90px 0;
  background: linear-gradient(135deg, #071828 0%, #0f2a42 50%, #071828 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.energy-why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(29, 161, 242, 0.18) 0%,
    transparent 65%
  );
}

.energy-why-inner {
  position: relative;
  z-index: 1;
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.energy-why-text h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.energy-why-text .eyebrow-line {
  background: #1da1f2;
  width: 48px;
  height: 3px;
  margin-bottom: 24px;
}

.energy-why-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.energy-why-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.energy-why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease),
    border-color 0.3s ease;
}

.energy-why-card:hover {
  background: rgba(29, 161, 242, 0.12);
  border-color: rgba(29, 161, 242, 0.35);
  transform: translateY(-4px);
}

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

.energy-why-card h4 {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}

/* ── Customers Section ── */
.energy-customers {
  padding: 80px 0;
  background: #f6f7fc;
  text-align: center;
}

.energy-customers-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
}

.energy-customers-inner h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 14px;
}

.energy-customers-inner > .eyebrow-line {
  background: #1da1f2;
  width: 48px;
  height: 3px;
  margin: 0 auto 40px;
}

.energy-customers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
}

.energy-customer-chip {
  background: #fff;
  border: 1px solid #e0e4ea;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease);
}

.energy-customer-chip:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #fff;
  transform: translateY(-3px);
}

.energy-customer-chip span {
  font-size: 18px;
}

/* ── Inquiry Form Section ── */
.energy-inquiry {
  padding: 90px 0;
  background: #fff;
}

.energy-inquiry-inner {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.energy-inquiry-text h2 {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  line-height: 1.2;
}

.energy-inquiry-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}

.energy-inquiry-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.energy-inquiry-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.energy-inquiry-perk span {
  font-size: 18px;
}

.energy-inquiry-form-wrap {
  background: #f6f7fc;
  border-radius: 18px;
  padding: 40px 36px;
  border: 1px solid rgba(29, 161, 242, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.energy-inquiry-form h3 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 24px;
  text-align: center;
}

.energy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.energy-form-group {
  display: flex;
  flex-direction: column;
}

.energy-form-group.full-width {
  margin-bottom: 20px;
}

.energy-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.energy-form-group input,
.energy-form-group textarea {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce0e6;
  border-radius: 8px;
  padding: 11px 14px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
}

.energy-form-group input:focus,
.energy-form-group textarea:focus {
  border-color: #1da1f2;
  box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.12);
}

.energy-form-group input::placeholder,
.energy-form-group textarea::placeholder {
  color: #b0b7c0;
}

.energy-submit-btn {
  width: 100%;
  border-radius: 8px;
  font-size: 15px;
  min-height: 48px;
}

/* ── Energy Page Responsive ── */
@media (max-width: 1200px) {
  .energy-use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .energy-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .energy-hero-image-inner {
    padding: 0 30px;
  }

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

  .energy-video-demo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

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

  .energy-how-inner {
    padding: 0 30px;
  }

  .energy-dashboards-gallery {
    grid-template-columns: 1fr;
  }

  .energy-dashboards-inner {
    padding: 0 30px;
  }

  .energy-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

  .energy-customers-inner {
    padding: 0 30px;
  }

  .energy-inquiry-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
}

@media (max-width: 620px) {
  .energy-hero-image-inner {
    padding: 0 18px;
  }

  .energy-use-cases-grid {
    grid-template-columns: 1fr;
  }

  .energy-video-demo-inner {
    padding: 0 18px;
  }

  .energy-video-content h2 {
    font-size: 28px;
  }

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

  .energy-how-inner {
    padding: 0 18px;
  }

  .energy-how-header h2 {
    font-size: 28px;
  }

  .energy-dashboards-inner {
    padding: 0 18px;
  }

  .energy-dashboards-header h2 {
    font-size: 28px;
  }

  .energy-why-inner {
    padding: 0 18px;
  }

  .energy-why-text h2 {
    font-size: 28px;
  }

  .energy-why-highlights {
    grid-template-columns: 1fr;
  }

  .energy-customers-inner {
    padding: 0 18px;
  }

  .energy-customers-inner h2 {
    font-size: 28px;
  }

  .energy-inquiry-inner {
    padding: 0 18px;
  }

  .energy-inquiry-text h2 {
    font-size: 28px;
  }

  .energy-inquiry-form-wrap {
    padding: 28px 20px;
  }

  .energy-form-row {
    grid-template-columns: 1fr;
  }

  .energy-video-demo,
  .energy-how-it-works,
  .energy-dashboards,
  .energy-why-choose,
  .energy-customers,
  .energy-inquiry {
    padding: 60px 0;
  }
}

.solution-detail-hero.energy-hero {
  background-image: url("../images/S1.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.energy-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.manufacturing-hero {
  background-image: url("../images/S2.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.manufacturing-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.coldchain-hero {
  background-image: url("../images/S3.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.coldchain-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.water-hero {
  background-image: url("../images/S4.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.water-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.healthcare-hero {
  background-image: url("../images/S5.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.healthcare-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.building-hero {
  background-image: url("../images/S6.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.building-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.agriculture-hero {
  background-image: url("../images/S7.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.agriculture-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.environmental-hero {
  background-image: url("../images/S8.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.environmental-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.oilgas-hero {
  background-image: url("../images/S9.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.oilgas-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

.solution-detail-hero.general-hero {
  background-image: url("../images/S10.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-position: center;
}

.solution-detail-hero.general-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.85)
  );
  background-size: 220% 220%;
  animation: gradientMove 10s ease-in-out infinite;
}

/* ==========================================================================
   Enfold-Style Interactive Feature Tabs Section
   ========================================================================== */
.enfold-tab-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.enfold-tab-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #eaeaea;
  position: relative;
  z-index: 1;
}

.enfold-tab-btn {
  background: transparent !important;
  border: none;
  padding: 16px 20px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777777;
  position: relative;
  transition: color 0.25s ease;
  outline: none;
  flex: 1;
  max-width: 220px;
}

.enfold-tab-btn:hover {
  color: #333333;
  background: transparent !important;
  box-shadow: none;
}

.enfold-tab-btn.active {
  color: #000000 !important;
  font-weight: 700;
  background: transparent !important;
}

.enfold-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #000000;
  z-index: 3;
}

.enfold-tab-btn .tab-icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.enfold-tab-btn .tab-img-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.6;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.enfold-tab-btn:hover .tab-img-icon {
  opacity: 0.85;
}

.enfold-tab-btn.active .tab-img-icon {
  opacity: 1;
  filter: brightness(0);
}

.enfold-tab-btn:hover .tab-icon {
  transform: translateY(-2px);
}

.enfold-tab-btn.active .tab-icon {
  transform: translateY(-2px);
}

.enfold-tab-btn .tab-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  text-align: center;
  line-height: 25px;
}

.enfold-tab-container {
  background-color: transparent;
  color: #333333;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.enfold-tab-panel {
  display: none;
  padding: 40px 0;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.enfold-tab-panel.active {
  display: block;
  opacity: 1;
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.tab-panel-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-panel-image img {
  width: 100%;
  max-width: 510px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tab-panel-image img:hover {
  transform: scale(1.015);
}

.tab-panel-text {
  color: #555555;
}

.tab-panel-text h3 {
  color: #111111;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.tab-panel-text .below-line1 {
  width: 45px;
  height: 2px;
  background-color: #222222;
  margin-bottom: 10px;
  margin-top: 10px;
}

.tab-panel-text h4 {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 30px;
  text-transform: capitalize;
}

.tab-panel-text p {
  color: #666666;
  font-size: 17px;
  line-height: 27px;
}

@media (max-width: 992px) {
  .enfold-tab-nav {
    flex-wrap: wrap;
  }

  .enfold-tab-btn {
    flex: 1 1 30%;
    max-width: none;
    padding: 14px 15px 18px;
  }

  .tab-panel-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .enfold-tab-panel {
    padding: 40px 25px;
  }

  .tab-panel-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .enfold-tab-btn {
    flex: 1 1 50%;
    padding: 12px 10px 16px;
  }

  .enfold-tab-btn .tab-title {
    font-size: 11px;
  }
}

/* ==========================================================================
   ThingsBoard-Style Vertical Solution Dashboard Tabs
   ========================================================================== */
.tb-dashboards-section {
  padding: 80px 0;
  background-color: #f9fbfd;
}

.tb-dashboards-header {
  text-align: center;
  margin-bottom: 50px;
}

.tb-dashboards-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.tb-dashboards-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

.tb-vtab-container {
  display: flex;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
  justify-content: center;
}

.tb-vtab-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 350px;
}

.tb-vtab-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.tb-vtab-btn {
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: all 0.2s ease;
  outline: none;
  line-height: 20px;
  justify-content: flex-start;
}

.tb-vtab-btn:hover {
  color: #2563eb;
  background-color: #f3f4f6;
  border-left-color: #2563eb;
}

.tb-vtab-btn.active {
  color: #2563eb;
  font-weight: 600;
  background-color: #eff6ff;
  border-left-color: #2563eb;
}

.tb-vtab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-tb-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.btn-tb-primary:hover {
  background-color: #1d4ed8;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-tb-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: transparent;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #2563eb;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-tb-outline:hover {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.tb-vtab-content-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  max-width: 800px;
}

.tb-vtab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tb-vtab-panel.active {
  display: block;
  opacity: 1;
}

.tb-vtab-img-box {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tb-vtab-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .tb-vtab-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tb-vtab-sidebar {
    gap: 20px;
  }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-hero-section {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(13, 18, 24, 0.88), rgba(24, 32, 42, 0.82)),
    url("../images/banner1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 120px 0 70px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b9964a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-hero-content {
  text-align: center;
}

.about-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 50px;
}

.about-hero-subtitle {
  font-size: 18px;
  color: #d1d5db;
  max-width: 720px;
  line-height: 1.6;
}

.about-overview-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
}

.about-overview-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.about-overview-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 20px;
}

.about-img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
}

.about-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Full-Container Vision Section */
.about-vision-section {
  padding: 60px 0 80px;
  background-color: #f1f5f9;
}

.vision-full-container {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vision-badge .vision-icon {
  font-size: 18px;
}

.vision-badge .vision-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fbbf24;
}

.vision-full-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.35;
}

.vision-full-container p {
  font-size: 18px;
  line-height: 1.75;
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto;
}

.about-journey-section {
  padding: 90px 0;
  background-color: #f9fbfd;
  border-top: 1px solid #e5e7eb;
}

.journey-header {
  margin-bottom: 60px;
}

.journey-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.journey-lead {
  font-size: 18px;
  color: #4b5563;
  max-width: 780px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.journey-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.journey-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.journey-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 18px;
}

.journey-highlight-quote {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #1e3a8a;
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  line-height: 1.55;
}

.journey-conclusion {
  font-weight: 600;
  color: #111827;
  font-size: 17px !important;
}

@media (max-width: 992px) {
  .about-overview-grid,
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }
}

/* ==========================================================================
   Pricing Page Styles
   ========================================================================== */
.pricing-hero-section {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85)),
    url("../images/banner1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 120px 0 70px;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b9964a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 50px;
}

.pricing-hero-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-main-section {
  padding: 70px 0 100px;
  background-color: #f8fafc;
}

.pricing-tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 700;
  color: #475569;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.pricing-tab-btn.active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.pricing-category-header .below-line {
  margin-top: 10px;
}

.pricing-category-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.pricing-category-panel.active {
  display: block;
}

.pricing-category-header {
  margin-bottom: 50px;
}

.pricing-category-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pricing-category-desc {
  font-size: 17px;
  color: #64748b;
  max-width: 850px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.price-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}

.price-card.featured {
  border-color: #2563eb;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-card-header {
  margin-bottom: 20px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.plan-badge {
  display: inline-block;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.price-box {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.price-amount .currency {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}

.price-amount.custom-price {
  font-size: 34px;
}

.price-period {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.price-annual-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #166534;
  background-color: #dcfce7;
  padding: 3px 10px;
  border-radius: 12px;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.plan-features-list li {
  font-size: 14px;
  color: #334155;
  padding: 10px 0;
  border-bottom: 1px dashed #f1f5f9;
}

.plan-features-list li strong {
  color: #0f172a;
}

.price-card-footer {
  margin-top: auto;
}

.plan-btn {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 8px;
  display: block;
}

.pricing-matrix-wrap {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.pricing-matrix-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
}

.pricing-table th {
  background-color: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  font-size: 16px;
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table tr:hover td {
  background-color: #f8fafc;
}

.table-price-row td {
  background-color: #eff6ff !important;
  font-size: 16px;
  color: #1e40af;
}

.check {
  color: #16a34a;
  font-weight: 800;
}

.cross {
  color: #dc2626;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tab-nav {
    flex-direction: column;
  }

  .pricing-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

.site-footer p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer p a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */
.contact-hero-section {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(13, 18, 24, 0.88), rgba(24, 32, 42, 0.82)),
    url("../images/banner1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 120px 0 70px;
  text-align: center;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b9964a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 50px;
  margin-top: 0;
}

.contact-hero-subtitle {
  font-size: 18px;
  color: #d1d5db;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-main-section {
  padding: 90px 0;
  background-color: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 50px;
  align-items: start;
}

.contact-form-wrap {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 0;
}

.form-header p {
  font-size: 15px;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.contact-form label .required {
  color: #dc2626;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.submit-btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 10px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 0;
}

.info-intro {
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background-color: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.info-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.info-details p a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.info-details p a:hover {
  text-decoration: underline;
}

.support-banner-box {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.support-banner-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.support-banner-box p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.5;
}

.support-call-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
}

.contact-map-section {
  padding: 80px 0 100px;
  background-color: #ffffff;
}

.map-header {
  margin-bottom: 40px;
}

.map-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 0;
}

.map-header p {
  font-size: 16px;
  color: #64748b;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   ENFOLD 2017 BLOG STYLES
   ========================================================================== */

.blog-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 160px 0 70px;
  text-align: center;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(97, 182, 215, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.blog-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-main-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
}

.blog-subtitle-highlight {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #94a3b8;
  display: block;
  margin-top: 6px;
}

.enfold-heading-border {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 24px;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}

.enfold-heading-inner {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.blog-hero-description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Category Filter Bar */
.blog-filter-bar-section {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-label {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  margin-right: 8px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main Blog Content Section */
.blog-content-section {
  padding: 70px 0 100px;
  background-color: #ffffff;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Main Stream & Featured Post */
.blog-article-featured {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-article-featured:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(97, 182, 215, 0.12);
  color: #0284c7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.article-category-links {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
}

.cat-link {
  color: var(--accent);
  transition: color 0.2s ease;
}

.cat-link:hover {
  color: var(--ink);
}

.cat-sep {
  color: #cbd5e1;
  margin: 0 4px;
}

.article-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
}

.article-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: var(--accent-2);
}

.article-featured-media {
  margin: 24px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.featured-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-featured-media:hover .featured-img {
  transform: scale(1.02);
}

/* Audio Player Wrapper */
.audio-player-wrapper {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #ffffff;
  padding: 20px 24px;
  border-top: 2px solid var(--accent-2);
}

.audio-player-label {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-audio-player {
  width: 100%;
  border-radius: 30px;
  outline: none;
}

.article-excerpt p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.article-blockquote {
  border-left: 4px solid var(--accent);
  background: #f8fafc;
  padding: 16px 24px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #334155;
  font-size: 16px;
}

.article-bullet-list {
  margin: 16px 0 24px 20px;
  padding: 0;
  color: #475569;
  font-size: 15px;

  li {
    margin-bottom: 8px;
  }
}

.article-footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  font-size: 14px;
  color: #64748b;
}

.read-more-btn {
  margin-left: auto;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.read-more-btn:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.article-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 48px 0;
}

/* Secondary 2-Column Grid */
.blog-grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-media-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.card-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-media-wrapper.text-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.fallback-icon {
  font-size: 48px;
  opacity: 0.6;
}

.format-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.format-icon-badge.video-badge {
  background: rgba(225, 29, 72, 0.85);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-categories {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.card-categories a {
  color: inherit;
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0 0 12px;
  font-family: "Lato", sans-serif;
}

.card-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: var(--accent-2);
}

.card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  color: #94a3b8;
}

.card-read-link {
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}

.card-read-link:hover {
  color: var(--accent);
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styling */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  position: relative;
  font-family: "Lato", sans-serif;
}

/* Nav Menu Layout Switcher Widget */
.nested-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nested-nav-list li {
  margin-bottom: 6px;
}

.nested-nav-list li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #475569;
  transition: all 0.2s ease;
}

.nested-nav-list li.active a,
.nested-nav-list li a:hover {
  background: #f1f5f9;
  color: var(--ink);
  font-weight: 700;
  padding-left: 16px;
}

/* Search Widget */
.search-form-wrapper {
  display: flex;
  gap: 8px;
}

.search-form-wrapper input {
  flex-grow: 1;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-form-wrapper input:focus {
  border-color: var(--accent);
}

.search-form-wrapper button {
  padding: 0 16px;
  min-height: auto;
  border-radius: 6px;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent-posts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-details {
  display: flex;
  flex-direction: column;
}

.recent-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #1e293b;
  transition: color 0.2s ease;
}

.recent-title:hover {
  color: var(--accent);
}

.recent-date {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 3px;
}

/* Categories List */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  border-bottom: 1px dashed #e2e8f0;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
  transition: color 0.2s ease;
}

.categories-list a:hover {
  color: var(--accent);
}

.categories-list .count {
  color: #94a3b8;
  font-size: 13px;
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tag-pill:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* Newsletter Widget */
.newsletter-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.newsletter-form input {
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  width: 100%;
}

/* Responsive Media Queries for Blog */
@media (max-width: 992px) {
  .blog-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .blog-hero-section {
    padding: 130px 0 50px;
  }

  .blog-main-title {
    font-size: 28px;
  }

  .blog-subtitle-highlight {
    font-size: 17px;
  }

  .blog-article-featured {
    padding: 24px;
  }

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

  .article-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .read-more-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 160px 0 70px;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 500px;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(97, 182, 215, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1da1f2;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-main-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 16px;
  font-family: "Lato", sans-serif;
}

.faq-hero-description {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Search Box in Hero */
.faq-search-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.faq-search-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 6px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-search-input-group:focus-within {
  border-color: #1da1f2;
  box-shadow: 0 16px 40px rgba(29, 161, 242, 0.3);
  background: #ffffff;
}

.faq-search-icon {
  font-size: 18px;
  margin-right: 12px;
  color: #64748b;
}

.faq-search-input-group input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  color: #0f172a;
  outline: none;
}

.faq-search-input-group input::placeholder {
  color: #94a3b8;
}

.faq-clear-btn {
  background: #e2e8f0;
  border: none;
  color: #64748b;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.faq-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
}

/* Category Filter Bar */
.faq-filter-bar-section {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
}

.faq-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Main FAQ Content Section */
.faq-content-section {
  padding: 70px 0 100px;
  background-color: #ffffff;
}

.faq-main-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.faq-group-block {
  margin-bottom: 48px;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.faq-group-icon {
  font-size: 24px;
}

.faq-group-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-family: "Lato", sans-serif;
}

/* Accordion Component */
.faq-accordion {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.25s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.active {
  background-color: #f8fafc;
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  outline: none;
  gap: 16px;
  min-height: auto;
}

.faq-header:hover {
  background: rgba(241, 245, 249, 0.6);
  transform: none;
  box-shadow: none;
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  font-family: "Lato", sans-serif;
  transition: color 0.2s ease;
}

.faq-header:hover .faq-question,
.faq-item.active .faq-question {
  color: #1da1f2;
}

.faq-icon-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon-toggle::before,
.faq-icon-toggle::after {
  content: "";
  position: absolute;
  background-color: #64748b;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

/* Horizontal line */
.faq-icon-toggle::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon-toggle::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon-toggle::before {
  background-color: #1da1f2;
}

.faq-body {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.faq-item.active .faq-body {
  display: block;
}

.faq-body p {
  margin: 0 0 12px;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.faq-bullet-list {
  margin: 10px 0 0 20px;
  padding: 0;
  color: #475569;

  li {
    margin-bottom: 6px;
  }
}

/* Support CTA Banner */
.faq-support-card {
  margin-top: 60px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.faq-support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(29, 161, 242, 0.18),
    transparent 65%
  );
  pointer-events: none;
}

.support-card-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.support-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1da1f2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-card-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
  font-family: "Lato", sans-serif;
}

.support-card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 28px;
}

.support-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive Styles for FAQ */
@media (max-width: 768px) {
  .faq-hero-section {
    padding: 130px 0 50px;
  }

  .faq-main-title {
    font-size: 28px;
  }

  .faq-search-input-group {
    padding: 4px 16px;
  }

  .faq-search-input-group input {
    font-size: 14px;
  }

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

  .faq-question {
    font-size: 15px;
  }

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

  .faq-support-card {
    padding: 32px 20px;
  }

  .support-card-content h2 {
    font-size: 22px;
  }
}
