:root {
  --bg-dark: #0b0f19;
  --bg-card: #131b2e;
  --bg-card-hover: #1b2640;
  --bg-glass: rgba(19, 27, 46, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.3);

  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 10px 30px rgba(99, 102, 241, 0.25);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 16px;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(99, 102, 241, 0.4);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Navbar */
.navbar {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1240px;
  padding: 0 24px;
}

#navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-main);
}

.navbar__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.navbar__links {
  color: var(--text-muted);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.navbar__links:hover,
.navbar__links.highlight {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.navbar__links.highlight {
  color: var(--primary);
}

.navbar__btn {
  margin-left: 12px;
}

.navbar__btn .button {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar__btn .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.navbar__toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.navbar__toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.navbar__toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: var(--text-main);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px 0;
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
}

.hero__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  margin-bottom: 24px;
}

.hero__heading {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero__description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat__item {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat__item:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat__details {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About Section */
.about {
  background: #0f1524;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__card-glass {
  background: linear-gradient(145deg, rgba(27, 38, 64, 0.8), rgba(19, 27, 46, 0.9));
  border: 1px solid var(--border-glow);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.about__card-glass .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.about__card-glass h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.about__card-glass p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--text-main);
}

.about__content .section__title {
  margin-top: 8px;
}

.about__description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature__item {
  display: flex;
  gap: 20px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature__item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services Section */
.services__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.services__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.services__card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.services__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.services__card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.services__card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services__list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.services__list li i {
  color: #2dd4bf;
}

.services__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.services__link:hover {
  gap: 14px;
  color: #a855f7;
}

/* Contact Section */
.contact {
  background: #0d1220;
  border-top: 1px solid var(--border-color);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact__info h2 {
  font-size: 2.4rem;
  margin: 12px 0 20px 0;
}

.contact__info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 20px;

}

.contact__detail-item i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact__detail-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact__detail-item strong {
  font-size: 1.05rem;
  color: var(--text-main);
}

.contact__form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form__group label .required {
  color: #ec4899;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__group select option {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form__status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form__status.success {
  display: block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.form__status.error {
  display: block;
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

/* FAQ Section */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  transition: border-color 0.3s ease;
}

.faq__item[open] {
  border-color: var(--border-glow);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}

.faq__item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Breadcrumb (service detail pages) */
.breadcrumb {
  background: #0f1524;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.breadcrumb__list a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.breadcrumb__list li[aria-current="page"] {
  color: var(--text-main);
}

/* Page Hero (service detail pages) */
.page-hero {
  padding: 80px 0 60px 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
}

.page-hero__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero__lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Banner (service detail pages) */
.cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px;
}

.cta-banner__inner h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-banner__inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Legal / Privacy pages */
.legal {
  padding: 80px 0;
}

.legal__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal__container h1 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.legal__updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal__container h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px 0;
}

.legal__container p,
.legal__container li {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal__container ul {
  padding-left: 20px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__container a {
  color: var(--primary);
}

/* Contact form consent line */
.form__consent {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

.form__consent a {
  color: var(--primary);
}

/* Footer */
.footer {
  background: #070a12;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

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

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
}

.footer__bottom-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer__legal-link {
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: var(--primary);
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
  .hero__heading {
    font-size: 2.75rem;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .navbar__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: -1000px;
    left: 0;
    opacity: 0;
    transition: all 0.4s ease;
    background: #0b0f19;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar__menu.active {
    top: 85px;
    opacity: 1;
  }

  .navbar__item {
    width: 100%;
    text-align: center;
  }

  .navbar__links {
    display: block;
    padding: 16px;
    width: 100%;
  }

  .navbar__btn {
    margin: 16px 0 0 0;
    width: 80%;
  }

  .navbar__toggle {
    display: block;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero__heading {
    font-size: 2.2rem;
  }

  .hero__description {
    font-size: 1.05rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .services__wrapper {
    grid-template-columns: 1fr;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .page-hero__title {
    font-size: 2.1rem;
  }

  .page-hero__cta,
  .cta-banner__actions {
    flex-direction: column;
  }

  .faq__item {
    padding: 18px 20px;
  }
}
