/**
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: 22 June 2026
* WhatsApp: +923434680430
* Author: Md Waqas
*/

/* Local font files should be placed in assets/fonts/ */
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Neue Haas Grotesk Display Pro"),
       local("Neue Haas Grotesk Display Pro Regular"),
       local("HelveticaNeue"),
       local("Helvetica Neue");
}

:root {
  --default-font: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk", "Inter", sans-serif;
  --nav-font: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk", "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  /* --background-color: #eff7ff;  */
  --default-color: #161b2f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101424; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #45B8CA; /* Accent color used for buttons, links, and other strong focal elements */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #161b2f;  /* The default color of the main navmenu links */
  --nav-hover-color: #2fb9d6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #161b2f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2fb9d6; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f9fcfe6b;
  color: var(--default-color);
  background-color: var(--background-color);
  border-bottom: 1px solid rgba(76, 82, 96, 0.18);
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  padding: 18px 28px;
}

.scrolled .header .header-container {
  padding: 18px 28px;
}

.header .logo {
  line-height: 1;
}

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

.header .header-actions {
  align-items: center;
  gap: 12px;
}

.header .header-action-form {
  margin: 0;
}

.header .btn-signin,
.header .btn-signin:focus,
.header .btn-getstarted,
.header .btn-getstarted:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid #737987;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.header .btn-signin,
.header .btn-signin:focus {
  color: #21253f;
  background: transparent;
}

.header .btn-signin:hover,
.header .btn-signin:focus:hover {
  color: #21253f;
  background: rgba(255, 255, 255, 0.8);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #44c1d7 0%, #2e93ba 100%);
  border-color: transparent;
  gap: 8px;
  margin: 0;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(62, 181, 210, 0.28);
}

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

  .header .header-container {
    padding: 14px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #4a4d57;
    padding: 18px 16px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 16px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1c223d;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #1c223d;
    font-size: 28px;
    line-height: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 64px 0 auto 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 18px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #1c223d;
    position: absolute;
    font-size: 32px;
    top: 18px;
    right: 18px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    /* overflow: hidden; */
    inset: 0;
    background: rgba(246, 250, 252, 0.9);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Entry Paths Section
--------------------------------------------------------------*/
.entry-paths {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 0 !important;
}

.entry-paths-intro {
  margin-bottom: 58px;
}

.entry-paths-kicker {
  color: #555555;
  font-family: "Azeret Mono", monospace;
  font-size: 20px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.entry-paths-intro h2 {
  margin: 0;
  color: #05070d;
  font-size: clamp(3.1rem, 7vw, 5.15rem);
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.entry-paths-intro h2 span {
  color: var(--accent-color);
}

.entry-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(97, 115, 129, 0.28);
  border-radius: 24px;
  overflow: hidden;
  background: #edf6fb;
}

.entry-path-card {
  min-height: 235px;
  padding: 22px 24px 24px;
  background: #f7fcff;
  display: flex;
  flex-direction: column;
}

.entry-path-card + .entry-path-card {
  border-left: 1px solid rgba(97, 115, 129, 0.2);
}

.entry-path-card-featured {
  background: #48b5cb;
  color: #ffffff;
}

.entry-path-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.entry-path-number,
.entry-path-arrow {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.entry-path-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.entry-path-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

.entry-path-card h3 {
  margin: 0 0 12px;
  color: #070a12;
  font-size: clamp(1.95rem, 2.4vw, 2.35rem);
  font-weight: 900;
}

.entry-path-card p {
  max-width: 320px;
  margin: 0 0 24px;
  color: #5b6470;
  font-size: 0.98rem;
  line-height: 1.42;
}

.entry-path-card-featured h3,
.entry-path-card-featured p,
.entry-path-card-featured .entry-path-number,
.entry-path-card-featured .entry-path-arrow {
  color: #ffffff;
}

.entry-path-button {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #151a31;
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.entry-path-button:hover {
  color: #ffffff;
  background: #252d4e;
  transform: translateY(-1px);
}

.entry-path-button-light {
  background: #ffffff;
  color: #161b2f;
}

.entry-path-button-light:hover {
  color: #161b2f;
  background: rgba(255, 255, 255, 0.9);
}

.entry-paths-divider {
  margin-top: 80px;
  border-bottom: 1px solid rgba(97, 115, 129, 0.28);
}

.entry-paths-shell {
  padding-top: 10px;
}

.entry-paths-shell .entry-paths-intro {
  margin-bottom: 64px;
}

.entry-paths-shell .entry-paths-kicker {
  color: #5f6573;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.entry-paths-shell .entry-paths-intro h2 {
 margin: 0;
    color: #05070d;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.07;
    text-transform: uppercase;
}

.entry-paths-shell .entry-paths-intro h2 span {
  color: var(--accent-color);
  font-style: italic;
}

.entry-paths-shell .entry-paths-intro p {
  margin: 18px 0 0;
    color: #5a6170;
    font-size: 22px;
    line-height: 1.2;
}

.entry-paths-feature {
  display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
    gap: 62px;
    align-items: center;
    padding-top: 0px;
}

.entry-paths-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.entry-path-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(97, 115, 129, 0.16);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  color: #101424;
  text-decoration: none;
  text-align: left;
  appearance: none;
  cursor: pointer;
  will-change: transform, background-color, box-shadow, border-color;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.entry-path-item:first-child {
  border-top: 1px solid rgba(97, 115, 129, 0.16);
}

.entry-path-item:hover {
  color: #101424;
  transform: translateY(-1px);
}

.entry-path-item-copy h3 {
  margin: 0 0 6px;
  color: #11182b;
  font-size: 1.48rem;
  font-weight: 800;
}

.entry-path-item-copy p {
  margin: 0;
  color: #66707b;
  font-size: 0.88rem;
  line-height: 1.3;
}

.entry-path-item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #11182b;
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.entry-path-item-active .entry-path-item-arrow,
.entry-path-item-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #49b8cf;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(73, 184, 207, 0.22);
}

.entry-path-item-active {
 min-height: 104px;
    padding: 20px 20px;
    border: 1px solid #dbe2ea;
    background: #edf9fd;
    border-radius: 0;
}

.entry-path-item-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(90deg, #42b7d5 0%, #8adeef 100%);
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
}

.entry-path-item-active.is-progress-running::after {
  opacity: 1;
  animation: entryTabProgress var(--entry-autoplay-duration, 4200ms) linear forwards;
}

.entry-path-item:focus-visible {
 border: none !important;
 outline: none !important;
}

.entry-path-item-active .entry-path-item-copy h3 {
  color: var(--accent-color);
}

.entry-paths-panel {
  background: #49b8cf;
  border-radius: 42px;
  padding: 38px;
  box-shadow: 0 26px 50px rgba(73, 184, 207, 0.22);
}

.entry-paths-panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 366px;
  padding: 34px 32px 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(16, 24, 43, 0.03);
  position: relative;
  overflow: hidden;
}

.entry-paths-panel-state {
  position: absolute;
  inset: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
  will-change: opacity, transform;
  transition:
    opacity 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.entry-paths-panel-state.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: entryPanelEnter 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.entry-paths-panel-kicker {
  color: #4f81d5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.entry-paths-panel-inner h3 {
  margin: 0 0 26px;
  color: #20253c;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.entry-paths-go {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  color: #49b8cf;
  font-size: 52px;
  font-weight: 900;
  line-height: 0.9;
}

.entry-paths-go span {
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1;
}

.entry-paths-panel-inner p {
  margin: auto 0 18px;
  color: #595c61;
  font-size: 12px;
  text-transform: uppercase;
}

.entry-paths-panel-button {
     display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #49b8cf;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 1px 2px #00000000;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
}

.entry-paths-panel-button:hover {
  color: #ffffff;
  background: #38a9c1;
  transform: translateY(-1px);
}

.entry-paths-feature.is-switching .entry-path-item-active {
  transform: translateX(10px) scale(1.01);
}

.entry-paths-feature.is-switching .entry-paths-panel {
  box-shadow: 0 30px 58px rgba(73, 184, 207, 0.26);
}

.entry-paths-feature.is-switching .entry-path-item-arrow-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(73, 184, 207, 0.28);
}

.entry-paths-panel-state.is-active .entry-paths-panel-kicker,
.entry-paths-panel-state.is-active h3,
.entry-paths-panel-state.is-active .entry-paths-go,
.entry-paths-panel-state.is-active p,
.entry-paths-panel-state.is-active .entry-paths-panel-button {
  animation: entryCopyRise 0.45s ease both;
}

.entry-paths-panel-state.is-active .entry-paths-panel-kicker {
  animation-delay: 0.05s;
}

.entry-paths-panel-state.is-active h3 {
  animation-delay: 0.1s;
}

.entry-paths-panel-state.is-active .entry-paths-go {
  animation-delay: 0.16s;
}

.entry-paths-panel-state.is-active p {
  animation-delay: 0.22s;
}

.entry-paths-panel-state.is-active .entry-paths-panel-button {
  animation-delay: 0.28s;
}

@keyframes entryPanelEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes entryCopyRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entryTabProgress {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-path-item,
  .entry-paths-panel-state,
  .entry-paths-panel-state.is-active .entry-paths-panel-kicker,
  .entry-paths-panel-state.is-active h3,
  .entry-paths-panel-state.is-active .entry-paths-go,
  .entry-paths-panel-state.is-active p,
  .entry-paths-panel-state.is-active .entry-paths-panel-button {
    animation: none !important;
    transition: none !important;
  }

  .entry-paths-feature.is-switching .entry-path-item-active,
  .entry-paths-feature.is-switching .entry-paths-panel {
    transform: none;
    box-shadow: inherit;
  }
}

/*--------------------------------------------------------------
# Workspace Section
--------------------------------------------------------------*/
.workspace-section {
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  padding-top: 84px;
}

.workspace-intro {
  margin-bottom: 52px;
  max-width: 820px;
}

.workspace-intro h2 {
 margin: 0;
    color: #05070d;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.07;
    text-transform: uppercase;
}

.workspace-intro h2 span {
  color: #49bdd6;
  font-style: italic;
}

.workspace-intro p {
 margin: 18px 0 0;
    color: #5a6170;
    font-size: 22px;
    line-height: 1.2;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(0, 1.03fr);
  gap: 28px;
  align-items: stretch;
}

.workspace-card {
  min-height: 250px;
  padding: 36px 38px 32px;
  background: #edf9fd;
  border: 1px solid rgba(152, 168, 182, 0.5);
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(20, 34, 49, 0.08);
}

.workspace-card-featured {
  grid-row: span 2;
  min-height: 522px;
  padding: 36px 36px 34px;
  background: linear-gradient(180deg, #f4f8fd 0%, #f2f6fb 100%);
}

.workspace-card-accent {
  background: #45B8CA;
  color: #081425;
}

.workspace-card-accent h3,
.workspace-card-accent p,
.workspace-card-accent .workspace-card-tag {
  color: #081425;
}

.workspace-card-topline,
.workspace-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.workspace-card-topline {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2c39;
  letter-spacing: 0.01em;
  justify-content: flex-start;
}

.workspace-live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  background: #49bdd6;
  margin-right: 12px;
}

.workspace-card-topline span:last-child {
  display: inline-flex;
  align-items: center;
}

.workspace-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4cb9d1 0%, #44b6cf 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: none;
}

.workspace-icon-light {
  background: #ffffff;
  color: #4cb9d1;
  box-shadow: none;
}

.workspace-icon i {
  font-size: 21px;
}

.workspace-card h3 {
 margin: 0 0 10px;
    color: #49bdd6;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.03;
    text-transform: uppercase;
}

.workspace-card p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.38;
}

