/* ============================================================
   Spire.XLS AI Agent — Landing Page Design System
   Extracted from design mockup: Spire.XLS AI Agent 03.png
   ============================================================ */

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  /* === Primary Palette (Deep Greens) === */
  --color-primary: #103020;           /* darkest green — hero/main section bg */
  --color-primary-light: #205030;     /* mid-dark green — alternating section bg */
  --color-primary-lighter: #306040;   /* mid green — card bg, subtle accents */
  --color-primary-pale: #407050;      /* light green — muted elements */

  /* === Accent / CTA === */
  --color-accent: #18B854;            /* bright green — buttons, links, highlights */
  --color-accent-hover: #07C44E;      /* hover state for accent elements */
  --color-accent-light: rgba(8, 168, 67, 0.12); /* subtle accent wash */

  /* === Navy (Footer) === */
  --color-navy: #000868;              /* deep navy — footer bg */

  /* === Backgrounds === */
  --color-bg-light: #F0F0F0;         /* neutral light section bg */
  --color-bg-light-green: #E8F5E9;   /* light green tint section bg */
  --color-bg-white: #FFFFFF;

  /* === Text === */
  --color-text-on-dark: #FFFFFF;      /* primary text on dark green / navy bg */
  --color-text-primary: #103020;      /* primary text on light bg */
  --color-text-secondary: #808890;    /* secondary / muted text */
  --color-text-muted: #A8B0B8;       /* tertiary / placeholder text */

  /* === Borders & Dividers === */
  --color-border: #D0D0D0;            /* light border on white/light bg */
  --color-border-light: #E8E8E8;      /* very subtle border */

  /* === Border Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* === Shadows === */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 2px 8px rgba(8, 168, 67, 0.3);

  /* === Typography === */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 2.5rem;    /* 40px */
  --font-size-5xl: 3rem;      /* 48px */

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* === Spacing === */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* === Layout === */
  --max-width: 1182px;
  --header-height: 72px;

  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ---------- CSS Reset ---------- */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-size: 14px;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  min-width: 360px;
}

body#page {
  background-color: #F4FFF8;
}

a:hover {
  text-decoration: none;
}

.hero-section img, .hero-section svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: var(--line-height-tight);
}

p {
  margin-bottom: var(--space-md);
}

/* ============================================================
   Shared Utility Classes
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  box-sizing: border-box;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  background: rgba(242, 255, 247, 1);
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /*background:*/
  /*  radial-gradient(circle at 50% 18%, rgba(171, 236, 166, 0.28) 0, rgba(171, 236, 166, 0.18) 18%, rgba(171, 236, 166, 0.08) 34%, rgba(244, 255, 248, 0) 55%);*/

}

.hero-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(1140px, 100%);
}

.hero-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
#page h1.hero-heading{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 56px;
  color: rgba(0, 12, 37, 1);
  text-align: center;
  vertical-align: top;
  margin: 0;

}

.hero-subheading {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 40px;
  color: rgba(0, 12, 37, 1);
  text-align: center;
  vertical-align: top;
  margin: 20px 0;

}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  color: rgba(65, 110, 80, 1);
  text-align: center;
  vertical-align: middle;

}

/* -- Buttons -- */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
#try-agent .container,
#integration .container,
#use-cases .container
{
  box-sizing: border-box;
}
.hero-actions .btn {
  width: 100%;
  max-width: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 52px;
  padding: 14px 31px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.hero-actions .btn
{
  font-size: 1.142857rem;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: middle;

}

.btn-primary {
  background-color: #25C052;
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 192, 82, 0.22);
}

.btn-primary:hover {
  /*transform: translateY(-1px);*/
  /*box-shadow: 0 14px 28px rgba(37, 192, 82, 0.28);*/
  text-decoration: none;
}

.btn-arrow {
  font-size: 1.2em;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  /*transform: translateX(3px);*/
}

.hero-actions .btn-secondary {
  background-color: #fff;
  font-size: 1.142857rem;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: rgba(0, 12, 37, 1);
  text-align: center;
  vertical-align: middle;

}

