:root {
  --primary: #6a5ae0;
  --primary-strong: #4c3bcf;
  --accent: #12d8a0;
  --text-strong: #0b1224;
  --text-muted: #4a5568;
  --surface: #ffffff;
  --surface-2: #f3f6ff;
  --border: #e1e6f2;
  --shadow-card: 0 18px 50px rgba(11, 18, 36, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
}

body {
  background: radial-gradient(120% 120% at 20% 20%, rgba(106, 90, 224, 0.08), transparent 55%), radial-gradient(110% 110% at 80% 0%, rgba(18, 216, 160, 0.08), transparent 50%), var(--surface-2);
  color: var(--text-strong); overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration-color: transparent;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

section,
.section {
  padding: 80px 0;
}

@media (max-width: 767px) {
  section,
  .section {
    padding: 56px 0;
  }
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(225, 230, 242, 0.8);
  box-shadow: 0 12px 36px rgba(11, 18, 36, 0.06);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 74px;
}

.header-logo img {
 
}

.header-nav ul li a {
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: 10px;
}

.header-nav ul li.active a,
.header-nav ul li a:hover {
  color: var(--primary);
  background: rgba(106, 90, 224, 0.08);
}

.header-burger {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(106, 90, 224, 0.08), rgba(18, 216, 160, 0.08));
}

.sidebar {
  background: var(--surface);
}

/* Buttons */
.btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #6a5ae0 0%, #12d8a0 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(106, 90, 224, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn:hover {
  filter: brightness(0.96);
  box-shadow: 0 16px 36px rgba(76, 59, 207, 0.24);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.7;
  box-shadow: none;
  transform: none;
}

.btn.btn-outline {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, rgba(106, 90, 224, 0.6), rgba(18, 216, 160, 0.6)) border-box;
  color: var(--text-strong);
  border-color: transparent;
  box-shadow: none;
}

.btn.btn-outline:hover {
  color: var(--primary-strong);
  box-shadow: 0 10px 24px rgba(11, 18, 36, 0.08);
}

.btn.btn-yellow,
.btn.btn-solid {
  background: linear-gradient(135deg, #12d8a0 0%, #6a5ae0 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 216, 160, 0.25);
}

.btn.btn-yellow:hover,
.btn.btn-solid:hover {
  filter: brightness(0.94);
  color: #fff;
}

/* Hero */
.home-intro {
  padding: 110px 0 86px;
  background: radial-gradient(120% 120% at 10% 20%, rgba(106, 90, 224, 0.14), transparent 50%), radial-gradient(100% 100% at 90% 10%, rgba(18, 216, 160, 0.16), transparent 48%), linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 246, 255, 0.9) 100%);
}

.home-intro .row {
  align-items: center;
  gap: 40px;
}

.home-intro .banner-col {
  order: 2;
}

.home-intro .banner {
  max-width: 520px;
  margin: 0 auto;
}

.home-intro .calc-col {
  order: 1;
}

.calc-form,
.calculator {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(106, 90, 224, 0.25), rgba(18, 216, 160, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.calc-form .calc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-form .calc-title .text {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}

.calc-form .calc-title .calc-output {
  background: rgba(106, 90, 224, 0.08);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-strong);
}

.calc-form .calc-slider {
  margin-bottom: 16px;
}

.calc-form .calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.calc-form .btn {
  width: 100%;
}

.home-text .title {
  font-size: 34px;
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.home-text .subtitle {
  color: var(--text-muted);
  font-size: 17px;
}

.calc-title .text {
  color: var(--text-muted);
  font-weight: 700;
}

.calc-output {
  background: rgba(106, 90, 224, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-strong);
}

.calc-button .btn {
  width: 100%;
}

/* Features */
.home-about .row,
.home-info .row {
  gap: 18px;
}

.home-about .block,
.home-info .block {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(106, 90, 224, 0.18), rgba(18, 216, 160, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  flex: 1 1 0;
}

.home-about .heading,
.home-info .heading {
  color: var(--text-strong);
  font-weight: 700;
}

.home-about .subheading,
.home-info .subheading {
  color: var(--text-muted);
}

/* New hero */
.hero-new {
  padding: 32px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 12px 0;
  color: var(--text-strong);
}

.hero-text p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.chip {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(18, 216, 160, 0.12);
  color: var(--text-strong);
  font-weight: 600;
  border: 1px solid rgba(18, 216, 160, 0.24);
}

.chip.ghost {
  background: rgba(106, 90, 224, 0.08);
  border: 1px solid rgba(106, 90, 224, 0.18);
}

.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-pill {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(11, 18, 36, 0.06);
  min-width: 140px;
}

.stat-pill .label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
}

.stat-pill .value {
  display: block;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 18px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.card-head .mini-text {
  color: var(--text-muted);
  font-size: 14px;
}

/* Feature cards */
.feature-grid {
  padding: 32px 0 24px;
}

.feature-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(106, 90, 224, 0.18), rgba(18, 216, 160, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.feature-card .heading {
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
}

.icon-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5ae0, #12d8a0);
  margin-bottom: 12px;
}

/* Steps */
.steps-new {
  padding: 24px 0 48px;
}

.steps-new .section-title {
  margin-bottom: 24px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 18px 18px 18px 60px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.step-num {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a5ae0, #12d8a0);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body .heading {
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.step-body p {
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 10px;
  }
  .stat-pill {
    min-width: 120px;
  }
}

/* Credits page */
.credits-hero {
  padding: 32px 0 32px;
}

.credits-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.credits-hero-text h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 10px 0;
}

.credits-hero-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 17px;
}

.credits-hero-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.filters-card .filter-item {
  margin-bottom: 12px;
}

.filters-card .input-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
}

.filters-card input[type="text"] {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
}

.filters-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.filters-card .btn-results {
  width: 100%;
  margin-top: 6px;
}

.sort-card {
  margin: 8px 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 18, 36, 0.06);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.offer-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card-head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-logo a,
.offer-logo img {
  display: block;
  margin: 0 auto;
  max-height: 100px;
  object-fit: contain;
}

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

.meta-item {
  padding: 10px;
  border-radius: 12px;
  background: var(--surface-2);
}

.meta-item .label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
}

