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

:root {
  --bg: #eef4ff;
  --surface: #ffffff;
  --border: #999;
  --accent: #2f6df6;
  --accent2: #194bd8;
  --accent-soft: #eaf1ff;
  --text: #111827;
  --muted: #000;
  --success: #16a34a;
  --error: #dc2626;
  --radius: 12px;
}


.desktop-view-top-bar .top-bar {
  width: 100%;
  background: #fff;
  padding: 15px;
  display: flex;
  margin: 0 auto 10px auto;
}

.topbar-inner {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.nav-link {
  text-align: right;
}

.nav-link ul {
  list-style-type: none;
  margin: 0;
}

.nav-link ul li {
  list-style-type: none;
  margin: 0;
}

.nav-link ul li a {
  color: #000;
  text-decoration: none;
}

.nav-link ul li a:hover {
  color: #666;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #000;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(47, 109, 246, .20) 0, transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(25, 75, 216, .16) 0, transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 48%, #f7faff 100%);
}

.logo img {
  max-width: 160px;
  width: 100%;
  display: block;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(47, 109, 246, .10);
  filter: blur(8px);
  pointer-events: none;
}

body::before {
  left: -130px;
  top: -120px;
}

body::after {
  right: -140px;
  bottom: -130px;
}

.shell {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
  padding: 15px;
  margin: 0 auto;
}

.hero {
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 109, 246, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--accent2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(47, 109, 246, .08);
}

.hero h1 {
  margin-top: 22px;
  max-width: 520px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -0.06em;
  color: var(--text);
}

.hero p {
  margin-top: 20px;
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.stats {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.stat {
  min-width: 138px;
  padding: 16px 18px;
  border: 1px solid rgba(219, 229, 245, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 16px 36px rgba(31, 64, 128, .08);
  text-align: center;
}

.stat strong {
  display: block;
  color: #1e52de;
  font-size: 1.15rem;
}

.stat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 20px;
  padding: 34px;
  width: 100%;
  box-shadow: 0 30px 90px rgba(31, 64, 128, .18);
  backdrop-filter: blur(18px);
  animation: rise .5s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(47, 109, 246, .12), 0 0 18px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 8px var(--accent);
  }

  50% {
    box-shadow: 0 0 20px var(--accent2);
  }
}

h1 {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.06em;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 30px;
  line-height: 1.65;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.row .field {
  flex: 1;
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 9px;


}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8da0bd;
  font-size: .94rem;
  pointer-events: none;
}

input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .95rem;
  padding: 10px 15px;
  outline: none;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .035);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, .13), 0 12px 26px rgba(47, 109, 246, .10);

}

input::placeholder {
  color: #9aabc3;
}

.hint {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}

.overview-btn {
  background: #194bd8;
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff !important;
}

button {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(47, 109, 246, .28);
  transition: opacity .2s, transform .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .24) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

button:hover:not(:disabled) {
  opacity: .96;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(47, 109, 246, .34);
}

button:hover:not(:disabled)::before {
  transform: translateX(120%);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 600;
  display: none;
  animation: rise .3s ease both;
}

.toast.success {
  background: rgba(22, 163, 74, .10);
  border: 1px solid rgba(22, 163, 74, .25);
  color: var(--success);
}

.toast.error {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .25);
  color: var(--error);
}

@media (max-width: 860px) {
  .shell {
    max-width: 460px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    display: none;
  }
}