.workspace-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b2a3a;
}

.workspace-card-tag span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #49bdd6;
}

.workspace-live-shell {
  margin-bottom: 24px;
  padding: 2px 0 10px;
}

.workspace-live-window {
  background: #101120;
  border: 1px solid rgba(60, 212, 235, 0.5);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(6, 15, 30, 0.28);
}

.workspace-live-header,
.workspace-live-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workspace-live-header {
  padding: 14px 16px;
  margin-bottom: 0;
  background: #1d1c2f;
}

.workspace-live-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.workspace-live-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.workspace-live-dots span:nth-child(1) {
  background: #ff5f56;
}

.workspace-live-dots span:nth-child(2) {
  background: #ffbd2f;
}

.workspace-live-dots span:nth-child(3) {
  background: #27c93f;
}

.workspace-live-status {
  color: #ffffff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.workspace-live-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: #2ce6a2;
  vertical-align: middle;
}

.workspace-live-lang {
  padding: 5px 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #111826;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
}

.workspace-live-lang span {
  color: #5d6b82;
}

.workspace-live-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  padding: 18px 18px 14px;
  background: #11111f;
}

.workspace-live-bubble {
  padding: 12px 14px 11px;
  border-radius: 9px;
  background: #f8f9fb;
  box-shadow: inset 0 0 0 1px rgba(227, 232, 237, 0.7);
}

.workspace-live-bubble-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.workspace-live-bubble-head strong {
  color: #6d5efc;
  font-size: 0.7rem;
  font-weight: 800;
}

.workspace-live-bubble-head span {
  color: #9da6b4;
  font-size: 0.54rem;
  font-weight: 700;
}

.workspace-live-bubble p {
  margin: 0;
  color: #111826;
  font-size: 0.78rem;
  line-height: 1.32;
}

.workspace-live-bubble-rtl {
  margin-top: 10px !important;
  padding-top: 7px;
  border-top: 1px solid rgba(216, 223, 229, 0.75);
  color: #49bdd6 !important;
  text-align: right;
}

.workspace-live-footer {
  padding: 12px 18px 16px;
  background: #11111f;
}

.workspace-live-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 42px;
  height: 20px;
}

.workspace-live-wave span {
  width: 2px;
  border-radius: 999px;
  background: #49bdd6;
  animation: workspaceWavePulse 1.2s ease-in-out infinite;
}

.workspace-live-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.workspace-live-wave span:nth-child(2) { height: 12px; animation-delay: 0.08s; }
.workspace-live-wave span:nth-child(3) { height: 8px; animation-delay: 0.16s; }
.workspace-live-wave span:nth-child(4) { height: 16px; animation-delay: 0.24s; }
.workspace-live-wave span:nth-child(5) { height: 9px; animation-delay: 0.32s; }
.workspace-live-wave span:nth-child(6) { height: 12px; animation-delay: 0.4s; }
.workspace-live-wave span:nth-child(7) { height: 7px; animation-delay: 0.48s; }

.workspace-live-button {
  border: 0;
  border-radius: 7px;
  padding: 8px 14px;
  background: #49bdd6;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.workspace-card-ai {
  padding-top: 36px;
}

.workspace-card-memory {
  padding-top: 38px;
}

.workspace-card-access,
.workspace-card-admin {
  min-height: 218px;
}

.workspace-card-memory h3,
.workspace-card-access h3,
.workspace-card-admin h3 {
  margin-top: 52px;
}

.workspace-card-memory p {
  max-width: 310px;
}

.workspace-card-featured h3 {
  max-width: 610px;
}

.workspace-card-featured p {
  max-width: 620px;
}