.btn-secondary:hover {
  /*box-shadow: 0 12px 28px rgba(15, 31, 55, 0.12);*/
  /*transform: translateY(-1px);*/
}

/* -- Video Wrapper -- */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  /*box-shadow: 0 16px 38px rgba(11, 37, 22, 0.12);*/
  border: 10px solid #D1F7D9;
  box-sizing: border-box;
}

.video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 940 / 575;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #fff;
  color: #25C052;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(11, 37, 22, 0.2);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.play-btn svg {
  margin-left: 3px; /* optical centering for triangle */
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(11, 37, 22, 0.28);
}

/* ---------- Desktop (≥768px) ---------- */
@media (min-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }


  .hero-heading {
    font-size: 3.35rem;
  }

  .hero-subheading {
    font-size: 2.142857rem;
  }

  .hero-description {
    font-size: 1.42857rem;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .hero-actions .btn {
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }

  .play-btn {
    width: 88px;
    height: 88px;
  }

  .play-btn svg {
    width: 28px;
    height: 34px;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 3.55rem;
  }
}

/* ============================================================
   Capabilities Section
   ============================================================ */
.capabilities-section {
  padding: 92px 0 100px;
  /*background:*/
  /*  radial-gradient(circle at 50% 30%, rgba(90, 156, 64, 0.58) 0, rgba(73, 125, 53, 0.28) 16%, rgba(44, 88, 42, 0.14) 28%, rgba(22, 48, 31, 0.98) 62%),*/
  /*  var(--color-primary);*/
}

.capabilities-header {
  text-align: center;
  margin-bottom: 18px;
}

.capabilities-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 60px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 42px;

}

.capabilities-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
  margin: 0 auto;
}

/* -- Tabs Navigation -- */
.capabilities-tabs {
    display: flex;
    justify-content: space-evenly;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /*padding: 15px 20px;*/
    margin-bottom: 60px;
    background-color: rgba(81, 104, 83, 0.34);
    border-radius: 20px;
  gap: 20px;
  }


.capabilities-tabs::-webkit-scrollbar {
  display: none;
}
.capabilities-section .container{
  /*box-sizing: content-box;*/
}
.tab-btn {
    flex-shrink: 0;
    width: auto;
    /*height: 95px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all var(--transition-fast);

  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: middle;
  padding: 25px 0px;



}
.capabilities-section .container .superAI_bg3{
  display: none;
}

.capabilities-content-all{
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.capabilities-content-all-top2{
  display: flex;
  flex-flow: nowrap;
  gap: 40px;
}
.capabilities-content-all-top2 img{
  width: auto;
  max-width: 100%;
}
.capabilities-content-all-top1{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: top;

}

@media (min-width: 1200px) {
  .tab-btn {
    width: 190px;}
  .capabilities-tabs {
    gap: 0;
  }
  .container {
    box-sizing: content-box;
  }
  #try-agent .container, #integration .container, #use-cases .container {
    box-sizing: content-box;
  }
}


.tab-btn.active {
  background: rgba(8, 168, 67, 1);
  font-weight: 700;
}

.tab-btn:not(.active):hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* -- Tab Content -- */
.tab-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.tab-panel.active {
  display: flex;
}

.tab-panel-img {
  width: 100%;
}

.tab-panel-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  /*box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);*/
}

.tab-panel-text {
  text-align: center;
  max-width: 440px;
}

.tab-panel-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.tab-panel-description {
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.2;
  margin: 0;
}

