/**
 * Theme: EazyApps - Midnight Ink & Amber
* Glassmorphism + Gradient design system
* Typography: Inter (body) + Sora (headings)
*/

/*--------------------------------------------------------------
# CSS Custom Properties (Design Tokens)
--------------------------------------------------------------*/
:root {
  /* Primary Amber Scale */
  --clr-primary-50:  #fff7ed;
  --clr-primary-100: #ffedd5;
  --clr-primary-200: #fed7aa;
  --clr-primary-300: #fdba74;
  --clr-primary-400: #fb923c;
  --clr-primary-500: #f59e0b;
  --clr-primary-600: #d97706;
  --clr-primary-700: #b45309;
  --clr-primary-800: #92400e;
  --clr-primary-900: #78350f;
  --clr-primary-950: #451a03;

  /* Warm Stone Neutral Scale */
  --clr-stone-50:  #fafaf9;
  --clr-stone-100: #f5f5f4;
  --clr-stone-200: #e7e5e4;
  --clr-stone-300: #d6d3d1;
  --clr-stone-400: #a8a29e;
  --clr-stone-500: #78716c;
  --clr-stone-600: #57534e;
  --clr-stone-700: #44403c;
  --clr-stone-800: #292524;
  --clr-stone-900: #1c1917;
  --clr-stone-950: #0c0a09;

  /* Semantic Colors */
  --clr-success: #22c55e;
  --clr-error:   #ef4444;
  --clr-warning: #f59e0b;

  /* Surface Colors */
  --clr-surface:      var(--clr-stone-50);
  --clr-surface-alt:  var(--clr-stone-100);
  --clr-surface-card: #ffffff;

  /* Glass Tokens */
  --glass-bg:         rgba(255, 255, 255, 0.55);
  --glass-bg-heavy:   rgba(255, 255, 255, 0.72);
  --glass-bg-dark:    rgba(15, 23, 42, 0.72);
  --glass-border:     rgba(255, 255, 255, 0.25);
  --glass-border-dark:rgba(255, 255, 255, 0.08);
  --glass-blur:       blur(16px);
  --glass-blur-heavy: blur(24px);

  /* Typography */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3rem;

  /* Shadows (warm, layered) */
  --shadow-sm:  0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md:  0 4px 6px -1px rgba(28, 25, 23, 0.07), 0 2px 4px -2px rgba(28, 25, 23, 0.05);
  --shadow-lg:  0 10px 15px -3px rgba(28, 25, 23, 0.08), 0 4px 6px -4px rgba(28, 25, 23, 0.05);
  --shadow-xl:  0 20px 25px -5px rgba(28, 25, 23, 0.1), 0 8px 10px -6px rgba(28, 25, 23, 0.05);
  --shadow-glow-teal: 0 0 30px rgba(245, 158, 11, 0.24);

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-pill:  9999px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.3s;

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #020617 0%, #0f172a 48%, #111827 100%);
  --gradient-cta:     linear-gradient(135deg, #111827 0%, #1e293b 100%);
  --gradient-primary: linear-gradient(135deg, var(--clr-primary-500) 0%, var(--clr-primary-600) 100%);
  --gradient-teal-text: linear-gradient(135deg, var(--clr-primary-300), var(--clr-primary-600));
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-body);
  color: var(--clr-stone-700);
  background: var(--clr-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--clr-primary-600);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--clr-primary-500);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-stone-900);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--clr-stone-900);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--clr-stone-800);
  border-top-color: var(--clr-primary-500);
  border-bottom-color: var(--clr-primary-500);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--gradient-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-md);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--clr-primary-400);
  color: #fff;
  box-shadow: var(--shadow-glow-teal);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header (Glassmorphism)
--------------------------------------------------------------*/
#header {
  transition: all 0.5s var(--ease-out);
  z-index: 997;
  padding: 15px 0;
  background: transparent;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--glass-bg-dark);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  backdrop-filter: var(--glass-blur-heavy);
  border-bottom: 1px solid var(--glass-border-dark);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
