:root {
  --green-900: #057e74;
  --green-800: #057e74;
  --green-700: #057e74;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --neutral-900: #0f1a14;
  --neutral-800: #1c2b22;
  --neutral-700: #374151;
  --neutral-500: #6b7280;
  --neutral-300: #d1d5db;
  --neutral-100: #f3f4f6;
  --neutral-50: #fafafa;
  --white: #ffffff;
  --accent: #22c55e;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
}

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

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 6rem 6%;
}

.container {
  max-width: 77.5rem;
  margin: 0 auto;
}

#hero {
  padding-top: 8.75rem;
  padding-bottom: 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -6.25rem;
  right: -12.5rem;
  width: 43.75rem;
  height: 43.75rem;
  background: var(--green-50);
  border-radius: 50%;
  z-index: 0;
}

#hero .hero-banner-section {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
}

#hero .hero-left {
  width: 50%;
}

#hero .hero-right {
  width: 50%;
}

#hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-50);
  border: 0.0625rem solid var(--green-100);
  color: var(--green-700);
  padding: 0.375rem 0.875rem;
  border-radius: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.01875rem;
}

#hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-900);
  letter-spacing: -0.0625rem;
  padding: 1.5rem 0;
}

#hero h1 span {
  color: var(--green-700);
}

#hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 30rem;
  line-height: 1.7;
}

#hero .hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  padding: 0.8125rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  padding: 0.8125rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 0.09375rem solid var(--green-600);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--green-50);
}

#hero .hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 0.3125rem;
}

#hero .hero-stats .stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
}

#hero .hero-stats .stat span {
  font-size: 0.8rem;
  color: var(--text-light);
}

#hero .hero-card-main {
  background: var(--white);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 1rem;
  padding: 1.75rem;
  width: 100%;
  max-width: 23.75rem;
}

#hero .hero-card-main .card-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

#hero .hero-card-main .card-header .dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--green-500);
}

#hero .hero-card-main .card-header span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 0.0625rem solid var(--neutral-100);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row .icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-row .icon-box svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--green-700);
}

.service-row p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}

.service-row span {
  font-size: 0.75rem;
  color: var(--text-light);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.375rem);
  }
}

#trusted {
  padding: 2.5rem 6%;
  background: var(--neutral-50);
  border-top: 0.0625rem solid var(--neutral-100);
  border-bottom: 0.0625rem solid var(--neutral-100);
}

#trusted .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

#trusted p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  white-space: nowrap;
}

#trusted .logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

#trusted .logos .client-logo {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--neutral-500);
  letter-spacing: -0.0125rem;
  transition: color 0.2s;
}

#trusted .logos .client-logo:hover {
  color: var(--green-700);
}

#services-overview {
  background: var(--white);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  letter-spacing: -0.03125rem;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 32.5rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

#services-overview .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem 1.5rem;
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 0.75rem;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.service-card:hover {
  border-color: var(--green-400);
  transform: translateY(-0.1875rem);
}

.service-card .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card .card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-700);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

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

#about {
  background: var(--green-50);
}

#about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

#about .about-card {
  background: var(--white);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 1rem;
  padding: 2.25rem;
}

#about .about-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1.25rem;
}

#about .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

#about .metric {
  text-align: center;
  padding: 1.25rem;
  background: var(--green-50);
  border-radius: 0.625rem;
}

#about .metric strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 0.25rem;
}

#about .metric span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

#about .about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#about .about-right p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

#about .about-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

#about .feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

#about .feature-item .check {
  width: 1.375rem;
  height: 1.375rem;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

#about .feature-item .check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

#about .feature-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

#why {
  background: var(--white);
}

#why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2rem 1.75rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.why-card.featured {
  background: var(--green-800);
  border-color: var(--green-700);
}

.why-card.featured h3,
.why-card.featured p {
  color: var(--white);
}

.why-card.featured p {
  opacity: 0.75;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 1rem 0 0.5rem;
}

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

.why-card .card-icon svg {
  color: var(--white);
}

#detailed {
  background: var(--neutral-50);
}

#detailed .services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-service {
  background: var(--white);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 0.75rem;
  overflow: hidden;
}

.detail-service summary {
  padding: 1.375rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-900);
  transition: background 0.2s;
}

.detail-service summary:hover {
  background: var(--green-50);
}

.detail-service summary::-webkit-details-marker {
  display: none;
}