@keyframes workspaceWavePulse {
  0%,
  100% {
    transform: scaleY(0.75);
    opacity: 0.7;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

.workspace-divider {
  margin-top: 80px;
  border-bottom: 1px solid rgba(97, 115, 129, 0.28);
}

/*--------------------------------------------------------------
# Export Formats Section
--------------------------------------------------------------*/
.export-formats-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 82px 0 30px;
}

.export-formats-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.export-formats-copy {
  max-width: 560px;
}

.export-formats-copy h2 {
  margin: 0;
    color: #05070d;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.07;
    text-transform: uppercase;
}

.export-formats-copy h2 span {
  color: #49bdd6;
  font-style: italic;
}

.export-formats-copy p {
  max-width: 520px;
 margin: 18px 0 0;
    color: #5a6170;
    font-size: 22px;
    line-height: 1.2;
}

.export-formats-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 16px 28px;
  border-radius: 16px;
  background: #4cb9d1;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(45, 159, 184, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.export-formats-button:hover {
  color: #ffffff;
  background: #45b2cb;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(45, 159, 184, 0.28);
}

.export-formats-stack {
  position: relative;
  min-height: 430px;
  perspective: 1400px;
}

.export-card {
  position: absolute;
  width: 380px;
  height: 160px;
  padding: 26px 30px 24px;
  border-radius: 22px;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.16);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0.2s ease;
  overflow: hidden;
  cursor: default;
}

.export-card h3 {
 margin: 0;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 0.95;
    /* letter-spacing: -0.06em; */
    text-transform: uppercase;
}

.export-card p {
  margin: 32px 0 0;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase;
}

.export-card-glow {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.export-card-txt {
  top: 4px;
  right: 30px;
  z-index: 1;
  background: #ebf9fd;
  color: #49bdd6;
  transform: rotate(10deg);
}

.export-card-txt p {
  color: #656b73;
}

.export-card-pdf {
  top: 126px;
  right: 6px;
  z-index: 2;
  background: #4cb9d1;
  color: #ffffff;
  transform: rotate(-10deg);
}

.export-card-pdf p {
  color: rgba(255, 255, 255, 0.92);
}

.export-card-docx {
  top: 248px;
  right: 34px;
  z-index: 3;
  background: #1c1d34;
  color: #ffffff;
  transform: rotate(9deg);
}

.export-card-docx p {
  color: rgba(255, 255, 255, 0.92);
}

.export-card:hover {
  z-index: 10;
  box-shadow: 0 28px 44px rgba(15, 23, 42, 0.2);
}

.export-card-txt:hover {
 transform: translate(-18px, -22px) rotate(0deg) rotateY(0deg);
}

.export-card-pdf:hover {
  transform: translate(-20px, -18px) rotate(0deg) rotateY(0deg);
}

.export-card-docx:hover {
 transform: translate(-20px, -20px) rotate(0deg) rotateY(0deg);
}

/*--------------------------------------------------------------
# Voices Section
--------------------------------------------------------------*/
.voices-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 82px 0 84px;
}

.voices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: 52px;
  align-items: center;
}


.voices-copy h2 {
 margin: 0;
    color: #05070d;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.07;
    text-transform: uppercase;
}

.voices-copy h2 span {
  color: #49bdd6;
  font-style: italic;
}

.voices-copy p {
 margin: 18px 0 0;
    color: #5a6170;
    font-size: 22px;
    line-height: 1.2;
}

.voices-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(145, 151, 160, 0.4);
}

.voices-rating-score {
  color: #49bdd6;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 0.9;
}

.voices-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voices-rating-stars {
  display: flex;
  gap: 5px;
  color: #ff9f1a;
  font-size: 0.9rem;
}

.voices-rating-label {
  color: #69707b;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.voices-slider {
  min-width: 0;
}

.voices-slider-card {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  padding: 28px 34px 30px;
  border-radius: 26px;
  background: #4cb9d1;
  box-shadow: 0 18px 36px rgba(30, 64, 86, 0.12);
}

.voices-slider-orb {
  position: absolute;
  top: -56px;
  right: -42px;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.voices-slider-top {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.voices-slider-count {
  color: #111827;
  font-size: 0.95rem;
  line-height: 1;
}

.voices-slider-count span:nth-child(1) {
  font-weight: 800;
}

.voices-slider-count span:nth-child(2),
.voices-slider-count span:nth-child(3) {
  color: rgba(255, 255, 255, 0.65);
}

.voices-slider-viewport {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.voices-slider-track {
  position: relative;
  min-height: 258px;
}

.voices-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 258px;
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.voices-slide.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.voices-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.voices-slide-quote-mark {
  position: absolute;
  top: 74px;
  left: 34px;
  z-index: 2;
  color: #ffffff;
  font-size: 5.8rem;
  font-weight: 800;
  line-height: 0.7;
  pointer-events: none;
}

.voices-slide-quote {
  margin: 76px 0 0;
  max-width: 560px;
  color: #08111f;
  font-size: 24px;
  line-height: 1.32;
  font-style: italic;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.42s ease;
}

.voices-slide-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.42s ease;
}

.voices-slide.is-active .voices-slide-quote,
.voices-slide.is-active .voices-slide-footer {
  opacity: 1;
}

.voices-slide-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voices-slide-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #151c37;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.voices-slide-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.voices-slide-meta strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.voices-slide-meta span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.2;
}

.voices-slider-controls {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.voices-slider-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #151c37;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.voices-slider-button:hover {
  background: #0d142c;
  transform: translateY(-1px);
}

.voices-slider-button i {
  font-size: 0.92rem;
}

/*--------------------------------------------------------------
# Tools Section
--------------------------------------------------------------*/
.tools-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.tools-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 406px;
  padding: 64px 56px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(85, 200, 224, 0.2), transparent 26%),
    radial-gradient(circle at 24% 82%, rgba(61, 105, 220, 0.12), transparent 24%),
    linear-gradient(100deg, #1a2037 0%, #212843 55%, #2e5e73 100%);
  box-shadow: 0 28px 54px rgba(13, 19, 38, 0.16);
}

.tools-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 78px 100%,
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 78px;
  opacity: 0.52;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 16%, rgba(0, 0, 0, 0.9) 84%, transparent 100%);
}

.tools-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.tools-copy {
  position: relative;
  z-index: 1;
}

.tools-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
}

.tools-kicker {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(226, 235, 244, 0.82);
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 34px;
}

