@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
/* --- Variables & Reset --- */
:root {
  --color-soulBlue: #0692d4;
  --color-soulTeal: #00bdd6;
  --color-soulBlack: #0d1117;

  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-900: #0f172a;
  --color-white: #ffffff;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --font-main: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  overflow-x: hidden;
}

::selection {
  background-color: rgba(6, 146, 212, 0.1);
  color: var(--color-soulBlue);
}

a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input {
  font-family: inherit;
}

/* --- Utility / Common Classes --- */
.container {
  max-width: 80rem; /* 7xl equivalent */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.hidden {
  display: none;
}

/* Gradients & Text Effects */
.text-gradient {
  background: linear-gradient(
    to right,
    var(--color-soulBlue),
    var(--color-soulTeal)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(to right, var(--color-soulBlue), #007bb3);
}

.stroke-text {
  -webkit-text-stroke: 4px rgba(6, 146, 212, 0.4);
  color: white;
}

/* Animations */
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: var(--target-width);
  }
}
.revenue-bar {
  animation: growWidth 1.5s ease-out forwards;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}

.navbar.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-soulBlue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav-links {
  display: none;
  gap: 2rem;
  font-weight: 500;
  color: var(--color-slate-600);
}

.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--color-soulBlue);
}

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: white;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-slate-100);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: var(--color-slate-50);
}

.dropdown-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-slate-900);
}

.item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.submenu {
  display: none;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-item:hover .submenu {
  display: flex;
}

.submenu-item {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: color 0.2s;
}

.submenu-item:hover {
  color: var(--color-soulBlue);
  background-color: rgba(6, 146, 212, 0.05);
}

.btn-nav {
  background-color: var(--color-soulBlue);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(6, 146, 212, 0.2);
}
.btn-nav:hover {
  background-color: var(--color-soulTeal);
  transform: scale(1.05);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

/* Hero Background Blobs */
.hero-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, rgba(6, 146, 212, 0.1), transparent);
  z-index: -10;
  filter: blur(64px); /* blur-3xl */
  opacity: 0.6;
}
.hero-blob-2 {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(0, 189, 214, 0.1);
  border-radius: 50%;
  z-index: -10;
  filter: blur(64px);
  opacity: 0.5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-text-col {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(6, 146, 212, 0.05);
  border: 1px solid rgba(6, 146, 212, 0.1);
  color: var(--color-soulBlue);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.status-dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}
.dot-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--color-soulBlue);
  opacity: 0.75;
}
.dot-solid {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--color-soulBlue);
}

.hero-heading {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-slate-900);
  margin-bottom: 1.5rem;
}
.hero-heading .italic {
  font-style: italic;
}
.hero-heading .underline {
  text-decoration: underline;
  text-decoration-color: var(--color-soulTeal);
  text-underline-offset: 8px;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--color-slate-600);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background-color: var(--color-soulBlue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 20px 25px -5px rgba(6, 146, 212, 0.2);
}
.btn-primary:hover {
  background-color: var(--color-soulTeal);
}

.btn-outline {
  background-color: white;
  border: 2px solid var(--color-slate-200);
  color: var(--color-slate-700);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--color-soulBlue);
}

.trust-badges {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.7s;
}
.trust-badges:hover {
  filter: grayscale(0%);
}
.stat-group {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: var(--color-slate-300);
}

/* Hero Floating Card */
.hero-visual-col {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.floating-card {
  position: relative;
  z-index: 10;
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-slate-100);
  transform: rotate(3deg);
  transition: transform 0.5s;
}
.floating-card:hover {
  transform: rotate(0deg);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.growth-badge {
  background-color: #dcfce7; /* green-100 */
  color: #15803d; /* green-700 */
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chart-row {
  display: flex;
  gap: 1rem;
}
.bar-bg {
  flex: 1;
  height: 0.5rem;
  background-color: var(--color-slate-100);
  border-radius: 9999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 9999px;
}
.bg-soulBlue {
  background-color: var(--color-soulBlue);
}
.bg-soulTeal {
  background-color: var(--color-soulTeal);
}
.row-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  width: 5rem;
}

.visual-blur-1 {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(6, 146, 212, 0.1);
  border-radius: 50%;
  filter: blur(24px);
}
.visual-blur-2 {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(0, 189, 214, 0.1);
  border-radius: 50%;
  filter: blur(24px);
}

/* --- Partners --- */
.partners-section {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid var(--color-slate-100);
  border-bottom: 1px solid var(--color-slate-100);
}
.partners-label {
  text-align: center;
  color: var(--color-slate-900);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.partner-logo {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  color: var(--color-slate-400);
}
.partner-logo:hover {
  color: #0692d4;
}
/* --- Services --- */
.services-section {
  padding: 6rem 0;
  background-color: var(--color-slate-50);
}
.section-header {
  margin-bottom: 4rem;
  max-width: 60rem;
}
.section-eyebrow {
  color: var(--color-soulBlue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-slate-900);
  line-height: 1.25;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-100);
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-0.5rem);
}