.meta-item .value {
  display: block;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 16px;
}

.offer-rate {
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106, 90, 224, 0.08), rgba(18, 216, 160, 0.1));
  border: 1px solid rgba(106, 90, 224, 0.1);
}

.offer-rate .rate-label {
  color: var(--text-muted);
  font-size: 13px;
}

.offer-rate .rate-values {
  display: flex;
  gap: 12px;
  font-weight: 700;
  color: var(--text-strong);
}

.offer-actions .offer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.offer-actions .offer-links a {
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .credits-hero-grid {
    grid-template-columns: 1fr;
  }
  .offer-meta {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Reg page */
.reg-hero {
  padding: 32px 0 48px;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.reg-card,
.reg-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 22px;
}

.reg-card h4,
.reg-info-card h4 {
  margin: 0 0 8px;
}

.reg-card p {
  color: var(--text-muted);
}

.reg-form .input-wrap {
  margin-bottom: 14px;
}

.reg-form .input-holder {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-form .input-holder .label {
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.reg-form .input-holder .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.reg-form .input-holder .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.reg-form .input-holder input {
  width: 100%;
  background: transparent;
}

.reg-form .checkbox-group {
  margin: 12px 0;
}

.reg-form .btn {
  width: 100%;
}

.reg-info-card .form-alert {
  background: rgba(106, 90, 224, 0.08);
  border: 1px solid rgba(106, 90, 224, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.reg-info-card .form-alert b {
  color: var(--primary);
}

.reg-info-card h4 {
  text-align: center;
}

.reg-info-card .ivr-label {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reg-info-card .ivr-label b {
  color: var(--text-strong);
}

.call-wrapper {
  display: none;
}

.reg-info-card {
  display: none;
}

.reg-info-card.visible {
  display: block;
}

.call-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5ae0, #12d8a0);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 1.5s infinite;
}

.call-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(106, 90, 224, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(106, 90, 224, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 90, 224, 0); }
}

.call-timer {
  font-weight: 600;
  color: var(--text-strong);
}

.call-timer span {
  color: var(--primary);
}

.call-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}

.call-bar-line {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6a5ae0, #12d8a0);
  border-radius: 999px;
  transition: width 1s linear;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.accordion-title img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.accordion-title .divider {
  display: none;
}

.section-faq .row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.section-faq .text-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-faq .text-col .section-title {
  font-size: 20px;
  margin: 0;
}

.section-faq .text-col img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.section-faq .accordion-col {
  flex: 1;
}

.keywords .links-list {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 14px;
  padding: 14px 16px;
}

@media (max-width: 900px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }
}

.home-about .divider,
.home-info .divider {
  display: none;
}

/* Trust */
.home-trust .text-col .heading {
  font-size: 32px;
  line-height: 1.25;
}

.home-trust .text-col p {
  color: var(--text-muted);
}

.home-trust .btn {
  margin-top: 20px;
}

.home-trust .banner-col {
  position: relative;
}

.home-trust .circle {
  display: none;
}

/* Reviews */
.reviews .review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 18px;
  height: auto;
}

.reviews .head .user span {
  color: var(--text-strong);
  font-weight: 700;
}

.reviews .text .title {
  color: var(--text-strong);
}

.reviews .text p {
  color: var(--text-muted);
}

.reviews .arrows .arrow-left,
.reviews .arrows .arrow-right {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

/* FAQ */
.section-faq {
  background: transparent;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  padding: 18px;
}

.accordion-title {
  color: var(--text-strong);
}

.accordion-content {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

/* Keywords */
.keywords {
  padding-top: 40px;
  padding-bottom: 40px;
}

.keywords .links-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
}

.keywords .links-list li {
  display: inline-block;
}

.keywords .links-list a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}

.keywords .links-list a:hover {
  background: var(--primary);
  color: #fff;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 64px 0 32px;
}

.footer a {
  color: #e5e7eb;
}

.footer .footer-title,
.footer .footer-text p {
  color: #cbd5e1;
}

.footer .footer-block {
  border-color: rgba(255, 255, 255, 0.08);
}

.footer .footer-links ul li a:hover {
  color: var(--accent);
}

.footer .logo img {
  height: 32px;
  width: auto;
}

/* 404 and simple pages */
.simple-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

/* Utilities */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 111, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .home-intro .row {
    flex-direction: column;
  }

  .home-intro .banner-col,
  .home-intro .calc-col {
    order: initial;
  }

  .calc-form,
  .calculator {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .home-text .title {
    font-size: 26px;
  }

  .header-inner {
    min-height: 64px;
  }
}

