@charset "UTF-8";
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 400;
}

h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

a {
  color: #c8ff00;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #b8ef00;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

::selection {
  background: #c8ff00;
  color: #0a0a0a;
}

.site-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bento-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.bento-grid > * {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .bento-grid > * {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
@media (min-width: 1024px) {
  .bento-grid > * {
    flex: 1 1 calc(33.3333333333% - 1.5rem);
  }
}

.section {
  padding: 5rem 0;
}
.section__header {
  margin-bottom: 3rem;
}
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8ff00;
  margin-bottom: 1rem;
}
.section__label::before {
  content: "✦";
  margin-right: 0.5rem;
}
.section__title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .section__title {
    font-size: 3.5rem;
  }
}
.section__title .highlight {
  color: #c8ff00;
  font-style: italic;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 1.5rem;
  transition: background-color 0.3s ease;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header .header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header .site-branding .custom-logo-link img {
  height: 30px;
  width: 30px;
  object-fit: contain;
  display: block;
}
.site-header .site-branding .site-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
}
.site-header .site-branding .site-title a {
  color: #ffffff;
  text-decoration: none;
}
.site-header .site-branding .site-title a .highlight {
  color: #c8ff00;
}
.site-header .site-branding .site-title a:hover {
  opacity: 0.8;
}
.site-header .main-navigation.toggled ul {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 1.5rem;
  right: 1.5rem;
  width: calc(100vw - 1.5rem * 2);
  background-color: #141414;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header .main-navigation.toggled ul li a {
  padding: 1rem;
  border-radius: 8px;
  display: block;
}
.site-header .main-navigation.toggled ul li a:hover {
  background-color: #1a1a1a;
}
.site-header .main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .site-header .main-navigation ul {
    display: flex;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
    gap: 2rem;
  }
}
.site-header .main-navigation ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.site-header .main-navigation ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.site-header .header-cta {
  display: none;
}
@media (min-width: 768px) {
  .site-header .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
  }
  .site-header .header-cta:hover {
    border-color: #c8ff00;
    color: #c8ff00;
  }
}
.site-header .menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #ffffff;
}
.site-header .menu-toggle .icon-close {
  display: none;
}
@media (min-width: 768px) {
  .site-header .menu-toggle {
    display: none;
  }
}

body.menu-open .site-header .menu-toggle .icon-hamburger {
  display: none;
}
body.menu-open .site-header .menu-toggle .icon-close {
  display: block;
}

.site {
  padding-top: 80px;
}

.site-footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 3rem 0;
}
.site-footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-footer .footer-socials a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.site-footer .footer-socials a:hover {
  color: #c8ff00;
}
.site-footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer .footer-nav a:hover {
  color: #ffffff;
}
.site-footer .site-info {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}
.site-footer .site-info a {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .site-info a:hover {
  color: #c8ff00;
}

.bento-card {
  background-color: #141414;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}
.bento-card--wide {
  flex: 1 1 100% !important;
}
@media (min-width: 768px) {
  .bento-card--wide {
    flex: 1 1 calc(66.666% - 1.5rem) !important;
  }
}
@media (min-width: 768px) {
  .bento-card--half {
    flex: 1 1 calc(50% - 1.5rem) !important;
  }
}
@media (min-width: 768px) {
  .bento-card--tall {
    min-height: 400px;
  }
}
.bento-card__header {
  margin-bottom: 1rem;
}
.bento-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.bento-card__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.bento-card__content {
  flex: 1;
}
.bento-card__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #1a1a1a;
}
.bento-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bento-card__image:hover img {
  transform: scale(1.03);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8ff00;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section__label::before {
  content: "✦";
  margin-right: 0.5rem;
}

.section__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .section__title {
    font-size: 3.5rem;
  }
}

.highlight {
  color: #c8ff00;
  font-style: italic;
}

.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(180, 255, 0, 0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 30% 60%, rgba(180, 255, 0, 0.04) 0%, transparent 60%), radial-gradient(ellipse 35% 45% at 70% 50%, rgba(200, 255, 0, 0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero .hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.hero .hero__top {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .hero .hero__top {
    margin-bottom: 4rem;
  }
}
.hero .hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8ff00;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(200, 255, 0, 0.25);
  border-radius: 50px;
  background: rgba(200, 255, 0, 0.06);
}
.hero .hero__badge::before {
  content: "✦";
  margin-right: 0.5rem;
}
.hero .hero__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 auto 1.5rem;
  max-width: 700px;
}
@media (min-width: 1024px) {
  .hero .hero__title {
    font-size: 3.5rem;
  }
}
.hero .hero__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero .hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .hero__bottom {
  margin-top: 0;
}
.hero .hero__bottom-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .hero .hero__bottom-grid {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.hero .hero__image-col {
  flex: 0 0 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .hero .hero__image-col {
    flex: 0 0 35%;
    max-width: none;
  }
}
.hero .hero__bio-col {
  flex: 1;
}
.hero .hero__image {
  position: relative;
}
.hero .hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: brightness(0.8) contrast(1.1) saturate(0.5);
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 100%);
  mask-image: radial-gradient(circle, black 50%, transparent 100%);
}
.hero .hero__bio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}
@media (min-width: 768px) {
  .hero .hero__bio {
    font-size: 1.25rem;
  }
}
.hero .hero__bio strong {
  color: #c8ff00;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background-color: #c8ff00;
  color: #0a0a0a;
}
.btn--primary:hover {
  background-color: #b8ef00;
  transform: translateY(-2px);
  color: #0a0a0a;
}
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.btn--outline:hover {
  border-color: #c8ff00;
  color: #c8ff00;
}

