@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");
:root {
  --accent: #1e3a8a;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-900: #0d1117;
  --gray-600: #57606a;
  --gray-400: #8b949e;
  --gray-200: #d0d7de;
  --black: #000000;
}

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

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1c1917;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1c1917;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 32px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #57534e;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a8a29e;
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1c1917;
  line-height: 1.5;
  padding: 30px 0 30px 30px;
  border-left: 4px solid #0066ff;
  margin: 40px 0;
}

.nav {
  background: linear-gradient(135deg, #1c1917 0%, rgba(28, 25, 23, 0.98) 100%);
  padding: 20px 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  margin-right: 3em;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown:hover .nav-dropdown-caret, .nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.nav-dropdown-caret {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  transform: translateY(-6px);
  min-width: 280px;
  background: #1c1917;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid #0066ff;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #0066ff;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.2px;
  line-height: 1.4;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-dropdown-menu li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: #0066ff;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: #ffffff;
  color: #1c1917;
}

.hero {
  padding: 160px 60px 80px;
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  color: #0066ff;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-caption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-weight: 500;
}

.featured-bar {
  background: #ffffff;
  padding: 60px;
  border-bottom: 1px solid #e7e5e4;
}

.featured-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #57534e;
  font-weight: 600;
  margin-bottom: 30px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.featured-logos img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.featured-logos img:hover {
  opacity: 1;
}

.featured-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.featured-stat {
  text-align: center;
}

.featured-stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1c1917;
}

.featured-stat-label {
  font-size: 14px;
  color: #57534e;
  margin-top: 8px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  transition: opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.8;
}

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

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover {
  color: #ffffff;
}
.nav-link.active {
  color: #ffffff;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0066ff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s ease;
}
.menu-toggle:hover {
  opacity: 0.7;
}

.header .btn-primary {
  background: #0066ff;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header .btn-primary:hover {
  background: #1c1917;
  gap: 15px;
}
.header .btn-primary::after {
  content: "→";
}

@media only screen and (max-width: 1200px) {
  .hero {
    padding: 140px 40px 60px;
  }
  .hero-title {
    font-size: 44px;
  }
  .featured-bar {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-stats {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    padding: 15px 30px;
  }
  .nav-container {
    height: auto;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 100px 30px 60px;
    margin-top: 60px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  .featured-bar {
    padding: 40px 30px;
  }
  .featured-stats {
    flex-direction: column;
    gap: 30px;
  }
  .logo {
    font-size: 22px;
  }
}
@media only screen and (max-width: 600px) {
  .hero {
    padding: 80px 20px 50px;
  }
  .hero-title {
    font-size: 28px;
  }
  .featured-bar {
    padding: 30px 20px;
  }
  .logo {
    font-size: 20px;
  }
}
.nav-mobile-cta {
  display: none;
}

.icon-close {
  display: none;
}

@media only screen and (max-width: 768px) {
  .nav-logo img {
    max-width: 150px;
    height: auto;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile-cta {
    display: block;
  }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-right: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 8px 0 16px;
    background: #1c1917;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 999;
  }
  .nav.is-open .nav-links > li > a {
    padding: 15px 30px;
    font-size: 15px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav.is-open .nav-links > li:last-child > a,
  .nav.is-open .nav-links > li:last-child {
    border-bottom: none;
  }
  .nav.is-open .nav-mobile-cta a {
    display: block;
    margin: 12px 30px 0;
    padding: 14px 24px;
    background: #0066ff;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: none;
  }
  .nav.is-open .nav-mobile-cta a:hover {
    background: #ffffff;
    color: #1c1917;
  }
  .nav.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 0;
    box-shadow: none;
  }
  .nav.is-open .nav-dropdown.is-open .nav-dropdown-menu::before {
    display: none;
  }
  .nav.is-open .nav-dropdown.is-open .nav-dropdown-menu li a {
    padding: 12px 48px;
    font-size: 13px;
  }
}
.footer {
  background: #1c1917;
  padding: 40px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .footer {
    padding: 20px 15px;
  }
}
.btn-primary {
  background: #0066ff;
  color: #ffffff;
  padding: 18px 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #ffffff;
  color: #1c1917;
  gap: 15px;
}
.btn-primary::after {
  content: "→";
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.positioning {
  background: #fafaf9;
  padding: 100px 60px;
}

.positioning-container {
  max-width: 1000px;
  margin: 0 auto;
}

.positioning-quote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.4;
  margin-bottom: 80px;
}
.positioning-quote span {
  color: #0066ff;
  font-weight: 700;
}

.positioning-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.comparison-card {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  padding: 40px;
  transition: all 0.3s ease;
}
.comparison-card:hover {
  border-color: #0066ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.comparison-vs {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #57534e;
  font-weight: 600;
  margin-bottom: 12px;
}

.comparison-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 12px;
}

.comparison-desc {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.clients {
  background: #ffffff;
  padding: 80px 60px;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-height: 60px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.client-logo img:hover {
  opacity: 1;
}

.services {
  background: #1c1917;
  color: #ffffff;
  padding: 120px 60px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 80px;
}

.services-header-left {
  max-width: 500px;
}

.services-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0066ff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.service-card:hover::before {
  transform: scaleY(1);
}

.service-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0066ff;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s ease;
  text-decoration: none;
}
.service-link:hover {
  gap: 15px;
  color: #0066ff;
}
.service-link::after {
  content: "→";
}

.services-cta {
  text-align: center;
}

.services-cta-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s ease;
  text-decoration: none;
}
.services-cta-link:hover {
  gap: 15px;
  color: #0066ff;
}
.services-cta-link::after {
  content: "→";
}

.cta {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #ffffff;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0066ff 0%, transparent 70%);
  opacity: 0.1;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
  width: 100%;
  background: #0066ff;
  color: #ffffff;
  padding: 18px 36px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: #1c1917;
}
.btn-submit::after {
  content: "→";
}

.service-link {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s ease;
}
.service-link:hover {
  gap: 15px;
  color: #0066ff;
}
.service-link::after {
  content: "→";
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0066ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s ease;
}
.tool-link:hover {
  gap: 12px;
}
.tool-link::after {
  content: "→";
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0066ff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.tool-card {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}
.tool-card:hover {
  border-color: #0066ff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.tool-card.coming-soon {
  opacity: 0.7;
}
.tool-card.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 20px;
  right: 20px;
  background: #a8a29e;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tool-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 12px;
}
.tool-card p {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tool-icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 58, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #0066ff;
  font-size: 24px;
  font-weight: 700;
}

.tool-meta {
  font-size: 13px;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-dark {
  background: #1c1917;
  color: #ffffff;
  padding: 120px 60px;
}

.section-light {
  background: #fafaf9;
  padding: 120px 60px;
}

.section-white {
  background: #ffffff;
  padding: 80px 60px;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.hero-section {
  background: linear-gradient(135deg, #1c1917 0%, #1a1f2e 50%, #2c3e50 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.templates-section {
  background: #1c1917;
  color: #ffffff;
  padding: 80px 60px;
}

.related-services {
  background: #fafaf9;
  padding: 80px 60px;
}

.trust-section {
  padding: 60px;
  background: #1c1917;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.templates-container {
  max-width: 1100px;
  margin: 0 auto;
}

.related-container {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 20px;
}
.section-header p {
  font-size: 18px;
  color: #57534e;
  max-width: 700px;
  margin: 0 auto;
}

.related-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 15px;
}
.related-header p {
  font-size: 16px;
  color: #57534e;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-form-wrapper {
  background: #fafaf9;
  padding: 50px;
  border: 1px solid #e7e5e4;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #1c1917;
  background: #ffffff;
  border: 1px solid #e7e5e4;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #0066ff;
}
.form-input::placeholder {
  color: #a8a29e;
}

.form-textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #1c1917;
  background: #ffffff;
  border: 1px solid #e7e5e4;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-textarea:focus {
  outline: none;
  border-color: #0066ff;
}
.form-textarea::placeholder {
  color: #a8a29e;
}

.form-submit {
  margin-top: 30px;
}

.form-note {
  margin-top: 20px;
  font-size: 13px;
  color: #a8a29e;
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-info .highlight-box {
  background: #fafaf9;
  border-left: 4px solid #0066ff;
  padding: 25px 30px;
  margin: 30px 0;
}
.contact-info .highlight-box p {
  font-size: 16px;
  color: #1c1917;
  margin: 0;
  font-style: italic;
}

.what-to-expect {
  margin-top: 40px;
}
.what-to-expect h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 20px;
}

.expect-list {
  list-style: none;
}
.expect-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e7e5e4;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: #57534e;
}
.expect-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0066ff;
  flex-shrink: 0;
  margin-top: 8px;
}

.alternative-contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e7e5e4;
}
.alternative-contact h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.alternative-contact a {
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.alternative-contact a:hover {
  text-decoration: underline;
}

.consideration-list {
  list-style: none;
  margin: 30px 0;
}
.consideration-list li {
  padding: 20px 25px;
  background: #ffffff;
  border: 1px solid #e7e5e4;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  color: #57534e;
  line-height: 1.6;
}
.consideration-list li::before {
  content: "?";
  width: 30px;
  height: 30px;
  background: #0066ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reality-box {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid #f59e0b;
  padding: 30px;
  margin: 30px 0;
}
.reality-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reality-box h3::before {
  content: "⚠";
  color: #f59e0b;
}
.reality-box p {
  font-size: 15px;
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 15px;
}
.reality-box p:last-child {
  margin-bottom: 0;
}

.deliverable-highlight {
  background: rgba(30, 58, 138, 0.1);
  border-left: 4px solid #0066ff;
  padding: 40px;
  margin: 40px 0;
}
.deliverable-highlight h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 15px;
}
.deliverable-highlight p {
  font-size: 16px;
  color: #57534e;
  margin: 0;
  line-height: 1.7;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 18px;
}