#navbar.navbar {
  padding: 0;
  flex-wrap: nowrap;
}

#navbar > ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color var(--duration) var(--ease-out);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--clr-primary-400);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14px;
  border: none;
  font-weight: 600;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-teal);
  transition: all var(--duration) var(--ease-out);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--glass-bg-heavy);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
  transition: 0.3s;
  border-radius: var(--radius-md);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: var(--clr-stone-700);
  justify-content: flex-start;
  gap: 6px;
}

.navbar .dropdown ul a i.bi-chevron-down,
.navbar .dropdown ul a i.bi-chevron-right {
  font-size: 12px;
}

.navbar .dropdown ul a i.bi-people-fill {
  font-size: 14px;
  margin-right: 6px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--clr-primary-600);
  background: rgba(245, 158, 11, 0.08);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation (Glassmorphism)
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  #navbar > ul {
    display: none;
  }

  #header .container {
    flex-wrap: nowrap;
  }
}

/* When mobile nav is open, the HEADER becomes the full-screen overlay.
   This avoids the backdrop-filter containing-block trap. */
body.mobile-nav-active #header {
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  backdrop-filter: var(--glass-blur-heavy);
}

/* Make nav static so the ul positions relative to the header */
#navbar.navbar-mobile {
  position: static;
}

#navbar.navbar-mobile > ul {
  display: block;
  position: absolute;
  top: 70px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  padding: 16px 0;
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 14px 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.navbar-mobile > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-mobile > ul > li:last-child {
  border-bottom: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--clr-primary-400);
  background: rgba(245, 158, 11, 0.08);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0;
  padding: 8px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border-radius: 0;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 14px 24px 14px 40px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.navbar-mobile .dropdown ul a i.bi-chevron-down,
.navbar-mobile .dropdown ul a i.bi-chevron-right {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a i.bi-people-fill {
  font-size: 16px;
  margin-right: 8px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--clr-primary-400);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* Dropdown chevron rotation in mobile */
.navbar-mobile .dropdown > a i.bi-chevron-down {
  transition: transform 0.3s var(--ease-out);
  margin-left: auto;
}

.navbar-mobile .dropdown > .dropdown-active + a i.bi-chevron-down,
.navbar-mobile .dropdown.open > a i.bi-chevron-down {
  transform: rotate(180deg);
}

/* Body scroll lock when mobile menu is open */
body.mobile-nav-active {
  overflow: hidden;
}

/* Brand adjustments for small screens */
@media (max-width: 575px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .brand-text strong {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  transform: translate(-50%, -30%);
  pointer-events: none;
  z-index: 0;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  color: #fff;
  font-family: var(--font-heading);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.5s var(--ease-out);
  margin: 10px 0 0 0;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-teal);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: var(--clr-primary-400);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero::after {
    display: none;
  }

  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--clr-stone-100);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--clr-stone-900);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--clr-stone-300);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  bottom: 0;
  left: calc(50% - 20px);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s var(--ease-out);
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--clr-stone-900);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--clr-primary-600);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  line-height: 1;
  color: var(--clr-primary-600);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--clr-primary-600);
}

.about .content .btn-learn-more:hover {
  background: var(--clr-primary-600);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-glow-teal);
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--clr-stone-900);
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: var(--clr-stone-500);
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--duration) var(--ease-out);
}

.why-us .accordion-list li:hover {
  box-shadow: var(--shadow-md);
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--clr-primary-500);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: var(--clr-stone-700);
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--clr-primary-600);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--clr-stone-900);
  font-family: var(--font-heading);
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--clr-primary-500);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--clr-stone-900);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: var(--clr-stone-200);
  height: 10px;
  border-radius: 5px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background: var(--gradient-primary);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Services (Glassmorphism Cards)
--------------------------------------------------------------*/
.services .icon-box {
  padding: 50px 30px;
  transition: all 0.4s var(--ease-out);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: var(--clr-primary-500);
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: var(--clr-stone-900);
  transition: color var(--duration) var(--ease-out);
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow-teal), var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.2);
}