.icon-box {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background-color: var(--color-slate-50);
  border-radius: 1rem;
  width: fit-content;
  transition:
    background-color 0.3s,
    color 0.3s;
  color: var(--color-soulBlue);
}
.service-card:hover .icon-box {
  background-color: var(--color-soulBlue);
  color: white;
}
.service-card:nth-child(2) .icon-box,
.service-card:nth-child(3) .icon-box {
  color: var(--color-soulTeal);
}
.service-card:nth-child(2):hover .icon-box,
.service-card:nth-child(3):hover .icon-box {
  color: white;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-desc {
  color: var(--color-slate-500);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
.service-stat {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-slate-100);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-soulBlue);
}

/* --- Bento Grid --- */
.bento-section {
  padding: 6rem 0;
  background: white;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bento-item {
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Large Case Study */
.bento-large {
  background-color: var(--color-soulBlack);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  opacity: 0.2;
  transform: scale(1.5);
  pointer-events: none;
  transition: transform 0.3s;
}
.bento-large:hover .bento-bg-icon {
  transform: scale(1.1);
}

.case-tag {
  background-color: var(--color-soulBlue);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
}
.case-title {
  font-size: 1.875rem;
  font-weight: 700;
  max-width: 28rem;
  position: relative;
  z-index: 10;
}

.case-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}
.c-stat-val {
  font-size: 1.875rem;
  font-weight: 700;
}
.text-soulBlue {
  color: var(--color-soulBlue);
}
.text-soulTeal {
  color: var(--color-soulTeal);
}
.c-stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-slate-400);
  font-weight: 700;
}

/* SEO Study */
.bento-seo {
  background-color: rgba(6, 146, 212, 0.05);
  border: 1px solid rgba(6, 146, 212, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.seo-card-inner {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
  transition: transform 0.3s;
}
.bento-seo:hover .seo-card-inner {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}
.avatar-group {
  display: flex;
}
.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.5rem;
}
.avatar:first-child {
  margin-left: 0;
}
.avatar.a1 {
  background: rgba(6, 146, 212, 0.2);
}
.avatar.a2 {
  background: rgba(6, 146, 212, 0.4);
}
.avatar.a3 {
  background: rgba(6, 146, 212, 0.6);
}

/* Metrics Box */
.bento-metrics {
  background-color: var(--color-soulTeal);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.metric-huge {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.metric-link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}
.metric-link:hover {
  opacity: 0.9;
}

/* Analytics Widget Styles (Custom implementation of provided Tailwind design) */
.analytics-section {
  padding-bottom: 6rem;
}
.analytics-card-container {
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-slate-200);
  overflow: hidden;
  width: 100%;
  max-width: 64rem; /* max-w-5xl */
  margin: 0 auto;
}
.metrics-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-slate-200);
}
@media (min-width: 768px) {
  .metrics-header {
    flex-direction: row;
  }
}
.metric-btn {
  flex: 1;
  padding: 1.5rem;
  text-align: left;
  border-right: 1px solid var(--color-slate-200);
  transition: background-color 0.2s;
  position: relative;
  cursor: pointer;
}
.metric-btn:last-child {
  border-right: none;
}
.metric-btn:hover {
  background-color: var(--color-slate-50);
}
.metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Chart Area */
.chart-wrapper {
  padding: 1.5rem;
  padding-top: 3rem;
  position: relative;
  min-height: 400px;
}
#chart-container {
  position: relative;
  width: 100%;
  height: 300px;
  cursor: crosshair;
  user-select: none;
}
/* Dropdown */
.chart-controls {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 20;
}
.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-slate-300);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-600);
  cursor: pointer;
  transition: background-color 0.2s;
}
.dropdown-btn:hover {
  background-color: var(--color-slate-50);
}
.widget-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.25rem;
  background: white;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-slate-200);
  padding: 0.25rem 0;
  z-index: 30;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 0.1s ease-out;
  transform-origin: top right;
}
.widget-dropdown-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  visibility: visible;
}
.dropdown-item {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-slate-700);
  background: none;
  border: none;
  cursor: pointer;
}
.dropdown-item:hover {
  background-color: var(--color-slate-50);
}
.dropdown-item.active {
  color: var(--color-soulBlue);
  background-color: rgba(6, 146, 212, 0.05);
  font-weight: 600;
}

/* Tooltip */
#tooltip {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-xl);
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--color-slate-200);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s;
  top: 0;
  left: 0;
  width: 200px;
}

