:root {
  --teal: #54badf;
  --white: #f1f1f1;
  --black: #0c0c0c;
  --surface: rgba(241, 241, 241, 0.06);
  --glass: rgba(84, 186, 223, 0.12);
  --midnight: #0f1b2a;
  --slate: #1c2d3f;
  --text-primary: #f7f9fc;
  --text-secondary: rgba(247, 249, 252, 0.72);
  --shadow-soft: 0 32px 60px -28px rgba(12, 12, 12, 0.8);
  --shadow-card: 0 24px 48px -24px rgba(12, 12, 12, 0.75);
  --max-width: 95%;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(84, 186, 223, 0.35), transparent 45%),
    radial-gradient(circle at top right, rgba(84, 186, 223, 0.12), transparent 50%),
    linear-gradient(180deg, #05090f, #0b1522 45%, #0c1825 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(84, 186, 223, 0.5), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(84, 186, 223, 0.18), transparent 45%);
  filter: blur(140px);
  opacity: 0.8;
  z-index: -2;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  padding: 0;
  background: rgba(5, 9, 15, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(84, 186, 223, 0.14);
  z-index: 20;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  box-shadow: 0 12px 24px -20px rgba(5, 9, 15, 0.75);
}

.nav-inner {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.nav-inner > * {
  flex-shrink: 0;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-scrolled {
  height: 40px;
  background: rgba(5, 9, 15, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 32px -24px rgba(5, 9, 15, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 51px !important;
  width: auto !important;
  max-height: 51px !important;
  display: block;
  transition: height 0.25s ease;
}

.brand.scrolled .brand-logo {
  height: 26px !important;
  max-height: 26px !important;
}

.brand-tagline.scrolled-tagline {
  font-size: 0.68rem;
}

.brand-tagline {
  display: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.72);
}

.nav-cta .button {
  padding: 12px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: padding 0.25s ease, font-size 0.25s ease;
}

.nav.nav-scrolled .nav-cta .button {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--teal);
  border-color: rgba(84, 186, 223, 0.3);
  background: rgba(84, 186, 223, 0.1);
  transform: scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.4);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(84, 186, 223, 0.3);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-dropdown-toggle:hover {
  border-color: var(--teal);
  background: rgba(84, 186, 223, 0.1);
  transform: scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.4);
}

.nav-dropdown-toggle svg {
  transition: transform 0.25s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: rgba(5, 9, 15, 0.98);
  border: 1px solid rgba(84, 186, 223, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 32px -12px rgba(12, 12, 12, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
  backdrop-filter: blur(12px);
  text-align: left;
}

.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-align: left;
}

.nav-dropdown-menu a:hover {
  background: rgba(84, 186, 223, 0.15);
  color: var(--teal);
}

.nav-scrolled .nav-dropdown-toggle {
  padding: 6px 14px;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  padding: 160px 0 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.78), rgba(12, 12, 12, 0.6)),
    url('images/hero-calltastic.webp') center/cover no-repeat;
  opacity: 0.35;
  z-index: -3;
}

.hero-content {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 20px 0 100px;
}

.hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy p {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.hero-secondary {
  color: rgba(241, 241, 241, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.pill,
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--teal);
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px -4px rgba(84, 186, 223, 0.4);
}

.pill:hover,
.hero-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px -4px rgba(84, 186, 223, 0.8);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--black);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  border: 1px solid transparent;
  box-shadow: 0 12px 32px -18px rgba(84, 186, 223, 0.9);
}

.button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 48px -12px rgba(84, 186, 223, 1.2), 0 0 0 1px rgba(84, 186, 223, 0.3);
}

.button.outline {
  background: transparent;
  color: var(--teal);
  border-color: rgba(84, 186, 223, 0.5);
  box-shadow: none;
}

.button.outline:hover {
  border-color: var(--teal);
  color: var(--text-primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px -8px rgba(84, 186, 223, 0.6), 0 0 0 1px rgba(84, 186, 223, 0.3);
}

.section {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 100px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-secondary);
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(241, 241, 241, 0.65);
}