/* ---------- Desktop (≥768px) ---------- */
@media (min-width: 768px) {
  .capabilities-section {
    padding: 80px 0;
    opacity: 1;
    background: linear-gradient(180deg, rgba(22, 46, 33, 1) 0%, rgba(40, 82, 59, 1) 100%);

  }
  .capabilities-section .container{
    position: relative;
    z-index: 0;
  }
  .capabilities-section .container .superAI_bg3{
    width: 525px;
    height: 525px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(167, 255, 36, 0.3) 0%, rgba(81, 105, 38, 0) 100%);
    filter: blur(100px);
    top: 114px;
    left: 309px;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    display: block;

  }

  .capabilities-title {
    font-size: 2.8571428rem;
  }

  .capabilities-subtitle {
    font-size: 1.2rem;
  }

  .capabilities-tabs {
    justify-content: center;
    overflow-x: visible;
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .capabilities-content {
    position: relative;
    z-index: 1;
  }

  .tab-panel {
    flex-direction: row;
    align-items: center;
    gap: 76px;
  }

  .tab-panel-img {
    flex: 1.08;
  }

  .tab-panel-text {
    flex: 0.92;
    text-align: left;
  }

  .tab-panel-heading {
    font-size: 3rem;
  }

  .tab-panel-description {
    font-size: 2.142857rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 40px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    vertical-align: top;

  }
}

/* ============================================================
   Try Agent Section
   ============================================================ */
.try-agent-section {
  padding: 72px 0 84px;
  background-color: #FFFFFF;
}

.try-agent-header {
  text-align: center;
  margin-bottom: 28px;
}

.try-agent-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0D1633;
  margin-bottom: 16px;
}

.try-agent-subtitle {
  max-width: 980px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: #46586A;
}

.agent-ui-wrapper {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 31, 55, 0.12);
  background-color: #fff;
}

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

@media (min-width: 768px) {
  .try-agent-section {
    padding: 80px 0;
  }

  .try-agent-title {
    font-size: 2.857142857rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 60px;
    color: rgba(0, 12, 37, 1);
    text-align: center;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .try-agent-subtitle {
    font-size: 1.2857rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 12, 37, 1);
    text-align: center;
    vertical-align: middle;
    margin-bottom: 52px;

  }
}

/* ============================================================
   Integration Section
   ============================================================ */
.integration-section {
  padding: 90px 0 96px;
  background:
    radial-gradient(circle at 50% 18%, rgba(92, 158, 100, 0.22) 0, rgba(92, 158, 100, 0.10) 28%, rgba(16, 48, 32, 0) 58%),
    var(--color-primary);
}

.integration-header {
  text-align: center;
  margin-bottom: 34px;
}

.integration-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-on-dark);
  margin-bottom: 16px;
}

.integration-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.vertical-slider-container {
  width: 100%;
}

.vertical-slider-track {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.slide-item {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slide-copy {
  color: rgba(255, 255, 255, 0.96);
}

.slide-title {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-text-on-dark);
  margin-bottom: 14px;
}

.slide-accent-line {
  display: block;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 24px;

  opacity: 1;
  background: #26E06A;

}

.slide-description {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}

.supported-triggers-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(152, 244, 182, 0.9);
  margin-bottom: 16px;
}

.trigger-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding-left: 0;
}

.trigger-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  color: rgba(164, 235, 198, 1);
  text-align: left;
  vertical-align: middle;

}
.trigger-list li span{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 18px;
  color: rgba(164, 235, 198, 1);
  text-align: left;
  vertical-align: middle;

}

.trigger-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.vertical-indicator {
  display: none;
}

