*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --card: #0f172a;
  --text: #0b1120;
  --muted: #5f6c88;
  --green: #1dd1a1;
  --blue: #1e88e5;
  --gradient: linear-gradient(135deg, #1dd1a1, #1e88e5);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(14, 23, 42, 0.15);
}

body {
  margin: 0;
  font-family: "Poppins", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  backdrop-filter: blur(12px);
  background: rgba(247, 249, 251, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.logo {
  font-family: "Space Grotesk", "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.05rem;
  color: #221b31;
}

.logo .logo-bracket,
.logo .logo-base {
  color: currentColor;
}

.logo .logo-ai {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.site-footer {
  margin-top: 4rem;
  padding: 3.5rem 5vw 3rem;
  background: linear-gradient(135deg, #050b1d, #0a1535 65%, #05172d);
  color: rgba(255, 255, 255, 0.9);
  border-top-left-radius: calc(var(--radius) * 1.5);
  border-top-right-radius: calc(var(--radius) * 1.5);
  border: 1px solid rgba(156, 188, 255, 0.15);
  border-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  box-shadow: 0 -25px 60px rgba(5, 20, 45, 0.25);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer nav a {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta .socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-meta .socials a {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.site-footer #year {
  font-weight: 600;
  color: white;
}

.site-footer .logo {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer .logo .logo-ai {
  background: none;
  color: #9cbcff;
  -webkit-text-fill-color: #9cbcff;
  background-clip: border-box;
}

@media (max-width: 640px) {
  .site-footer {
    text-align: center;
  }

  .site-footer nav {
    align-items: center;
  }

  .footer-meta {
    align-items: center;
  }

  .footer-meta .socials {
    justify-content: center;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 0.85rem 5vw;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    margin-left: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 0;
  }

  .primary-nav ul {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: calc(var(--radius) * 0.8);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
    min-width: min(260px, 80vw);
    z-index: 20;
  }

  .primary-nav ul.open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.4rem 0;
  }

  .site-header .btn-outline {
    margin-left: auto;
    display: none;
  }

  .nav-cta {
    display: block;
    margin-top: 0.5rem;
  }

  .nav-cta a {
    display: flex;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 154, 103, 0.6);
    color: #0b1120;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--text);
  background: transparent;
}

.site-header .btn-outline {
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-header .btn-outline:hover,
.site-header .btn-outline:focus-visible {
  color: white;
  border-color: transparent;
  background: var(--gradient);
}

.btn-ghost {
  border: 2px solid #0c9a67;
  background: #ffffff;
  color: #0c9a67;
}

.btn-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

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

main {
  padding: 4rem 5vw 5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 4vw, 4rem);
  background: #e8fff3;
  border-radius: calc(var(--radius) * 1.4);
  box-shadow: 0 25px 60px rgba(8, 56, 41, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.card .eyebrow {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #0c9a67;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-family: "Montserrat", "Poppins", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.gradient-text {
  background-image: linear-gradient(120deg, #0057ff, #13a825, #0057ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

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

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

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-visual::after {
  display: none;
}

.hero-visual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  width: 100%;
}

.hero-pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 1.5rem 2rem;
  min-width: 220px;
  box-shadow: 0 20px 45px rgba(8, 56, 41, 0.15);
  border: 1px solid rgba(8, 56, 41, 0.08);
  text-align: center;
}

.hero-pill-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0c9a67;
  margin-bottom: 0.3rem;
}

.hero-pill p {
  margin: 0;
  color: rgba(8, 56, 41, 0.75);
  font-size: 0.95rem;
}

.hero-automations {
  background: linear-gradient(135deg, #f3f8ff 0%, #eef8ff 50%, #f8fffb 100%);
  box-shadow: 0 30px 70px rgba(5, 20, 45, 0.12);
}

.learn-ai-hero {
  position: relative;
  max-width: 960px;
  margin: clamp(1rem, 4vw, 2.5rem) auto 4.5rem;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 7vw, 5rem);
  text-align: center;
  background: radial-gradient(circle at 30% 20%, rgba(29, 209, 161, 0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(30, 136, 229, 0.15), transparent 60%), #fdfcf6;
  border-radius: calc(var(--radius) * 1.6);
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 35px 80px rgba(5, 20, 45, 0.08);
  overflow: hidden;
}

.learn-ai-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius) * 1.3);
  border: 1px solid rgba(15, 23, 42, 0.05);
  pointer-events: none;
}

.learn-ai-hero .eyebrow {
  letter-spacing: 0.18em;
  color: rgba(8, 56, 41, 0.7);
  margin-bottom: 1rem;
}

.learn-ai-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.learn-ai-hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.learn-ai-hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.learn-ai-hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.learn-ai-hero__meta li {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: calc(var(--radius) * 0.9);
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 40px rgba(5, 20, 45, 0.08);
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
}

.learn-ai-hero__meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.learn-ai-hero__meta-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 600px) {
  .learn-ai-hero {
    padding: 2.5rem 1.5rem 3rem;
  }

.learn-ai-hero__meta {
  grid-template-columns: 1fr;
  }
}

.why-us {
  margin: 4rem auto;
  padding: clamp(2.5rem, 6vw, 4.2rem);
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(226, 243, 255, 0.6), rgba(232, 255, 243, 0.8));
  box-shadow: 0 30px 70px rgba(5, 20, 45, 0.08);
}

.why-us__header {
  max-width: 760px;
  text-align: left;
}

.why-us__header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.why-us__header p {
  margin: 0;
  color: var(--muted);
}

.why-us__body {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-us-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-us-pill {
  padding: 1.8rem;
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-us-pill__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 154, 103, 0.75);
  font-weight: 600;
}

.why-us-pill h3 {
  margin: 0;
  font-size: 1.4rem;
}

.why-us-pill p {
  margin: 0;
  color: var(--muted);
}

.certification-showcase {
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.8rem;
  box-shadow: 0 22px 55px rgba(5, 20, 45, 0.08);
}

.certification-roller {
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}

.certification-roller::before,
.certification-roller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 1;
}

.certification-roller::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.certification-roller::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.certification-roller-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  padding: 1.5rem;
  animation: rollerScroll 25s linear infinite;
  will-change: transform;
}

.certification-roller img {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(5, 20, 45, 0.08));
}

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

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