.client-logo {
  height: 40px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}

@media only screen and (max-width: 1200px) {
  .section-dark,
  .section-light,
  .hero-section {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 60px);
  }
  .section-white,
  .templates-section,
  .related-services {
    padding: clamp(50px, 6.5vw, 80px) clamp(30px, 5vw, 60px);
  }
}
@media only screen and (max-width: 992px) {
  .positioning-comparison,
  .services-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid,
  .tools-grid,
  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-container {
    gap: clamp(30px, 5vw, 60px);
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-card,
  .tool-card {
    padding: clamp(30px, 4vw, 50px);
  }
  .contact-form-wrapper {
    padding: clamp(30px, 4vw, 50px);
  }
}
@media only screen and (max-width: 768px) {
  .positioning {
    padding: 60px 30px;
  }
  .positioning-quote {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .positioning-comparison,
  .services-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .services {
    padding: 80px 30px;
  }
  .services-title {
    font-size: 36px;
  }
  .service-card {
    padding: 30px;
  }
  .clients {
    padding: 60px 30px;
  }
  .cta {
    padding: 60px 30px;
  }
  .cta-title {
    font-size: 32px;
  }
  .section-dark,
  .section-light,
  .hero-section {
    padding: 60px 20px;
  }
  .section-white,
  .templates-section,
  .related-services,
  .trust-section {
    padding: 50px 20px;
  }
  .service-grid,
  .tools-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card,
  .tool-card {
    padding: 30px 20px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-submit {
    padding: 15px 28px;
    font-size: 13px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-header p {
    font-size: 16px;
  }
  .trust-container {
    flex-direction: column;
    gap: 30px;
  }
  .consideration-list li {
    padding: 15px 20px;
    font-size: 15px;
  }
  .reality-box,
  .deliverable-highlight {
    padding: 25px 20px;
  }
  .contact-info .highlight-box {
    padding: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .section-dark,
  .section-light,
  .hero-section,
  .section-white,
  .templates-section,
  .related-services {
    padding: 50px 15px;
  }
  .service-card,
  .tool-card,
  .contact-form-wrapper {
    padding: 25px 15px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .service-grid,
  .tools-grid,
  .related-grid {
    gap: 15px;
  }
  .positioning {
    padding: 50px 15px;
  }
  .services {
    padding: 60px 15px;
  }
  .clients {
    padding: 50px 15px;
  }
  .cta {
    padding: 50px 15px;
  }
}
.about-hero {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  padding: clamp(100px, 10vw + 80px, 160px) clamp(30px, 5vw, 60px) clamp(50px, 4vw, 70px);
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw + 20px, 80px);
  align-items: center;
}

.about-hero-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(11px, 0.8vw + 9px, 12px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: clamp(15px, 1.5vw + 10px, 20px);
}

.about-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4vw + 24px, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(20px, 2vw + 15px, 30px);
}
.about-hero-title .highlight {
  color: #0066ff;
}

.about-hero-title-line {
  display: block;
}

.about-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.2vw + 14px, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
}

.about-hero-image-frame {
  background: #1c1917;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}
.about-hero-image-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid #0066ff;
  z-index: -1;
}
.about-hero-image-frame img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}

.about-hero-image-caption {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.about-trust-statement {
  background: #fafaf9;
  padding: clamp(80px, 8vw + 60px, 120px) clamp(30px, 5vw, 60px);
}

.about-trust-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-trust-quote-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 2.5vw + 18px, 36px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #1c1917;
}
.about-trust-quote-text .emphasis {
  color: #0066ff;
  font-weight: 700;
}

.about-section {
  padding: clamp(80px, 8vw + 60px, 120px) clamp(30px, 5vw, 60px);
  background: #ffffff;
}
.about-section.about-section-light {
  background: #fafaf9;
}
.about-section.about-section-compact-top {
  padding-top: clamp(30px, 3vw + 20px, 50px);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-container-narrow {
  max-width: 900px;
}

.about-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.5vw + 24px, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1917;
  margin-bottom: clamp(25px, 2.5vw + 20px, 40px);
  margin-top: 10px;
}

.about-lead {
  font-size: clamp(18px, 1.3vw + 15px, 20px);
  line-height: 1.7;
  color: #1c1917;
  font-weight: 500;
  margin-bottom: 30px;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 4vw + 25px, 60px);
  margin: 40px 0;
}

.about-callout-box {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  padding: 35px 30px;
  position: sticky;
  top: 100px;
}

.about-callout-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0066ff;
  margin-bottom: 20px;
}