.indicator-pill {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.slide-media {
  width: 100%;
}

.workflow-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .integration-section {
    padding: 80px 0;
  }

  .integration-title {
    font-size: 2.8571428rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 60px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 30px;

  }

  .integration-subtitle {
    font-size: 1.2857rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;

  }

  .vertical-slider-container {
    height: 550px;
    overflow: hidden;
    position: relative;
  }

  .integration-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .vertical-slider-container.is-carousel .vertical-slider-track {
    position: relative;
    height: 100%;
  }

  .vertical-slider-container.is-carousel .slide-item {
    position: absolute;
    inset: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    align-items: center;
    /*gap: 159px;*/
    gap: 205px;
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
    transition: opacity 680ms ease, filter 680ms ease;
    will-change: opacity, filter;
  }

  .vertical-slider-container.is-carousel .slide-item.is-active {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    z-index: 2;
  }

  .slide-copy {
    /*padding-right: 12px;*/

    /*width: 385px;*/
  }

  .slide-title {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 50px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    vertical-align: middle;

  }

  .slide-description {
    margin-bottom: 38px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    vertical-align: top;

  }

  .supported-triggers-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgba(148, 214, 180, 1);
    text-align: left;
    vertical-align: middle;

  }

  .trigger-list li {
    font-size: 1.0625rem;
  }

  .vertical-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    position: absolute;
    top: 50%;
    left: calc(42% + 20px);
    z-index: 5;
    transform: translate(-50%, -50%);
  }

  .indicator-pill {
    width: 10px;
    height: 84px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.24);
    transition: background-color 260ms ease, transform 260ms ease, opacity 260ms ease;
  }

  .indicator-pill.active {
    background-color: rgba(255, 255, 255, 0.96);
    transform: scaleY(1.04);
  }

  .indicator-pill:hover {
    background-color: rgba(255, 255, 255, 0.72);
  }

  .slide-media {
    justify-self: end;
    max-width: 100%;
    /*width: 596px;*/
  }

  .workflow-img {
    border-radius: 24px;
  }
}

  .slide-round-decor {
    display: none;
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

@media (min-width: 1200px) {
  .vertical-slider-container.integration-fixed-layout {
    overflow: visible;
  }

  .integration-fixed-layout.is-carousel .slide-item {
    grid-template-columns: 385px 205px 550px;
    column-gap: 0;
    justify-content: start;
  }

  .integration-fixed-layout .slide-round-decor {
    display: block;
    top: 66px;
    left: -141px;
    width: 553px;
    height: auto;
  }

  .integration-fixed-layout.is-carousel .vertical-slider-track {
    position: relative;
    z-index: 1;
  }

  .integration-fixed-layout.is-carousel .slide-copy {
    grid-column: 1;
    width: 385px;
    position: relative;
    z-index: 2;
  }

  .integration-fixed-layout.is-carousel .slide-media {
    grid-column: 3;
    /*width: 596px;*/
    width: 550px;
    justify-self: start;
    position: relative;
    z-index: 2;
  }

  .integration-fixed-layout .vertical-indicator {
    left: calc(385px + 79.5px);
  }
}

/* ============================================================
   Business Use Cases Section
   ============================================================ */
.use-cases-section {
  padding: 88px 0 96px;
  background-color: #ffffff;
}

.use-cases-header {
  text-align: center;
  margin-bottom: 40px;
}

.use-cases-title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #08162f;
}

.use-cases-subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.use-case-card {
  display: flex;
  flex-direction: column;
  /*min-height: 100%;*/
  padding: 14px 14px 28px;
  /*box-shadow: 0 16px 34px rgba(16, 48, 32, 0.06);*/


  opacity: 1;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(226, 232, 204, 1) 0%, rgba(165, 232, 192, 0) 100%);

}

.card-dashboard-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 22px;
  border-radius: 18px;
}

.icon-placeholder {
  width: 50px;
  height: 50px;
  margin: 0 0 18px;
  /*border-radius: 18px;*/
  position: relative;
  flex: 0 0 auto;
}

.icon-placeholder::before {
  /*content: "";*/
  /*position: absolute;*/
  /*inset: 14px;*/
  /*border-radius: 999px;*/
  /*background: rgba(255, 255, 255, 0.7);*/
}

.icon-placeholder-finance {
  background: url("/AI/images/xlsai/anli-1.svg");
}

.icon-placeholder-sales {
  background: url("/AI/images/xlsai/anli-2.svg");
}

.icon-placeholder-compliance {
  background: url("/AI/images/xlsai/anli-3.svg");
}

.use-case-card-content {
  /*margin-top: auto;*/
}

.use-case-card-content h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  color: rgba(0, 0, 0, 1);
  text-align: left;
  vertical-align: middle;

}