.services {
  padding: 5rem 0;
}
.services .services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services .services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.services .services__header-right {
  display: none;
}
@media (min-width: 768px) {
  .services .services__header-right {
    display: block;
  }
}
.services .view-all-circle {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}
.services .view-all-circle:hover {
  border-color: #c8ff00;
  color: #c8ff00;
  transform: rotate(45deg);
}
.services .services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services .service-card {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.services .service-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
}
.services .service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #c8ff00;
}
.services .service-card__icon svg {
  width: 100%;
  height: 100%;
}
.services .service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.services .service-card__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.portfolio {
  padding: 5rem 0;
}
.portfolio .portfolio__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.portfolio .section__header {
  margin-bottom: 3rem;
}
.portfolio .portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .portfolio .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.portfolio .project-card {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.portfolio .project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}
.portfolio .project-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: #1a1a1a;
}
.portfolio .project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio .project-card:hover .portfolio .project-card__image img {
  transform: scale(1.05);
}
.portfolio .project-card__tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #0a0a0a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.portfolio .project-card__view-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #c8ff00;
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.portfolio .project-card:hover .portfolio .project-card__view-btn {
  opacity: 1;
  transform: translateY(0);
}
.portfolio .project-card__info {
  padding: 1.5rem;
}
.portfolio .project-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.portfolio .project-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.companies {
  padding: 5rem 0;
}
.companies .companies__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.companies .companies__header {
  margin-bottom: 3rem;
}
.companies .companies__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .companies .companies__title {
    font-size: 3.5rem;
  }
}
.companies .companies__title .highlight {
  color: #c8ff00;
  font-style: italic;
}
.companies .companies__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.companies .companies__grid > * {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .companies .companies__grid > * {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.companies .company-card {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.companies .company-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-3px);
}
.companies .company-card__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.companies .company-card__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.companies .company-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.companies .company-card__logo-initial {
  font-size: 1.5rem;
  font-weight: 800;
  color: #c8ff00;
}
.companies .company-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.companies .company-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.companies .company-card__role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c8ff00;
  background-color: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.companies .company-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.contact {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.contact .contact__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact .contact__title {
  font-size: 2.5rem;
  line-height: 1.05;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .contact .contact__title {
    font-size: 3.5rem;
  }
}
.contact .contact__title .highlight {
  color: #c8ff00;
  font-style: normal;
}
.contact .contact__form {
  width: 100%;
}
.contact .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact .form-field {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .contact .form-field {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.contact .form-field input,
.contact .form-field textarea {
  width: 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact .form-field input::placeholder,
.contact .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact .form-field input:focus,
.contact .form-field textarea:focus {
  border-color: rgba(200, 255, 0, 0.4);
}
.contact .form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact .form-field--full {
  flex: 1 1 100%;
}
.contact .btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: #c8ff00;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1rem;
}
.contact .btn-submit:hover {
  background-color: #b8ef00;
}

.bento-contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}
.bento-contact-form .bento-form-group {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .bento-contact-form .bento-form-group {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.bento-contact-form .bento-form-group.--full-width {
  flex: 1 1 100%;
}
.bento-contact-form .bento-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.bento-contact-form .bento-input,
.bento-contact-form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.bento-contact-form .bento-input::placeholder,
.bento-contact-form .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.bento-contact-form .bento-input:focus,
.bento-contact-form .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: rgba(200, 255, 0, 0.4);
}
.bento-contact-form textarea.bento-input,
.bento-contact-form textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 140px;
}
.bento-contact-form .bento-submit-group {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bento-contact-form .bento-submit-group {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.bento-contact-form .bento-submit,
.bento-contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background-color: #c8ff00;
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  width: 100%;
}
@media (min-width: 768px) {
  .bento-contact-form .bento-submit,
  .bento-contact-form .wpcf7-submit {
    width: auto;
  }
}
.bento-contact-form .bento-submit:hover,
.bento-contact-form .wpcf7-submit:hover {
  background-color: #b8ef00;
  transform: translateY(-2px);
}
.bento-contact-form .wpcf7-not-valid-tip {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.bento-contact-form .wpcf7-response-output {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem 0 0 !important;
}
.bento-contact-form .wpcf7-turnstile,
.bento-contact-form .cf-turnstile {
  overflow: hidden;
  transform: scale(0.65);
  transform-origin: right center;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.bento-contact-form .wpcf7-turnstile:hover,
.bento-contact-form .cf-turnstile:hover {
  opacity: 1;
}
.bento-contact-form .wpcf7-turnstile iframe,
.bento-contact-form .cf-turnstile iframe {
  display: block;
  border: none;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.site-footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.site-footer .footer-logo .custom-logo-link img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  display: block;
}
.site-footer .footer-socials {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-socials li {
  list-style: none;
}
.site-footer .footer-socials a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-socials a::before {
  content: "◆";
  font-size: 6px;
  color: #c8ff00;
}
.site-footer .footer-socials a:hover {
  color: #c8ff00;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav li {
  list-style: none;
}
.site-footer .footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}
.site-footer .footer-nav a:hover {
  color: #ffffff;
}
.site-footer .site-info {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-intro {
  padding: 5rem 0;
}
.about-intro__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-intro__container {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}
.about-intro__image-col {
  flex: 0 0 auto;
}
@media (min-width: 1024px) {
  .about-intro__image-col {
    flex: 0 0 380px;
  }
}
.about-intro__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.about-intro__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-intro__content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro__name {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .about-intro__name {
    font-size: 3.5rem;
  }
}
.about-intro__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c8ff00;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.about-intro__bio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 0 2rem;
}
.about-intro__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-stats {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.about-stats__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about-stats .stat-card {
  flex: 1 1 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .about-stats .stat-card {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}
.about-stats .stat-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-3px);
}
.about-stats .stat-card__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #c8ff00;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-stats .stat-card__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-skills {
  padding: 5rem 0;
}
.about-skills__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-skills__header {
  margin-bottom: 3rem;
}
.about-skills__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .about-skills__title {
    font-size: 3.5rem;
  }
}
.about-skills__title .highlight {
  color: #c8ff00;
  font-style: italic;
}
.about-skills__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about-skills .skill-card {
  flex: 1 1 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .about-skills .skill-card {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
@media (min-width: 1024px) {
  .about-skills .skill-card {
    flex: 1 1 calc(25% - 1.5rem);
  }
}
@media (min-width: 1024px) {
  .about-skills .skill-card--wide {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.about-skills .skill-card:hover {
  border-color: rgba(200, 255, 0, 0.25);
}
.about-skills .skill-card__category {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c8ff00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
}
.about-skills .skill-card__category::before {
  content: "✦";
  margin-right: 0.5rem;
}
.about-skills .skill-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-skills .skill-card__list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  position: relative;
}
.about-skills .skill-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  top: 0.2em;
}
.about-skills .skill-card__list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-skills .skill-card__list--inline li {
  padding-left: 0;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.about-skills .skill-card__list--inline li::before {
  display: none;
}

.about-services {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.about-services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-services__header {
  margin-bottom: 3rem;
}
.about-services__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .about-services__title {
    font-size: 3.5rem;
  }
}
.about-services__title .highlight {
  color: #c8ff00;
  font-style: italic;
}
.about-services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about-services .about-service-card {
  flex: 1 1 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .about-services .about-service-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}
.about-services .about-service-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-3px);
}
.about-services .about-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}
.about-services .about-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-services .about-service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.about-services .about-service-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #141414;
}
.about-cta__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-cta__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.about-cta__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .about-cta__title {
    font-size: 3.5rem;
  }
}
.about-cta__title .highlight {
  color: #c8ff00;
  font-style: italic;
}
.about-cta__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}
.about-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.cp-hero {
  padding: 5rem 0;
  text-align: center;
}
.cp-hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 720px;
}
.cp-hero__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  .cp-hero__title {
    font-size: 3.5rem;
  }
}
.cp-hero__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.cp-grid {
  padding-bottom: 5rem;
}
.cp-grid__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cp-grid__container {
    flex-direction: row;
  }
}
.cp-grid__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cp-grid__sidebar {
    flex: 0 0 360px;
  }
}
.cp-grid__main {
  flex: 1;
  min-width: 0;
}