.about-callout-list {
  list-style: none;
}
.about-callout-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #57534e;
  padding: 12px 0;
  padding-left: 25px;
  position: relative;
}
.about-callout-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 600;
}

.about-stats-section {
  background: #292524;
  padding: clamp(50px, 4vw, 70px) clamp(30px, 5vw, 60px) clamp(70px, 6vw, 90px);
  position: relative;
}

.about-stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(30px, 3vw + 20px, 50px);
}

.about-stat-item {
  text-align: center;
  padding: clamp(30px, 3vw + 20px, 45px) clamp(20px, 2vw + 15px, 30px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.about-stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.about-stat-item.about-stat-featured {
  background: rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
}
.about-stat-item.about-stat-featured:hover {
  background: rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.5);
}
.about-stat-item.about-stat-featured .about-stat-number {
  font-size: clamp(64px, 6vw + 48px, 84px);
}

.about-stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(56px, 5vw + 40px, 72px);
  font-weight: 700;
  line-height: 1;
  color: #0066ff;
  margin-bottom: 15px;
}

.about-stat-plus {
  font-size: 0.6em;
  font-weight: 700;
}

.about-stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(14px, 1vw + 12px, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.about-stat-desc {
  font-size: clamp(13px, 0.8vw + 11px, 14px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.about-journey-grid {
  margin: clamp(40px, 4vw + 30px, 60px) 0;
}

.about-journey-item {
  align-items: center;
  padding: clamp(30px, 3vw + 20px, 40px);
  background: #ffffff;
  border: 1px solid #e7e5e4;
  transition: all 0.3s ease;
}
.about-journey-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}

.about-section-light .about-journey-item {
  background: #ffffff;
}

.about-journey-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-journey-logo img {
  max-width: 100%;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.about-journey-item:hover .about-journey-logo img {
  filter: grayscale(0%) opacity(1);
}

.about-journey-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 1.5vw + 16px, 24px);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 12px;
}
.about-journey-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #57534e;
  margin: 0;
}