.tools-kicker::before,
.tools-kicker::after {
  content: "";
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.tools-copy h2 {
  margin: 0 0 18px;
  color: #eef4f9;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.tools-copy h2 span {
  color: #47c0db;
  font-style: italic;
}

.tools-copy p {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(226, 234, 244, 0.82);
  font-size: 1rem;
  line-height: 1.45;
}

.tools-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tools-button {
  min-height: 52px;
  min-width: 204px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.tools-button:hover {
  transform: translateY(-2px);
}

.tools-button-primary {
  background: linear-gradient(135deg, #39b1d3 0%, #4fc0dc 100%);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(66, 181, 214, 0.22);
}

.tools-button-primary:hover {
  background: linear-gradient(135deg, #2ca5c9 0%, #43b7d4 100%);
  color: #ffffff;
}

.tools-button-secondary {
  background: #ebf4fb;
  color: #1a233e;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.tools-button-secondary:hover {
  background: #dce8f5;
  color: #1a233e;
}

.tools-legacy {
  margin-top: 56px;
}

.tools-legacy-intro {
  margin-bottom: 52px;
}

.tools-legacy-intro h2 {
  margin: 0;
  color: #05070d;
  font-size: clamp(3.1rem, 7vw, 5.15rem);
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.tools-legacy-intro h2 span {
  color: #4dbbd4;
}

.tools-legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(97, 115, 129, 0.24);
  border-radius: 24px;
  overflow: hidden;
  background: #f7fcff;
}

.tools-legacy-card {
  min-height: 160px;
  padding: 26px 28px 24px;
  background: #f7fcff;
}

.tools-legacy-card + .tools-legacy-card {
  border-left: 1px solid rgba(97, 115, 129, 0.18);
}

.tools-legacy-index {
  display: inline-block;
  margin-bottom: 22px;
  color: #0c111d;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.tools-legacy-card h3 {
  margin: 0 0 10px;
  color: #070a12;
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  font-weight: 900;
}

.tools-legacy-card p {
  max-width: 300px;
  margin: 0;
  color: #5b6470;
  font-size: 0.97rem;
  line-height: 1.38;
}

@media (max-width: 991px) {
  .tools-shell {
    min-height: 0;
    padding: 48px 30px;
    border-radius: 28px;
  }

  .tools-copy h2 {
   font-size: 28px;
        line-height: 1.13;
  }

  .tools-legacy-grid {
    grid-template-columns: 1fr;
  }

  .tools-legacy-card + .tools-legacy-card {
    border-left: 0;
    border-top: 1px solid rgba(97, 115, 129, 0.18);
  }

  .tools-legacy-card p {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .tools-section {
    padding: 24px 0 18px;
  }

  .tools-shell {
    min-height: 0;
    padding: 38px 20px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 78% 8%, rgba(89, 192, 215, 0.16), transparent 28%),
      linear-gradient(115deg, #171d36 0%, #1f2747 52%, #2f6278 100%);
  }

  .tools-shell::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 54px 100%,
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 54px;
  }

  .tools-kicker {
    gap: 14px;
    margin-bottom: 22px;
    font-size: 0.9rem;
  }

  .tools-kicker::before,
  .tools-kicker::after {
    width: 40px;
  }

  .tools-copy p {
    font-size: 0.95rem;
  }

  .tools-actions {
    flex-direction: column;
  }

  .tools-button {
    width: 100%;
  }

  .tools-legacy {
    margin-top: 40px;
  }

  .tools-legacy-intro {
    margin-bottom: 36px;
  }

  .tools-legacy-intro h2 {
    font-size: 2.5rem;
    line-height: 0.98;
  }

  .tools-legacy-card {
    min-height: auto;
    padding: 22px 18px;
  }
}

@keyframes toolsGridDriftMobile {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 110px 0, 0 0;
  }
}

/*--------------------------------------------------------------
# Auth Modal
--------------------------------------------------------------*/
body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 20px 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-backdrop {
  position: absolute;
    inset: 0;
    background: #00000040;
    backdrop-filter: blur(10px);
}

.auth-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  z-index: 1;
}

.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg);
}

.auth-modal-shell {
  color: #ffffff;
}

.auth-modal-label {
  margin: 0 0 12px 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.auth-modal-panel {
  background: #ffffff;
  color: #111625;
  border-radius: 32px;
  padding: 30px 28px 30px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  background: #dff1f6;
  margin-bottom: 30px;
}

.auth-tab {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: #8ed2e3;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-tab.is-active {
  background: linear-gradient(135deg, #2aa5c3 0%, #248fb0 100%);
  box-shadow: 0 8px 18px rgba(41, 155, 186, 0.28);
}

.auth-view {
  display: none;
}

.auth-view.is-active {
  display: block;
}

.auth-copy {
  max-width: 680px;
  margin: 0 auto 28px;
}

.auth-copy h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
}

.auth-copy p {
  margin: 0;
  color: #5e6672;
  font-size: 0.92rem;
  line-height: 1.35;
}

.auth-form {
  max-width: 1000px;
  margin: 0 auto;
}

.auth-field {
  display: block;
  margin-bottom: 16px;
}

.auth-field > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 700;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid #c4ced9;
  border-radius: 16px;
  background: #edf4fb;
}

.auth-input-wrap i {
  color: #1c2136;
  font-size: 0.98rem;
}

.auth-input-wrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111625;
  font-size: 0.92rem;
}

.auth-input-wrap input::placeholder {
  color: #4d5360;
}

.auth-input-wrap select {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111625;
  font-size: 0.92rem;
  appearance: none;
}

.auth-input-wrap-highlight {
  border-color: #5fbfd7;
  box-shadow: inset 0 0 0 1px rgba(95, 191, 215, 0.25);
}

.auth-trailing-icon {
  margin-left: auto;
}

.auth-password-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #1c2136;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

.auth-password-toggle:hover {
  background: rgba(28, 33, 54, 0.08);
}

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

.auth-note {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  padding: 0 10px;
  margin: 6px 0 26px;
  border-radius: 10px;
  background: #e8f6fb;
  color: #5b6672;
  font-size: 0.8rem;
}

.auth-note-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #43b4d0;
  flex: 0 0 9px;
}

.auth-actions {
  display: flex;
  gap: 12px;
}

