:root {
  --primary: #6d35ff;
  --primary-2: #2563ff;
  --secondary: #9b5cff;
  --dark: #020817;
  --dark-2: #071126;
  --dark-3: #0b1730;
  --text: #ffffff;
  --muted: #aab4cf;
  --soft: #eef3ff;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(2, 8, 23, 0.08);
  --gradient: linear-gradient(135deg, #6d35ff 0%, #2563ff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(109, 53, 255, 0.16), rgba(37, 99, 255, 0.10));
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  background: #ffffff;
  color: #071126;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109, 53, 255, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}

.badge.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #dbe4ff;
  border: 1px solid var(--border);
}

.section-title {
  margin-bottom: 34px;
}

.section-title span {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #071126;
}

.section-title p {
  max-width: 680px;
  margin-top: 14px;
  color: #5d667a;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 14px 32px rgba(109, 53, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(109, 53, 255, 0.36);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(2, 8, 23, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(2, 8, 23, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.logo img {
  max-height: 48px;
  width: auto;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 30px 0;
  transition: .25s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: #9b7cff;
}

.main-nav > li.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  border-radius: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 280px;
  padding: 12px;
  background: rgba(8, 15, 32, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.has-dropdown:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 12px;
  transition: .25s ease;
}

.dropdown-menu a:hover {
  background: rgba(109, 53, 255, 0.16);
  color: #bba8ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* COMMON HERO */

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(109, 53, 255, .35), transparent 30%),
    linear-gradient(135deg, #020817 0%, #071126 55%, #0c1233 100%);
  color: #fff;
  padding: 90px 0;
}

.page-hero.with-image {
  padding: 80px 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .35;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #bdc7e6;
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -2.6px;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 650px;
  color: #c7d2ef;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
  border: 1px solid var(--border);
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: #e8eeff;
  font-size: 14px;
  font-weight: 700;
}

.hero-feature-list i {
  color: #9b7cff;
}

/* HOME */

.home-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.home-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.home-hero h1 strong {
  display: block;
}

/* SERVICE CARDS */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(2, 8, 23, 0.08);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.14);
}

.service-card.dark {
  background: rgba(7, 17, 38, 0.78);
  border-color: var(--border);
  color: #fff;
}

.service-card-img {
  height: 215px;
  overflow: hidden;
  background: #edf2ff;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(2, 8, 23, .12);
}

.service-card.dark .service-icon {
  background: rgba(109, 53, 255, 0.16);
  border: 1px solid var(--border);
  box-shadow: none;
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card p {
  color: #5f687c;
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card.dark p {
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.read-more i {
  transition: .25s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* DARK SECTION */

.dark-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(109, 53, 255, .20), transparent 32%),
    linear-gradient(135deg, #020817 0%, #071126 100%);
  color: #fff;
}

.dark-section .section-title h2 {
  color: #fff;
}

.dark-section .section-title p {
  color: var(--muted);
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: min(420px, 90%);
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(2, 8, 23, .15);
}

.about-stat strong {
  display: block;
  font-size: 30px;
  color: #071126;
  line-height: 1;
}

.about-stat span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-item i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: rgba(109, 53, 255, 0.10);
  color: var(--primary);
  font-size: 24px;
}

.feature-item h4 {
  font-size: 17px;
  margin-bottom: 3px;
}

.feature-item p {
  color: #5f687c;
  font-size: 15px;
}

/* WHY CARDS */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(2, 8, 23, 0.06);
}

.why-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(109, 53, 255, 0.10);
  color: var(--primary);
  font-size: 26px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  color: #5f687c;
  font-size: 14px;
}

/* PROCESS */

.process-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 24px 16px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(109, 53, 255, .45);
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(109, 53, 255, .28);
}

.process-step strong {
  display: block;
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 4px;
}

.process-step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.process-step p {
  color: #5f687c;
  font-size: 14px;
}

/* DETAIL PAGE */

.detail-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.07);
}

.detail-panel h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  gap: 11px;
  color: #35405a;
  font-weight: 600;
}

.check-list i {
  color: var(--primary);
  font-size: 19px;
  margin-top: 2px;
}

.content-area {
  color: #35405a;
  font-size: 17px;
}

.content-area h2,
.content-area h3,
.content-area h4 {
  color: #071126;
  line-height: 1.25;
  margin: 28px 0 12px;
}

.content-area p {
  margin-bottom: 16px;
}

.content-area ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 8, 23, 0.08);
  border: 1px solid var(--border-light);
}

.faq-sidebar i {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(109, 53, 255, .10);
  color: var(--primary);
  font-size: 30px;
}

.faq-item {
  margin-bottom: 13px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 28px rgba(2, 8, 23, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #071126;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  color: var(--primary);
  font-size: 20px;
  transition: .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: #5f687c;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
}

.contact-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #dfe5f2;
  border-radius: 13px;
  background: #fff;
  outline: 0;
  color: #071126;
  transition: .25s ease;
}

textarea.form-control {
  min-height: 145px;
  padding-top: 14px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109, 53, 255, .10);
}

.contact-info-card {
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(109, 53, 255, .20), transparent 32%),
    linear-gradient(135deg, #020817, #071126);
  color: #fff;
  border-radius: var(--radius);
}

.contact-info-list {
  display: grid;
  gap: 17px;
  margin-top: 24px;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-info-list i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(109, 53, 255, .20);
  color: #bba8ff;
  font-size: 22px;
}

.map-box {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
  background: #eef3ff;
}

.map-box iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* CTA */

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.24), transparent 28%),
    var(--gradient);
  color: #fff;
  box-shadow: 0 24px 70px rgba(109, 53, 255, .28);
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-box p {
  color: rgba(255, 255, 255, .84);
  max-width: 680px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  background: #020817;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
}

.footer-logo img {
  max-height: 48px;
}

.footer-about p {
  color: var(--muted);
  max-width: 320px;
}

.footer-title {
  font-size: 17px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  transition: .25s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.footer-contact li {
  display: flex;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: .25s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

/* WHATSAPP */

.fixed-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 31px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .36);
  transition: .25s ease;
}

.fixed-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

/* HELPER */

.bg-soft {
  background: #f4f7ff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}