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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Careers page nav spacer */
body.careers-page .nav-spacer {
  height: 32px;
  width: 100%;
}

/* Navigation */
nav {
    background: #fff;
    padding: 1rem 2rem;
    /* Removed box-shadow for a flat look */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border: none;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    flex: 1;
    margin-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a.active {
  color: #2563eb;
  font-weight: 700;
}

/* Hero Carousel */
.hero-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: flex-start;
    padding-top: 132px;
    padding-bottom: 132px;
}

body.careers-page .hero-section {
  height: auto;
  padding-bottom: 4rem;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 0 6rem;
    width: 100%;
    box-sizing: border-box;
}

body.careers-page .slide-content {
  padding-top: 6rem;
  padding-left: 10rem;
}

.slide-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.1;
}

body.careers-page .hero-section .slide-text h1 {
  font-size: 3.5rem;
}

body.careers-page .hero-section .slide-text h1 {
  font-size: 4.5rem !important;
  font-weight: 900 !important;
  color: #18181b !important;
}

.slide-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-button {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #1d4ed8;
}

.slide-visual {
    position: relative;
    width: 340px;
    height: 370px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 100px;
}
.visual-bg-shape {
    position: absolute;
    width: 220px;
    height: 180px;
    background: linear-gradient(135deg, #2563eb 40%, #a78bfa 100%);
    border-radius: 32px;
    top: 40px;
    left: 40px;
    z-index: 1;
    filter: blur(0.5px) saturate(1.2);
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.visual-img {
    position: relative;
    width: 200px;
    z-index: 2;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #fff;
}

.visual-card-bg {
    position: absolute;
    width: 260px;
    height: 320px;
    background: linear-gradient(135deg, #f3f4f6 60%, #e5e7eb 100%);
    border-radius: 32px;
    left: 40px;
    bottom: 30px;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
}
.visual-img-pop {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 426px;
    z-index: 2;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    color: #1d4ed8;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 2rem;
}

.carousel-arrow-right {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.indicator.active {
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* Company Positioning Section */
.company-section {
    background: #f3f4f6;
    padding: 7rem 6vw 4rem 6vw;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.company-wave {
    background: transparent;
    line-height: 0;
}

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

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.company-content h2 {
  font-size: 3rem;
  font-weight: 600;
}
.careers-perks-header {
  font-size: 3rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  color: #18181b;
  margin-bottom: 4rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: left;
}

.company-features {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 320px;
    margin-top: 4rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #18181b;
}

.feature-img-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #18181b;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #18181b;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: #fff;
    margin-top: -60px;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.25rem;
    color: #64748b;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #1d4ed8;
}

/* Clients Section */
.clients-section {
    background: #fff;
    padding: 4rem 2rem;
}

.clients-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.clients-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #18181b;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.clients-underline {
    width: 100px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
    margin: 0 auto 7rem auto;
    display: block;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.client-logo {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* Contact Section */
.contact-section {
    background: #f1f5f9;
    padding: 3.5rem 2rem 6rem 2rem;
}
.contact-text {
    margin-top: -2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #18181b;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: left;
    font-family: inherit;
}

.contact-text p {
    font-size: 1.25rem;
    color: #64748b;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1d4ed8;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border: 2px solid #1e293b;
    border-radius: 2rem;
    background: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-left: 2rem;
}

.contact-btn .arrow {
    font-size: 1.2em;
    margin-left: 0.5em;
    transition: transform 0.2s;
}

.contact-btn:hover {
    background: #1e293b;
    color: #fff;
    border-color: #1e293b;
}

.contact-btn:hover .arrow {
    transform: translateX(4px);
}

/* Footer */
footer {
    background: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-text h1 {
        font-size: 2.5rem;
    }

    .company-features {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .feature {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-btn {
        min-width: 140px;
        padding: 0.35rem 1.2rem;
        font-size: 0.82rem;
        margin-left: 0.5rem;
    }
    .contact-btn .arrow {
        font-size: 1em;
        margin-left: 0.3em;
    }
}

@media (max-width: 900px) {
  .slide-content {
    padding: 0 2rem;
  }
}

/* Modern Services Section */
.services-section-modern {
  background: #fff;
  padding: 6rem 6vw 6rem 6vw;
}
.services-header-modern {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.services-title-group {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  flex-wrap: nowrap;
}
.services-title {
  font-size: 3rem;
  font-weight: 600;
  color: #18181b;
  line-height: 1.05;
  margin: 0 0 2rem 0;
  flex: 0 1 60%;
  min-width: 420px;
  text-align: left;
  font-family: inherit;
}
.services-subtitle {
  font-size: 1.15rem;
  color: #166086;
  max-width: 400px;
  font-weight: 400;
  margin-top: 0;
  flex: 1 1 40%;
  text-align: left;
  align-self: flex-start;
  min-width: 260px;
}
.services-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.services-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2.5rem;
  position: relative;
}
.service-card-modern {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(22,96,134,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
}
.service-card-modern.offset {
  margin-top: 3.5rem;
}
.service-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  flex: 1 1 auto;
}
.service-img-right {
  object-position: 0% center;
}
.service-img-center {
  object-position: center center;
}
.service-img-zoomout {
  object-fit: contain;
  background: #e5e7eb;
  padding: 10px;
}
.service-info {
  background: #2563eb;
  color: #fff;
  padding: 1.3rem 1.5rem 1.1rem 1.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 60px;
  transition: min-height 0.3s, padding-bottom 0.3s, height 0.3s;
  cursor: default;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: visible;
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.01em;
}
/* Modern grid card description (hide by default, show on hover) */
.service-card-modern .service-desc {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.7rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
  color: #fff;
}
.service-card-modern:hover .service-desc {
  opacity: 1;
  max-height: 200px;
}
.service-logo-hover {
  display: block;
  width: 54px;
  height: auto;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card-modern:hover .service-logo-hover {
  opacity: 1;
}
.service-circle-hover {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10), 0 0 0 2px #2563eb22;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
}
.service-card-modern:hover .service-circle-hover {
  opacity: 1;
  transform: scale(1.08);
}
.service-check-hover {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
  background: none;
}
.service-card-modern:hover .service-check-hover {
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .services-title {
    font-size: 2.2rem;
  }
  .services-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-title-group {
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card-modern.offset {
    margin-top: 0;
  }
  .services-title {
    min-width: 0;
  }
  .services-subtitle {
    min-width: 0;
  }
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 4rem;
}
.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: clients-scroll 40s linear infinite;
  will-change: transform;
}
.clients-carousel:hover .clients-carousel-track {
  animation-play-state: paused;
}
.clients-carousel-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.clients-carousel-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
@keyframes clients-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-modern {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  font-size: 1rem;
  color: #18181b;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.footer-left {
  flex: 1 1 320px;
  min-width: 260px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.1rem;
}
.footer-desc {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  max-width: 340px;
  text-align: center;
}
.footer-center {
  flex: 1 1 220px;
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-contact-title {
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  color: #2563eb;
}
.footer-contact-info {
  color: #18181b;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-contact-info a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-info a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}
.footer-right {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  word-break: break-word;
  padding-right: 0;
}
.footer-careers-title {
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  color: #2563eb;
  text-align: center;
}
.footer-careers-desc {
  color: #18181b;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 320px;
  word-break: break-word;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.footer-careers-desc a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-careers-desc a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}
.footer-join {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #18181b;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-join:hover {
  color: #2563eb;
}
.footer-arrow {
  font-size: 2.2rem;
  color: #2563eb;
  font-weight: 700;
  margin-top: 0.1rem;
  transition: transform 0.2s;
}
.footer-join:hover + .footer-arrow {
  transform: translateX(8px);
}
@media (max-width: 900px) {
  .footer-modern {
    padding: 3.5rem 1rem 2.5rem 1rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .footer-right {
    align-items: center !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer-careers-title {
    text-align: center !important;
    width: 100%;
  }
  .footer-careers-desc {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-contact-info {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-left {
    align-items: center !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer-contact-title {
    text-align: center !important;
    width: 100%;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    min-width: 0;
    max-width: 100%;
  }
}

.about-hero-section {
  background: #fff;
  padding: 7rem 6vw 3.5rem 6vw;
}
.about-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 1.5rem;
  text-align: left;
}
.about-blurb {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin-bottom: 0;
  text-align: left;
}
.about-subtitle {
  font-size: 1.35rem;
  color: #64748b;
  font-weight: 400;
  margin-top: 1.2rem;
  margin-bottom: 0;
  max-width: 700px;
  line-height: 1.6;
  text-align: left;
}

.about-team-section {
  background: #fff;
  padding: 5rem 0 4rem 0;
}
.about-team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 10vw;
  flex-wrap: wrap;
}
.about-team-left {
  flex: 1 1 420px;
  min-width: 280px;
  text-align: left;
}
.about-team-header {
  font-size: 2.5rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 1.3rem;
  text-align: left;
}
.about-team-blurb {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
  max-width: 540px;
}
.about-team-right {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 260px;
}
.about-team-card {
  background: linear-gradient(135deg, #f3f4f6 60%, #e5e7eb 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-team-photo {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(22,96,134,0.07);
  display: block;
}
@media (max-width: 900px) {
  .about-team-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .about-team-right {
    justify-content: flex-start;
  }
  .about-team-photo {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
}

.careers-perks-section {
  background: #fff;
  padding: 4.5rem 0 2.5rem 0;
}
.careers-perks-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}
.careers-perks-header {
  font-size: 4rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 4rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: left;
}
.careers-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.careers-perk {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.3rem;
  margin-bottom: 1.8rem;
  margin-left: 2.5rem;
}
.careers-perk-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}
.perk-icon-bg {
  position: absolute;
  width: 38px;
  height: 38px;
  background: #e5e7eb;
  border-radius: 8px;
  left: 5px;
  top: 5px;
  z-index: 1;
}
.perk-icon-circle {
  position: relative;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 2px solid #f3f4f6;
}
.careers-perk-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.careers-perk-text {
  font-size: 1.15rem;
  color: #18181b;
  font-weight: 500;
  display: block;
}
.careers-perk-blurb {
  margin: 0.4rem 0 1.2rem 0;
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 400;
  display: block;
}

.careers-roles-section {
  background: #f8fafc;
  padding: 5rem 0 3.5rem 0;
}
.careers-roles-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
  text-align: center;
}
.careers-roles-header {
  font-size: 3rem;
  font-weight: 600;
  color: #18181b;
  line-height: 1.05;
  margin-bottom: 2.2rem;
  text-align: left;
}
.careers-roles-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.careers-role-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(22,96,134,0.07);
  padding: 3rem 2rem 2.5rem 2rem;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}
.careers-role-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-4px) scale(1.02);
}
.careers-role-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  margin-top: -1.2rem;
  margin-bottom: 1.2rem;
}
.careers-role-pill {
  background: #e0e7ff;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.18em 1em;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.careers-role-location {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.careers-role-pin {
  font-size: 1.1em;
  color: #2563eb;
}
.careers-role-desc {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 0;
  text-align: left;
}
.careers-apply-note {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 1.5rem;
  text-align: center;
}
.careers-apply-note a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.careers-apply-note a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}
@media (max-width: 900px) {
  .careers-roles-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .careers-roles-header {
    text-align: center;
  }
  .careers-perks-container {
    padding: 0 1.5rem;
  }
}

.careers-hero-section {
  background: #fff;
  padding: 2.5rem 0 3.5rem 0; /* Reduced top padding */
  display: flex;
  align-items: center;        /* Center vertically */
  justify-content: center;    /* Center horizontally */
  min-height: 60vh;           /* Optional: ensure some height */
}
.careers-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 6vw;
  flex-wrap: wrap;
}
.careers-hero-left {
  flex: 1 1 480px;
  min-width: 320px;
  text-align: left;
}
.careers-hero-title, h1.careers-hero-title {
  font-size: 4.5rem !important;
  font-weight: 900 !important;
  color: #18181b !important;
  margin-bottom: 1.5rem !important;
  text-align: left !important;
}
.careers-hero-subtitle {
  font-size: 1.25rem;
  color: #374151;
  max-width: 600px;
  margin-bottom: 2.2rem;
  text-align: left;
}
.careers-hero-right {
  flex: 0 0 420px;
  min-width: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 370px;
}
.careers-hero-card-bg {
  position: absolute;
  width: 260px;
  height: 320px;
  background: linear-gradient(135deg, #f3f4f6 60%, #e5e7eb 100%);
  border-radius: 32px;
  left: 40px;
  bottom: 30px;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
}
.careers-hero-img-pop {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 426px;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.18));
  border-radius: 18px;
  background: #fff;
}
@media (max-width: 900px) {
  .careers-hero-content {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .careers-hero-right {
    height: 320px;
    min-width: 0;
  }
  .careers-hero-img-pop {
    width: 100%;
    max-width: 340px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.gray-bg {
  background: #f3f4f6;
}
.careers-perks-wave {
  background: transparent;
  line-height: 0;
}
.white-bg {
  background: #fff;
}

.careers-roles-subtitle {
  text-align: left;
  color: #64748b;
  font-size: 1.35rem;
  margin-bottom: 3.5rem;
  margin-top: 0.5rem;
}
.careers-role-card.accent-left {
  border-left: 4px solid #2563eb;
}
.careers-role-card.accent-top {
  border-top: 4px solid #22c55e;
}
.careers-role-card.shadow {
  box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 1.5px 8px rgba(0,0,0,0.06);
}

.perk-img-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
}

.about-stats-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  justify-content: flex-end;
}
.about-stats-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.2rem;
  max-width: 350px;
  margin-right: 5vw;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #18181b;
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
  text-align: right;
}
.about-stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 700px) {
  .about-stats-section {
    justify-content: center;
  }
  .about-stats-container {
    align-items: center;
    margin-right: 0;
  }
  .about-stat {
    align-items: center;
  }
  .about-stat-number, .about-stat-label {
    text-align: center;
  }
}

.about-hero-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 2.5rem 0 1.5rem 6rem;
}
.about-hero-content {
  flex: 1 1 60%;
  min-width: 320px;
}
.about-headline {
  font-size: 4.5rem;
  font-weight: 900;
  color: #18181b;
  margin-bottom: 2.2rem;
  padding-top: 4.5rem;
  text-align: left;
}
.about-blurb {
  margin-bottom: 2.2rem;
}
.about-hero-content .cta-button {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .about-hero-flex {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem 1rem 1.5rem;
  }
}

.about-hero-stats {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 5rem;
}

.company-section, .about-features-section {
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 900px) {
  .company-section, .about-features-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.about-who-header {
  font-size: 3rem;
  font-weight: 600;
  color: #18181b;
  line-height: 1.05;
  margin-bottom: 2.2rem;
  text-align: left;
}

.services-process-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.services-process-list {
  display: grid;
  grid-template-columns: 48px 1fr;
  row-gap: 0;
  align-items: center;
}
.services-process-step {
  display: contents;
}
.step-circle {
  grid-column: 1;
  justify-self: center;
  align-self: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-label {
  grid-column: 2;
  align-self: center;
  font-size: 1.25rem;
  color: #18181b;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0 0.2rem;
}
.services-process-connector {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 4px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 2px;
  margin: 0.2rem 0 0.2rem 0;
}
.services-process-list, .services-process-step {
  list-style: none !important;
  padding-left: 0 !important;
}
@media (max-width: 900px) {
  .services-process-section {
    align-items: center;
    margin-top: 2rem;
  }
}

.services-showcase-section {
  background: #fafbfc;
  padding: 4.5rem 0 2.5rem 0;
  padding-bottom: 4rem;
}
.services-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 4.5rem 0 2.5rem 0;
}
.services-showcase-headline {
  font-size: 3.2rem;
  font-weight: 400;
  color: #18181b;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 2.5rem 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  text-align: center;
}
.showcase-cards-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 1210px;
  min-height: 340px;
}
.showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 1.5px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-card-avatar {
  width: 180px;
  height: 180px;
  z-index: 3;
  margin-bottom: -60px;
  background: #183b6b;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
.showcase-card-main {
  width: 576px;
  height: 384px;
  z-index: 2;
  margin: 0 -80px 0 -80px;
  background: #18181b;
}
.showcase-card-vr {
  width: 216px;
  height: 320px;
  z-index: 4;
  margin-left: -60px;
  margin-bottom: -60px;
  transform: translateY(60px);
  background: #e5e7eb;
}
.showcase-card-app {
  width: 400px;
  height: 330px;
  z-index: 3;
  margin-left: -40px;
  margin-bottom: -10px;
  background: #18181b;
}
.showcase-card-abstract {
  width: 220px;
  height: 220px;
  z-index: 6;
  margin-left: -30px;
  margin-bottom: 0;
  background: #f3f4f6;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-80px);
}
@media (max-width: 1200px) {
  .showcase-cards-wrapper {
    max-width: 770px;
    min-height: 220px;
  }
  .showcase-card-main {
    width: 384px;
    height: 240px;
    margin: 0 -40px 0 -40px;
  }
  .showcase-card-avatar {
    width: 120px;
    height: 120px;
    margin-bottom: -30px;
  }
  .showcase-card-vr {
    width: 144px;
    height: 200px;
    margin-left: -30px;
    margin-bottom: -30px;
    transform: translateY(40px);
  }
  .showcase-card-app {
    width: 260px;
    height: 210px;
    margin-left: -20px;
    margin-bottom: 0;
  }
  .showcase-card-abstract {
    width: 140px;
    height: 140px;
    margin-left: -10px;
    margin-bottom: 0;
    transform: translateY(-40px);
  }
}
@media (max-width: 700px) {
  .services-showcase-content {
    padding: 2rem 0 1rem 0;
  }
  .showcase-cards-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    min-height: 0;
  }
  .showcase-card-main,
  .showcase-card-avatar,
  .showcase-card-vr,
  .showcase-card-app,
  .showcase-card-abstract {
    margin: 0 0 1.2rem 0;
    width: 90vw;
    max-width: 340px;
    height: 100px;
  }
  .showcase-card-app {
    width: 98vw;
    max-width: 400px;
    height: 150px;
  }
  .showcase-card-main {
    width: 108vw;
    max-width: 408px;
    height: 120px;
  }
  .showcase-card-vr {
    width: 120px;
    height: 140px;
    transform: translateY(20px);
  }
  .showcase-card-abstract {
    width: 98vw;
    max-width: 400px;
    height: 150px;
    transform: translateY(-20px);
  }
}

.services-showcase-spacer {
  height: 4rem;
}

.services-showcase-bottom-spacer {
  height: 5rem;
}

.services-detail-section {
  padding: 3rem 7vw 6rem 7vw;
}
.services-detail-header {
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
  color: #18181b;
  margin: 0 0 4rem 0;
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.service-column {
  background: none;
  padding: 0 1.5rem 0 0;
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-top: 0.5rem;
  display: block;
}
.service-underline {
  width: 70px;
  height: 5px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0.5rem 0 1.5rem 0;
  display: block;
}
.services-columns .service-column:nth-child(2) {
  margin-top: 2rem;
}
.services-columns .service-column:nth-child(3) {
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .services-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .service-column {
    padding: 0;
  }
}

.service-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #18181b;
  border-radius: 50%;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.service-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-left: 0.6rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .slide-text h1 {
    margin-top: 5rem;
  }
  .hero-section {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .slide-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.2rem;
    gap: 0;
    padding-top: 0rem;
  }
  .slide-text {
    order: 1;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .slide-text h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
  }
  .slide-text p {
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
  }
  .slide-visual {
    order: 2;
    align-self: center;
    margin: 0 0 1.5rem 0;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
  }
  .visual-img-pop {
    width: 100%;
    max-width: 180px;
    position: static;
    left: auto;
    bottom: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
  }
  .visual-card-bg {
    display: none;
  }
  .cta-button {
    order: 3;
    align-self: center;
    margin: 1.2rem auto 0 auto;
    display: block;
    width: auto;
    min-width: 180px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 750px;
  }
}

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

@media (max-width: 768px) {
  .visual-img-pop {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 900px) {
  .services-title {
    font-size: 2.2rem;
  }
  .company-content h2 {
    font-size: 2.0rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

@media (max-width: 768px) {
  body.careers-page .slide-content {
    padding-top: 5rem;
    padding-left: 2rem;
  }
  body.careers-page .slide-text h1 {
    font-size: 2.2rem !important;
  }
}