@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap");

:root {
  --primary: #5864ff;
  --primary-dark: #4450e8;
  --secondary: #fdd446;
  --dark: #101936;
  --dark-2: #162447;
  --text: #5b657e;
  --muted: #7b8499;
  --soft: #f5f7ff;
  --white: #ffffff;
  --border: rgba(22, 36, 71, 0.1);
  --shadow: 0 22px 70px rgba(22, 36, 71, 0.12);
  --shadow-soft: 0 14px 40px rgba(22, 36, 71, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arimo, sans-serif;
  font-weight: 400;
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
}

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

a,
a:focus,
a:hover {
  text-decoration: none;
}

a,
button {
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

img,
svg,
video {
  max-width: 100%;
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arimo, sans-serif;
  font-weight: 700;
  color: var(--dark-2);
  margin: 0;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

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

.bg-soft {
  background: var(--soft);
}

.section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 18px;
}

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

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(88, 100, 255, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.light-title h2,
.light-title p {
  color: var(--white);
}

.light-title .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--secondary);
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-30 {
  margin-bottom: 30px;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-align: center;
  padding: 17px 30px;
  min-height: 58px;
  font-size: 17px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #7c5cff);
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(88, 100, 255, 0.28);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(88, 100, 255, 0.36);
}

.main-btn.border-btn {
  color: var(--primary);
  background: transparent;
  border-color: rgba(88, 100, 255, 0.22);
  box-shadow: none;
}

.main-btn.border-btn:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.full-btn {
  width: 100%;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}

.secondary-link:hover {
  color: var(--secondary);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 99999;
}

.preloader .spinner {
  width: 54px;
  height: 54px;
  border: 5px solid rgba(88, 100, 255, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Navbar */
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease;
}

.navbar-area.sticky,
.sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(22, 36, 71, 0.08);
}

.navbar {
  padding: 22px 0;
}

.sticky .navbar {
  padding: 12px 0;
}

.navbar-brand img {
  max-width: 180px;
}

.navbar-toggler {
  padding: 0;
  border: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background: var(--white);
  display: block;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.sticky .navbar-toggler .toggler-icon {
  background: var(--dark-2);
}

.navbar-nav .nav-item {
  margin-left: 28px;
}

.navbar-nav .nav-item a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--secondary);
  z-index: -1;
  transition: width 0.3s ease;
}

.navbar-nav .nav-item a:hover::before,
.navbar-nav .nav-item a.active::before {
  width: 100%;
}

.sticky .navbar-nav .nav-item a {
  color: var(--dark-2);
}

.navbar-nav .nav-item.nav-cta a {
  padding: 12px 18px;
  background: var(--white);
  color: var(--primary);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(22, 36, 71, 0.1);
}

.navbar-nav .nav-item.nav-cta a::before {
  display: none;
}

.sticky .navbar-nav .nav-item.nav-cta a {
  background: var(--primary);
  color: var(--white);
}

/* Hero */
.hero-section {
  position: relative;
  padding: 170px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(253, 212, 70, 0.2),
      transparent 26%
    ),
    radial-gradient(
      circle at 86% 24%,
      rgba(255, 255, 255, 0.16),
      transparent 24%
    ),
    linear-gradient(135deg, #17204a 0%, #5864ff 55%, #7c5cff 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -90px;
  height: 180px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

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

.hero-content h1 {
  font-size: 58px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.04em;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-content .eyebrow {
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 560px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-note i {
  color: var(--secondary);
  font-size: 22px;
  margin-top: 2px;
}

.hero-note span {
  font-size: 16px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  padding: 22px;
}

.hero-visual-card {
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-visual-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  min-width: 168px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.floating-card strong {
  color: var(--dark-2);
  font-size: 28px;
  line-height: 1;
}

.floating-card-top {
  top: 0;
  right: 0;
}

.floating-card-bottom {
  bottom: 10px;
  left: 0;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.trust-grid div {
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--soft);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--dark-2);
  font-size: 18px;
  margin-bottom: 4px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 15px;
}

/* Cards */
.single-feature,
.step-card,
.single-feature-extended,
.pricing-card,
.workspace-card,
.payment-note,
.start-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.single-feature {
  padding: 34px;
}

.single-feature .icon,
.step-card .icon,
.single-feature-extended .icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(88, 100, 255, 0.1);
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 24px;
}

.single-feature h3,
.step-card h3,
.single-feature-extended h3,
.workspace-card h3,
.pricing-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.single-feature p,
.step-card p,
.single-feature-extended p,
.workspace-card p,
.pricing-card p,
.payment-note p,
.start-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.single-feature:hover,
.step-card:hover,
.single-feature-extended:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* How */
.step-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.step-number {
  display: block;
  color: rgba(88, 100, 255, 0.16);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-badge,
.pricing-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(253, 212, 70, 0.24);
  color: #8a6a00;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.featured-step {
  border-color: rgba(88, 100, 255, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.center-cta {
  text-align: center;
  margin-top: 52px;
}

.center-cta p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
}

.center-cta a:not(.main-btn) {
  color: var(--primary);
  font-weight: 700;
}

/* About */
.image-card {
  padding: 20px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-content .main-btn {
  margin-top: 14px;
}

/* Workspace */
.bg-dark-panel {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(88, 100, 255, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #101936, #17204a);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.workspace-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.workspace-card.large-card {
  grid-row: span 2;
}

.workspace-card i {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(253, 212, 70, 0.16);
  color: var(--secondary);
  font-size: 32px;
  margin-bottom: 24px;
}

.workspace-card h3 {
  color: var(--white);
}

.workspace-card p {
  color: rgba(255, 255, 255, 0.74);
}

/* Extended */
.single-feature-extended {
  padding: 32px;
}

/* Pricing */
.pricing-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.trial-card {
  background: var(--white);
}

.paid-card {
  border-color: rgba(88, 100, 255, 0.28);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(88, 100, 255, 0.13),
      transparent 32%
    ),
    var(--white);
}

.price {
  color: var(--dark-2);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  margin: 22px 0;
}

.price span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.pricing-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.pricing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--dark-2);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-list i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 1px;
}

.payment-note {
  max-width: 920px;
  margin: 34px auto 0;
  padding: 28px 32px;
  background: #fff;
}

.payment-note h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.payment-note a {
  color: var(--primary);
  font-weight: 700;
}

/* Subscribe */
.subscribe-wrapper {
  padding: 58px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(253, 212, 70, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, var(--primary), #17204a);
  box-shadow: var(--shadow);
}

.start-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.start-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.start-card a:not(.main-btn) {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.footer {
  background: #101936;
  padding: 90px 0 45px;
  margin-top: 20px;
}

.footer .footer-widget img {
  max-width: 180px;
}

.footer .footer-widget h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 24px;
}

.footer .footer-widget .desc,
.footer-contact,
.copyright {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.footer-contact {
  margin-top: 22px;
}

.footer-contact a,
.footer .links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover,
.footer .links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer .links li {
  margin-bottom: 12px;
  font-size: 16px;
}

.copyright {
  margin-top: 24px;
}

/* Scroll top */
.scroll-top {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9;
  border-radius: 16px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(88, 100, 255, 0.32);
}

.scroll-top:hover {
  color: var(--white);
  transform: translateY(-3px);
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .section-title h2,
  .about-content h2 {
    font-size: 36px;
  }

  .navbar-nav .nav-item {
    margin-left: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-soft);
    padding: 18px 24px;
  }

  .navbar-nav .nav-item {
    margin-left: 0;
  }

  .navbar-nav .nav-item a,
  .sticky .navbar-nav .nav-item a {
    color: var(--dark-2);
    display: inline-block;
  }

  .navbar-nav .nav-item.nav-cta a,
  .sticky .navbar-nav .nav-item.nav-cta a {
    margin-top: 10px;
    background: var(--primary);
    color: var(--white);
  }

  .hero-section {
    padding-top: 145px;
  }

  .hero-section::after {
    height: 100px;
    bottom: -50px;
  }

  .trust-grid,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card.large-card {
    grid-row: auto;
  }

  .floating-card {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .navbar {
    padding: 16px 0;
  }

  .navbar-brand img {
    max-width: 150px;
  }

  .hero-section {
    padding: 125px 0 76px;
  }

  .hero-content h1 {
    font-size: 36px;
    letter-spacing: -0.02em;
  }

  .hero-content p,
  p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .secondary-link {
    justify-content: center;
  }

  .main-btn {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-visual-card {
    border-radius: 24px;
    padding: 10px;
  }

  .section-title h2,
  .about-content h2 {
    font-size: 30px;
  }

  .single-feature,
  .step-card,
  .single-feature-extended,
  .pricing-card,
  .payment-note {
    padding: 26px;
  }

  .price {
    font-size: 38px;
  }

  .subscribe-wrapper {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .footer {
    padding-top: 70px;
  }
}