.services .icon-box:hover h4 a {
  color: var(--clr-primary-600);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--gradient-cta);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: var(--radius-pill);
  transition: all 0.5s var(--ease-out);
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--clr-primary-500);
  border: 2px solid var(--clr-primary-500);
  box-shadow: var(--shadow-glow-teal);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--clr-stone-700);
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--clr-primary-500);
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: var(--glass-bg-dark);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  padding: 10px 15px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--clr-primary-400);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--clr-primary-500);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--clr-primary-500);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-stone-200);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: var(--shadow-md);
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out);
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--clr-stone-900);
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--clr-stone-300);
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  background: var(--clr-stone-100);
}

.team .member .social a i {
  color: var(--clr-stone-700);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: var(--clr-primary-500);
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
}

.pricing .box:hover {
  box-shadow: var(--shadow-lg);
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--clr-stone-900);
}

.pricing h4 {
  font-size: 48px;
  color: var(--clr-stone-900);
  font-weight: 400;
  font-family: var(--font-heading);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: var(--clr-primary-500);
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: var(--clr-success);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: var(--radius-pill);
  color: var(--clr-primary-600);
  transition: all 0.3s var(--ease-out);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-heading);
  border: 1px solid var(--clr-primary-500);
}

.pricing .buy-btn:hover {
  background: var(--clr-primary-500);
  color: #fff;
  box-shadow: var(--shadow-glow-teal);
}

.pricing .featured {
  border-top-color: var(--clr-primary-500);
}

.pricing .featured .buy-btn {
  background: var(--clr-primary-500);
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: var(--clr-primary-600);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  position: relative;
  transition: box-shadow var(--duration) var(--ease-out);
}

.faq .faq-list li:hover {
  box-shadow: var(--shadow-md);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--clr-primary-500);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--clr-stone-900);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--clr-primary-600);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact (Glassmorphism)
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--clr-primary-500);
  border-bottom: 3px solid var(--clr-primary-500);
  padding: 30px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  width: 100%;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.contact .info i {
  font-size: 20px;
  color: var(--clr-primary-500);
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-out);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--clr-stone-900);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--clr-stone-500);
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--clr-stone-700);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s var(--ease-out);
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--clr-primary-500);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--clr-primary-500);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--clr-primary-500);
  border-bottom: 3px solid var(--clr-primary-500);
  padding: 30px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: var(--clr-error);
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: var(--clr-error);
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--clr-success);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--clr-success);
  border-top-color: var(--clr-stone-200);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-size: 14px;
  border: 1px solid var(--clr-stone-300);
  transition: border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--clr-primary-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-primary);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: all 0.4s var(--ease-out);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-teal);
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--clr-stone-100);
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--clr-stone-900);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--clr-stone-500);
  content: "/";
}

/*--------------------------------------------------------------
# Product Showcase (Home - Glassmorphism)
--------------------------------------------------------------*/
.product-showcase {
  padding: 60px 0;
}

.product-showcase-content {
  padding-right: 30px;
}

.product-showcase-label {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: var(--clr-primary-600);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-showcase-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-stone-900);
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-showcase-content p {
  color: var(--clr-stone-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-showcase-highlights {
  margin-bottom: 28px;
}

.product-showcase-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.product-showcase-highlight-item i {
  color: var(--clr-success);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.product-showcase-highlight-item strong {
  display: block;
  font-size: 15px;
  color: var(--clr-stone-900);
  margin-bottom: 2px;
}

.product-showcase-highlight-item span {
  font-size: 13px;
  color: var(--clr-stone-500);
  line-height: 1.5;
}

.product-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-glow-teal);
}

.product-showcase-btn:hover {
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
  color: #fff;
  gap: 12px;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

.product-showcase-feature-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.product-showcase-feature-card:hover {
  background: #fff;
  border-color: var(--clr-primary-500);
  box-shadow: var(--shadow-glow-teal), var(--shadow-md);
  transform: translateY(-3px);
}

.product-showcase-feature-card i {
  font-size: 30px;
  color: var(--clr-primary-500);
  display: block;
  margin-bottom: 10px;
}

.product-showcase-feature-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 4px;
}

.product-showcase-feature-card p {
  font-size: 13px;
  color: var(--clr-stone-500);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .product-showcase-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .product-showcase-content h3 {
    font-size: 22px;
  }

  .product-showcase-feature-card {
    padding: 18px 12px;
  }
}

/*--------------------------------------------------------------
# Tech Stack (Home - Glassmorphism)
--------------------------------------------------------------*/
.tech-stack {
  padding: 60px 0;
}

.tech-stack-category {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.tech-stack-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.15);
}