@media (max-width: 1024px) {
  .why-us-pill-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .why-us-pill-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    padding-bottom: 0.5rem;
    margin: 0 -1rem;
    padding-left: 1rem;
  }

  .why-us-pill-grid::-webkit-scrollbar {
    display: none;
  }

  .why-us-pill {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  .certification-roller-track {
    gap: 1.6rem;
    padding: 1rem;
    animation-duration: 15s;
  }

  .certification-roller img {
    width: 60px;
    height: 60px;
  }

  .certification-roller::before,
  .certification-roller::after {
    width: 40px;
  }
}

.automation-visual {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius) + 10px);
  padding: 1.5rem 1.5rem 2.5rem;
  background: #050b1d;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color: white;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.automation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.25), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(29, 209, 161, 0.25), transparent 50%);
  pointer-events: none;
}

.automation-workflow {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0.75rem 1rem;
  justify-items: center;
  align-items: center;
  align-content: center;
}

.automation-workflow::before {
  content: "";
  position: absolute;
  inset: 0.5rem 0.75rem;
  border-radius: 45% 55% / 55% 45%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: orbit 14s linear infinite;
}

.automation-logo {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: floatStep 3s ease-in-out infinite;
}

.automation-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.automation-logo:nth-child(odd) {
  animation-delay: 0.2s;
}

.automation-logo:nth-child(3n) {
  animation-delay: 0.5s;
}

.automation-logo--pulse {
  animation: floatStep 3s ease-in-out infinite, pulseRing 2.6s ease-in-out infinite;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }

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

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(30, 136, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(30, 136, 229, 0);
  }
}

@keyframes floatStep {

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

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

.section {
  margin-top: 5rem;
}

.section-heading {
  text-align: left;
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

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

.more {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.75rem, 6vw, 4rem);
  background: linear-gradient(120deg, rgba(226, 243, 255, 0.8), rgba(232, 255, 243, 0.9));
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 40px 90px rgba(6, 30, 52, 0.12);
}

.about {
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 25px 60px rgba(7, 32, 58, 0.12);
}

.about h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
}

.about p {
  margin: 0 0 1.1rem;
  color: rgba(11, 17, 32, 0.78);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: calc(var(--radius) * 0.9);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(8, 48, 66, 0.12);
  background-clip: padding-box;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.3s ease;
}

