/*=====================================================================
  ZENITH ONE PLATFORM
  Premium Enterprise CSS
  STEP-01
  ROOT • RESET • TYPOGRAPHY • GLOBAL COMPONENTS
======================================================================*/

/*========================
GOOGLE FONT
========================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/*========================
ROOT VARIABLES
========================*/

:root {
  --primary: #262871;
  --primary-dark: #1d1f63;

  --secondary: #6c385e;
  --secondary-dark: #552c4b;

  --accent: #0ea5e9;

  --white: #ffffff;

  --dark: #0f172a;

  --text: #334155;

  --muted: #64748b;

  --border: #e2e8f0;

  --light: #f8fafc;

  --success: #10b981;

  --warning: #f59e0b;

  --danger: #ef4444;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.05);

  --shadow: 0 15px 45px rgba(15, 23, 42, 0.08);

  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);

  --transition: 0.35s ease;
}
/*========================
RESET
========================*/

*,
*::before,
*::after {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;

  font-size: 16px;

  line-height: 1.7;

  color: var(--text);

  background: var(--white);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}
img {
  display: block;

  max-width: 100%;

  height: auto;
}

svg {
  display: block;

  max-width: 100%;
}
a {
  text-decoration: none;

  color: inherit;

  transition: var(--transition);
}

button {
  font-family: inherit;

  border: none;

  background: none;

  cursor: pointer;
}
input,
textarea,
select {
  font-family: inherit;

  outline: none;
}
/* ========================
CONTAINER
========================*/

/* Navbar Issued */
/*.container {
  width: 100%;

  max-width: 1320px;

  margin: 0 auto;

  padding-left: 14px;

  padding-right: 14px;
}
*/

/*========================
SECTION
========================*/

section {
  position: relative;
}

.py-20 {
  padding-top: 5rem;

  padding-bottom: 5rem;
}

.py-28 {
  padding-top: 7rem;

  padding-bottom: 7rem;
}
/*========================
TYPOGRAPHY
========================*/

h1,
/* h2, */
h3,
h4,
h5,
h6 {
  font-weight: 800;

  color: var(--dark);

  line-height: 1.15;
}

p {
  color: var(--muted);

  line-height: 1.9;
}

.section-badge {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 24px;

  border-radius: 999px;

  background: #eef2ff;

  color: var(--primary);

  font-size: 0.82rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.18em;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.25rem);

  font-weight: 800;

  color: var(--dark);

  line-height: 1.15;
}

.section-description {
  max-width: 850px;

  margin: 28px auto 0;

  font-size: 1.08rem;

  color: var(--muted);

  line-height: 1.9;
}
/*========================
BUTTON
========================*/

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 16px 34px;

  border-radius: 999px;

  font-weight: 700;

  transition: var(--transition);
}

.btn-primary-custom {
  color: #fff;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  box-shadow: 0 18px 45px rgba(38, 40, 113, 0.28);
}

.btn-primary-custom:hover {
  transform: translateY(-4px);

  box-shadow: 0 30px 70px rgba(38, 40, 113, 0.35);
}
.glass-card {
  background: #fff;

  border: 1px solid var(--border);

  border-radius: 28px;

  transition: var(--transition);

  box-shadow: var(--shadow-sm);
}
.glass-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}
/*========================
SCROLLBAR
========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));

  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: #eef2f7;
}

/*STEP-02
HEADER • NAVBAR • STICKY HEADER
======================================================================*/

/*========================
HEADER
========================*/

header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  transition: 0.35s ease;
}

header:hover {
  background: #fff;
}
/*========================
DESKTOP NAVIGATION
========================*/

header nav {
  display: flex;

  align-items: center;

  gap: 34px;
}

header nav a {
  position: relative;

  font-size: 0.95rem;

  font-weight: 600;

  color: var(--text);

  transition: var(--transition);
}

header nav a:hover {
  color: var(--primary);
}

header nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 0;

  height: 3px;

  border-radius: 999px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transition: 0.35s;
}

header nav a:hover::after,
header nav a.font-semibold::after {
  width: 100%;
}

