.elementor-22 .elementor-element.elementor-element-5f567f8{--display:flex;}.elementor-22 .elementor-element.elementor-element-267f86b{border-radius:0px 0px 0px 0px;}body.elementor-page-22:not(.elementor-motion-effects-element-type-background), body.elementor-page-22 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-1f91e25 */.main-header {
  width: 100%;
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.header-shell {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.header-content {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 22px;
  border-radius: 22px;
  background: rgba(7, 18, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 98px;
  height: auto;
  display: block;
}

/* MENU DESKTOP */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  text-decoration: none;
  color: #f4f7fb;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #78dd3c, #9af55f);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #78dd3c;
}

.nav a:hover::after {
  width: 100%;
}

/* BOTÃO */
.actions {
  display: flex;
  align-items: center;
}

.btn-login {
  padding: 11px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(120, 221, 60, 0.20);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-login:hover {
  transform: translateY(-2px);
  color: #08110a;
  background: linear-gradient(135deg, #78dd3c 0%, #8bed52 100%);
  border-color: rgba(120, 221, 60, 0.28);
  box-shadow: 0 16px 30px rgba(120, 221, 60, 0.18);
}

/* MOBILE */
.mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-system-btn {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: rgba(120, 221, 60, 0.20);
  color: #78dd3c;
}

/* TABLET */
@media (max-width: 1080px) {
  .brand img {
    width: 88px;
  }

  .nav {
    gap: 24px;
  }

  .nav a {
    font-size: 15px;
  }

  .btn-login {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .main-header {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 0;
    pointer-events: auto;
  }

  .header-shell {
    width: 100%;
    max-width: 100%;
  }

  .header-content {
    border-radius: 0;
    padding: 14px 5%;
    background: rgba(7, 18, 32, 0.92);
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .brand img {
    width: 84px;
  }

  .actions {
    display: none;
  }

  .mobile-right {
    display: flex;
  }

  .mobile-system-btn {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 5%;
    width: 90%;
    background: rgba(7, 18, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    z-index: 10000;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    color: #ffffff;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover {
    background: rgba(120, 221, 60, 0.08);
    color: #78dd3c;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b5ccf7 */.hero-home {
  padding: 110px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-home-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-home-left {
  max-width: 700px;
}

.hero-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  border: 1px solid rgba(120, 221, 60, 0.18);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-mini-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #78dd3c;
  box-shadow: 0 0 14px rgba(120, 221, 60, 0.35);
}

.hero-home-left h1 {
  margin: 0 0 22px;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
  font-weight: 700;
}

.hero-home-left h1 span {
  color: #78dd3c;
}

.hero-home-left p {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #9fb1c9;
  max-width: 620px;
}

.hero-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn {
  min-width: 190px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}

.btn-primary.hero-btn {
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #78dd3c 0%, #8bed52 100%);
  color: #08110a;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(120, 221, 60, 0.18);
  box-shadow: 0 14px 32px rgba(120, 221, 60, 0.22);
  transition: all 0.25s ease;
}

.btn-primary.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(120, 221, 60, 0.28);
}

.btn-outline.hero-btn {
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.btn-outline.hero-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 221, 60, 0.20);
  box-shadow: 0 16px 30px rgba(6, 67, 137, 0.14);
}

/* LADO DIREITO */
.hero-home-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.hero-main-card,
.hero-hover-card {
  transition: all 0.3s ease;
}

.hero-main-card {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #064389 0%, #0a58ad 100%);
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(6, 67, 137, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 300px;
}

.hero-main-card small {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.hero-main-card h3 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 0.98;
  font-weight: 600;
}

.hero-main-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

.hero-main-card.inactive {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(6px);
}

.hero-main-card.inactive small {
  color: #9fb1c9;
}

.hero-main-card.inactive p {
  color: #9fb1c9;
}

.hero-hover-card {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  backdrop-filter: blur(6px);
}

.hero-hover-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: #ffffff;
}

.hero-hover-card span {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: #9fb1c9;
}

.hero-hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(6, 67, 137, 0.14);
}

.hero-hover-card.active {
  background: linear-gradient(135deg, #064389 0%, #0a58ad 100%);
  border: 1px solid rgba(120, 221, 60, 0.18);
  box-shadow: 0 24px 48px rgba(6, 67, 137, 0.22);
}

.hero-hover-card.active strong,
.hero-hover-card.active span {
  color: #ffffff;
}

.card-trafego {
  grid-column: 1;
  grid-row: 1;
}

.card-consultoria {
  grid-column: 2;
  grid-row: 1;
  margin-top: 46px;
}

.hero-main-card {
  grid-row: 2;
}

.card-estrutura {
  grid-column: 1;
  grid-row: 3;
  max-width: 240px;
}

@media (max-width: 1100px) {
  .hero-home-left h1 {
    font-size: 54px;
  }

  .hero-main-card h3 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 70px 0;
  }

  .hero-home-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-home-left h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .hero-home-left p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-mini-badge {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-home-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-home-right {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-trafego,
  .card-consultoria,
  .hero-main-card,
  .card-estrutura {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    margin-top: 0;
  }

  .hero-main-card {
    min-height: auto;
    padding: 28px;
    order: 1;
  }

  .card-trafego {
    order: 2;
  }

  .card-consultoria {
    order: 3;
  }

  .card-estrutura {
    order: 4;
  }

  .hero-main-card h3 {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-267f86b */.services-home {
  padding: 100px 0;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.services-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 221, 60, 0.18);
}

.services-header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.services-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: #9fb1c9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(6, 67, 137, 0.95) 0%, rgba(10, 88, 173, 0.92) 100%);
  border-color: rgba(120, 221, 60, 0.22);
  box-shadow: 0 24px 44px rgba(6, 67, 137, 0.18);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 221, 60, 0.10);
  border: 1px solid rgba(120, 221, 60, 0.16);
  color: #78dd3c;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #9fb1c9;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.services-note {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(120, 221, 60, 0.07);
  border: 1px solid rgba(120, 221, 60, 0.16);
  color: #d6e6bf;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .services-header h2 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-home {
    padding: 70px 0;
  }

  .services-header {
    margin-bottom: 34px;
  }

  .services-header h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .services-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 22px;
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .services-note {
    margin-top: 22px;
    padding: 16px 18px;
    font-size: 13px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-73107fb */.diferenciais-home {
  padding: 100px 0;

  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);

  background-size: 48px 48px, 48px 48px, auto;
}

.diferenciais-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.diferenciais-tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120,221,60,0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120,221,60,0.18);
}

.diferenciais-header h2 {
  margin: 0 0 12px;
  font-size: 46px;
  color: #ffffff;
}

.diferenciais-header p {
  color: #9fb1c9;
  font-size: 17px;
  line-height: 1.7;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.diferencial-item {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.diferencial-item:hover {
  transform: translateY(-6px);
  border-color: rgba(120,221,60,0.28);
  box-shadow: 0 20px 40px rgba(120,221,60,0.08);
}

.diferencial-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}

.diferencial-item span {
  font-size: 14px;
  color: #9fb1c9;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .diferenciais-home {
    padding: 70px 0;
  }

  .diferenciais-header h2 {
    font-size: 32px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c56ca9f */.plans-entry {
  padding: 100px 0;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.plans-entry-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.plans-entry-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 221, 60, 0.18);
}

.plans-entry-header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.plans-entry-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #9fb1c9;
}

.plans-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plan-entry-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.plan-entry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 221, 60, 0.22);
  box-shadow: 0 24px 44px rgba(6, 67, 137, 0.16);
}

.plan-entry-label {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.10);
  border: 1px solid rgba(120, 221, 60, 0.14);
  color: #78dd3c;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.plan-entry-card h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.08;
  color: #ffffff;
}

.plan-entry-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #9fb1c9;
}

