:root {
  --brand-dark: #0D1B4B;      /* couleur principale sombre, à ajuster */
  --brand-darker: #060f2a;    /* variante encore plus sombre (footer) */
  --brand-raised: #142157;    /* fond des cartes projets */
  --brand-surface: #f8fafc;   /* fond image "à propos" */
  --accent-color: #3b82f6;    /* couleur accent, à ajuster */
  --accent: #3b82f6;          /* alias utilisé dans plusieurs sections */
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth
}

/* ==========================================================================
   GLOBAL / BODY
   ========================================================================== */

body {
  background-color: #fafbfc; /* couleur custom, à remplacer */
  color: #1f2937; /* text-gray-800 */
  overflow-x: hidden;
  margin: 0px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0D1B4B; /* couleur custom "brand-dark" à définir */
}

/* Logo */
.logo-link {
  z-index: 50;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.logo-link:hover {
  transform: scale(1.1);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

/* Navigation desktop */
nav.main-nav {
  display: none;
  align-items: center;
  gap: 3rem; /* space-x-12 */
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem; /* space-x-10 */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Liens de navigation */
.nav-link {
  position: relative;
  padding-bottom: 0.25rem; /* pb-1 */
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6); /* text-white/60 par défaut */
  text-decoration: none;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.nav-link:hover {
  color: #ffffff;
}

/* Pseudo-élément soulignement (barre sous le lien) */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* par défaut caché, sauf lien actif */
  height: 2px;
  background-color: var(--accent-color);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Lien actif (ex: "Accueil") */
.nav-link.active {
  color: #ffffff; /* text-white au lieu de white/60 */
}

.nav-link.active::after {
  width: 100%;
}

/* Bouton menu mobile */
.mobile-menu-btn {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  position: relative;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--brand-dark);
  
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.hero-svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14vw;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 3vw;
  text-transform: lowercase;
  margin: 0 0.5rem;
  color: var(--accent);
  font-style: italic;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

.hero-subtagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.hero-buttons {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 1.5rem;
}

.hero-btn {
  position: relative;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  overflow: hidden;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hero-btn-primary {
  background-color: #ffffff;
  color: var(--brand-dark);
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.hero-btn-secondary:hover {
  border-color: #ffffff;
}

.hero-btn-text {
  position: relative;
  z-index: 10;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
  .hero-heading {
    font-size: 10rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .hero-subtagline {
    font-size: 1rem;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  flex-direction: column;
}

.heroBg {
  width: 100%;
  position: absolute;
}

.heroBg > img {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

.heroText {
  position: relative;
  text-align: center;
  z-index: 10;
  color: white;
}

.heroText > h1 {
  font-family: Oswald, sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 10rem;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.heroText > p {
  font-weight: 100;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.25rem;
  font-family: 'Inter', sans-serif;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.518);
}

.heroBtn {
  position: relative;
  margin-top: 100px;
  display: flex;
  gap: 30px;
}

.heroBtn > button {
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.btnLeft {
  border: none;
}

.btnRight {
  background-color: #ffffff00;
  color: #ffffff;
  border-color: rgb(255 255 255 / 0.3);
  border-width: 1px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: #ffffff;
  color: var(--brand-dark);
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: var(--brand-dark);
  border-radius: 50%;
  pointer-events: none;
}

.bg-circle-top {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.bg-circle-bottom {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.services-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.services-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 5rem;
  text-align: center;
}

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

.service-card {
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.05); /* brand-dark/5 */
  border-radius: 1rem;
  color: var(--brand-dark);
  font-size: 1.875rem;
}

.service-heading {
  font-family: var(--font-heading, inherit);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.service-text {
  color: #6b7280;
  line-height: 1.625;
}

.service-tag {
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.3); /* brand-dark/30 */
  transition: color 0.3s ease;
}

.service-card:hover .service-tag {
  color: var(--brand-dark);
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */

.projects-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: var(--brand-dark);
  color: #ffffff;
  overflow: hidden;
}

.projects-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.projects-svg {
  width: 100%;
  height: 100%;
}

.projects-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.projects-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 5rem;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
  background-color: var(--brand-raised);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.project-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.project-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stack-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-link {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.project-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: #ffffff;
  color: var(--brand-dark);
  overflow: hidden;
}

.about-bg-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: var(--brand-dark);
  border-radius: 50%;
  transform: translate(33.333%, -33.333%);
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

.about-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 2.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.about-text-last {
  margin-bottom: 2.5rem;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.skill-badge {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.about-image-col {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: var(--brand-dark);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-deco-circle {
  position: absolute;
  z-index: 0;
  bottom: -8%;
  left: -8%;
  width: 100%;
  height: 100%;
  
  border-radius: 50%;
}

.white {
  background-color: white;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: #ffffff;
  color: var(--brand-dark);
  overflow: hidden;
}

.pricing-container {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 3.5rem;
}

.pricing-card {
  padding: 3rem 2.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pricing-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.05);
  border-radius: 1rem;
  color: var(--brand-dark);
  font-size: 1.875rem;
}

.pricing-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.pricing-text-last {
  margin-bottom: 2.5rem;
}

.pricing-btn {
  display: inline-block;
  background-color: var(--brand-dark);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: var(--brand-dark);
  color: #ffffff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.contact-svg {
  width: 100%;
  height: 100%;
}

.contact-container {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 4rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 0fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.contact-info-item {
  text-decoration: none;
  color: inherit;
}

.contact-icon-wrapper {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
  border-color: var(--accent);
}

.contact-icon {
  color: var(--accent);
}

.contact-info-text {
  font-size: 1.25rem;
  font-weight: 300;
}

.contact-info-break {
  word-break: break-all;
}

.contact-form {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accent);
}

.contact-textarea {
  resize: none;
}

.contact-submit {
  width: 100%;
  background-color: #ffffff;
  color: var(--brand-dark);
  padding: 1.25rem 0;
  border: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-submit:hover {
  background-color: var(--accent);
  color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--brand-darker);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading, inherit);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-meta {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-meta-highlight {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   MEDIA QUERIES (toutes regroupées ici)
   ========================================================================== */

@media (min-width: 768px) {

  .pricing-section {
    padding: 8rem 6rem;
  }
.about-image-col {
    max-width: 380px;
  }

  .pricing-title {
    font-size: 6rem;
  }
  .process-section {
    padding: 8rem 6rem;
  }

  .process-title {
    font-size: 6rem;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  nav.main-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .services-section {
    padding: 8rem 6rem;
  }

  .services-title {
    font-size: 6rem;
  }

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

  .projects-section {
    padding: 8rem 6rem;
  }

  .projects-title {
    font-size: 6rem;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-section {
    padding: 8rem 6rem;
  }

  .about-title {
    font-size: 4.5rem;
  }

  .contact-section {
    padding: 8rem 6rem;
  }

  .contact-title {
    font-size: 6rem;
  }

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

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

  .site-footer {
    padding: 5rem 6rem;
  }

  .footer-container {
    flex-direction: row;
  }

  .footer-brand {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bg-circle, .about-bg-circle{
    display: none;
  }


 
  /* --- Menu hamburger : panneau déroulant --- */
  nav.main-nav {
    position: fixed;
    top: 73px; /* juste sous la navbar sticky */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--brand-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
 
  nav.main-nav.is-open {
    display: flex;
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem;
  }
 
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
  }
 
  .nav-link {
    display: inline-block;
    font-size: 1rem;
  }
 
  .mobile-menu-btn {
    position: relative;
    z-index: 51;
  }
 
  /* --- Boutons du hero : centrage fiable même en position absolute --- */
  .hero-buttons {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 340px;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  .hero-section {
    height: 600px;
  }
  .hero-btn {
    flex: 1 1 auto;
    text-align: center;
  }
 
  /* --- Section contact : infos bien centrées et alignées sur une colonne --- */
  .contact-info-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }
 
  .contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}


.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}

#waves path {
  fill: none;
  stroke: #2a3f80;
  stroke-width: 1.5;
  opacity: 0.6;
}

/* ==========================================================================
   PROCESS ("Comment ça marche")
   ========================================================================== */

.process-section {
  position: relative;
  padding: 8rem 1.5rem;
  background-color: var(--brand-dark);
  color: #ffffff;
  overflow: hidden;
}

.process-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.process-title {
  font-family: var(--font-heading, inherit);
  font-size: 3.75rem;
  margin-bottom: 5rem;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.process-card {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background-color: var(--brand-raised);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.process-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(-0.5rem);
}

.process-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.process-heading {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.process-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
  font-size: 0.95rem;
}