header nav a.font-semibold {
  color: var(--primary);
}
/*========================
MOBILE MENU BUTTON
========================*/

header button {
  width: 48px;

  height: 48px;

  border-radius: 14px;

  border: 1px solid var(--border);

  transition: var(--transition);
}

header button:hover {
  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}
/*========================
SCROLL EFFECT
========================*/

header.scrolled {
  background: #fff;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
/*========================
RESPONSIVE
========================*/

@media (max-width: 1279px) {
  header nav {
    display: none;
  }
}

@media (max-width: 768px) {
  header img {
    height: 46px;
  }

  header h2 {
    font-size: 1.15rem;
  }

  header p {
    display: none;
  }

  header .flex {
    min-height: 72px;
  }
}
/*=====================================================================
STEP-03
PREMIUM HERO SECTION
======================================================================*/

/*========================
HERO
========================*/

section.relative.overflow-hidden.bg-gradient-to-br {
  padding-top: 10rem;

  padding-bottom: 7rem;

  background: linear-gradient(135deg, #1d2366 0%, #262871 45%, #6c385e 100%);

  overflow: hidden;
}
/*========================
BACKGROUND GLOW
========================*/

section.relative.overflow-hidden.bg-gradient-to-br > .absolute.inset-0 {
  pointer-events: none;
}

section.relative.overflow-hidden.bg-gradient-to-br > .absolute.inset-0 > div {
  transition: 0.6s ease;
}

/*========================
CONTENT
========================*/

section.relative.overflow-hidden.bg-gradient-to-br .container {
  position: relative;

  z-index: 10;
}

section.relative.overflow-hidden.bg-gradient-to-br .max-w-5xl {
  max-width: 980px;

  margin: auto;
}

section.relative.overflow-hidden.bg-gradient-to-br h1 {
  color: #fff;

  font-size: clamp(3rem, 7vw, 6rem);

  font-weight: 900;

  line-height: 1.08;

  letter-spacing: -1px;
}

section.relative.overflow-hidden.bg-gradient-to-br p {
  color: rgba(255, 255, 255, 0.84);

  font-size: 1.18rem;

  line-height: 2;
}
/*========================
BADGE
========================*/

section.relative.overflow-hidden.bg-gradient-to-br span.inline-flex {
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #fff;

  backdrop-filter: blur(14px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/*========================
BUTTONS
========================*/

section.relative.overflow-hidden.bg-gradient-to-br .btn {
  min-width: 220px;
}

section.relative.overflow-hidden.bg-gradient-to-br a.border {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;

  color: #fff;
}

section.relative.overflow-hidden.bg-gradient-to-br a.border:hover {
  background: #fff;

  color: var(--primary);
}

/*========================
STATISTICS
========================*/

section.relative.overflow-hidden.bg-gradient-to-br .grid {
  margin-top: 5rem;

  gap: 2rem;
}

section.relative.overflow-hidden.bg-gradient-to-br .grid > div {
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 28px;

  backdrop-filter: blur(18px);

  transition: 0.35s ease;
}

section.relative.overflow-hidden.bg-gradient-to-br .grid > div:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.16);
}

section.relative.overflow-hidden.bg-gradient-to-br .grid h3 {
  color: #fff;

  font-size: 3rem;

  font-weight: 900;
}

section.relative.overflow-hidden.bg-gradient-to-br .grid p {
  color: rgba(255, 255, 255, 0.78);

  margin-top: 12px;
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  section.relative.overflow-hidden.bg-gradient-to-br {
    padding-top: 8.5rem;

    padding-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  section.relative.overflow-hidden.bg-gradient-to-br {
    padding-top: 7.5rem;
  }

  section.relative.overflow-hidden.bg-gradient-to-br h1 {
    font-size: 2.6rem;
  }

  section.relative.overflow-hidden.bg-gradient-to-br p {
    font-size: 1rem;
  }

  section.relative.overflow-hidden.bg-gradient-to-br .btn {
    width: 100%;
  }
}

/*=====================================================================
STEP-03 END
======================================================================*/

/*=====================================================================
  RESPONSIVE PLATFORM HERO — isolated from shared .hero/header rules
======================================================================*/

.platform-hero {
  width: 100%;
  min-width: 0;
  min-height: calc(100svh - var(--navbar-height-desktop));
  margin-top: var(--navbar-height-desktop);
  padding: clamp(68px, 7vh, 104px) 0 clamp(64px, 7vh, 96px);
  display: flex;
  align-items: center;
  overflow: clip;
}

@supports (min-height: 100dvh) {
  .platform-hero {
    min-height: calc(100dvh - var(--navbar-height-desktop));
  }
}

.platform-hero > .container {
  width: 100%;
  min-width: 0;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.platform-hero .max-w-5xl,
.platform-hero .max-w-6xl {
  width: 100%;
  min-width: 0;
}

.platform-hero h1 {
  overflow-wrap: anywhere;
}

.platform-hero .grid {
  margin-top: clamp(42px, 6vw, 76px);
}

@media (min-width: 993px) {
  .site-navbar .nav-link {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 14px;
    font-weight: 600;
  }

  .site-navbar .navbar-cta {
    min-height: 48px;
    padding-inline: 25px;
    font-size: 14px;
    font-weight: 700;
  }
}

@media (max-width: 992px) {
  .platform-hero {
    min-height: calc(100svh - var(--navbar-height-tablet));
    margin-top: var(--navbar-height-tablet);
    padding-top: 64px;
    padding-bottom: 68px;
  }

  @supports (min-height: 100dvh) {
    .platform-hero {
      min-height: calc(100dvh - var(--navbar-height-tablet));
    }
  }
}

@media (max-width: 640px) {
  .platform-hero {
    min-height: calc(100svh - var(--navbar-height-mobile));
    margin-top: var(--navbar-height-mobile);
    padding-top: 42px;
    padding-bottom: 52px;
  }

  @supports (min-height: 100dvh) {
    .platform-hero {
      min-height: calc(100dvh - var(--navbar-height-mobile));
    }
  }

  .platform-hero > .container {
    padding-inline: 16px;
  }

  .platform-hero span.inline-flex {
    max-width: 100%;
    padding: 9px 14px;
    gap: 8px;
    font-size: 0.69rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: normal;
  }

  .platform-hero h1 {
    margin-top: 24px;
    font-size: clamp(2.15rem, 11.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .platform-hero p {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .platform-hero .mt-12.flex {
    width: 100%;
    margin-top: 30px;
    gap: 14px;
  }

  .platform-hero .mt-12.flex > a {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 13px 18px;
  }

  .platform-hero .grid {
    width: 100%;
    margin-top: 42px;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-hero .grid > div {
    width: 100%;
    min-width: 0;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .platform-hero .grid h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 380px) {
  .platform-hero > .container {
    padding-inline: 12px;
  }

  .platform-hero h1 {
    font-size: clamp(2rem, 11vw, 2.45rem);
  }

  .platform-hero p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}
/*=====================================================================
STEP-03 END
======================================================================*/
/*=====================================================================
STEP-04
TRUSTED SECTION • PLATFORM OVERVIEW
======================================================================*/

/*========================
TRUSTED SECTION
========================*/

section.bg-white.py-20 {
  position: relative;

  background: #ffffff;
}

section.bg-white.py-20 .section-title {
  margin-top: 1.5rem;
}

section.bg-white.py-20 .section-description {
  max-width: 860px;
}

/*========================
INDUSTRY GRID
========================*/

section.bg-white.py-20 .grid {
  margin-top: 5rem;

  gap: 2rem;
}

section.bg-white.py-20 .glass-card {
  padding: 2.2rem;

  text-align: center;

  border: 1px solid var(--border);

  border-radius: 28px;

  transition: var(--transition);

  background: #fff;
}

section.bg-white.py-20 .glass-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

section.bg-white.py-20 .glass-card i {
  font-size: 3.25rem;

  transition: 0.35s;
}

section.bg-white.py-20 .glass-card:hover i {
  transform: scale(1.12);
}

section.bg-white.py-20 .glass-card h3 {
  margin-top: 1.5rem;

  font-size: 1.2rem;

  font-weight: 700;

  color: var(--dark);
}

/*========================
PLATFORM OVERVIEW
========================*/

section#ecosystem {
  background: #f8fafc;

  position: relative;

  overflow: hidden;
}

section#ecosystem::before {
  content: "";

  position: absolute;

  top: -140px;

  right: -140px;

  width: 340px;

  height: 340px;

  border-radius: 50%;

  background: rgba(38, 40, 113, 0.05);

  filter: blur(30px);
}

section#ecosystem::after {
  content: "";

  position: absolute;

  left: -120px;

  bottom: -120px;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: rgba(108, 56, 94, 0.05);

  filter: blur(28px);
}

section#ecosystem .container {
  position: relative;

  z-index: 2;
}

section#ecosystem .section-title {
  margin-top: 1.5rem;
}

section#ecosystem .section-description {
  max-width: 900px;
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  section.bg-white.py-20 .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section.bg-white.py-20 .glass-card {
    padding: 1.8rem;
  }

  section.bg-white.py-20 .glass-card i {
    font-size: 2.7rem;
  }

  section.bg-white.py-20 .glass-card h3 {
    font-size: 1.05rem;
  }
}

/*=====================================================================
STEP-04 END
======================================================================*/
/*=====================================================================
STEP-05
CONNECTED PRODUCT ECOSYSTEM
======================================================================*/

/*========================
PRODUCT SECTION
========================*/

section.py-28.bg-white {
  position: relative;

  background: #ffffff;

  overflow: hidden;
}

section.py-28.bg-white .section-title {
  margin-top: 1.5rem;
}

section.py-28.bg-white .section-description {
  max-width: 860px;
}
/*========================
PRODUCT GRID
========================*/

section.py-28.bg-white .grid {
  margin-top: 5rem;

  gap: 2rem;
}
/*========================
PRODUCT CARD
========================*/

section.py-28.bg-white .glass-card {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 28px;

  padding: 2.3rem;

  transition: all 0.35s ease;

  box-shadow: var(--shadow-sm);
}

section.py-28.bg-white .glass-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

section.py-28.bg-white .glass-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}
/*========================
ICON BOX
========================*/

/* section.py-28.bg-white .glass-card > div:first-child {
  width: 72px;

  height: 72px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.35s ease;
}

section.py-28.bg-white .glass-card:hover > div:first-child {
  transform: rotate(-8deg) scale(1.08);
}

section.py-28.bg-white .glass-card i {
  font-size: 2rem;
} */
/*=====================================================================
STEP-05 END
======================================================================*/
/*=====================================================================
STEP-06
ENTERPRISE FEATURES
======================================================================*/

/*========================
FEATURE SECTION
========================*/

section.py-28.bg-slate-50 {
  position: relative;

  background: #f8fafc;

  overflow: hidden;
}

section.py-28.bg-slate-50::before {
  content: "";

  position: absolute;

  top: -180px;

  right: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(38, 40, 113, 0.05);

  filter: blur(45px);
}

section.py-28.bg-slate-50::after {
  content: "";

  position: absolute;

  left: -160px;

  bottom: -160px;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: rgba(108, 56, 94, 0.05);

  filter: blur(40px);
}

section.py-28.bg-slate-50 .container {
  position: relative;

  z-index: 2;
}
/*========================
FEATURE GRID
========================*/

section.py-28.bg-slate-50 .grid {
  margin-top: 5rem;

  gap: 2rem;
}

/*========================
FEATURE CARD
========================*/

section.py-28.bg-slate-50 .glass-card {
  position: relative;

  overflow: hidden;

  padding: 2.3rem;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 28px;

  transition: all 0.35s ease;

  box-shadow: var(--shadow-sm);
}

section.py-28.bg-slate-50 .glass-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);

  border-color: rgba(38, 40, 113, 0.18);
}
/*========================
FEATURE ICON
========================*/