.auth-actions-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-submit,
.auth-secondary {
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.auth-submit {
  background: linear-gradient(135deg, #43b8d0 0%, #2699b7 100%);
  color: #ffffff;
}

.auth-secondary {
  background: #e8f3f8;
  color: #2a3145;
  border: 1px solid #c8dce5;
}

.auth-view[data-auth-view="signup"] .auth-actions {
  display: block;
}

.auth-view[data-auth-view="signup"] .auth-submit {
  width: 100%;
  min-height: 56px;
}

.auth-view[data-auth-view="signin"] .auth-copy,
.auth-view[data-auth-view="forgot"] .auth-copy {
  max-width: 620px;
}

@media (max-width: 991px) {
  .entry-paths-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .entry-paths-panel {
    padding: 24px;
  }

  .entry-paths-panel-inner {
    min-height: 0;
    padding: 24px 22px 22px;
    overflow: visible;
  }

  .entry-paths-panel-state {
    position: static;
    inset: auto;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-height: 0;
  }

  .entry-paths-panel-state.is-active {
    display: flex;
    animation: none;
  }

  .entry-paths {
    padding: 72px 0 30px;
  }

  .entry-paths-intro {
    margin-bottom: 42px;
  }

  .entry-paths-grid {
    grid-template-columns: 1fr;
  }

  .entry-path-card + .entry-path-card {
    border-left: 0;
    border-top: 1px solid rgba(97, 115, 129, 0.2);
  }

  .entry-path-card p {
    max-width: none;
  }

  .entry-paths-divider {
    margin-top: 40px;
  }

  .workspace-section {
    padding: 72px 0 18px;
  }

  .workspace-intro {
    margin-bottom: 42px;
  }

  .workspace-intro h2 {
    font-size: clamp(2.7rem, 7vw, 4rem);
  }

  .workspace-intro p {
    font-size: 1rem;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card {
    min-height: auto;
    padding: 28px 24px 24px;
  }

  .workspace-card-featured {
    grid-row: auto;
  }

  .workspace-card p {
    max-width: none;
  }

  .workspace-live-window {
    padding: 12px;
  }

  .workspace-live-status {
    font-size: 0.5rem;
  }

  .workspace-live-lang {
    font-size: 0.46rem;
  }

  .workspace-divider {
    margin-top: 40px;
  }

  .export-formats-section {
    padding: 72px 0 24px;
  }

  .export-formats-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .export-formats-copy {
    max-width: none;
  }

  .export-formats-copy h2 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .export-formats-stack {
    min-height: 400px;
  }

  .export-card {
    right: 0;
    width: 350px;
    height: 150px;
  }

  .voices-section {
    padding: 72px 0 42px;
  }

  .voices-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .voices-copy {
    max-width: none;
  }

  .voices-copy h2 {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .voices-slider-card {
    min-height: 0;
  }

  .voices-slide {
    min-height: 240px;
  }

  .auth-modal {
    padding: 12px 12px 18px;
  }

  .auth-modal-panel {
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .auth-grid-two,
  .auth-actions-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .entry-paths-intro h2 {
    font-size: 2.5rem;
    line-height: 0.98;
  }

  .entry-path-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .entry-path-card h3 {
    font-size: 1.85rem;
  }

  .entry-path-button {
    width: 100%;
    justify-content: center;
  }

  .workspace-intro h2 {
   font-size: 28px;
        line-height: 1.13;
  }

  .workspace-intro p {
    font-size: 0.96rem;
  }

  .workspace-card {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .workspace-icon {
    width: 48px;
    height: 48px;
  }

  .workspace-icon i {
    font-size: 20px;
  }

  .workspace-card h3 {
    font-size: 1.35rem;
  }

  .workspace-live-header,
  .workspace-live-footer {
    gap: 8px;
  }

  .workspace-live-status {
    font-size: 0.44rem;
  }

  .workspace-live-button {
    padding: 7px 10px;
    font-size: 0.5rem;
  }

  .export-formats-copy h2 {
   font-size: 28px;
        line-height: 1.13;
  }

  .export-formats-copy p {
    font-size: 0.98rem;
  }

  .export-formats-button {
    width: 100%;
    justify-content: center;
  }

  .export-formats-stack {
    min-height: 330px;
  }

  .export-card {
    width: 280px;
    height: 132px;
    padding: 18px 20px;
    border-radius: 18px;
  }

  .export-card h3 {
    font-size: 2.55rem;
  }

  .export-card p {
    margin-top: 20px;
    font-size: 0.62rem;
  }

  .export-card-txt {
    top: 8px;
    left: 20px;
  }

  .export-card-pdf {
    top: 98px;
    left: 20px;
  }

  .export-card-docx {
    top: 176px;
    left: 20px;
  }

  .voices-copy h2 {
    font-size: 28px;
        line-height: 1.13;
  }

  .voices-copy p {
    font-size: 0.98rem;
  }

  .voices-rating {
    gap: 14px;
  }

  .voices-rating-score {
    font-size: 3.2rem;
  }

  .voices-slider-card {
    padding: 22px 20px 22px;
    border-radius: 22px;
  }

  .voices-slide-quote-mark {
    font-size: 4.8rem;
  }

  .voices-slide-quote {
    font-size: 0.97rem;
  }

  .voices-slide-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .voices-slider-controls {
    align-self: flex-end;
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .auth-copy h2 {
    font-size: 1.8rem;
  }

  .auth-actions {
    flex-direction: column;
  }

  .auth-actions-split {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #dce6f2;
  background: #ffffff;
  font-size: 14px;
  position: relative;
  border-top: 0;
}

.footer .footer-top,
.footer .copyright {
  display: none;
}

.footer .footer-shell {
  position: relative;
  overflow: hidden;
  padding: 64px 62px 20px;
  border-radius: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(77, 191, 216, 0.12), transparent 24%),
    linear-gradient(110deg, #171f34 0%, #192238 46%, #18253f 100%);
  box-shadow: 0 24px 54px rgba(12, 18, 34, 0.18);
}

.footer .footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 77px 100%,
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 77px;
  opacity: 0.56;
  pointer-events: none;
}

.footer .footer-head,
.footer .footer-main,
.footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer .footer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer .footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(227, 236, 246, 0.78);
  font-size: 1rem;
}

.footer .footer-eyebrow-dot,
.footer .footer-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #45bfd7;
  position: relative;
  flex: 0 0 auto;
}

.footer .footer-eyebrow-dot::after,
.footer .footer-status-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: #45bfd7;
}

.footer .footer-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
}

.footer .footer-head h2 span {
  color: #45bfd7;
  font-style: italic;
}

.footer .footer-cta,
.footer .footer-subscribe-button {
  min-height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  background: linear-gradient(135deg, #38b2d2 0%, #49c1dc 100%);
  color: #12213a;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.footer .footer-cta i,
.footer .footer-subscribe-button i {
  font-size: 0.95rem;
  line-height: 1;
}

.footer .footer-cta:hover,
.footer .footer-subscribe-button:hover {
  color: #12213a;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(68, 186, 214, 0.22);
}

.footer .footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 46px 0 40px;
  background: rgba(227, 236, 246, 0.46);
}

.footer .footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr) minmax(280px, 1.15fr);
  gap: 34px;
}

.footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer .footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer .footer-logo img {
  height: 44px;
  width: auto;
}

.footer .footer-brand p {
  max-width: 280px;
  margin: 0;
  color: rgba(227, 236, 246, 0.86);
  font-size: 1rem;
  line-height: 1.32;
}

.footer .footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(227, 236, 246, 0.76);
  font-size: 0.9rem;
}

.footer .footer-links,
.footer .footer-updates {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .footer-links h3,
.footer .footer-updates h3 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 30px;
  color: rgba(227, 236, 246, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-links h3::before,
.footer .footer-updates h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: rgba(227, 236, 246, 0.46);
}

.footer .footer-links a {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
  padding: 10px 0;
}

.footer .footer-links a::before {
  content: "\2192";
  margin-right: 8px;
  color: rgba(227, 236, 246, 0.82);
}

.footer .footer-links a:hover {
  color: #45bfd7;
}

.footer .footer-updates-title {
  max-width: 320px;
  margin-bottom: 36px;
  color: #45bfd7;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.footer .footer-subscribe-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-subscribe-form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: #12213a;
  outline: 0;
  font-size: 0.92rem;
}

.footer .footer-subscribe-form input::placeholder {
  color: #4d5c76;
  text-transform: lowercase;
}

.footer .footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(227, 236, 246, 0.42);
}

.footer .footer-bottom p {
  margin: 0;
  color: rgba(227, 236, 246, 0.72);
  font-size: 0.9rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .footer {
    padding-top: 0;
  }

  .footer .footer-shell {
    padding: 40px 28px 20px;
    border-radius: 0 0 24px 24px;
  }

  .footer .footer-head,
  .footer .footer-main,
  .footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer .footer-head {
    justify-items: start;
  }

  .footer .footer-main {
    gap: 28px;
  }

  .footer .footer-subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer .footer-subscribe-button {
    width: 100%;
  }

  .footer .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer .footer-shell {
    padding: 34px 20px 18px;
  }

  .footer .footer-eyebrow {
    font-size: 0.92rem;
  }

  .footer .footer-head h2 {
   font-size: 28px;
        line-height: 1.13;
  }

  .footer .footer-divider {
    margin: 30px 0 28px;
  }

  .footer .footer-links a,
  .footer .footer-brand p,
  .footer .footer-updates-title,
  .footer .footer-bottom p {
    max-width: none;
  }
  .entry-paths-shell .entry-paths-intro p{
    margin: 10px 0 0;
    color: #5a6170;
    font-size: 16px;
    line-height: 1.2;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  padding: 158px 0 84px;
  background:
    linear-gradient(90deg, rgba(70, 186, 205, 0.15) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 76%, rgba(70, 186, 205, 0.22) 100%),
    linear-gradient(rgba(77, 90, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 90, 107, 0.08) 1px, transparent 1px),
    #fcfcfb;
  background-size: auto, 40px 40px, 40px 40px, auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(103, 195, 214, 0.18), transparent 28%),
    radial-gradient(circle at 94% 2%, rgba(103, 195, 214, 0.2), transparent 30%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-shell > .hero-content {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 242px);
}

.hero .hero-content {
  max-width: 650px;
  padding: 18px 0 30px;
}

.hero .hero-title {
 display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 28px 0 20px;
    color: #121724;
    font-size: 72px;
    font-weight: 800;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero .hero-title .accent-text {
  color: var(--accent-color);
  font-style: italic;
}

.hero .hero-content p {
  max-width: 610px;
  margin: 0 0 30px;
  color: #555555;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.5;
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid rgba(85, 85, 85, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #505767;
  font-family: var(--heading-font);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.hero .badge-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #2fb9d6;
  box-shadow: 0 0 0 0 rgba(47, 185, 214, 0.5);
  animation: heroBadgePulse 1.8s ease-out infinite;
}

@keyframes heroBadgePulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(47, 185, 214, 0.45);
  }

  45% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(47, 185, 214, 0);
  }

  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(47, 185, 214, 0);
  }
}

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

.hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  min-width: 230px;
  padding: 16px 28px;
  border-radius: 18px;
  font-family: var(--nav-font);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.hero .hero-btn-primary {
  color: #ffffff;
  background: #49b8cf;
  border: 1px solid #49b8cf;
  box-shadow: 0 14px 24px rgba(73, 184, 207, 0.18);
}