/* --- Process Section --- */
.process-section {
  padding: 6rem 0;
  background-color: var(--color-soulBlack);
  color: white;
  position: relative;
  overflow: hidden;
}

.process-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}
.p-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--color-soulBlue);
  border-radius: 50%;
  filter: blur(100px);
}
.p-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: var(--color-soulTeal);
  border-radius: 50%;
  filter: blur(100px);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  position: relative;
  z-index: 10;
  align-items: center;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.step-num {
  font-size: 3.75rem;
  font-weight: 900;
  opacity: 0.2;
  transition: opacity 0.3s;
  line-height: 1;
}
.step-item:hover .step-num {
  opacity: 1;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  color: var(--color-slate-400);
  line-height: 1.625;
}

.audit-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
}
.input-group {
  margin-bottom: 1rem;
}
.input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-slate-500);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--color-soulBlue);
}
.btn-full {
  width: 100%;
  text-align: center;
}
.btn-submit {
  width: 100%;
  background: var(--color-soulBlue);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-submit:hover {
  background: var(--color-soulTeal);
  transform: scale(1.02);
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.stars {
  display: flex;
  color: var(--color-soulBlue);
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.quote-main {
  font-size: 1.875rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.625;
  margin-bottom: 2rem;
}
.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(6, 146, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-soulBlue);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.review-card {
  background: var(--color-slate-50);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-slate-100);
  transition: background-color 0.2s;
}
.review-card:hover {
  background-color: rgba(6, 146, 212, 0.05);
}
.mini-stars {
  display: flex;
  color: var(--color-soulBlue);
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}
.mini-stars svg {
  width: 0.75rem;
  height: 0.75rem;
}
.review-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-600);
}
.review-author {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-400);
  text-transform: uppercase;
  margin-top: 1rem;
  letter-spacing: -0.025em;
}

/* --- CTA Section --- */
.cta-section {
  padding: 5rem 0;
}
.cta-card {
  background: linear-gradient(to right, var(--color-soulBlue), #007bb3);
  border-radius: 3rem;
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}
.cta-content {
  position: relative;
  z-index: 10;
}
.cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}
.btn-cta {
  background: white;
  color: var(--color-soulBlue);
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--shadow-2xl);
  transition: all 0.2s;
}
.btn-cta:hover {
  background: var(--color-slate-100);
}
.btn-cta:active {
  transform: scale(0.95);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}
.cta-feat-item {
  display: flex;
  align-items: center;
}
.cta-feat-item svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-200);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--color-slate-500);
  max-width: 20rem;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  cursor: pointer;
}
.social-icon:hover {
  border-color: var(--color-soulBlue);
}
.social-icon svg {
  color: var(--color-soulBlue);
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-slate-900);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-500);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col li:hover {
  color: var(--color-soulBlue);
}

.footer-bottom {
  border-top: 1px solid var(--color-slate-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  color: var(--color-slate-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bottom-links {
  display: flex;
  gap: 1.5rem;
}
.bottom-links a:hover {
  color: var(--color-slate-900);
}

/* --- Media Queries (Responsiveness) --- */
@media (min-width: 768px) {
  .navbar .nav-links {
    display: flex;
  }
  .hero-section {
    text-align: left;
  }
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
  .trust-badges {
    justify-content: flex-start;
  }
  .hero-visual-col {
    margin-top: 0;
    width: 40%;
  }

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

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
  .bento-large {
    grid-column: span 2;
  }
  .bento-sauce {
    grid-column: span 2;
    flex-direction: row;
  }
  .bento-sauce div:first-child {
    text-align: left;
    margin-bottom: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }

  .cta-card {
    padding: 5rem;
  }
  .cta-title {
    font-size: 3.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  } /* Note: Adjusting grid for 5 cols on lg */
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.fill-current {
  fill: var(--color-soulBlue);
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4.5rem;
  }
  .partners-grid {
    gap: 5rem;
  }
  .partner-logo {
    font-size: 1.875rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* --- Team Section --- */
.team-section {
  padding: 6rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-slate-100);
}

.team-header-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-card {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
  border-color: rgba(6, 146, 212, 0.3); /* SoulBlue hint */
}

.team-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-card:hover .team-name {
  color: var(--color-soulBlue);
}

.team-card:hover .social-link {
  color: var(--color-soulBlue);
}

.team-card:hover .role-badge {
  background: var(--color-soulBlue);
  color: var(--color-slate-200);
}

.role-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--color-soulBlack);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
}

.team-content {
  padding: 2rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--color-slate-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-socials {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-slate-50);
}

.social-link {
  color: var(--color-slate-400);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--color-soulBlue);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Tablet/Desktop */
@media (min-width: 768px) {
  .team-header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