section.py-28.bg-slate-50 .glass-card i {
  font-size: 3rem;

  transition: 0.35s ease;
}

section.py-28.bg-slate-50 .glass-card:hover i {
  transform: scale(1.1) rotate(-6deg);
}

/*========================
FEATURE TITLE
========================*/

section.py-28.bg-slate-50 .glass-card h3 {
  margin-top: 1.6rem;

  font-size: 1.35rem;

  font-weight: 800;

  color: var(--dark);

  line-height: 1.3;
}

/*========================
FEATURE DESCRIPTION
========================*/

section.py-28.bg-slate-50 .glass-card p {
  margin-top: 1rem;

  color: var(--muted);

  line-height: 1.9;
}

/*========================
TOP BORDER EFFECT
========================*/

section.py-28.bg-slate-50 .glass-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

section.py-28.bg-slate-50 .glass-card:hover::before {
  transform: scaleX(1);
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  section.py-28.bg-slate-50 .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section.py-28.bg-slate-50 .glass-card {
    padding: 1.8rem;
  }

  section.py-28.bg-slate-50 .glass-card i {
    font-size: 2.4rem;
  }

  section.py-28.bg-slate-50 .glass-card h3 {
    font-size: 1.2rem;
  }
}

/*=====================================================================
STEP-06 END
======================================================================*/
/*=====================================================================
STEP-07
INDUSTRY SOLUTIONS
======================================================================*/

