:root {
  --primary-color: #007aff;
  --primary-color-filter: brightness(0%) saturate(100%) invert(36%) sepia(58%)
    saturate(4928%) hue-rotate(200deg) brightness(101%) contrast(107%);
  --secondary-color: #0077ed;
  --secondary-color-filter: brightness(0%) saturate(100%) invert(59%) sepia(92%)
    saturate(6949%) hue-rotate(197deg) brightness(100%) contrast(102%);
  --text-color: #1d1d1f;
  --light-text: #86868b;
  --background: #ffffff;
  --light-gray: #f5f5f7;
  --border-radius: 1.5rem;
  --base-font-size: 16px;
  --transition: transform 0.3s ease 0s, box-shadow 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

html {
  font-size: 100%;
}

a {
  cursor: pointer;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  background: var(--background);
  overflow-x: hidden !important;
}

h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  width: 100%;
  text-align: left;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 7.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}

.logo a {
  text-decoration: none;
  color: var(--text-color);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.contact-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--secondary-color);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 0 8rem;
  text-align: center;
  background: linear-gradient(160deg, #0b66e6 0%, #279af7 100%);
  margin-bottom: 0;
  color: white;
  overflow-x: visible !important;
}

.hero .container {
  overflow: hidden;
  padding-top: 0;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 50rem;
  margin: 2rem auto 3rem;
  padding-bottom: 0.25rem;
  opacity: 0;
  overflow: hidden;
}

.subheadline {
  font-size: 1.5rem;
  color: white;
  max-width: 40rem;
  margin: 0 auto;
  opacity: 0;
}

.hero .cta-button {
  background-color: black;
  border-radius: 3rem;
  font-size: 1rem;
  margin: 0 0 2rem 0;
}

.cta-button:hover {
  background: #222;
  transition: background-color 0.3s ease-in-out;
}

.cta-button {
  background-color: black;
  border-radius: 3rem;
  font-size: 1rem;
  margin: 0 0 2rem 0;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
}

.services-overview {
  padding: 8rem 2rem;
  background: white;
  text-align: center;
}

#services-heading {
  margin: 0 auto 4rem;
  max-width: 1000px;
}
#services,
#how-we-help {
  padding: 7.5rem 0;
}

#services .container {
  padding: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  max-height: min-content;
}

.service-card {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 3rem 4rem;
  display: flex;
  transform: translateY(100);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.service-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.service-card:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
}

.service-card:nth-child(4) {
  grid-column: span 4;
  grid-row: span 1;
}

.service-card:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
}

.service-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: var(--primary-color-filter);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1.125rem;
  color: var(--light-text);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-card li {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  color: var(--text-color);
}

.service-card h4 {
  color: var(--primary-color);
}

.sales-columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sales-column {
  flex: 1 1 30%;
  min-width: 300px;
}

.about-us {
  padding: 7.5rem 0;
  background: var(--background);
  text-align: left;
}

.about-us .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1100px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 3rem 0 0;
  max-width: 59rem;
}

.about-us .subtitle {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text-color);
}

.team-photo {
  width: 25rem;
  max-width: 50vw !important;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin: -1.5rem 0 0;
}

.about-text {
  width: 100%;
}

.about-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

#get-started-pair {
  text-decoration: none;
  filter: var(--primary-color-filter);
  font-weight: 500;
  transition: filter 0.3s ease;
  cursor: pointer;
}

#get-started-pair:hover {
  filter: var(--secondary-color-filter);
}

#how-we-help {
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#how-we-help .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 56.5rem;
  padding: 1.5rem;
}

#how-we-help p {
  width: 100%;
  margin: 0 auto 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
}

.step {
  position: relative;
  padding: 1.5rem 2.5rem;
  background: var(--background);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 20rem;
  min-height: 12rem;
  transition: box-shadow 0.3s ease;
}

.step:hover {
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
  transition: opacity 0.5s ease;
}

.step:hover .step-number {
  opacity: 0.3;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 0.5rem;
  max-width: 15rem;
}

.step p {
  font-size: 1.125rem;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0 !important;
}

#pricing {
  padding: 7.5rem 0;
  background: var(--light-gray);
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  min-height: 30rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.pricing-card ul li {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.pricing-card .cta-button {
  margin: 0;
  position: absolute;
  bottom: 2rem;
  min-width: 10rem;
}

#faqs {
  padding: 7.5rem 0;
  background: var(--background);
  text-align: left;
}

.faq-list {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1.125rem;
  color: var(--light-text);
  line-height: 1.6;
}

.cta-section {
  padding: 7.5rem 0;
  text-align: center;
  background: linear-gradient(160deg, #279af7 0%, #0b66e6 100%);
  color: white;
  padding: 7.5rem 0;
  height: 100vh;
  max-height: 60em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cta-heading {
  max-width: 56.5rem;
  text-align: center;
}

#cta-subheading {
  font-size: 1.2rem;
  max-width: 35rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-section h2,
.cta-section p {
  color: white;
}

footer {
  background: var(--light-gray);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
}

.footer-section a {
  display: block;
  color: var(--light-text);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-section p {
  color: var(--light-text);
}

.footer-bottom {
  text-align: center;
  color: var(--light-text);
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.problem-statement {
  padding: 7.5rem 0;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--background);
}

.problem-statement p {
  max-width: 42.5rem;
  margin: 0 auto 3rem;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 75rem;
}

.challenge-card {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  max-width: 25rem;
  margin: 0 auto;
}

.challenge-card:hover {
  transform: translateY(-0.25rem);
}

.icon {
  font-size: 2rem;
}

.applications {
  padding: 7.5rem 0;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--background);
}

.applications p {
  max-width: 42.5rem;
  margin: 0 auto 3rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 75rem;
}

.industry-card {
  padding: 2rem;
  background: var(--background);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  max-width: 25rem;
  margin: 0 auto;
}

.industry-card:hover {
  transform: translateY(-0.25rem);
}

.learn-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: inline-block;
}

#why-choose {
  padding: 7.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

#why-choose p {
  max-width: 42.5rem;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.5rem, 1fr));
  gap: 1.5rem;
  margin: 3rem auto 0;
  max-width: 75rem;
}

.benefit-card {
  padding: 3rem;
  background: white;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  max-width: 25rem;
  margin: 0 auto;
}

.benefit-card:hover {
  transform: translateY(-0.25rem);
}
.hidden-text {
  display: none;
}