.tech-stack-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.tech-stack-category-icon i {
  font-size: 24px;
  color: var(--clr-primary-500);
}

.tech-stack-category h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 14px;
}

.tech-stack-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tech-stack-tags span {
  display: inline-block;
  background: var(--clr-stone-100);
  color: var(--clr-stone-600);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.tech-stack-tags span:hover {
  background: var(--clr-primary-500);
  color: #fff;
}

@media (max-width: 575px) {
  .tech-stack-category {
    padding: 20px 15px;
  }

  .tech-stack-tags span {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/*--------------------------------------------------------------
# Careers Page
--------------------------------------------------------------*/
.careers-hero {
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -30%);
  pointer-events: none;
}

.careers-hero h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
}

.careers-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  position: relative;
}

.careers-hero .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}

.careers-hero .breadcrumb-item a {
  color: var(--clr-primary-400);
}

.careers-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.careers-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.careers .career-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 30px;
  border-left: 4px solid var(--clr-primary-500);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.careers .career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.careers .career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.careers .career-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 0;
}

.careers .career-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.careers .career-badge-fulltime {
  background: rgba(34, 197, 94, 0.12);
  color: var(--clr-success);
}

.careers .career-badge-parttime {
  background: rgba(0, 123, 255, 0.12);
  color: #007bff;
}

.careers .career-badge-contract {
  background: rgba(253, 126, 20, 0.12);
  color: #fd7e14;
}

.careers .career-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--clr-stone-500);
}

.careers .career-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.careers .career-card-meta i {
  color: var(--clr-primary-500);
  font-size: 16px;
}

.careers .career-card-desc {
  color: var(--clr-stone-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.careers .career-toggle-btn {
  border-color: var(--clr-primary-600);
  color: var(--clr-primary-600);
  font-size: 14px;
  transition: all 0.3s var(--ease-out);
  border-radius: var(--radius-sm);
}

.careers .career-toggle-btn:hover {
  background: var(--clr-primary-600);
  color: #fff;
}

.careers .career-detail-content {
  border-top: 1px solid var(--clr-stone-200);
  margin-top: 20px;
  padding-top: 20px;
}

.careers .career-detail-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 10px;
  margin-top: 20px;
}

.careers .career-detail-content h5:first-child {
  margin-top: 0;
}

.careers .career-detail-content p {
  font-size: 14px;
  color: var(--clr-stone-600);
  line-height: 1.7;
}

.careers .career-apply-cta {
  background: var(--clr-stone-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.careers .career-apply-cta p {
  margin-bottom: 12px;
  color: var(--clr-stone-900);
  font-weight: 500;
}

.careers .career-apply-cta .btn-primary {
  background: var(--clr-primary-600);
  border-color: var(--clr-primary-600);
}

.careers .career-apply-cta .btn-primary:hover {
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
  box-shadow: var(--shadow-glow-teal);
}

.careers .careers-empty {
  text-align: center;
  padding: 60px 20px;
}

.careers .careers-empty i {
  font-size: 64px;
  color: var(--clr-primary-500);
  margin-bottom: 20px;
  display: block;
}

.careers .careers-empty h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 15px;
}

.careers .careers-empty p {
  color: var(--clr-stone-500);
  max-width: 500px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

.careers .careers-empty .btn-primary {
  background: var(--clr-primary-600);
  border-color: var(--clr-primary-600);
}

.careers .careers-empty .btn-primary:hover {
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 100px 0 40px;
  }

  .careers-hero h2 {
    font-size: 26px;
  }

  .careers .career-card-header {
    flex-direction: column;
  }

  .careers .career-card-meta {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .careers .career-card {
    padding: 20px;
  }

  .careers .career-card-title {
    font-size: 18px;
  }

  .careers .career-card-meta {
    flex-direction: column;
    gap: 6px;
  }
}

/*--------------------------------------------------------------
# Product Page (HRM - Glassmorphism)
--------------------------------------------------------------*/
.product-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  transform: translate(20%, -20%);
  pointer-events: none;
}

.product-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.product-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  position: relative;
}

.product-hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: var(--clr-primary-400);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  position: relative;
}