.cp-card {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.cp-card:hover {
  border-color: rgba(200, 255, 0, 0.2);
}
.cp-card__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c8ff00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
}
.cp-card__label::before {
  content: "✦";
  margin-right: 0.5rem;
}
.cp-card__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cp-card__info-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.cp-card__info-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-card__info-list a:hover {
  color: #c8ff00;
}
.cp-card__info-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 1rem;
}
.cp-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cp-card__social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cp-card__social-link:hover {
  border-color: #c8ff00;
  color: #c8ff00;
}
.cp-card--map {
  padding: 0;
  overflow: hidden;
}
.cp-card__map {
  width: 100%;
  height: 200px;
}
.cp-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}
.cp-card--form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.cp-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cp-form__field {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .cp-form__row > .cp-form__field {
    flex: 1 1 calc(50% - 1.5rem);
  }
}
.cp-form__field input,
.cp-form__field textarea {
  width: 100%;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cp-form__field input::placeholder,
.cp-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cp-form__field input:focus,
.cp-form__field textarea:focus {
  border-color: rgba(200, 255, 0, 0.4);
}
.cp-form__field textarea {
  resize: vertical;
  min-height: 140px;
}
.cp-form__submit {
  align-self: stretch;
  width: 100%;
  padding: 0.85rem 2rem;
}
@media (min-width: 768px) {
  .cp-form__submit {
    align-self: flex-start;
    width: auto;
  }
}

.cp-faq {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.cp-faq__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 800px;
}
.cp-faq__header {
  margin-bottom: 3rem;
  text-align: center;
}
.cp-faq__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .cp-faq__title {
    font-size: 3.5rem;
  }
}
.cp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cp-faq__item {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.cp-faq__item[open] {
  border-color: rgba(200, 255, 0, 0.25);
}
.cp-faq__item[open] .cp-faq__question::after {
  transform: rotate(45deg);
}
.cp-faq__question {
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.cp-faq__question::-webkit-details-marker {
  display: none;
}
.cp-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  color: #c8ff00;
  font-weight: 300;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.cp-faq__answer {
  padding: 0 2rem 1.5rem;
}
.cp-faq__answer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.cp-cta {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #141414;
}
.cp-cta__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cp-cta__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cp-cta__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .cp-cta__title {
    font-size: 3.5rem;
  }
}
.cp-cta__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}
.cp-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-hero {
  padding: 5rem 0;
  text-align: center;
}
.sp-hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 720px;
}
.sp-hero__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  .sp-hero__title {
    font-size: 3.5rem;
  }
}
.sp-hero__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.sp-services {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.sp-services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sp-services__header {
  margin-bottom: 3rem;
}
.sp-services__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .sp-services__title {
    font-size: 3.5rem;
  }
}
.sp-services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sp-services .sp-service-card {
  flex: 1 1 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .sp-services .sp-service-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}
.sp-services .sp-service-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
}
.sp-services .sp-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}
.sp-services .sp-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-services .sp-service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.sp-services .sp-service-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.sp-services .sp-service-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sp-services .sp-service-card__features li {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.sp-process {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.sp-process__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sp-process__header {
  margin-bottom: 3rem;
}
.sp-process__title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1024px) {
  .sp-process__title {
    font-size: 3.5rem;
  }
}
.sp-process__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sp-process .sp-step-card {
  flex: 1 1 100%;
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .sp-process .sp-step-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}
@media (min-width: 1024px) {
  .sp-process .sp-step-card {
    flex: 0 1 calc(33.333% - 1.5rem);
  }
}
.sp-process .sp-step-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
}
.sp-process .sp-step-card__number {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #c8ff00;
  line-height: 1;
  margin-bottom: 1rem;
}
.sp-process .sp-step-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.sp-process .sp-step-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.sp-cta {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #141414;
}
.sp-cta__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sp-cta__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.sp-cta__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  .sp-cta__title {
    font-size: 3.5rem;
  }
}
.sp-cta__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}
.sp-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
