/* ============================================================
   1. Root Variables
   ============================================================ */
:root {
  --primary: #22b14c;
  --primary-dark: #1a9a3f;
  --orange: #f26522;
  --blue: #1f8fff;
  --blue2: #1877f2;
  --red: #e23b3b;
  --gold: #f5b800;
  --purple: #a06bff;
  --dark: #1a1a1a;
  --heading: #111418;
  --text: #5a6472;
  --muted: #8a929e;
  --white: #ffffff;
  --page: #f4f6f8;
  --border: #e3e6ea;
  --input-border: #d9dee4;
  --footer-bg: #eef1f4;
  --shadow: 0 10px 40px rgba(30, 40, 60, .07);
  --radius: 18px;
  --heading-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font: "Roboto", Arial, sans-serif;
}

/* ============================================================
   2. Reset
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ============================================================
   3. Typography / base
   ============================================================ */
body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.container-xxl { max-width: 1400px; }
.text-green { color: var(--primary); }

/* ============================================================
   6. Page background / hero
   ============================================================ */
.page-bg { background: var(--page); }
.hero { padding: 46px 0 34px; }

/* ============================================================
   7. Feature circle
   ============================================================ */
.feature-circle {
  position: relative;
  width: 440px;
  height: 440px;              /* fixed square (no aspect-ratio dependency) */
  max-width: 100%;
  margin: 0 auto;
  --size: 440px;             /* keep in sync with width/height */
  --r: 176px;                /* icon distance from center (40% of size) */
}
.dashed-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 76%; height: 76%;
  transform: translate(-50%, -50%);
  border: 2px dashed #c3ccd6;
  border-radius: 50%;
}
.circle-laptop {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  z-index: 1;
}

/* each node starts at center, then is pushed onto the ring by angle */
.feat {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 2;
}
.feat-inner {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 130px;
  text-align: center;
}
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}
.ic-green  { background: var(--primary); }
.ic-orange { background: var(--orange); }
.ic-blue   { background: var(--blue); }
.ic-blue2  { background: var(--blue2); }
.ic-red    { background: var(--red); }
.feat-label {
  font-size: .90rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

/* position each node by angle: rotate -> push out by --r -> inner rotates back upright */
.feat-top          { transform: rotate(0deg)   translateY(calc(var(--r) * -1)); }
.feat-right-top    { transform: rotate(60deg)  translateY(calc(var(--r) * -1)); }
.feat-right-bottom { transform: rotate(120deg) translateY(calc(var(--r) * -1)); }
.feat-bottom       { transform: rotate(180deg) translateY(calc(var(--r) * -1)); }
.feat-left-bottom  { transform: rotate(240deg) translateY(calc(var(--r) * -1)); }
.feat-left-top     { transform: rotate(300deg) translateY(calc(var(--r) * -1)); }

.feat-top .feat-inner          { transform: translate(-50%, -50%) rotate(0deg); }
.feat-right-top .feat-inner    { transform: translate(-50%, -50%) rotate(-60deg); }
.feat-right-bottom .feat-inner { transform: translate(-50%, -50%) rotate(-120deg); }
.feat-bottom .feat-inner       { transform: translate(-50%, -50%) rotate(-180deg); }
.feat-left-bottom .feat-inner  { transform: translate(-50%, -50%) rotate(-240deg); }
.feat-left-top .feat-inner     { transform: translate(-50%, -50%) rotate(-300deg); }

/* ============================================================
   8. Form card
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 40px 34px;
}
.card-title {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 14px;
}
.card-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 24px;
}

/* ============================================================
   10. Forms
   ============================================================ */
.input-icon { position: relative; margin-bottom: 16px; }
.ii-icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: #9aa3af;
  font-size: 1.1rem;
}
.lead-form .form-control {
  height: 56px;
  border: 1px solid var(--input-border);
  border-radius: 10px;
  padding-left: 52px;
  font-size: 1rem;
  color: var(--heading);
}
.lead-form .form-control::placeholder { color: #7b8390; opacity: 1; }
.lead-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(34, 177, 76, .15);
}

/* ============================================================
   9. Buttons
   ============================================================ */
.btn-continue {
  width: 100%;
  height: 58px;
  margin-top: 6px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(34, 177, 76, .28);
  transition: background .18s ease;
}
.btn-continue:hover,
.btn-continue:focus { background: var(--primary-dark); color: #fff; }
.secure-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
}
.secure-note i { margin-right: 6px; }

/* ===========================================================
   Why use block (right column)
   ============================================================ */
.why-title {
  font-family: var(--heading-font);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 28px;
}
.why-item { display: flex; gap: 14px; margin-bottom: 26px; }
.why-check { color: var(--primary); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.why-head {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 4px;
}
.why-desc { margin: 0; font-size: 1rem; color: var(--text); }

/* ============================================================
   11. Trust Section
   ============================================================ */
.trust { padding: 6px 0 40px; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 8px 10px;
}
.trust-bordered {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.trust-icon { font-size: 2.6rem; line-height: 1; }
.ti-green  { color: var(--primary); }
.ti-gold   { color: var(--gold); }
.ti-purple { color: var(--purple); }
.trust-head {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 3px;
}
.trust-desc { margin: 0; font-size: .98rem; color: var(--text); }

.feat-inner span+span {
    max-width: 115px;
    margin: 0 auto;
}
/* ============================================================
   14. Responsive
   ============================================================ */
@media (max-width: 1199.98px) {
  .card-title { font-size: 1.8rem; }
  .header-badges { gap: 18px; }
  .hero-left{display:none;}
 
}

@media (max-width: 991.98px) {
  .hero { padding: 34px 0 20px; }
  .feature-circle { width: 380px; height: 380px; margin-bottom: 30px; --r: 152px; }
  .form-card { padding: 30px; }
  .why-block { margin-top: 10px; }
  .header-inner { justify-content: center; text-align: center; }
}

@media (max-width: 767.98px) {
  .trust-bordered { border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .trust-item { padding: 18px 10px; }
 
}

@media (max-width: 575.98px) {
  .badge-divider { display: none; }
  .feature-circle { width: 300px; height: 300px; --r: 123px; }
  .feat-inner { width: 100px; }
  .feat-icon { width: 50px; height: 50px; font-size: 1.25rem; }
  .feat-label { font-size: .8rem; }
  .feat-label { font-size: .82rem; }
  .card-title { font-size: 1.6rem; }
  .brand-name { font-size: 1.7rem; }
}