.pain {
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(84, 186, 223, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.pain-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pain-header-wrapper {
  text-align: center;
}

.pain-header-wrapper .eyebrow {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(84, 186, 223, 0.1);
  border: 1px solid rgba(84, 186, 223, 0.2);
}

.pain-header-wrapper h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, rgba(84, 186, 223, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pain-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.pain-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.pain-intro-box {
  padding: 0;
}

.pain-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

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

.pain-feature-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.12), rgba(84, 186, 223, 0.04));
  border: 2px solid rgba(84, 186, 223, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(84, 186, 223, 0.25);
}

.pain-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(84, 186, 223, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pain-feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px -12px rgba(84, 186, 223, 0.5);
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.2), rgba(84, 186, 223, 0.08));
}

.pain-feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.8;
}

.feature-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  flex: 1;
}

.pain-cta-wrapper {
  text-align: center;
  margin-top: 16px;
}

.pain-cta-wrapper .button {
  font-size: 1.15rem;
  padding: 18px 40px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 16px 40px -12px rgba(84, 186, 223, 0.8);
}

.section-cta {
  margin-top: 40px;
}

.process {
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  inset: 80px 0 0;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.18), transparent);
  filter: blur(60px);
  z-index: -1;
}

.process-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-card {
  padding: 36px;
  border-radius: 32px;
  background: rgba(12, 12, 12, 0.52);
  border: 1px solid rgba(84, 186, 223, 0.14);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 48px -16px rgba(84, 186, 223, 0.4), var(--shadow-card);
  border-color: rgba(84, 186, 223, 0.3);
}

.process-card h3 {
  margin: 0 0 4px;
}

.icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), rgba(84, 186, 223, 0.25));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -12px rgba(84, 186, 223, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover .icon-ring {
  transform: scale(1.1);
  box-shadow: 0 16px 36px -8px rgba(84, 186, 223, 1);
}

.icon-ring img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.process-card p {
  color: rgba(241, 241, 241, 0.82);
  margin: 0;
}

.case-studies {
  position: relative;
}

.case-studies::before {
  content: '';
  position: absolute;
  inset: 80px 0 0;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.12), transparent);
  filter: blur(60px);
  z-index: -1;
}

.case-studies-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px;
  border-radius: 32px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(84, 186, 223, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-study-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

.case-study-intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(84, 186, 223, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study-card:hover {
  border-color: rgba(84, 186, 223, 0.3);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 48px -24px rgba(84, 186, 223, 0.4), 0 0 0 1px rgba(84, 186, 223, 0.2);
}

.case-study-card:hover::before {
  opacity: 1;
}

.case-study-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.8);
  aspect-ratio: 4 / 3;
}

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

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.case-study-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(84, 186, 223, 0.15);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.case-study-intro-content h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--text-primary);
}

.case-study-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.case-study-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-study-section h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 700;
}

.case-study-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-study-section li {
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.case-study-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 16px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.15), rgba(84, 186, 223, 0.05));
  border: 1px solid rgba(84, 186, 223, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px -8px rgba(84, 186, 223, 0.5);
  border-color: rgba(84, 186, 223, 0.4);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

.results-note {
  margin: 24px 0 0;
  padding: 24px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.2), rgba(84, 186, 223, 0.1));
  border: 2px solid rgba(84, 186, 223, 0.4);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.4);
  letter-spacing: 0.02em;
}

.case-study-takeaway {
  padding: 24px;
  border-radius: 20px;
  background: rgba(84, 186, 223, 0.1);
  border: 1px solid rgba(84, 186, 223, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-study-takeaway:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px -12px rgba(84, 186, 223, 0.4);
  border-color: rgba(84, 186, 223, 0.4);
}

.case-study-takeaway strong {
  display: block;
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-takeaway p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  transition: all 0.2s ease;
  width: fit-content;
}

.case-study-link:hover {
  gap: 12px;
  color: var(--text-primary);
  transform: scale(1.05);
  text-shadow: 0 0 12px rgba(84, 186, 223, 0.6);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 32px 28px;
}

.pillar-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.55);
  border: 1px solid rgba(241, 241, 241, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(84, 186, 223, 0.4);
  box-shadow: 0 16px 40px -12px rgba(84, 186, 223, 0.4);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(84, 186, 223, 0.15);
  display: grid;
  place-items: center;
}