.use-case-card-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 24px;
  color: rgba(0, 0, 0, 1);
  text-align: left;
  vertical-align: middle;

}

@media (min-width: 768px) {
  .use-cases-section {
    padding: 80px 0 80px;
  }

  .use-cases-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 60px;
    color: rgba(0, 12, 37, 1);
    text-align: center;
    vertical-align: middle;



  }

  .use-cases-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(0, 12, 37, 1);
    text-align: center;
    vertical-align: middle;
    margin-top: 30px;

  }

  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .use-case-card {
    padding: 13px 13px 45px;
  }

  .card-dashboard-img {
    margin-bottom: 30px;
  }
}

/* ============================================================
   Why Choose Us Section
   ============================================================ */
.features-section {
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 50% 42%, rgba(24, 184, 84, 0.26) 0, rgba(24, 184, 84, 0.12) 18%, rgba(16, 48, 32, 0) 52%),
    var(--color-primary);
}

.features-header {
  text-align: center;
  margin-bottom: 30px;
}

.features-title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.features-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.feature-card {
  display: flex;
  flex-direction: column;
  /*min-height: 100%;*/
  padding: 28px 26px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(152, 244, 182, 0.32);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  /*border-radius: 16px;*/
  /*color: #a6ff3f;*/
  /*background: rgba(166, 255, 63, 0.08);*/
  /*border: 1px solid rgba(166, 255, 63, 0.16);*/
  /*flex: 0 0 auto;*/
}

.feature-icon span {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feature-card-content {
  /*margin-top: auto;*/
}

.feature-card-content h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.feature-card-content p {
  margin: 0;
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: middle;

}

@media (min-width: 768px) {
  .features-section {
    padding: 80px 0;
    opacity: 1;
    background: rgba(20, 48, 33, 1);

  }

  .features-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 60px;
    color: rgba(245, 255, 249, 1);
    text-align: center;
    vertical-align: middle;

  }

  .features-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(245, 255, 249, 1);
    text-align: center;
    vertical-align: middle;
    margin-top: 30px;

  }

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    overflow: visible;
    padding-top: 10px;
  }
  .superAI_bg1,
  .superAI_bg2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }

  /*.superAI_bg1 {*/
  /*  width: 312px;*/
  /*  height: 312px;*/
  /*  top: 154px;*/
  /*  left: 168px;*/
  /*  background: radial-gradient(circle at center, rgba(122, 181, 49, 0.6) 0%, rgba(122, 181, 49, 0) 100%);*/
  /*}*/

  /*.superAI_bg2 {*/
  /*  width: 342px;*/
  /*  height: 342px;*/
  /*  top: -10px;*/
  /*  right: 189px;*/
  /*  background: radial-gradient(circle at center, rgba(55, 181, 49, 0.6) 0%, rgba(55, 181, 49, 0) 100%);*/
  /*}*/


  .superAI_bg1 {
    filter: blur(3.75rem);
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(50% 50%,rgba(122, 181, 49, 0.6),rgba(20, 48, 33, 1) 100%);
    width: 312px;
    height: 312px;
    position: absolute;
    top: 154px;
    left: 168px;
  }
  .superAI_bg2 {
    filter: blur(3.75rem);
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(50% 50%,rgba(55, 181, 49, 0.6),rgba(20, 48, 33, 1) 100%);
    width: 342px;
    height: 342px;
    position: absolute;
    top: 0;
    right: 189px;
  }





  .feature-card {
    padding: 40px
  }

  .feature-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    vertical-align: middle;
    margin-bottom: 10px;

  }
}

/* ============================================================
   Pricing Plans Section
   ============================================================ */
.pricing-section {
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 50% 72%, rgba(24, 184, 84, 0.18) 0, rgba(24, 184, 84, 0.06) 24%, rgba(16, 48, 32, 0) 58%),
    var(--color-primary);
}

.pricing-header {
  text-align: center;
}