.about-blockquote {
  margin: clamp(40px, 4vw + 30px, 60px) 0;
  padding: clamp(35px, 3.5vw + 25px, 50px);
  background: #f5f5f4;
  border-left: 4px solid #0066ff;
}

.about-blockquote-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.5vw + 15px, 22px);
  font-weight: 500;
  line-height: 1.6;
  color: #1c1917;
  font-style: italic;
}

.about-methodology-section {
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
  padding: clamp(100px, 10vw + 80px, 140px) clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.about-methodology-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-methodology-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.5vw + 24px, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(25px, 2.5vw + 20px, 40px);
  margin-top: 10px;
}

.about-methodology-lead {
  font-size: clamp(20px, 1.5vw + 16px, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 30px;
}

.about-methodology-content p {
  font-size: clamp(16px, 1vw + 14px, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}
.about-methodology-content .about-text-link {
  color: #0066ff;
}

.about-methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 3vw + 20px, 40px);
  margin: clamp(50px, 5vw + 40px, 70px) 0;
}

.about-methodology-item {
  padding: clamp(35px, 3.5vw + 25px, 45px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-methodology-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0066ff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.about-methodology-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.about-methodology-item:hover::before {
  transform: scaleY(1);
}
.about-methodology-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 1.5vw + 16px, 22px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  line-height: 1.3;
}
.about-methodology-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.about-methodology-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(14px, 1vw + 12px, 16px);
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-text-link {
  color: #0066ff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.about-text-link:hover {
  border-bottom-color: #0066ff;
}

.about-credentials-section {
  background: #ffffff;
  padding: clamp(100px, 10vw + 80px, 140px) clamp(30px, 5vw, 60px);
}

.about-credentials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-credentials-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.5vw + 24px, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1917;
  margin-bottom: clamp(20px, 2vw + 15px, 30px);
  margin-top: 10px;
}