.hero .hero-btn-primary:hover {
  color: #ffffff;
  background: #38a9c1;
  border-color: #38a9c1;
  transform: translateY(-1px);
}

.hero .hero-btn-secondary {
  color: #141b32;
  background: rgba(243, 247, 251, 0.92);
  border: 1.5px solid #21253f;
}

.hero .hero-btn-secondary:hover {
  color: #141b32;
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-preview {
  display: flex;
  justify-content: flex-end;
}

.hero-preview-window {
  width: min(100%, 580px);
  min-height: 620px;
  border: 2px solid #3db9d2;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 60px rgba(73, 93, 118, 0.12);
  overflow: hidden;
  transform-origin: center;
}

.hero-preview-topbar {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(94, 109, 126, 0.18);
}

.hero-preview-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.hero-preview-dot-red {
  background: #ff5f57;
}

.hero-preview-dot-yellow {
  background: #febc2e;
}

.hero-preview-dot-green {
  background: #28c840;
}

.hero-preview-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #172038;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-preview-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1db16b;
  animation: heroStatusPulse 1.7s ease-in-out infinite;
}

.hero-preview-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #121a31;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-preview-toggle-separator {
  opacity: 0.75;
}

.hero-preview-body {
  padding: 22px 22px 18px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.hero-preview-card {
  margin-bottom: 14px;
  min-height: 136px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(97, 115, 129, 0.16);
  border-radius: 16px;
  background: #f5f8fc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hero-preview-card:last-child {
  margin-bottom: 0;
}

.hero-preview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-preview-speaker,
.hero-preview-time {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-preview-speaker-a {
  color: #7c69ff;
}

.hero-preview-speaker-b {
  color: #4d88ff;
}

.hero-preview-speaker-c {
  color: #0ca35a;
}

.hero-preview-time {
  color: #99a2af;
  min-width: 5.4ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hero-preview-source,
.hero-preview-target {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-preview-source {
  color: #101729;
}

.hero-preview-target {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(97, 115, 129, 0.12);
  color: #39acd0;
  text-align: right;
}

.hero-preview-card.is-live,
.hero-preview-card.is-active {
  border-color: rgba(61, 185, 210, 0.26);
  background: #f3f7fb;
  box-shadow: 0 14px 28px rgba(61, 185, 210, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
  animation: heroCardLift 0.45s ease-out;
}

.hero-preview-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(94, 109, 126, 0.14);
}

.hero-preview-stop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: #49b8cf;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.hero-preview-stop:hover {
  background: #38a9c1;
  transform: translateY(-1px);
}

.hero-preview-stop-indicator {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #ffffff;
}

.hero-preview.is-paused .hero-preview-status-dot {
  background: #7c8798;
  animation-play-state: paused;
}

.hero-preview.is-paused .hero-preview-card.is-active {
  border-color: rgba(124, 135, 152, 0.28);
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transform: none;
  animation: none;
}

.hero-preview.is-paused .hero-preview-stop {
  background: #121a31;
}

.hero-preview.is-paused .hero-preview-window {
  animation-play-state: paused;
}


@keyframes heroStatusPulse {
  0%,
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(29, 177, 107, 0.35);
  }

  50% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(29, 177, 107, 0);
  }
}

@keyframes heroCardLift {
  0% {
    transform: translateY(8px);
    opacity: 0.68;
  }

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

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 138px 0 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero .hero-content {
    max-width: 100%;
  }

  .hero .hero-content p {
    max-width: 100%;
  }

  .hero-preview {
    justify-content: center;
  }

  .hero .hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 122px 0 64px;
    background-size: auto, 28px 28px, 28px 28px, auto;
  }

  .hero .company-badge {
    font-size: 0.78rem;
    line-height: 1.3;
    padding: 9px 14px;
  }

  /* .hero .hero-title {
    gap: 2px;
    margin: 22px 0 18px;
   font-size: 35px;
        line-height: 1.13;
    line-height: 0.96;
  } */

  .hero .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-preview-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-preview-status {
    justify-content: flex-start;
  }

  .hero-preview-body,
  .hero-preview-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-preview-window {
    min-height: 0;
  }

  .hero-preview-body {
    min-height: 0;
  }

  .hero-preview-card {
    min-height: 122px;
    padding: 12px;
  }

  .hero-preview-card-head,
  .hero-preview-footer {
    gap: 8px;
  }

  .hero-preview-footer {
    justify-content: stretch;
  }

  .hero-preview-stop {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
  .hero-buttons form{
    width: 100%;
  }
  .hero .hero-title {
        gap: 2px;
        margin: 22px 0 18px;
        font-size: 35px;
        line-height: 1.2;
    }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Built For - Interactive Accordion Section
--------------------------------------------------------------*/
.built-for-interactive {
  padding-top: 80px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.entry-paths{
  padding-top: 80px !important;
}

.built-for-header {
  border-bottom: 1px solid rgba(22, 27, 47, 0.1);
  padding-bottom: 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.built-for-header::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.built-for-label {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #101424;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.built-for-tabs {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.built-for-tabs .tab-link {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #7d8290;
  text-transform: capitalize;
  padding: 5px 0;
  position: relative;
  transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.built-for-tabs .tab-link:hover {
  color: #101424;
}

.built-for-tabs .tab-link.active {
  color: #101424;
}

.built-for-tabs .tab-link::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #2cb9d6;
  transition: width 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.built-for-tabs .tab-link.active::after {
  width: 100%;
}

/* Accordion Layout */
.built-for-accordion-container {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 480px;
}

.accordion-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: flex 600ms cubic-bezier(0.25, 1, 0.5, 1), transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  transform: translate3d(0, 0, 0);
  will-change: flex;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Background Layers for Smooth GPU Cross-fade */
.card-bg-inactive {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #47b2c9 0%, #2ca8c2 100%);
  box-shadow: 0 10px 25px rgba(44, 168, 194, 0.15);
  border-radius: 28px;
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  z-index: 0;
}

.accordion-card:not(.active):hover .card-bg-inactive {
  box-shadow: 0 15px 30px rgba(44, 168, 194, 0.25);
}

.card-bg-active {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border: 1px solid rgba(22, 27, 47, 0.03);
  box-shadow: 0 2px 15px rgb(16 20 36 / 35%);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
  z-index: 0;
}

.accordion-card.active .card-bg-active {
  opacity: 1;
}

/* Inactive Collapsed Card Styling */
.accordion-card:not(.active) {
  flex: 0 0 100px;
  color: #ffffff;
  cursor: pointer;
}

.accordion-card:not(.active):hover {
  transform: translate3d(0, -4px, 0);
}

/* Active Expanded Card Styling */
.accordion-card.active {
  flex: 1;
  cursor: default;
  box-shadow: 0 2px 15px rgb(16 20 36 / 35%);
}

/* Desktop-specific layout rules (above 991px) */
@media (min-width: 992px) {
  .expanded-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 2;
  }

  .accordion-card.active .expanded-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .collapsed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    padding: 30px 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    pointer-events: auto;
    z-index: 2;
  }

  .accordion-card.active .collapsed-content {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
    pointer-events: none;
  }

  /* Breakpoint widths for expanded-content layout container to prevent text wrapping/layout shift */
  @media (min-width: 1400px) {
    .expanded-content {
      width: 960px !important;
    }
  }
  @media (min-width: 1200px) and (max-width: 1399px) {
    .expanded-content {
      width: 780px !important;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
    .expanded-content {
      width: 600px !important;
    }
  }

  /* Internal element animations inside expanded content */
  .expanded-content .card-meta,
  .expanded-content .card-text-col h3,
  .expanded-content .card-text-col p,
  .expanded-content .btn-explore-card,
  .expanded-content .card-icon-wrap-large {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
  }

  .accordion-card.active .expanded-content .card-meta,
  .accordion-card.active .expanded-content .card-text-col h3,
  .accordion-card.active .expanded-content .card-text-col p,
  .accordion-card.active .expanded-content .btn-explore-card,
  .accordion-card.active .expanded-content .card-icon-wrap-large {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Big Number translation on translateY only */
  .expanded-content .giant-number {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 400ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
  }

  .accordion-card.active .expanded-content .giant-number {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Stagger delays for premium motion feel */
  .accordion-card.active .expanded-content .card-meta {
    transition-delay: 50ms;
  }
  .accordion-card.active .expanded-content .giant-number {
    transition-delay: 100ms;
  }
  .accordion-card.active .expanded-content .card-text-col h3 {
    transition-delay: 120ms;
  }
  .accordion-card.active .expanded-content .card-text-col p {
    transition-delay: 160ms;
  }
  .accordion-card.active .expanded-content .btn-explore-card {
    transition-delay: 200ms;
  }
  .accordion-card.active .expanded-content .card-icon-wrap-large {
    transition-delay: 240ms;
  }
}

.accordion-card:not(.active) .collapsed-content .pill-num {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.9;
}

.accordion-card:not(.active) .collapsed-content .pill-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  margin: auto 0;
}

.accordion-card:not(.active) .collapsed-content .pill-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-card:not(.active) .collapsed-content .pill-icon-wrap i {
  color: #2ca8c2;
  font-size: 1.25rem;
}

.expanded-content .card-meta {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: #8c92a0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expanded-content .card-main {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 8px 0 0;
}

.expanded-content .card-main .giant-number {
  font-family: var(--heading-font);
  font-size: 9rem;
  font-weight: 900;
  color: #2ca8c2;
  line-height: 0.8;
  flex-shrink: 0;
}

.expanded-content .card-main .card-text-col {
  flex-grow: 1;
}

.expanded-content .card-main .card-text-col h3 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 800;
  color: #101424;
  margin-bottom: 12px;
}

.expanded-content .card-main .card-text-col h3 .dot {
  color: #2ca8c2;
}

.expanded-content .card-main .card-text-col p {
  color: #5a606d;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 24px;
}

.expanded-content .card-main .card-text-col .btn-explore-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #111625;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
              color 300ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expanded-content .card-main .card-text-col .btn-explore-card:hover {
  background-color: #2ca8c2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 168, 194, 0.25);
}

.expanded-content .accordion-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expanded-content .card-icon-wrap-large {
  width: 56px;
  height: 56px;
  background-color: #111625;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expanded-content .card-icon-wrap-large i {
  color: #ffffff;
  font-size: 1.5rem;
}

.expanded-content .accordion-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: rgba(44, 168, 194, 0.14);
}

.expanded-content .accordion-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, #2ca8c2 0%, #5ec6db 100%);
  will-change: transform;
}

.accordion-card.is-progress-running .expanded-content .accordion-progress-bar {
  animation: accordionProgressFill var(--accordion-autoplay-duration, 4.5s) linear forwards;
}

@keyframes accordionProgressFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Responsiveness for Accordion */
@media (max-width: 991px) {
  .built-for-header {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .built-for-accordion-container {
    flex-direction: column;
    min-height: auto;
    gap: 16px;
  }
  
  .accordion-card:not(.active) {
    flex: 0 0 auto;
    height: 72px;
    flex-direction: row;
    padding: 0 24px;
    box-shadow: none;
  }

  .card-bg-inactive {
    box-shadow: 0 5px 15px rgba(44, 168, 194, 0.1);
  }
  
  .accordion-card:not(.active):hover {
    transform: none;
  }
  
  .accordion-card:not(.active) .collapsed-content {
    display: flex !important;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transform: none;
  }
  
  .accordion-card:not(.active) .collapsed-content .pill-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0;
    font-size: 1.1rem;
  }
  
  .accordion-card:not(.active) .collapsed-content .pill-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  
  .accordion-card:not(.active) .collapsed-content .pill-icon-wrap i {
    font-size: 1.1rem;
  }
  
  .accordion-card.active {
    padding: 0;
    box-shadow: none;
  }
  
  .accordion-card.active .expanded-content {
    display: flex !important;
    position: relative;
    width: 100% !important;
    height: 100%;
    padding: 30px 24px;
    box-sizing: border-box;
    opacity: 1;
    transform: none;
    animation: mobileFadeIn 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  
  .accordion-card.active .expanded-content .card-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
  }

  .accordion-card.active .expanded-content .accordion-card-footer {
    gap: 0;
  }

  .accordion-card.active .expanded-content .accordion-progress {
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .accordion-card.active .expanded-content .card-main .giant-number {
    font-size: 6rem;
  }
  
  .accordion-card.active .expanded-content .card-main .card-text-col h3 {
    font-size: 1.8rem;
  }
  
  .accordion-card.active .expanded-content .card-main .card-text-col p {
    font-size: 0.95rem;
  }

  .accordion-card:not(.active) .expanded-content {
    display: none !important;
  }

  .accordion-card.active .collapsed-content {
    display: none !important;
  }
}

@keyframes mobileFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Built For - Slider Section
--------------------------------------------------------------*/
.built-for-slider {
  background-color: #eff7ff;
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(22, 27, 47, 0.05);
}

.built-for-slider .section-title-wrap {
  margin-bottom: 50px;
}

.built-for-slider .section-title-wrap h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: #101424;
  margin-bottom: 12px;
}

.built-for-slider .section-title-wrap h2 span {
  color: #2cb9d6;
}

.built-for-slider .section-title-wrap p {
  color: #5a606d;
  font-size: 1.1rem;
}

/* Slider Cards Styling */
.slider-feature-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(16, 20, 36, 0.04);
  border: 1px solid rgba(22, 27, 47, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  height: 100%;
}

.slider-feature-card .card-meta {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: #8c92a0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-feature-card .card-main {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 24px 0;
}

.slider-feature-card .card-main .giant-number {
  font-family: var(--heading-font);
  font-size: 7rem;
  font-weight: 900;
  color: #2ca8c2;
  line-height: 0.8;
  flex-shrink: 0;
}

.slider-feature-card .card-main .card-text-col {
  flex-grow: 1;
}

.slider-feature-card .card-main .card-text-col h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  color: #101424;
  margin-bottom: 8px;
}

.slider-feature-card .card-main .card-text-col h3 .dot {
  color: #2ca8c2;
}

.slider-feature-card .card-main .card-text-col p {
  color: #5a606d;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 20px;
}

.slider-feature-card .card-main .card-text-col .btn-explore-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #111625;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.slider-feature-card .card-main .card-text-col .btn-explore-card:hover {
  background-color: #2ca8c2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(44, 168, 194, 0.2);
}