@media (max-width: 480px) {
  body {

    align-items: flex-start;
  }

  .card {
    margin-top: 16px;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  h1 {
    font-size: 1.8rem;
  }
}

/* mobile view */
.mobile-view .root {
  /* min-height: 100vh; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .mobile-view .root {
    padding: 0;
  }
}

.mobile-view .blob2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(18, 70, 246, .04);
  bottom: -40px;
  right: -40px;
  filter: blur(60px);
  pointer-events: none
}

.mobile-view .card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #999;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0;
  box-shadow: none;
}

.mobile-view .accent-bar {
  height: 3px;
  background: linear-gradient(90deg, #1246f6 0%, #3d6bff 60%, #a5b8ff 100%)
}

.mobile-view .top-bar {
  display: flex;
  align-items: center;
  padding: .6rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  gap: 6px
}

.mobile-view .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1246f6;
  animation: pulse 2s infinite;
  flex-shrink: 0
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(1.5)
  }
}

.mobile-view .live-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #1246f6;
  letter-spacing: .07em;
  text-transform: uppercase
}

.mobile-view .card-header {
  padding: 1.25rem 1.25rem 0
}

.mobile-view .header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem
}

.mobile-view .va-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #e9eeff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mobile-view .va-icon-wrap svg {
  width: 23px;
  height: 23px;
  stroke: #1246f6;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.mobile-view .card-title {
  font-weight: 700;
  font-size: 17px;
  color: #0b0b0b;
  letter-spacing: -.3px;
  line-height: 1.2;
}

.mobile-view .stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ebebeb;
  border-radius: 13px;
  overflow: hidden;
  background: #f7f9ff;
}

.mobile-view .stat {
  padding: 9px 6px;
  min-width: 10px;
  text-align: center;
  border-right: 1px solid #ebebeb !important;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.mobile-view .stat:last-child {
  border-right: none
}

.mobile-view .stat-num {
  font-size: 16px;
  font-weight: 800;
  color: #1246f6;
  letter-spacing: -.3px;
  line-height: 1
}

.mobile-view .stat-lbl {
  font-size: 14px;
  color: #686262;
  line-height: 1.3;
  margin-top: 3px;
  font-weight: 500
}

.mobile-view .divider {
  height: 1px;
  background: #f0f0f0;
  margin: 1.1rem 0 0
}

.mobile-view .form-body {
  padding: 1rem 1.25rem
}

.mobile-view .form-sub {
  font-size: 15px;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.55
}

.mobile-view .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px
}

.mobile-view .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.mobile-view label {
  font-size: 14px;
  font-weight: 500;
  color: #8490a5;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mobile-view input[type="text"],
.mobile-view input[type="tel"] {
  background: #ffffff !important;
  border: 1px solid #dde0e7 !important;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
	font-family: "Poppins", sans-serif;
  color: #0b0b0b;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.mobile-view input[type="tel"]  {
	border: none !important;
}

.mobile-view input[type="text"]::placeholder,
.mobile-view input[type="tel"]::placeholder {
  color: #c0c0c0
}

.mobile-view input[type="text"]:focus,
.mobile-view input[type="tel"]:focus {
  border-color: #1246f6;
  box-shadow: 0 0 0 3px rgba(18, 70, 246, .08)
}

.mobile-view .phone-wrap {
  display: flex;
  border: 1.5px solid #999;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.mobile-view .phone-wrap:focus-within {
  border-color: #1246f6;
  box-shadow: 0 0 0 3px rgba(18, 70, 246, .08)
}

.mobile-view .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 8px 0 10px;
  background: #fff;
  border-right: 1.5px solid #e2e2e2;
  flex-shrink: 0
}

.mobile-view .phone-prefix select {
  background: transparent !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 18px 10px 0;
  min-width: 72px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 2px center !important;
}

.mobile-view .phone-prefix select option {
  background: #fff;
  color: #333
}

.mobile-view .phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
  padding: 10px 12px;
  background: #fff !important;
  min-width: 0
}

.mobile-view .phone-wrap input:focus {
  box-shadow: none !important;
  border: none !important
}

/* Opt-in checkbox */
.mobile-view .optin {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #f7f9ff;
  border: 1px solid #dde4ff;
  border-radius: 10px;
}

.mobile-view .optin input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #c0c0c0;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  margin-top: 1px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, background .2s;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}

.mobile-view .optin input[type="checkbox"]:checked {
  background: #1246f6;
  border-color: #1246f6;
}

.mobile-view .optin input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  display: block;
}

.mobile-view .optin-text {
  font-size: 11px;
  color: #000 !important;
  line-height: 1.5
}

.mobile-view .optin-text strong {
  color: #444;
  font-weight: 600
}

.mobile-view .optin-error {
  display: none;
  font-size: 11px;
  color: #e24b4a;
  margin-top: 5px;
  padding-left: 2px
}

.mobile-view button.cta {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 0px solid #0b0b0b;
  background: #1246f6;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  letter-spacing: .01em;
  -webkit-appearance: none;
  appearance: none;
  transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
}

.mobile-view button.cta .btn-text {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700
}

.mobile-view button.cta:hover {
  background: #1246f6 !important;
  border-color: #1246f6 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(18, 70, 246, .28)
}

.mobile-view utton.cta:hover .btn-text {
  color: #fff !important
}

.mobile-view button.cta:hover .cta-mic {
  background: rgba(255, 255, 255, .2) !important
}

.mobile-view button.cta:hover .cta-mic svg {
  stroke: #fff !important
}

.mobile-view button.cta:hover .cta-arrow {
  stroke: #fff !important
}

.mobile-view button.cta:active {
  transform: scale(0.98);
  box-shadow: none
}

.mobile-view .cta-mic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9eeff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s
}