.pillar-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pillar-card h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.pillar-card p {
  color: rgba(241, 241, 241, 0.78);
  margin: 0;
}

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

.why-card {
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.48);
  border: 1px solid rgba(241, 241, 241, 0.08);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px -12px rgba(84, 186, 223, 0.4);
  border-color: rgba(84, 186, 223, 0.3);
}

.logo-reel {
  position: relative;
  margin-top: 64px;
  padding: 0;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.logo-reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0), rgba(255, 255, 255, 0.95) 25%,
      rgba(255, 255, 255, 0.95) 75%, rgba(12, 12, 12, 0));
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.logo-reel-surface {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.logo-reel-surface::before,
.logo-reel-surface::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-reel-surface::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.logo-reel-surface::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.logo-reel-track {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 8px 80px;
  animation: logo-scroll 26s linear infinite;
  width: max-content;
}

.logo-reel-track:hover {
  animation-play-state: paused;
}

.logo-reel-track img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0) saturate(1.1);
  opacity: 0.8;
}

/* Logo Grid - Static Version */
.logo-grid-wrapper {
  margin-top: 64px;
  padding: 40px 0;
  text-align: center;
}

.logo-grid-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px var(--pad);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 
    0 -4px 16px rgba(255, 255, 255, 0.15),
    0 4px 16px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-grid img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0) saturate(1.1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .logo-grid img {
    height: 50px;
  }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industries-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 12, 12, 0.58);
  border-radius: 999px;
  border: 1px solid rgba(84, 186, 223, 0.2);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.industries-grid span:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.5);
  border-color: rgba(84, 186, 223, 0.4);
}

.industries-copy {
  margin-top: 28px;
  color: var(--text-secondary);
}

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

.testimonial {
  padding: 32px;
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(241, 241, 241, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px -12px rgba(84, 186, 223, 0.4);
  border-color: rgba(84, 186, 223, 0.3);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 24px;
  font-size: 4rem;
  color: rgba(84, 186, 223, 0.2);
  line-height: 1;
}

.testimonial p {
  margin: 0;
  padding-top: 32px;
  color: rgba(241, 241, 241, 0.9);
  font-size: 1.03rem;
}

.testimonial span {
  display: block;
  margin-top: 24px;
  color: rgba(241, 241, 241, 0.6);
  font-weight: 600;
}

.cta.repeat {
  position: relative;
}

.cta.repeat::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: 0 auto;
  max-width: var(--max-width);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(84, 186, 223, 0.25), rgba(84, 186, 223, 0.05));
  filter: blur(40px);
  transform: scale(0.96);
  z-index: -1;
}

.cta-card {
  padding: 56px 48px;
  border-radius: 40px;
  background: radial-gradient(circle at top left, rgba(84, 186, 223, 0.32), rgba(12, 12, 12, 0.72)),
    rgba(12, 12, 12, 0.7);
  border: 1px solid rgba(84, 186, 223, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 64px -24px rgba(84, 186, 223, 0.5), var(--shadow-soft);
  border-color: rgba(84, 186, 223, 0.3);
}

.cta-card p {
  color: rgba(241, 241, 241, 0.84);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.faq-grid {
  display: grid;
  gap: 18px;
}

details {
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(241, 241, 241, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

details:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.3);
  border-color: rgba(84, 186, 223, 0.2);
}

summary {
  font-weight: 700;
  font-size: 1.05rem;
  outline: none;
}

details[open] summary {
  color: var(--teal);
}

details p {
  margin-top: 16px;
  color: rgba(241, 241, 241, 0.76);
}

.footer {
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.3), rgba(12, 12, 12, 0.85));
}