.slider-feature-card .card-icon-wrap-large {
  width: 48px;
  height: 48px;
  background-color: #111625;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.slider-feature-card .card-icon-wrap-large i {
  color: #ffffff;
  font-size: 1.35rem;
}

/* Swiper Pagination/Navigation Styles */
.built-for-slider .swiper {
  padding-bottom: 60px;
}

.built-for-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
}

.built-for-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #2cb9d6;
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.built-for-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Slider Section Responsive Adjustment */
@media (max-width: 991px) {
  .built-for-slider {
    padding: 60px 0;
  }
  
  .built-for-slider .section-title-wrap h2 {
    font-size: 2rem;
  }
  
  .slider-feature-card {
    padding: 30px 24px;
    min-height: auto;
  }
  
  .slider-feature-card .card-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .slider-feature-card .card-main .giant-number {
    font-size: 5rem;
  }
}

/*--------------------------------------------------------------
# Built For - Infinite Scrolling Ticker Section
--------------------------------------------------------------*/
.built-for-ticker-section {
  background-color: #10192d;
  border-top: 1px solid rgba(16, 25, 45, 0.08);
  border-bottom: 1px solid rgba(16, 25, 45, 0.08);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.built-for-ticker-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: #10192d;
  padding: 0;
  box-shadow: 0 14px 34px rgba(9, 16, 35, 0.12);
}