.pricing-title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pricing-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  /*min-height: 100%;*/
  padding: 30px 24px 22px;
  border-radius: 28px;
}

.pricing-card--dark {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  color: #ffffff;


  opacity: 1;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);

}

.pricing-card--featured {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  color: #0f172a;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 18px;
  border-radius: 999px;
  background: #24c15d;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 22px rgba(36, 193, 93, 0.28);
}

.pricing-badge--enterprise {
  background: #b6e11b;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(182, 225, 27, 0.28);
}

.pricing-plan-name {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
}

.pricing-plan-copy {
  margin: 0 auto 22px;
  max-width: 220px;
  min-height: 58px;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.pricing-amount-block {
  text-align: center;
  margin-bottom: 18px;
}

.pricing-label {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.pricing-label--strike {
  font-size: 1.1rem;
}

.pricing-label--dark {
  color: #86d64f;
}

.pricing-note {
  font-size: 1rem;
  line-height: 1.2;
  color: #d1fae5;
  margin-bottom: 6px;
}

.pricing-note--dark {
  color: #16a34a;
}

.pricing-price {
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.pricing-price--dark {
  color: #15803d;
}


.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-features--dark li {
  color: #64748b;
}

.pricing-check {
  flex: 0 0 auto;
  color: #22d07a;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: 1px;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.pricing-btn:hover {
  transform: translateY(-1px);
}

.pricing-btn--muted {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.pricing-btn--primary {
  background: #24c15d;
  color: #ffffff;
}

.pricing-btn--enterprise {
  background: #b6e11b;
  color: #ffffff;
}

.included-features-card {
  margin-top: 34px;
  padding: 38px 30px 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.included-features-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.included-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.included-feature {
  text-align: center;
}

.included-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  color: #ffffff;
  /*background: rgba(255, 255, 255, 0.1);*/
}

.included-feature h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.included-feature p {
  margin: 0 auto;
  max-width: 280px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.included-features-cta {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.included-features-copy h4 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.included-features-copy p {
  margin: 0;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.included-features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  background: transparent;
  white-space: nowrap;
  align-self: flex-start;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.included-features-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 80px 0;
    opacity: 1;
    background: rgba(51, 99, 76, 1);
    background: #33634C url("/AI/images/xlsai/pricing1.svg") no-repeat bottom;

  }

  .pricing-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 50px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: top;

  }

  .pricing-subtitle {

    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: top;
    margin-top: 30px;
  margin-bottom:58px;

  }

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

  .included-features-card {
    padding: 50px  75px;
    margin-top: 60px;

    opacity: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: none;
    border: none;
  }

  .included-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .included-features-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 40px;
    padding-top: 20px;
  }

  .included-features-copy {
    max-width: 760px;
  }
  .included-features-title
{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 42px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: top;
    margin-bottom: 30px;

}
  .included-feature h4
{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: top;
    margin-bottom: 14px;

}
  .included-feature p
{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 16.8px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  vertical-align: top;

}
  .included-features-copy h4
{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 25.2px;
  color: rgba(255, 255, 255, 1);
  text-align: left;
  vertical-align: top;
    margin-bottom: 14px;

}
  .included-features-copy p
{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 16.8px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  vertical-align: top;

}
  .included-features-btn
{
  width: 157px;
  height: 48px;
  opacity: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);

  border: 1px solid rgba(255, 255, 255, 1);
    padding: 0;
    align-self:center;

}
  a.included-features-btn:link, a.included-features-btn:visited{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22.4px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;


  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .pricing-card {
    padding:48px 24px 30px 24px;
  }

  .pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: top;
    margin-bottom: 20px;

  }
  .pricing-plan-copy
{
    min-height: unset;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  vertical-align: top;
    margin-bottom: 30px;

}
  .pricing-label
{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 20px;
  color: rgba(218, 227, 223, 1);
  text-align: center;
  vertical-align: middle;

}

  .pricing-price {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 36px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;

  }
  .price-Hobby .pricing-price{
    line-height: 60px;
  }
  .pricing-note{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .pricing-features li
{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 16px;
  color: rgba(218, 227, 223, 1);
  text-align: center;
  vertical-align: middle;
    align-items: center;

}
  .pricing-features {
    gap: 20px;
    align-items: center;
  }
  .price-Lite,
  .price-Enterprise {
    opacity: 1;
    border: 4px solid transparent;
    border-radius: 30px;
    box-sizing: border-box;
    background-clip: padding-box, border-box;
  }

  .price-Lite {
    background:
      linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
      linear-gradient(180deg, rgba(26, 186, 85, 1) 0%, rgba(26, 186, 85, 0) 100%) border-box;
  }

  .price-Enterprise {
    background:
      linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
      linear-gradient(180deg, rgba(161, 217, 33, 1) 0%, rgba(161, 217, 33, 0) 100%) border-box;
  }

}
.price-Lite .pricing-plan-name,
.price-Enterprise .pricing-plan-name{
  color: rgba(0, 12, 37, 1);
}
.price-Lite .pricing-plan-copy,
.price-Enterprise .pricing-plan-copy{
  color: rgba(0, 12, 37, 1);
}
.price-Lite .pricing-label,
.price-Lite .pricing-note,
.price-Lite .pricing-price

{
  color: rgba(104, 217, 145, 1);
}
.price-Enterprise .pricing-label,
.price-Enterprise .pricing-note,
.price-Enterprise .pricing-price
{
  color: rgba(161, 217, 33, 1);
}

.price-Lite .pricing-note,
.price-Lite .pricing-price

{
  color: #068A36;
}
.price-Enterprise .pricing-note,
.price-Enterprise .pricing-price
{
  color: #79AD00;
}






.price-Lite .pricing-features li,
.price-Enterprise .pricing-features li{
  color: rgba(113, 125, 150, 1);
}

a.pricing-btn--muted:link, a.pricing-btn--muted:visited {
  color: rgba(255, 255, 255, 1);
}

a.pricing-btn--primary:link, a.pricing-btn--primary:visited {
  color: rgba(255, 255, 255, 1);
}

a.pricing-btn--enterprise:link, a.pricing-btn--enterprise:visited {
  color: rgba(255, 255, 255, 1);
}



/* ============================================================
   CTA Bottom Section
   ============================================================ */
.cta-bottom-section {
  padding: 96px 0 108px;
  background-color: #ffffff;
}

.cta-bottom-section .container {
  text-align: center;
}

.cta-bottom-title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #08162f;
}

.cta-bottom-subtitle {
  max-width: 800px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.cta-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  justify-content: center;
  margin-top: 34px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.cta-btn-primary {
  background: #24c15d;
  color: #ffffff;
  border: 2px solid #24c15d;
}

.cta-btn-secondary {
  background: #ffffff;
  color: #24c15d;
  border: 2px solid #24c15d;
}

@media (min-width: 768px) {
  .cta-bottom-section {
    padding: 80px 0;
  }

  .cta-bottom-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 50px;
    color: rgba(0, 12, 37, 1);
    text-align: center;
    vertical-align: top;

  }

  .cta-bottom-subtitle {
margin-top: 30px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    color: rgba(45, 87, 60, 1);
    text-align: center;
    vertical-align: middle;

  }

  .cta-action-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;

    margin-top: 40px;
  }

  .cta-btn {
    max-width: 306px;
  }
  .cta-btn span{

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 28px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    vertical-align: middle;

  }
  .cta-btn.cta-btn-secondary span
{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 28px;
  color: rgba(26, 186, 85, 1);
  text-align: center;
  vertical-align: middle;

}
}

/* Hero section background decoration images */
.hero-bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* 第一张背景图：居中，从上往下，起点距顶部 55px */
.hero-bg-top {
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

/* 第二张背景图：居中，从下往上，起点距底部 178px */
.hero-bg-bottom {
  bottom: 185px;
  left: 50%;
  transform: translateX(-50%);
}