/* ========================
SECTION
========================*/

section.py-28.bg-white:last-of-type {
  position: relative;

  background: #ffffff;

  overflow: hidden;
}

section.py-28.bg-white:last-of-type .container {
  position: relative;

  z-index: 2;
}

/*========================
GRID
========================*/

section.py-28.bg-white:last-of-type .grid {
  margin-top: 5rem;

  gap: 2rem;
}
/*========================
INDUSTRY CARD
========================*/

section.py-28.bg-white:last-of-type .glass-card {
  position: relative;

  overflow: hidden;

  padding: 2.5rem;

  border: 1px solid var(--border);

  border-radius: 30px;

  background: #ffffff;

  transition: all 0.35s ease;

  box-shadow: var(--shadow-sm);
}

section.py-28.bg-white:last-of-type .glass-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}
/*========================
HEADER
========================*/

section.py-28.bg-white:last-of-type .glass-card .flex {
  align-items: center;

  gap: 18px;
}

/*========================
ICON BOX
========================*/

section.py-28.bg-white:last-of-type .glass-card .flex > div {
  width: 72px;

  height: 72px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.35s;
}

section.py-28.bg-white:last-of-type .glass-card:hover .flex > div {
  transform: rotate(-8deg) scale(1.08);
}

section.py-28.bg-white:last-of-type .glass-card .flex i {
  font-size: 2rem;
}