.mobile-view .cta-mic svg {
  width: 12px;
  height: 12px;
  stroke: #1246f6;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s
}

.mobile-view .cta-arrow {
  width: 15px;
  height: 15px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  margin-left: auto;
  flex-shrink: 0;
  transition: stroke .2s
}

.mobile-view .trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: #666;
  margin-top: 9px
}

.mobile-view .trust svg {
  width: 11px;
  height: 11px;
  stroke: #ccc;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0
}

.mobile-view .card-footer {
  background: #f7f7fb;
  border-top: 1px solid #ebebeb;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.mobile-view .powered {
  font-size: 11px;
  color: #aaa;
  font-weight: 500
}

.mobile-view .powered strong {
  color: #444;
  font-weight: 700
}

.mobile-view .aress-logo img {
  height: 18px;
  width: auto;
  display: block;
}


@media (max-width: 359px) {
  .mobile-view .stats-strip {
    grid-template-columns: 1fr;
  }

  .mobile-view .stat {
    border-bottom: 1px solid #ebebeb;
  }

  .mobile-view .field-row {
    grid-template-columns: 1fr;
  }


}


/* 15 June 2026 */

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dde0e7;
  border-radius: 8px;
  /* width: 260px; */
  height: 44px;
  padding: 0 12px 0 0;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}

.phone-input-wrapper:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Country selector */
.country-selector {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px 0 12px;
  cursor: pointer;
  user-select: none;
  border-right: 1.5px solid #e5e7eb;
  flex-shrink: 0;
  gap: 5px;
}

.country-selector .flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.country-selector .chevron {
  width: 10px;
  height: 10px;
  color: #6b7280;
  transition: transform 0.15s;
}

.country-selector.open .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 280px;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  z-index: 100;
  overflow: hidden;
}

.dropdown.open {
  display: block;
}

.dropdown-search {
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-search input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 13px;
  color: #111;
  outline: none;
  background: #f9fafb;
}

.dropdown-search input:focus {
  border-color: #2563eb;
}

.dropdown-list {
  max-height: 210px;
  overflow-y: auto;
}

.dropdown-list::-webkit-scrollbar {
  width: 4px;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13.5px;
  color: #1f2937;
  transition: background 0.1s;
}

.dropdown-item:hover {
  background: #f3f6ff;
}

.dropdown-item.selected {
  background: #eff6ff;
  font-weight: 500;
}

.dropdown-item .flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.dropdown-item .country-name {
  flex: 1;
}

.dropdown-item .dial-code {
  color: #6b7280;
  font-size: 12.5px;
}

/* Phone number input */
.phone-number-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  color: #1f2937;
  background: transparent !important;
  letter-spacing: 0.01em;
  min-width: 0;
  border: 0 !important;
  width: 150px;
}

  @media (max-width: 767px) {
    .phone-number-input {
			min-width: 150px;
		}
  }


.phone-number-input:focus {
  box-shadow: none !important;
}

.phone-number-input::placeholder {
  color: #9ca3af;
}

#phoneInput-error {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -30px;
  min-height: 20px;
}

@media (max-width: 767px) {
  #phoneInput-error {
    width: 100%;
    bottom: -43px;
  }
}

.hide-robot {
  display: none;
}