.about-credentials-intro {
  font-size: clamp(17px, 1.2vw + 14px, 18px);
  line-height: 1.7;
  color: #57534e;
  margin-bottom: clamp(40px, 4vw + 30px, 60px);
  max-width: 900px;
}

.about-client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(30px, 3vw + 20px, 50px);
  margin: clamp(40px, 4vw + 30px, 60px) 0;
  align-items: center;
  justify-items: center;
}

.about-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
}
.about-client-logo-item img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s ease;
}
.about-client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.about-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.about-industry-tag {
  display: inline-block;
  background: #f5f5f4;
  color: #57534e;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}
.about-industry-tag:hover {
  background: #0066ff;
  color: #ffffff;
}

.about-recognition-section {
  background: #fafaf9;
  padding: clamp(80px, 8vw + 60px, 120px) clamp(30px, 5vw, 60px);
}

.about-recognition-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-recognition-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.5vw + 24px, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1917;
  margin-bottom: clamp(20px, 2vw + 15px, 30px);
  margin-top: 10px;
}

.about-recognition-intro {
  font-size: clamp(17px, 1.2vw + 14px, 18px);
  line-height: 1.7;
  color: #57534e;
  margin-bottom: clamp(40px, 4vw + 30px, 60px);
}

.about-publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 3vw + 20px, 40px);
  margin: clamp(40px, 4vw + 30px, 60px) 0;
}

.about-publication-card {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  padding: clamp(30px, 3vw + 20px, 40px);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: all 0.3s ease;
}
.about-publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}
.about-publication-card:hover .about-publication-logo img {
  filter: grayscale(0%) opacity(1);
}

.about-publication-logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.about-publication-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.about-publication-info h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.3vw + 15px, 20px);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 10px;
}
.about-publication-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #57534e;
  margin: 0;
}

.about-speaking-section {
  background: #ffffff;
  padding: clamp(100px, 10vw + 80px, 140px) clamp(30px, 5vw, 60px);
}

.about-speaking-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 5vw + 35px, 80px);
  align-items: start;
  margin-bottom: clamp(60px, 6vw + 45px, 100px);
}

.about-speaking-image {
  position: relative;
}
.about-speaking-image img {
  width: 100%;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-speaking-caption {
  font-size: 13px;
  color: #a8a29e;
  margin-top: 15px;
  font-style: italic;
}

.about-speaking-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 3vw + 22px, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1917;
  margin-bottom: 25px;
  margin-top: 10px;
}

.about-speaking-list {
  list-style: none;
  margin: 25px 0;
}
.about-speaking-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #57534e;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.about-speaking-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 700;
  font-size: 18px;
}