/*========================
TITLE
========================*/

section.py-28.bg-white:last-of-type .glass-card h3 {
  margin: 0;

  font-size: 1.6rem;

  font-weight: 800;

  color: var(--dark);
}

/*========================
LIST
========================*/

section.py-28.bg-white:last-of-type .glass-card ul {
  list-style: none;

  margin-top: 2rem;
}

section.py-28.bg-white:last-of-type .glass-card li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 1rem;

  color: var(--muted);

  line-height: 1.8;
}

section.py-28.bg-white:last-of-type .glass-card li:last-child {
  margin-bottom: 0;
}

section.py-28.bg-white:last-of-type .glass-card li i {
  margin-top: 4px;

  font-size: 0.95rem;
}

/*========================
TOP BORDER
========================*/

section.py-28.bg-white:last-of-type .glass-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

section.py-28.bg-white:last-of-type .glass-card:hover::before {
  transform: scaleX(1);
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  section.py-28.bg-white:last-of-type .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section.py-28.bg-white:last-of-type .glass-card {
    padding: 2rem;
  }

  section.py-28.bg-white:last-of-type .glass-card h3 {
    font-size: 1.35rem;
  }

  section.py-28.bg-white:last-of-type .glass-card .flex > div {
    width: 64px;

    height: 64px;
  }

  section.py-28.bg-white:last-of-type .glass-card .flex i {
    font-size: 1.7rem;
  }
}