.detail-service summary .svc-arrow {
  margin-left: auto;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-light);
  transition: transform 0.3s;
}

.detail-service.is-open summary .svc-arrow {
  transform: rotate(180deg);
}

.detail-service .detail-body {
  height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
  border-top: 0;
  transition: height 0.35s ease, padding 0.35s ease;
}

.detail-service.is-open .detail-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
  border-top: 0.0625rem solid var(--neutral-100);
}

.detail-service .detail-body p {
  margin: 0.875rem 0 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.detail-service .detail-body ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.75rem;
  margin-top: 0.125rem;
}

.detail-service .detail-body li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.55;
}

.detail-service .detail-body li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
}

#process {
  background: var(--white);
}

#process .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

#process .process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 0.0625rem;
  background: var(--neutral-100);
  z-index: 0;
}

#process .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

#process .step .step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--white);
  border: 0.125rem solid var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 1.25rem;
}

#process .step.active .step-num {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}

#industries {
  background: var(--neutral-50);
}

#industries .industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--white);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 0.625rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.industry-card:hover {
  border-color: var(--green-400);
  transform: translateY(-0.125rem);
}

.industry-card .ind-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
}

.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.375rem;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

#testimonials {
  background: var(--white);
}

#testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--neutral-50);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 0.875rem;
  padding: 1.75rem;
}

.testimonial-card .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  flex-shrink: 0;
}

#cta {
  background: var(--green-800);
  padding: 5rem 6%;
  text-align: center;
}

#cta .container {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0;
}

#cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.0375rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
}

#cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 45rem;
  margin: 0 auto 1.625rem;
  line-height: 1.7;
}

#cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
  padding: 0.8125rem 1.375rem;
  border-radius: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  border: 0.0625rem solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s;
  box-shadow: 0 1.125rem 2.5rem rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  transform: translateY(-0.0625rem);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.8125rem 1.375rem;
  border-radius: 0.625rem;
  font-weight: 700;
  text-decoration: none;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-0.0625rem);
}

#contact {
  background: radial-gradient(56.25rem 31.25rem at 20% 25%, rgba(34, 197, 94, 0.12), transparent 60%),
    var(--white);
}

.contact-form-heading {
  margin-bottom: 1.375rem;
}

.contact-form-heading .section-heading {
  margin-bottom: 0.625rem;
}

.contact-form-heading p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  gap: 1.75rem;
  align-items: stretch;
}

#contact .contact-info {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1.75rem;
  padding-bottom: 0;
}

#contact .contact-info .section-label {
  color: var(--green-700);
}

#contact .contact-info .section-heading {
  color: var(--neutral-900);
}

#contact .contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}

#contact .contact-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  border: 0.0625rem solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

#contact .ci-icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#contact .ci-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-700);
}

#contact .contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--neutral-900);
  margin-bottom: 0.125rem;
}

#contact .contact-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

#contact form {
  background: var(--white);
  border: 0.0625rem solid var(--neutral-100);
  border-radius: 1.25rem;
  box-shadow: 0 1.75rem 5.625rem rgba(15, 26, 20, 0.12);
  width: 100%;
  overflow: hidden;
}

.contact-form-card-header {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border-bottom: 0.0625rem solid rgba(22, 163, 74, 0.16);
  padding: 1.125rem 1.375rem;
  text-align: center;
}

.contact-form-card-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.01875rem;
}

.contact-form-body {
  padding: 1.375rem;
}

.contact-form-body>div {
  margin-bottom: 0.875rem;
}

.contact-form-body>div:last-child {
  margin-bottom: 0;
}

#contact label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.375rem;
}

#contact input,
#contact select,
#contact textarea {
  width: 100%;
  padding: 0.75rem 0.75rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid var(--neutral-300);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  outline: none;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(17, 24, 39, 0.5);
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.15);
}

.all-contact-form {
  width: 100%;
}

@media (max-width: 980px) {
  #hero .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #hero {
    padding-top: 120px;
  }

  #hero .hero-visual {
    max-width: 520px;
    height: 340px;
  }

  #hero .floating-badge.top {
    right: 0;
  }

  #hero .floating-badge.bottom {
    left: 0;
  }
}

@media (max-width: 560px) {
  #hero .hero-visual {
    height: 300px;
  }
}

@media (max-width: 680px) {
  .detail-service .detail-body ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}