.faq-item:hover,
.faq-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(8, 48, 66, 0.18);
}

.faq-item > span:first-of-type {
  font-weight: 600;
  font-size: 1rem;
}

.faq-item .icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  background: rgba(14, 23, 42, 0.04);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-item p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.2s ease;
}

.faq-item[aria-expanded="true"] {
  border-color: rgba(12, 154, 103, 0.35);
  background: linear-gradient(135deg, #05172d, #0c9a67 160%);
  box-shadow: 0 25px 70px rgba(5, 23, 45, 0.4);
  color: #f5fbff;
}

.faq-item[aria-expanded="true"] > span:first-of-type {
  color: #ffffff;
}

.faq-item[aria-expanded="true"] .icon {
  transform: rotate(45deg);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.faq-item[aria-expanded="true"] p {
  max-height: 220px;
  opacity: 0.95;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .more {
    grid-template-columns: 1fr;
  }
}

.contact {
  margin-left: -5vw;
  margin-right: -5vw;
  padding: clamp(3rem, 6vw, 4.8rem) 5vw clamp(3.5rem, 7vw, 5rem);
  background: linear-gradient(130deg, rgba(30, 136, 229, 0.7), rgba(15, 63, 118, 0.92) 70%, rgba(12, 154, 103, 0.85));
  color: rgba(245, 251, 255, 0.92);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.14), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(12, 154, 103, 0.25), transparent 50%);
  pointer-events: none;
  opacity: 0.65;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.contact-copy h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-copy p {
  color: rgba(230, 242, 255, 0.85);
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 65px rgba(6, 30, 52, 0.12);
  backdrop-filter: blur(2px);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  border-radius: calc(var(--radius) * 0.7);
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 0.85rem 1rem;
  font: inherit;
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(30, 136, 229, 0.7);
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.3);
  background: #f6fbff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.form-status.is-error {
  color: #0f172a;
}

.contact .btn-primary {
  justify-self: start;
  padding-inline: 2.2rem;
  box-shadow: 0 15px 35px rgba(30, 136, 229, 0.25);
}

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

  .contact .btn-primary {
    width: 100%;
  }
}

.chat-simulation {
  margin-left: -5vw;
  margin-right: -5vw;
  padding: clamp(2.5rem, 5vw, 4rem) 5vw;
  border-radius: 0;
  background: linear-gradient(120deg, #dfeeff, #eef6ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.chat-copy {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  box-shadow: 0 30px 60px rgba(9, 50, 38, 0.12);
  backdrop-filter: blur(8px);
}

.chat-copy h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text);
}

.chat-copy p {
  margin: 0;
  color: var(--muted);
}

.chat-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chat-highlights li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-weight: 600;
  color: var(--text);
}