/*=====================================================================
STEP-07 END
======================================================================*/

/*=====================================================================
STEP-08
PLATFORM ARCHITECTURE
======================================================================*/

/*========================
ARCHITECTURE SECTION
========================*/

section#architecture {
  position: relative;

  background: #f8fafc;

  overflow: hidden;
}

section#architecture .container {
  position: relative;

  z-index: 2;
}

section#architecture::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  top: -180px;

  border-radius: 50%;

  background: rgba(38, 40, 113, 0.05);

  filter: blur(45px);
}

section#architecture::after {
  content: "";

  position: absolute;

  width: 360px;

  height: 360px;

  left: -140px;

  bottom: -140px;

  border-radius: 50%;

  background: rgba(108, 56, 94, 0.05);

  filter: blur(40px);
}

/*========================
ARCHITECTURE GRID
========================*/

section#architecture .grid {
  margin-top: 5rem;

  gap: 2rem;
}

/*========================
LAYER CARD
========================*/

section#architecture .glass-card {
  position: relative;

  padding: 2.5rem;

  border-radius: 30px;

  background: #ffffff;

  border: 1px solid var(--border);

  transition: all 0.35s ease;

  overflow: hidden;

  box-shadow: var(--shadow-sm);
}

section#architecture .glass-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}

section#architecture .glass-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/*========================
LAYER ICON
========================*/

section#architecture .glass-card i {
  font-size: 3rem;

  transition: 0.35s;
}

section#architecture .glass-card:hover i {
  transform: scale(1.1);
}

/*========================
TITLE
========================*/

section#architecture .glass-card h3 {
  margin-top: 1.6rem;

  margin-bottom: 1rem;

  font-size: 1.45rem;

  font-weight: 800;

  color: var(--dark);
}

/*========================
DESCRIPTION
========================*/

section#architecture .glass-card p {
  color: var(--muted);

  line-height: 1.9;

  margin-bottom: 1.5rem;
}

/*========================
FEATURE LIST
========================*/

section#architecture ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

section#architecture li {
  display: flex;

  align-items: flex-start;

  gap: 0.8rem;

  margin-bottom: 0.9rem;

  color: var(--muted);

  line-height: 1.8;
}

section#architecture li:last-child {
  margin-bottom: 0;
}

section#architecture li i {
  font-size: 0.9rem;

  margin-top: 0.35rem;

  color: var(--primary);
}

/*========================
CONNECTOR LINE
========================*/

section#architecture .glass-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 30px;

  border: 1px solid transparent;

  transition: 0.35s;
}

section#architecture .glass-card:hover::after {
  border-color: rgba(38, 40, 113, 0.12);
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  section#architecture .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section#architecture .glass-card {
    padding: 2rem;
  }

  section#architecture .glass-card i {
    font-size: 2.4rem;
  }

  section#architecture .glass-card h3 {
    font-size: 1.25rem;
  }
}

/*=====================================================================
STEP-08 END
======================================================================*/
/*=====================================================================
STEP-09
TIMELINE • KPI • CTA • FOOTER
======================================================================*/

/*========================
IMPLEMENTATION TIMELINE
========================*/

section#timeline {
  position: relative;

  background: #ffffff;
}

section#timeline .timeline {
  position: relative;

  max-width: 1100px;

  margin: 5rem auto 0;
}

section#timeline .timeline::before {
  content: "";

  position: absolute;

  left: 32px;

  top: 0;

  bottom: 0;

  width: 4px;

  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

section#timeline .timeline-item {
  position: relative;

  margin-bottom: 3rem;

  padding-left: 90px;
}

section#timeline .timeline-item:last-child {
  margin-bottom: 0;
}

section#timeline .timeline-dot {
  position: absolute;

  left: 16px;

  top: 8px;

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: var(--primary);

  border: 5px solid #fff;

  box-shadow: 0 8px 20px rgba(38, 40, 113, 0.2);
}

section#timeline .timeline-card {
  background: #fff;

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 2rem;

  transition: var(--transition);

  box-shadow: var(--shadow-sm);
}