.ticker-label-wrap {
  background-color: #10192d;
  padding-right: 22px;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}

.ticker-label-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: linear-gradient(to right, #10192d, transparent);
  pointer-events: none;
}

.ticker-label-wrap .static-label {
  font-family: var(--heading-font);
  font-size: 1.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0;
  white-space: nowrap;
}

.ticker-scroll-area {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-grow: 1;
  position: relative;
}

.ticker-scroll-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to left, #10192d, transparent);
  z-index: 15;
  pointer-events: none;
}

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

.ticker-scroll-track:hover {
  animation-play-state: paused;
}

.ticker-items-list {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 36px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.ticker-items-list li {
  position: relative;
  padding: 0 22px;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: default;
}

.ticker-items-list li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #24c7df;
  transform: translateY(-50%);
}

.ticker-items-list li:first-child::before {
  display: none;
}

.ticker-items-list li:hover {
  color: #dff9ff;
}

@keyframes ticker-scroll-animation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .built-for-ticker-section {
    padding: 16px 0;
  }

  .built-for-ticker-container {
    padding: 10px 0px;
  }

  .ticker-label-wrap .static-label {
    font-size: 1rem;
  }
  .entry-paths {
    padding-top: 50px !important;
}

  .ticker-items-list li {
    font-size: 0.98rem;
    padding: 0 16px;
  }

  .ticker-items-list {
    padding-right: 28px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page-hero {
  margin-top: 130px;
}

.contact-page-copy {
  max-width: 720px;
}

.contact-page-hero::before {
  opacity: 1;
}

.contact-page-hero .hero-content {
  padding: 8px 0 0;
}

.contact-page-hero .company-badge {
  display: inline-flex;
  margin-bottom: 10px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-color);
  font-family: "Azeret Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.contact-page-hero .company-badge .badge-dot {
  display: none;
}

.contact-page-hero .hero-content h1 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.03;
  text-transform: none;
}

.contact-page-hero .hero-content h1 .accent-text {
  color: var(--accent-color);
  font-style: normal;
}

.contact-page-hero .hero-content p {
  max-width: 760px;
  margin: 0 0 28px;
  color: #555555;
  font-size: 1.15rem;
  line-height: 1.45;
}

.contact-page-shell {
  padding-top: 0;
  background: radial-gradient(circle at top right, rgba(95, 191, 215, 0.2), transparent 28%),
    linear-gradient(135deg, #151c32 0%, #1d2642 58%, #295f78 100%);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
}

.contact-page-panel {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 52px 50px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 100%;
}

.contact-page-auth-copy {
  margin-bottom: 26px;
}

.contact-page-panel .auth-form,
.contact-page-side-copy .auth-form {
  max-width: none;
}

.contact-page-side-copy {
  display: flex;
  background: #fff;
  padding: 52px 48px;
  min-height: 100%;
}

.contact-page-story {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  max-width: 560px;
  min-height: 100%;
}

.contact-page-kicker {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-story h2 {
  margin: 0 0 18px;
  color: #070a12;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
}

.contact-page-story > p {
  margin: 0 0 28px;
  color: #555555;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-step {
display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 10px 10px;
}

.contact-step-icon {
 width: 55px;
    height: 55px;
    border-radius: 16px;
    background: #2a4460;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #378192;
}

.contact-step-icon i {
  font-size: 1.4rem;
}

.contact-step h3 {
  margin: 0 0 6px;
  color: #070a12;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-page-note {
  display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: auto;
    padding: 18px 18px 18px 16px;
    border-radius: 22px;
    background: #2a4460;
    border: 1px solid white;
}

.contact-page-note-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  color: #2a4460;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent-color), white 76%);
}

.contact-page-note-icon i {
  font-size: 1.5rem;
}

.contact-page-note p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  max-width: 620px;
  width: 100%;
}

.contact-form-heading {
  margin-bottom: 26px;
}

.contact-form-heading h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.7;
}

.contact-page-alert {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-page-alert-success {
  background: rgba(255, 255, 255, 0.12);
  color: #d1fadf;
  border: 1px solid rgba(110, 231, 183, 0.32);
}

.contact-page-alert-error {
  background: rgba(255, 255, 255, 0.12);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.contact-form-card .auth-field > span:first-child {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form-card .auth-input-wrap {
  min-height: 58px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 14px;
  background: #ffffff;
}

.contact-form-card .auth-input-wrap i {
  color: #5d6480;
}

.contact-form-card .auth-input-wrap input,
.contact-form-card .auth-input-wrap select,
.contact-form-card .auth-input-wrap textarea {
  color: #1d2939;
}

.contact-form-card .auth-input-wrap input::placeholder,
.contact-form-card .auth-input-wrap textarea::placeholder {
  color: #667085;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-color);
  flex: 0 0 18px;
}

.contact-consent span {
  display: block;
}

.contact-consent a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-consent a:hover {
  color: var(--accent-color);
}

.auth-input-wrap-textarea {
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 136px;
}

.auth-input-wrap-textarea textarea {
  flex: 1;
  min-width: 0;
  min-height: 96px;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: #111625;
  font-size: 0.92rem;
  line-height: 1.5;
}

.auth-input-wrap-textarea textarea::placeholder {
  color: #4d5360;
}

.contact-page-submit {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--default-color);
  font-size: 1.06rem;
  font-weight: 800;
  box-shadow: 0 3px 0 rgba(8, 15, 31, 0.35);
}

.contact-page-submit:hover {
  background: color-mix(in srgb, var(--accent-color), white 84%);
  color: var(--accent-color);
}

.contact-form-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-page-side {
  display: grid;
  gap: 18px;
}

.contact-page-darkcard {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(95, 191, 215, 0.2), transparent 28%),
    linear-gradient(135deg, #151c32 0%, #1d2642 58%, #295f78 100%);
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(17, 24, 39, 0.15);
}

.contact-page-darkcard .tools-kicker {
  margin-bottom: 16px;
  color: #8edcec;
}

.contact-page-darkcard h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.contact-page-darkcard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-page-stat {
  padding: 22px 24px;
  border: 1px solid rgba(83, 97, 118, 0.14);
  border-radius: 24px;
  background: #f7fbfe;
}

.contact-page-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #121828;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-stat span {
  color: #54606f;
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .contact-page-shell {
    background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), white 88%) 45%, var(--default-color) 45%, var(--default-color) 100%);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-side-copy,
  .contact-page-panel {
    padding: 34px 28px;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .entry-paths-shell .entry-paths-intro h2 {
   font-size: 28px;
        line-height: 1.13;
  }

  .entry-path-item {
    padding: 18px 0;
  }

  .entry-path-item-copy h3 {
    font-size: 1.2rem;
  }

  .entry-path-item-active {
    min-height: 90px;
    padding: 16px 16px;
  }

  .entry-paths-panel {
    padding: 18px;
  }

  .entry-paths-panel-inner {
    padding: 24px 18px 18px;
  }

  .entry-paths-panel-state {
    gap: 0;
  }

  .entry-paths-go {
    font-size: 3.5rem;
  }

  .contact-page-hero {
    padding-bottom: 18px;
  }

  .contact-page-hero .hero-content h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .contact-page-side-copy,
  .contact-page-panel {
    padding: 26px 20px;
  }

  .auth-grid-two {
    grid-template-columns: 1fr;
  }

  .contact-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
  }

  .contact-step-icon,
  .contact-page-note-icon {
    width: 48px;
    height: 48px;
  }

  .contact-step-icon i,
  .contact-page-note-icon i {
    font-size: 1.18rem;
  }

  .contact-step h3 {
    font-size: 1.18rem;
  }

  .contact-page-note {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px 14px;
  }
}