.footer-cta {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.footer-meta {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(241, 241, 241, 0.6);
}

.footer-meta img {
  height: 40px;
  filter: brightness(1.1);
}

.powered-by {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(241, 241, 241, 0.08);
  border: 1px solid rgba(241, 241, 241, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.powered-by:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(84, 186, 223, 0.5);
  box-shadow: 0 8px 24px -8px rgba(84, 186, 223, 0.4);
}

.powered-by img {
  height: 24px;
  width: auto;
  filter: none;
}

.hero-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(241, 241, 241, 0.08);
  border-bottom: 1px solid rgba(241, 241, 241, 0.08);
  margin-top: 40px;
  backdrop-filter: blur(12px);
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  padding: 16px 48px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.6);
}

.marquee-track span::before {
  content: '●';
  margin-right: 16px;
  color: rgba(84, 186, 223, 0.6);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .nav {
    height: 70px;
  }

  .nav-scrolled {
    height: 38px;
  }

  .hero-content {
    padding: 20px 0 80px;
  }

  .cta-card {
    padding: 48px 32px;
  }

  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .case-study-card {
    gap: 32px;
    padding: 32px;
  }

  .case-study-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-study-image {
    max-width: 100%;
  }

  .results-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-dropdown-toggle {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .nav-dropdown-menu {
    min-width: 200px;
  }
}

@media (max-width: 720px) {
  .nav {
    height: 60px;
  }

  .nav-scrolled {
    height: 36px;
  }

  .hero {
    padding-top: 130px;
  }

  .section {
    padding: 80px 0;
  }

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

  .logo-reel-surface {
    border-radius: 0;
  }

  .logo-reel-surface::before,
  .logo-reel-surface::after {
    width: 64px;
  }

  .logo-reel-track {
    gap: 40px;
    padding: 28px 48px;
  }

  .pain-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pain-intro-box {
    padding: 0;
  }

  .pain-intro-text {
    font-size: 1.15rem;
  }

  .pain-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pain-feature-card {
    padding: 24px 20px;
  }

  .feature-text {
    font-size: 1rem;
  }

  .pain-cta-wrapper .button {
    font-size: 1rem;
    padding: 16px 32px;
  }

  .case-study-card {
    padding: 24px;
    gap: 24px;
  }

  .case-study-intro-content h3 {
    font-size: 1.5rem;
  }

  .case-study-intro {
    font-size: 1rem;
  }

  .results-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .nav-dropdown-toggle {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .nav-dropdown-menu {
    min-width: 180px;
    right: 0;
    left: auto;
  }
}

@media (max-width: 540px) {
  body {
    background: linear-gradient(180deg, #05090f, #0c1825);
  }

  .nav {
    height: 54px;
  }

  .nav-scrolled {
    height: 34px;
  }

  .nav::after {
    border-radius: 0;
  }

  .brand {
    flex-direction: column;
    gap: 10px;
  }

  .brand-tagline {
    text-align: center;
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 140px;
  }

  .section {
    width: min(100% - 32px, 100%);
  }

  .hero-content {
    width: min(100% - 32px, 100%);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  /* Smaller pill on mobile */
  .pill,
  .hero-pill {
    padding: 8px 14px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .pain-header-wrapper h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .pain-subtitle {
    font-size: 1.1rem;
  }

  .pain-intro-box {
    padding: 0;
  }

  .pain-intro-text {
    font-size: 1rem;
  }

  .pain-feature-card {
    padding: 20px 18px;
    flex-direction: column;
    gap: 12px;
  }

  .feature-icon {
    font-size: 1.3rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }

  .pain-cta-wrapper .button {
    font-size: 0.95rem;
    padding: 14px 28px;
  }

  .case-study-card {
    padding: 20px;
    gap: 20px;
  }

  .case-study-intro-content h3 {
    font-size: 1.35rem;
  }

  .case-study-details {
    gap: 24px;
  }

  .case-study-section {
    gap: 12px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-dropdown-toggle {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .nav-dropdown-toggle svg {
    width: 10px;
    height: 6px;
  }

  .nav-dropdown-menu {
    min-width: 160px;
    padding: 6px;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* Contact Page Styles */
/* Contact Hero Section - Compact & Modern */
.hero-compact {
  padding-bottom: 60px !important; /* Override default hero padding */
  min-height: auto;
}

.hero-compact .hero-content {
  padding-bottom: 0 !important;
}

/* Contact Form Section - Tight Spacing */
.contact-form-section {
  padding: 0 0 80px;
  min-height: auto;
  position: relative;
  z-index: 2;
  margin-top: -20px; /* Pull form up slightly */
}

.contact-container {
  width: min(100% - 48px, 800px);
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--text);
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(12, 12, 12, 0.52);
  border: 1px solid rgba(84, 186, 223, 0.14);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .form-group:not(:has(.form-row)) {
  margin-bottom: 24px;
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form .required {
  color: var(--teal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(84, 186, 223, 0.2);
  background: rgba(12, 12, 12, 0.6);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(12, 12, 12, 0.8);
  box-shadow: 0 0 0 3px rgba(84, 186, 223, 0.1);
}

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

.contact-form .checkbox-group-multi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(84, 186, 223, 0.2);
  background: rgba(12, 12, 12, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .checkbox-label:hover {
  border-color: var(--teal);
  background: rgba(84, 186, 223, 0.1);
}

.contact-form .checkbox-label input[type="checkbox"] {
  width: auto;
  height: auto;
  margin: 0;
}

.contact-form .checkbox-label span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-form .form-actions {
  margin-top: 32px;
  text-align: center;
}

.contact-form .button.primary {
  padding: 16px 48px;
  font-size: 1.05rem;
}

.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  text-align: center;
}

.form-message.success {
  background: rgba(84, 186, 223, 0.15);
  border: 1px solid rgba(84, 186, 223, 0.3);
  color: var(--teal);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

@media (max-width: 768px) {
  /* Slightly smaller pill on tablet */
  .pill,
  .hero-pill {
    padding: 10px 16px;
    font-size: 0.68rem;
  }

  .hero-compact {
    padding-bottom: 40px !important;
  }

  .contact-form-section {
    padding: 0 0 60px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form .checkbox-group-multi {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   HAMBURGER MENU - Mobile Navigation
   ============================================================================ */

/* Hamburger Button - Hidden on Desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--teal);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation when Active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 960px) {
  /* Show Hamburger on Mobile */
  .hamburger {
    display: flex;
  }
  
  /* Hide Desktop Navigation */
  .nav-right-group {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(5, 9, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(84, 186, 223, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 12px 32px -12px rgba(5, 9, 15, 0.9);
  }
  
  /* Show Mobile Menu when Active */
  .nav-right-group.active {
    max-height: 400px;
    padding: 24px 0;
  }
  
  /* Mobile Menu Links */
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  
  .nav-link {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(84, 186, 223, 0.08);
    transition: background 0.2s ease, padding-left 0.2s ease;
  }
  
  .nav-link:hover {
    background: rgba(84, 186, 223, 0.08);
    padding-left: 32px;
  }
  
  /* Mobile CTA Button */
  .nav-cta {
    padding: 16px 24px;
    width: 100%;
  }
  
  .nav-cta .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Adjust Brand Logo for Mobile */
  .brand-tagline {
    display: none;
  }
  
  .brand-logo {
    max-height: 40px !important;
    height: 40px !important;
  }
  
  /* Prevent Body Scroll when Menu is Open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Smaller Mobile Adjustments */
@media (max-width: 480px) {
  .nav {
    height: 64px;
  }
  
  .nav-right-group {
    top: 64px;
  }
  
  .brand-logo {
    max-height: 36px !important;
    height: 36px !important;
  }
  
  .hamburger {
    width: 28px;
    height: 28px;
  }
  
  .hamburger-line {
    height: 2.5px;
  }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