.product-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

.btn-product-primary {
  display: inline-block;
  padding: 12px 36px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-glow-teal);
}

.btn-product-primary:hover {
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
  color: #fff;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
}

.btn-product-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-out);
}

.btn-product-outline:hover {
  border-color: var(--clr-primary-400);
  background: rgba(245, 158, 11, 0.1);
  color: #fff;
}

.product-hero-visual {
  padding: 30px;
  position: relative;
}

.product-hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 380px;
  margin: 0 auto;
}

.product-hero-icon-item {
  background: var(--glass-bg-dark);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.product-hero-icon-item:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
}

.product-hero-icon-item i {
  font-size: 32px;
  color: var(--clr-primary-400);
  display: block;
  margin-bottom: 8px;
}

.product-hero-icon-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

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

.product-stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.product-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.product-stat-icon i {
  font-size: 26px;
  color: var(--clr-primary-500);
}

.product-stat-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-stone-900);
  margin-bottom: 5px;
}

.product-stat-card p {
  color: var(--clr-stone-500);
  font-size: 15px;
  margin-bottom: 0;
}

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

.product-feature-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius-md);
  height: 100%;
  transition: all 0.3s var(--ease-out);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
}

.product-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--clr-primary-500);
}

.product-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-feature-icon i {
  font-size: 28px;
  color: var(--clr-primary-500);
}

.product-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 12px;
}

.product-feature-card p {
  font-size: 14px;
  color: var(--clr-stone-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.product-modules {
  padding: 60px 0;
}

.product-module-group {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--clr-primary-500);
}

.product-module-group h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-module-group h5 i {
  color: var(--clr-primary-500);
  font-size: 20px;
}

.product-module-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-module-group ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--clr-stone-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-module-group ul li i {
  color: var(--clr-success);
  font-size: 16px;
  flex-shrink: 0;
}

.product-benefits {
  padding: 60px 0;
}

.product-benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.product-benefit-item i {
  font-size: 40px;
  color: var(--clr-primary-500);
  margin-bottom: 18px;
  display: block;
}

.product-benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-stone-900);
  margin-bottom: 12px;
}

.product-benefit-item p {
  font-size: 14px;
  color: var(--clr-stone-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.product-tech {
  padding: 60px 0;
}

.product-tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  transition: all 0.3s var(--ease-out);
}

.product-tech-item:hover {
  border-color: var(--clr-primary-500);
  box-shadow: var(--shadow-glow-teal);
}

.product-tech-item i {
  font-size: 22px;
  color: var(--clr-primary-500);
}

.product-tech-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-stone-900);
}

@media (max-width: 991px) {
  .product-hero {
    padding: 120px 0 60px;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero-visual {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 100px 0 50px;
    text-align: center;
  }

  .product-hero h1 {
    font-size: 28px;
  }

  .product-hero-actions {
    justify-content: center;
  }

  .product-hero-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 300px;
  }

  .product-hero-icon-item {
    padding: 16px 8px;
  }

  .product-hero-icon-item i {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .product-hero h1 {
    font-size: 24px;
  }

  .product-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .product-hero-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tech-grid {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--clr-stone-900);
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--clr-stone-50);
  text-align: center;
  font-size: 15px;
  color: var(--clr-stone-700);
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--clr-stone-900);
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--gradient-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-teal);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: linear-gradient(135deg, var(--clr-primary-400) 0%, var(--clr-primary-500) 100%);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--clr-stone-50);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-stone-900);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-heading);
  color: var(--clr-stone-600);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--clr-stone-900);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--clr-primary-500);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--clr-stone-500);
  transition: color 0.3s var(--ease-out);
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--clr-primary-600);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--clr-primary-600);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s var(--ease-out);
}