.about-podcast-highlight {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  padding: clamp(60px, 6vw + 45px, 80px) clamp(40px, 4vw + 30px, 60px);
  position: relative;
  overflow: hidden;
}
.about-podcast-highlight::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-podcast-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-podcast-content p {
  font-size: clamp(16px, 1vw + 14px, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
}

.about-podcast-stat {
  margin: 40px 0;
}

.about-podcast-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(72px, 7vw + 56px, 96px);
  font-weight: 700;
  line-height: 1;
  color: #0066ff;
  margin-bottom: 10px;
}

.about-podcast-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.5vw + 15px, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.about-services-list {
  margin: clamp(40px, 4vw + 30px, 60px) 0;
  display: grid;
  gap: 0;
}

.about-service-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid #e7e5e4;
  transition: all 0.2s ease;
}
.about-service-item:hover {
  padding-left: 15px;
}

.about-service-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0066ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-service-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #57534e;
}

.about-cta-section {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  padding: clamp(80px, 8vw + 60px, 120px) clamp(30px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.5vw + 24px, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(20px, 2vw + 15px, 30px);
}

.about-cta-text {
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: clamp(35px, 3.5vw + 25px, 50px);
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-content-grid {
    grid-template-columns: 1fr;
  }
  .about-callout-box {
    position: static;
  }
  .about-journey-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-speaking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-methodology-grid {
    grid-template-columns: 1fr;
  }
  .about-client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-publications-grid {
    grid-template-columns: 1fr;
  }
  .about-service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta-buttons .btn-primary,
  .about-cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.svc-hero {
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
  padding: clamp(120px, 12vw + 60px, 180px) clamp(30px, 5vw, 60px) clamp(60px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.svc-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.svc-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-hero-container .section-label {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 20px;
}
.svc-hero-container h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4vw + 24px, 64px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: clamp(20px, 2vw, 30px);
}
.svc-hero-container h1 .highlight {
  color: #0066ff;
}

.svc-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.2vw + 14px, 20px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.svc-intro {
  background: #fafaf9;
  padding: clamp(60px, 6vw, 80px) clamp(30px, 5vw, 60px);
}

.svc-intro-container {
  max-width: 900px;
  margin: 0 auto;
}
.svc-intro-container > p {
  font-size: clamp(16px, 1vw + 14px, 18px);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 30px;
}

.svc-trust {
  background: #ffffff;
  padding: clamp(40px, 4vw, 60px) clamp(30px, 5vw, 60px);
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
  text-align: center;
}

.svc-trust-container {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-trust-container .section-label {
  display: block;
  margin-bottom: 30px;
}

.svc-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
  flex-wrap: wrap;
}

.svc-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-trust-logo img {
  max-height: 36px;
  width: auto;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s ease;
}
.svc-trust-logo img:hover {
  filter: grayscale(0%) opacity(1);
}

.svc-category {
  background: #1c1917;
  padding: clamp(70px, 7vw, 100px) clamp(30px, 5vw, 60px);
}
.svc-category + .svc-category {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc-category-container {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-category-header {
  margin-bottom: clamp(40px, 4vw, 60px);
}
.svc-category-header .section-label {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 14px;
}
.svc-category-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 2.5vw + 18px, 42px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc-category-header > p {
  font-size: clamp(15px, 0.8vw + 13px, 17px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}

.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.svc-category .service-card {
  display: flex;
  flex-direction: column;
}
.svc-category .service-card h3 {
  font-size: clamp(20px, 1.5vw + 16px, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.svc-category .service-card p {
  flex: 1;
}

.svc-outcome {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-category .service-tag {
  display: inline-block;
  background: #0066ff;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: #ffffff;
}
.svc-category .service-tag.emerging {
  background: #f59e0b;
  color: #1c1917;
}

.svc-selecting {
  background: #fafaf9;
  padding: clamp(70px, 7vw, 100px) clamp(30px, 5vw, 60px);
}

.svc-selecting-container {
  max-width: 900px;
  margin: 0 auto;
}
.svc-selecting-container h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 2.5vw + 18px, 42px);
  font-weight: 700;
  color: #1c1917;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.svc-selecting-container > p {
  font-size: clamp(16px, 1vw + 14px, 17px);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-selecting-container a {
  color: #0066ff;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.svc-selecting-container a:hover {
  border-bottom-color: #0066ff;
}

.svc-highlight-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.3vw + 14px, 22px);
  font-weight: 500;
  color: #1c1917;
  line-height: 1.6;
  padding: 30px 35px;
  border-left: 4px solid #0066ff;
  background: #ffffff;
  margin: 40px 0;
  font-style: italic;
}

.svc-cta {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #ffffff;
  padding: clamp(80px, 8vw, 120px) clamp(30px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.svc-cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-cta-container h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 3vw + 18px, 44px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.svc-cta-container p {
  font-size: clamp(16px, 1vw + 14px, 18px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.client-logo {
  height: 40px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 768px) {
  .svc-cards-grid {
    grid-template-columns: 1fr;
  }
  .svc-highlight-text {
    padding: 25px 20px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .svc-trust-logos {
    gap: 25px;
  }
}
.contact-hero {
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
  padding: clamp(120px, 12vw + 60px, 180px) clamp(30px, 5vw, 60px) clamp(60px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-hero-container .section-label {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 20px;
}
.contact-hero-container h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4vw + 24px, 64px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: clamp(20px, 2vw, 30px);
}
.contact-hero-container h1 .highlight {
  color: #0066ff;
}

.contact-hero-subtitle {
  font-size: clamp(17px, 1.2vw + 14px, 20px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.contact-section {
  background: #fafaf9;
  padding: clamp(70px, 7vw, 100px) clamp(30px, 5vw, 60px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(50px, 6vw, 90px);
  align-items: start;
}

.contact-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 2vw + 18px, 34px);
  font-weight: 700;
  color: #1c1917;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: clamp(15px, 0.8vw + 13px, 17px);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-quote {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(15px, 0.8vw + 13px, 17px);
  font-weight: 500;
  font-style: italic;
  color: #1c1917;
  line-height: 1.7;
  padding: 24px 28px;
  border-left: 4px solid #0066ff;
  background: #ffffff;
  margin-bottom: 40px;
}

.contact-expect {
  margin-bottom: 40px;
}
.contact-expect h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a8a29e;
  margin-bottom: 16px;
}

.contact-expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-expect-list li {
  font-size: clamp(14px, 0.6vw + 12px, 16px);
  color: #57534e;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.contact-expect-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 600;
}

.contact-alt h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a8a29e;
  margin-bottom: 14px;
}

.contact-alt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1c1917;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #e7e5e4;
  transition: color 0.2s ease;
}
.contact-alt-link:last-child {
  border-bottom: none;
}
.contact-alt-link svg {
  color: #0066ff;
  flex-shrink: 0;
}
.contact-alt-link:hover {
  color: #0066ff;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  padding: clamp(36px, 4vw, 52px);
}

.contact-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7e5e4;
}
.contact-form-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 1.5vw + 16px, 28px);
  font-weight: 700;
  color: #1c1917;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.contact-form-header p {
  font-size: 15px;
  color: #57534e;
  margin: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.form-group label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.3px;
}
.form-group .required {
  color: #0066ff;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1c1917;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #a8a29e;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0066ff;
  background: #ffffff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2357534e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-submit {
  margin-top: 28px;
}

.btn-submit {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: #0066ff;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-submit:hover:not(:disabled) {
  background: rgb(0, 85.68, 214.2);
}
.btn-submit:active:not(:disabled) {
  transform: translateY(1px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-size: 13px;
  color: #a8a29e;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

.contact-success {
  text-align: center;
  padding: 48px 24px;
}
.contact-success .contact-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #0066ff;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
}
.contact-success h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 12px;
}
.contact-success p {
  font-size: 16px;
  color: #57534e;
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.contact-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.contact-error p {
  font-size: 14px;
  color: #dc2626;
  margin: 0;
  line-height: 1.5;
}
.contact-error a {
  color: #dc2626;
  font-weight: 600;
}

.contact-trust {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  padding: clamp(36px, 4vw, 52px) clamp(30px, 5vw, 60px);
}

.contact-trust-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  flex-wrap: wrap;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #57534e;
}

.contact-trust-icon {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0066ff;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  .contact-trust-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=style.css.map */