.plan-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #78dd3c 0%, #8bed52 100%);
  color: #08110a;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(120, 221, 60, 0.18);
  box-shadow: 0 14px 32px rgba(120, 221, 60, 0.18);
  transition: all 0.25s ease;
}

.plan-entry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(120, 221, 60, 0.24);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .plans-entry {
    padding: 70px 0;
  }

  .plans-entry-header h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .plans-entry-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .plans-entry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plan-entry-card {
    padding: 24px;
    border-radius: 22px;
  }

  .plan-entry-card h3 {
    font-size: 26px;
  }

  .plan-entry-btn {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-63a8933 */.process-home {
  padding: 100px 0;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.process-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.process-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 221, 60, 0.18);
}

.process-header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.process-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #9fb1c9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 221, 60, 0.22);
  box-shadow: 0 24px 44px rgba(6, 67, 137, 0.16);
}

.process-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(120, 221, 60, 0.10);
  border: 1px solid rgba(120, 221, 60, 0.14);
  color: #78dd3c;
  font-size: 16px;
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
  color: #ffffff;
}

.process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #9fb1c9;
}

@media (max-width: 768px) {
  .process-home {
    padding: 70px 0;
  }

  .process-header h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .process-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    padding: 24px;
    border-radius: 22px;
  }

  .process-card h3 {
    font-size: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a852130 */.faq-home {
  padding: 100px 0;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.faq-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 221, 60, 0.18);
}

.faq-header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.faq-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #9fb1c9;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(120, 221, 60, 0.22);
  box-shadow: 0 24px 44px rgba(6, 67, 137, 0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  transition: all 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: #78dd3c;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-content {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.8;
  color: #9fb1c9;
}

@media (max-width: 768px) {
  .faq-home {
    padding: 70px 0;
  }

  .faq-header h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .faq-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .faq-item summary {
    font-size: 18px;
    padding: 18px 20px;
    padding-right: 52px;
  }

  .faq-item summary::after {
    right: 20px;
    font-size: 24px;
  }

  .faq-content {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.75;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b99a2f */.contact-home {
  padding: 100px 0;
  background:
    linear-gradient(rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 221, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #030b16 0%, #04101f 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.contact-header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(120, 221, 60, 0.08);
  color: #78dd3c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(120, 221, 60, 0.18);
}

.contact-header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  color: #ffffff;
}

.contact-header p {
  color: #9fb1c9;
  font-size: 18px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.contact-item a,
.contact-item span {
  color: #9fb1c9;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9fb1c9;
}

.contact-btn {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #78dd3c 0%, #8bed52 100%);
  border: none;
  color: #08110a;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 34px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d2c63cc */.main-footer {
  padding-top: 60px;
  background: #020912;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #9fb1c9;
  font-size: 14px;
}

.footer-links,
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-info strong {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #9fb1c9;
  font-size: 14px;
}

.footer-links a:hover {
  color: #78dd3c;
}

.footer-info span {
  color: #9fb1c9;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  color: #6f7f91;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 100px;
  }
}/* End custom CSS */