#footer .footer-top .social-links a:hover {
  background: var(--clr-primary-500);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-glow-teal);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--clr-stone-400);
  border-top: 1px solid var(--clr-stone-800);
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
  color: var(--clr-primary-500);
}

#footer .credits a:hover {
  color: var(--clr-primary-400);
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: var(--glass-bg-dark);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border-dark);
}

.glass-heavy {
  background: var(--glass-bg-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
}

.gradient-text {
  background: var(--gradient-teal-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shadow-glow {
  box-shadow: var(--shadow-glow-teal);
}

/*--------------------------------------------------------------
# 2026 Redesign Overrides
--------------------------------------------------------------*/
body {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f4f7f8 48%, #ffffff 100%);
  color: var(--clr-stone-700);
}

section {
  padding: 88px 0;
}

.section-surface {
  background: rgba(255, 255, 255, 0.72);
}

.section-surface-alt {
  background: linear-gradient(180deg, rgba(244, 247, 248, 0.85) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.section-title-narrow {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-title-narrow h2 {
  text-transform: none;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title-narrow p {
  font-size: 1.05rem;
  color: var(--clr-stone-500);
}

.section-eyebrow,
.hero-kicker,
.product-summary-label,
.dashboard-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--clr-primary-600);
}

.site-header {
  padding: 14px 0;
  background: rgba(10, 20, 20, 0.52);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.header-scrolled,
.site-header.header-inner-pages {
  background: rgba(12, 18, 18, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.site-header .container {
  gap: 12px;
}

.site-header .navbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.site-header .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-400), var(--clr-primary-700));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(245, 158, 11, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-header .navbar a,
.site-header .navbar a:focus {
  color: rgba(255, 255, 255, 0.82);
}

.site-header .navbar a:hover,
.site-header .navbar .active,
.site-header .navbar .active:focus,
.site-header .navbar li:hover > a {
  color: var(--clr-primary-300);
}

.site-header .navbar .dropdown ul a {
  color: var(--clr-stone-700);
}

#hero.home-hero,
#hero.product-hero-modern,
.careers-hero-modern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.20), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(15, 118, 110, 0.20), transparent 26%),
    linear-gradient(135deg, #0b1b1b 0%, #102a2a 48%, #081012 100%);
}

#hero.home-hero {
  height: auto;
  min-height: 100vh;
  padding: 140px 0 92px;
}

#hero.home-hero .container {
  padding-top: 0;
}

#hero.home-hero h1,
.product-hero-modern h1,
.careers-hero-modern h1 {
  color: #fff;
  font-size: clamp(2.55rem, 4.6vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  max-width: 13ch;
}

#hero.home-hero .hero-lead,
.product-hero-modern .hero-lead,
.careers-hero-modern p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 58ch;
}

.hero-actions,
.product-hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9999px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--clr-primary-400), var(--clr-primary-700));
  color: #fff;
  box-shadow: 0 18px 30px rgba(245, 158, 11, 0.20);
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-hero-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.hero-support {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}

.hero-support span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.hero-support i {
  color: var(--clr-primary-300);
  font-size: 1rem;
}

.hero-chip-row span,
.tech-pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-metric,
.stat-card,
.feature-card,
.service-card,
.product-summary,
.product-dashboard,
.proof-card,
.tech-card,
.contact-panel,
.contact-form-panel,
.career-card,
.value-card,
.module-card,
.careers-empty {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.hero-metric {
  padding: 18px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

#hero.home-hero .hero-metric strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

#hero.home-hero .hero-metric span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-metric strong,
.stat-card strong,
.dashboard-card strong,
.product-dashboard-footer strong {
  display: block;
  color: var(--clr-stone-900);
}

.hero-metric span,
.stat-card span,
.dashboard-card span,
.product-dashboard-footer span {
  color: var(--clr-stone-500);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-visual-card-main {
  padding: 14px 16px;
  background: rgba(11, 18, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.hero-visual-card-main img {
  display: block;
  border-radius: 22px;
}

.hero-mini-panel {
  position: absolute;
  right: -4px;
  bottom: -22px;
  width: min(374px, 92%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-mini-panel__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-mini-panel__header span {
  color: var(--clr-primary-300);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-mini-panel__header strong {
  color: #fff;
  font-size: 1.05rem;
}

.hero-mini-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-panel__grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.hero-mini-panel__grid i {
  color: var(--clr-primary-300);
  font-size: 1rem;
}

.hero-mini-panel__grid span {
  font-size: 0.88rem;
  line-height: 1.2;
}

.feature-card,
.about-modern .feature-card,
.services-modern .service-card,
.tech-card,
.value-card {
  padding: 28px;
  height: 100%;
}

.feature-card-icon,
.service-card-icon,
.tech-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.10);
  color: var(--clr-primary-600);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.feature-card h4,
.service-card h4,
.proof-card h4,
.value-card h4,
.module-card h5,
.product-summary h3,
.contact-card strong {
  letter-spacing: -0.02em;
}

.feature-card p,
.service-card p,
.proof-card p,
.value-card p,
.module-card li,
.contact-card strong,
.contact-card span {
  color: var(--clr-stone-600);
}

.about-band {
  margin-top: 26px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.about-band strong,
.about-band p {
  display: block;
}

.about-band p {
  margin: 4px 0 0;
  color: var(--clr-stone-600);
}

.about-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-band-tags span,
.dashboard-pill {
  border-radius: 9999px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.10);
  color: var(--clr-primary-700);
  font-weight: 700;
  font-size: 0.82rem;
}

.service-card ul,
.module-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.module-card li {
  padding: 7px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.product-showcase-modern .product-summary {
  padding: 30px;
}

.product-summary h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 14px 0;
}

.product-summary-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.product-summary-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-summary-points i {
  color: var(--clr-primary-600);
  font-size: 1.15rem;
  margin-top: 2px;
}

.product-dashboard {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,252,252,0.92));
}

.product-dashboard-top,
.product-dashboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.product-dashboard-top strong {
  display: block;
  font-size: 1.25rem;
  color: var(--clr-stone-900);
}

.product-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.dashboard-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dashboard-card i {
  display: inline-flex;
  font-size: 1.35rem;
  color: var(--clr-primary-600);
  margin-bottom: 12px;
}

.proof-card {
  padding: 28px;
  position: relative;
  min-height: 100%;
}

.proof-card .proof-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clr-primary-600);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-card i {
  font-size: 1.6rem;
  color: var(--clr-primary-600);
  margin-bottom: 16px;
}

.delivery-strip {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.delivery-step {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.06);
}

.delivery-step strong,
.delivery-step span {
  display: block;
}

.delivery-step span {
  color: var(--clr-stone-600);
  font-size: 0.94rem;
}

.tech-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-card {
  display: flex;
  flex-direction: column;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  padding: 7px 12px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--clr-stone-700);
  font-size: 0.84rem;
  font-weight: 600;
}

.cta-modern .cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d1f20 0%, #14383a 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.cta-panel h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 60ch;
}

.contact-panel,
.contact-form-panel {
  padding: 28px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.10);
  color: var(--clr-primary-700);
  font-size: 1.1rem;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card strong {
  font-size: 0.98rem;
  color: var(--clr-stone-800);
}

.contact-map iframe {
  border-radius: 20px;
  overflow: hidden;
}

.contact-form label {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form .form-control {
  border-radius: 16px;
  border-color: rgba(15, 23, 42, 0.10);
  padding: 12px 14px;
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.35);
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  border-radius: 14px;
}

.site-footer {
  background: #f8f9fa;
  color: rgba(0, 0, 0, 0.72);
}

.site-footer .footer-top {
  background: transparent;
  padding: 64px 0 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  flex: 0 0 auto;
}

.footer-brand strong,
.footer-links h4,
.footer-contact h4 {
  color: #1a1a2e;
}

.site-footer a {
  color: rgba(0, 0, 0, 0.72);
}

.site-footer a:hover {
  color: var(--clr-primary-300);
}

.site-footer .social-links a {
  background: rgba(0, 0, 0, 0.08);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.careers-hero-modern {
  padding: 140px 0 90px;
}

.career-hero-stats {
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-stat {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.career-stat strong,
.career-stat span {
  display: block;
}

.career-stat span {
  color: rgba(255, 255, 255, 0.70);
}

.career-card {
  padding: 28px;
}

.career-card-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--clr-primary-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-card-title {
  margin: 0;
  color: var(--clr-stone-900);
}

.career-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.career-badge {
  white-space: nowrap;
}

.career-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.career-card-desc {
  margin-bottom: 16px;
}

.careers-values {
  padding-top: 0;
}

.value-card {
  text-align: center;
}

.value-card i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.10);
  color: var(--clr-primary-600);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.product-hero-modern {
  padding: 140px 0 90px;
}

.product-dashboard-hero {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  backdrop-filter: blur(18px);
}

.product-dashboard-hero .dashboard-label,
.product-dashboard-hero .dashboard-pill,
.product-dashboard-hero .product-dashboard-top strong,
.product-dashboard-hero .dashboard-card strong,
.product-dashboard-hero .product-dashboard-footer strong {
  color: #fff;
}

.product-dashboard-hero .dashboard-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.product-dashboard-hero .dashboard-card span,
.product-dashboard-hero .product-dashboard-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.product-hero-modern .hero-metric strong {
  color: #fff;
}

.product-hero-modern .hero-metric span {
  color: rgba(255, 255, 255, 0.76);
}

.stat-card {
  padding: 24px;
  height: 100%;
}

.stat-card i {
  display: inline-flex;
  font-size: 1.4rem;
  color: var(--clr-primary-600);
  margin-bottom: 14px;
}

.module-card {
  padding: 24px;
}

@media (max-width: 991px) {
  .hero-metrics,
  .career-hero-stats,
  .delivery-strip,
  .product-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-chip-row {
    justify-content: center;
  }

  .cta-modern .cta-panel,
  .about-band,
  .product-dashboard-top,
  .product-dashboard-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-mini-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  #hero.home-hero,
  .product-hero-modern,
  .careers-hero-modern {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .hero-metrics,
  .career-hero-stats,
  .delivery-strip,
  .product-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .product-hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .section-title-narrow {
    margin-bottom: 28px;
  }

  .about-band,
  .cta-modern .cta-panel {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .section-title-narrow h2 {
    font-size: 2rem;
  }

  .section-title-narrow p {
    font-size: 0.98rem;
  }

  .hero-chip-row span,
  .tech-pill-row span {
    width: 100%;
    justify-content: center;
  }

  #hero.home-hero h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .hero-support {
    gap: 10px 16px;
  }

  .hero-mini-panel__grid {
    grid-template-columns: 1fr;
  }

  .hero-metric,
  .stat-card,
  .feature-card,
  .service-card,
  .product-summary,
  .product-dashboard,
  .proof-card,
  .tech-card,
  .contact-panel,
  .contact-form-panel,
  .career-card,
  .value-card,
  .module-card,
  .careers-empty {
    border-radius: 20px;
  }

  .hero-metric,
  .stat-card,
  .feature-card,
  .service-card,
  .proof-card,
  .tech-card,
  .value-card,
  .module-card {
    padding: 20px;
  }

  .brand-text small {
    display: none;
  }

  .product-summary,
  .product-dashboard,
  .contact-panel,
  .contact-form-panel {
    padding: 20px;
  }

  .career-card {
    padding: 20px;
  }

  .cta-modern .cta-panel {
    padding: 18px;
  }
}