section#timeline .timeline-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

/*========================
KPI SECTION
========================*/

section#kpi {
  background: #f8fafc;
}

section#kpi .kpi-card {
  background: #fff;

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 2rem;

  text-align: center;

  transition: var(--transition);
}

section#kpi .kpi-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

section#kpi .kpi-number {
  font-size: 3rem;

  font-weight: 900;

  color: var(--primary);

  line-height: 1;
}

section#kpi .kpi-title {
  margin-top: 1rem;

  color: var(--muted);

  font-weight: 600;
}

/*========================
FINAL CTA
========================*/

section#final-cta {
  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;
}

section#final-cta::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.14),
    transparent 60%
  );
}

section#final-cta .container {
  position: relative;

  z-index: 2;
}

section#final-cta h2 {
  color: #fff;
}

section#final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

section#final-cta .btn-light {
  background: #fff;

  color: var(--primary);
}

section#final-cta .btn-light:hover {
  transform: translateY(-3px);
}

/*========================
FOOTER
========================*/

footer {
  background: #0f172a;

  color: #cbd5e1;

  padding: 5rem 0 2rem;
}

footer h3,
footer h4 {
  color: #fff;
}

footer a {
  color: #cbd5e1;

  transition: 0.3s;
}

footer a:hover {
  color: #fff;
}

footer .footer-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

footer .footer-bottom {
  margin-top: 3rem;

  padding-top: 2rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;

  color: #94a3b8;
}

/*========================
BACK TO TOP
========================*/

.back-to-top {
  position: fixed;

  right: 24px;

  bottom: 24px;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: var(--shadow-lg);

  transition: 0.3s;

  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-5px);

  background: var(--secondary);
}

/*========================
RESPONSIVE
========================*/

@media (max-width: 991px) {
  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section#timeline .timeline::before {
    left: 20px;
  }

  section#timeline .timeline-item {
    padding-left: 60px;
  }

  section#timeline .timeline-dot {
    left: 5px;
  }

  footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
header .btn,
header a[href="../contact.html"] {
  white-space: nowrap;
}

header .hidden.xl\:flex:last-child a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 52px;
}

header .hidden.xl\:flex:last-child a:last-child {
  min-width: 170px;
  height: 52px;
}
/* NEW CORRECTIONS */
/* =====================================================
   ZENITH PLATFORM HERO — FINAL VERTICAL POSITION FIX
===================================================== */

/* Desktop */
@media (min-width: 993px) {
  section.platform-hero.relative.overflow-hidden.bg-gradient-to-br {
    min-height: calc(100svh - var(--navbar-height-desktop)) !important;
    margin-top: var(--navbar-height-desktop) !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
    align-items: flex-start !important;
  }

  .platform-hero #platformHeroTitle {
    margin-top: 20px !important;
  }

  .platform-hero .platform-hero-description {
    margin-top: 18px !important;
  }

  .platform-hero .platform-hero-actions {
    margin-top: 24px !important;
  }

  section.platform-hero #platformHeroStats {
    margin-top: 34px !important;
  }

  section.platform-hero #platformHeroStats > div {
    padding: 24px 20px !important;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 992px) {
  section.platform-hero.relative.overflow-hidden.bg-gradient-to-br {
    margin-top: var(--navbar-height-tablet) !important;
    padding-top: 38px !important;
    padding-bottom: 42px !important;
  }

  section.platform-hero #platformHeroStats {
    margin-top: 32px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section.platform-hero.relative.overflow-hidden.bg-gradient-to-br {
    margin-top: var(--navbar-height-mobile) !important;
    padding-top: 30px !important;
    padding-bottom: 38px !important;
  }

  section.platform-hero #platformHeroStats {
    margin-top: 30px !important;
  }
}



/* Move the whole Hero content slightly upward */
@media (min-width: 993px) {
  .platform-hero > .container,
  .platform-hero > div.relative.z-10 {
    transform: translateY(-25px) !important;
  }
}

/*=====================================================================
END OF CSS
======================================================================*/