.chat-highlights li::before {
  content: "\2022";
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.iphone-mockup {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
  border-radius: 42px;
  padding: 1rem;
  background: #050915;
  box-shadow: 0 40px 90px rgba(5, 22, 27, 0.35);
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 18px;
  border-radius: 999px;
  background: #050915;
  z-index: 2;
}

.iphone-screen {
  background: linear-gradient(180deg, #f5f8ff, #f2fff8);
  border-radius: 34px;
  padding: 2.2rem 1.3rem 1.4rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(11, 17, 32, 0.55);
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.chat-message {
  border-radius: 24px;
  padding: 0.85rem 1rem;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
  max-width: 85%;
}

.chat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.chat-message p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.from-ops {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.from-train {
  align-self: flex-end;
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(30, 136, 229, 0.3);
}

.from-train .chat-label {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.chat-timestamp {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(11, 17, 32, 0.55);
}

@media (max-width: 640px) {
  .iphone-mockup {
    margin-top: 1rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(14, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.18);
}

.offerings .card {
  background: #f3fff6;
  border: 2px solid rgba(19, 168, 37, 0.35);
}

.offerings .card:hover {
  border-color: rgba(19, 168, 37, 0.7);
  box-shadow: 0 35px 60px rgba(19, 168, 37, 0.18);
}

@media (min-width: 701px) {
  .offerings h3 {
    font-size: 1.7rem;
  }

  .offerings .card .eyebrow {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 700px) {
  .offerings .card-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding-bottom: 0.8rem;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 5vw;
    -webkit-overflow-scrolling: touch;
  }

  .offerings .card-grid::-webkit-scrollbar {
    display: none;
  }

  .offerings .card {
    flex: 0 0 80%;
    min-width: 260px;
    scroll-snap-align: start;
  }
}

.sample-problems {
  position: relative;
  background: linear-gradient(140deg, #cfe5ff, #dff5ff 60%, #e8faff);
  border-radius: calc(var(--radius) * 1.1);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(16, 45, 90, 0.15);
}

.sample-problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 35%);
  opacity: 0.7;
  pointer-events: none;
}

.sample-problems>* {
  position: relative;
  z-index: 1;
}

.bubble-cloud {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.problem-bubble {
  --bubble-size: clamp(130px, 18vw, 200px);
  --bubble-offset: 0px;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 30%, #ffffff, #dff5ff);
  color: #0b1120;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, width 0.35s ease, height 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transform: translateY(var(--bubble-offset));
}

.problem-bubble:nth-child(2n) {
  --bubble-size: clamp(150px, 22vw, 230px);
  --bubble-offset: 18px;
}

.problem-bubble:nth-child(3n) {
  --bubble-offset: -22px;
}

.problem-bubble:nth-child(5n) {
  --bubble-size: clamp(140px, 19vw, 210px);
  --bubble-offset: 10px;
}

.problem-bubble .bubble-label {
  font-size: 0.95rem;
}

.bubble-detail {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.3s ease;
  color: var(--muted);
  font-size: 0.9rem;
}

.bubble-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: #0c9a67;
  font-weight: 600;
}

.problem-bubble.is-open {
  width: min(360px, 100%);
  height: auto;
  border-radius: calc(var(--radius) * 1.4);
  background: #ffffff;
  text-align: left;
  align-items: flex-start;
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  grid-column: span 2;
  padding: 1.5rem;
}

.problem-bubble.is-open .bubble-label {
  font-size: 1.1rem;
}

.problem-bubble.is-open .bubble-detail {
  opacity: 1;
  max-height: 400px;
}

@media (max-width: 640px) {
  .bubble-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .problem-bubble {
    flex: 0 0 calc(50% - 1rem);
    width: auto;
  }

  .problem-bubble.is-open {
    flex: 1 0 100%;
  }
}

.testimonials {
  text-align: left;
  background: #0f172a;
  color: white;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  box-shadow: 0 40px 90px rgba(6, 20, 40, 0.35);
}

.testimonials .section-heading {
  text-align: left;
  margin-bottom: 0;
}

.testimonials .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 0.9);
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(5, 11, 24, 0.45);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 220px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #f5fbff;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author .author-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author .author-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-cta {
  margin-top: 2rem;
}

.differentiator .section-heading {
  text-align: left;
}

.diff-timeline {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.diff-timeline-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 60%, #1e88e5 80%, #1dd1a1 100%);
  margin-bottom: 2rem;
}

.diff-timeline-label {
  position: absolute;
  top: -34px;
  transform: translateX(-50%);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.diff-timeline-label:nth-child(1) {
  left: 10%;
}

.diff-timeline-label:nth-child(2) {
  left: 40%;
}

.diff-timeline-label--flag {
  left: 90%;
  color: var(--text);
}

.diff-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.diff-timeline-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.5rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 80%;
    min-width: 250px;
    scroll-snap-align: start;
  }

  .diff-timeline {
    padding: 1.5rem;
  }

  .diff-timeline-label {
    font-size: 0.75rem;
  }

  .diff-timeline-label:nth-child(1) {
    left: 15%;
  }

  .diff-timeline-label:nth-child(2) {
    left: 45%;
  }

  .diff-timeline-label--flag {
    left: 85%;
  }
}

.course-carousel {
  margin-top: 2rem;
  padding: 2rem 2rem 2.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #f4f6fb 100%);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.course-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.course-nav-window {
  flex: 1;
  overflow-x: auto;
  position: relative;
  border-radius: var(--radius);
}

.course-nav-window::-webkit-scrollbar {
  display: none;
}

.course-nav-window {
  scrollbar-width: none;
}

.course-nav-track {
  display: flex;
  gap: 1rem;
  padding: 0.15rem 0.25rem;
  min-width: max-content;
}

.course-nav-control {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.course-nav-item {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.course-nav-item.is-active {
  background: #ffffff;
  border-color: rgba(30, 136, 229, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.course-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.course-nav-item.is-active .course-nav-icon {
  background: var(--blue);
}

.course-nav-label {
  text-align: left;
}

.course-window {
  position: relative;
  overflow: hidden;
}

.course-track {
  display: flex;
  transition: transform 0.45s ease;
  touch-action: pan-y;
}

.course-card {
  flex: 0 0 100%;
  padding: 2rem;
  background: #ffffff;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-card.is-active {
  border-color: rgba(30, 136, 229, 0.4);
}

.course-card-head h3 {
  margin: 0.3rem 0;
  font-size: 1.65rem;
}

.course-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.course-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

.course-column p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.course-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.12);
  color: var(--blue);
}

.course-label--impact {
  background: rgba(29, 209, 161, 0.16);
  color: #0b7c55;
}

.course-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.course-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.95rem;
}

.course-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
}

.course-list--impact li {
  color: var(--muted);
}

.course-list--impact li::before {
  content: "↗";
  color: var(--green);
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.course-duration {
  font-weight: 600;
  color: var(--muted);
}

.course-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.course-control.prev {
  left: 0.5rem;
}

.course-control.next {
  right: 0.5rem;
}

@media (max-width: 768px) {
  .course-control {
    display: none;
  }

  .course-track {
    cursor: grab;
  }
}

.resource-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.resource-grid article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.resource-grid article a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.engagement {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 3.8rem);
  border-radius: calc(var(--radius) * 1.3);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: radial-gradient(circle at top, rgba(29, 209, 161, 0.07), transparent 60%), var(--surface);
  box-shadow: 0 35px 70px rgba(5, 20, 45, 0.08);
}

.engagement-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.engagement-header h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.engagement-header p {
  margin: 0;
  color: var(--muted);
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.engagement-card {
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: white;
  box-shadow: 0 25px 60px rgba(5, 20, 45, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.engagement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right 1.5rem top 1.5rem;
  background-size: 160px auto;
  opacity: 0.12;
  pointer-events: none;
}

.engagement-card--workshops::after {
  background-image: url("Image Assets/engagement Icons/Workshop.png");
}

.engagement-card--retainers::after {
  background-image: url("Image Assets/engagement Icons/Rentention.png");
}

.engagement-card__title .eyebrow {
  margin-bottom: 0.4rem;
  color: rgba(8, 56, 41, 0.7);
}

.engagement-card__title h3 {
  margin: 0;
}

.engagement-card__benefits,
.engagement-card__choose ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.engagement-card__benefits li,
.engagement-card__choose li {
  padding-left: 1.3rem;
  position: relative;
  text-align: left;
  color: var(--text);
}

.engagement-card__benefits li::before,
.engagement-card__choose li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  position: absolute;
  left: 0;
  top: 0.55rem;
  transform: translateY(-50%);
}

.engagement-card__choose {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.2rem;
}

.engagement-card__choose h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cta-strip {
  margin: 4rem auto 0;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: calc(var(--radius) * 1.4);
  background: linear-gradient(120deg, rgba(29, 209, 161, 0.15), rgba(30, 136, 229, 0.12));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 80px rgba(5, 20, 45, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-strip__content {
  flex: 1;
  min-width: 260px;
}

.cta-strip__content h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.cta-strip__content p {
  margin: 0;
  color: var(--muted);
}

.cta-strip__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 700px) {
  .cta-strip {
    text-align: center;
  }

  .cta-strip__actions {
    width: 100%;
  }
}

/* --- New Sections Styles --- */

/* Our Approach Section */
.approach {
  position: relative;
  overflow: hidden;
  /* Darker gradient, edge-to-edge */
  background: linear-gradient(120deg, #e2f5ea 0%, #e0f2fe 100%);
  margin-left: -5vw;
  margin-right: -5vw;
  padding: 5rem 5vw;
  border-radius: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.approach-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.25);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-business {
  width: 140px;
  height: 140px;
  border-color: rgba(12, 154, 103, 0.6);
  background: radial-gradient(circle, rgba(12, 154, 103, 0.05), transparent);
  z-index: 3;
  animation: pulseScale 4s ease-in-out infinite;
}

.circle-process {
  width: 260px;
  height: 260px;
  border-color: rgba(30, 136, 229, 0.5);
  z-index: 2;
  animation: pulseScale 4s ease-in-out infinite 1s;
  align-items: flex-start;
  padding-top: 1rem;
}

.circle-automation {
  width: 380px;
  height: 380px;
  border-color: rgba(11, 17, 32, 0.35);
  border-style: dashed;
  border-width: 2px;
  z-index: 1;
  animation: pulseScale 5s ease-in-out infinite 2s;
  align-items: flex-start;
  padding-top: 1rem;
}

.visual-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  pointer-events: none;
}

.circle-business .visual-label {
  font-size: 0.9rem;
  color: #0c9a67;
}

.circle-process .visual-label {
  color: var(--blue);
}

.circle-automation .visual-label {
  color: var(--muted);
}

.card-step {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.card-business .card-step { color: #0c9a67; }
.card-process .card-step { color: var(--blue); }
.card-automation .card-step { color: var(--muted); }

.approach-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--muted);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.card-business::before {
  background: #0c9a67;
}

.card-process::before {
  background: var(--blue);
}

.card-automation::before {
  background: var(--text);
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.approach-tagline {
  margin-top: 4rem;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

@keyframes pulseScale {

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .approach-visual {
    height: 300px;
    order: -1;
  }

  .circle-automation {
    width: 280px;
    height: 280px;
  }

  .circle-process {
    width: 200px;
    height: 200px;
  }

  .circle-business {
    width: 120px;
    height: 120px;
  }
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
  opacity: 0.9;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-wall img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
  opacity: 0.8;
  /* Electric current animation */
  animation: electricPulse 4s ease-in-out infinite;
}

@keyframes electricPulse {
  0%, 100% {
    filter: grayscale(20%) drop-shadow(0 0 0 transparent);
    opacity: 0.8;
    transform: scale(1);
  }
  10% {
    filter: grayscale(0%) brightness(1.2) drop-shadow(0 0 12px #1e88e5);
    opacity: 1;
    transform: scale(1.15);
  }
  20% {
    filter: grayscale(20%) drop-shadow(0 0 0 transparent);
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Stagger animation delays to create "current" flow */
.logo-wall img:nth-child(1) { animation-delay: 0s; }
.logo-wall img:nth-child(2) { animation-delay: 0.2s; }
.logo-wall img:nth-child(3) { animation-delay: 0.4s; }
.logo-wall img:nth-child(4) { animation-delay: 0.6s; }
.logo-wall img:nth-child(5) { animation-delay: 0.8s; }
.logo-wall img:nth-child(6) { animation-delay: 1.0s; }
.logo-wall img:nth-child(7) { animation-delay: 1.2s; }
.logo-wall img:nth-child(8) { animation-delay: 1.4s; }
.logo-wall img:nth-child(9) { animation-delay: 1.6s; }
.logo-wall img:nth-child(10) { animation-delay: 1.8s; }
.logo-wall img:nth-child(11) { animation-delay: 2.0s; }
.logo-wall img:nth-child(12) { animation-delay: 2.2s; }


.logo-wall img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
  opacity: 1;
  animation: none; /* Stop pulse on hover */
}

.service-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: linear-gradient(135deg, rgba(12, 154, 103, 0.1), rgba(30, 136, 229, 0.12));
  color: #0b1120;
}

.service-card:hover h3,
.service-card:hover p {
  color: #0b1120;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(12, 154, 103, 0.45), rgba(30, 136, 229, 0.45));
  color: #ffffff;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(29, 209, 161, 0.15), rgba(30, 136, 229, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--blue);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.projects {
  background: linear-gradient(120deg, #e2f5ea 0%, #e0f2fe 100%);
  border-radius: calc(var(--radius) * 1.1);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: 0 28px 70px rgba(12, 39, 82, 0.18);
  position: relative;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--blue);
  transform: translateX(5px);
}

.project-card-icon {
  color: var(--green);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .project-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-card {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .projects::after {
    content: "→";
    position: absolute;
    right: 1.2rem;
    bottom: 1rem;
    font-size: 1.5rem;
    color: rgba(15, 23, 42, 0.45);
    animation: nudge 1.8s ease-in-out infinite;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}
