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

:root {
  --primary: #0a8ddb;
  --primary-dark: #0879bc;
  --dark: #1f242b;
  --dark-2: #20262d;
  --white: #ffffff;
  --text: #707070;
  --heading: #222b33;
  --light-bg: #f5f5f5;
  --border: #e4e4e4;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 1140px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-top: 4px solid #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
}

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

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: #2f3a44;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef8fe 0%, #f5f5f5 100%);
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(10, 141, 219, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  color: var(--heading);
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  color: #6d7680;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

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

.hero-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-card-top {
  height: 14px;
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
}

.hero-card-body {
  padding: 26px;
}

.shield-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, #0a8ddb, #0879bc);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-lines {
  margin-bottom: 24px;
}

.line {
  height: 12px;
  border-radius: 30px;
  background: #dfe9f0;
  margin-bottom: 12px;
}

.w-100 { width: 100%; }
.w-90 { width: 90%; }
.w-75 { width: 75%; }
.w-60 { width: 60%; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-box {
  background: #f8fbfd;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
}

.mini-box h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}

.mini-box p {
  font-size: 14px;
  color: #7b7b7b;
}

/* Shared sections */
section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-heading.left {
  text-align: left;
  margin: 0 0 30px;
}

.section-heading h2 {
  font-size: 36px;
  color: var(--heading);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-heading p {
  font-size: 17px;
  color: #777;
}

/* Features */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(10, 141, 219, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: #777;
}

/* Benefits */
.benefits-section {
  background: var(--light-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #666;
  font-size: 16px;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.benefits-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.info-box h3 {
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 10px;
}

.info-box p {
  font-size: 16px;
  color: #777;
}

/* Pricing */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: #fafafa;
  border: 1px solid var(--border);
  text-align: center;
}

.price-head {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-head.dark {
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
}

.price-head.blue {
  background: var(--primary);
}

.price-box {
  background: #f3f3f3;
  padding: 28px 10px;
}

.currency {
  font-size: 28px;
  color: var(--heading);
  margin-bottom: -8px;
}

.amount {
  font-size: 62px;
  line-height: 1;
  color: var(--heading);
  font-weight: 300;
}

.period {
  margin-top: 8px;
  font-size: 13px;
  color: #7e7e7e;
  text-transform: uppercase;
}

.features-list {
  padding: 18px 26px;
}

.features-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 15px;
  color: #777;
}

.features-list li:last-child {
  border-bottom: none;
}

.card-btn {
  padding: 10px 0 34px;
}

.card-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 42px;
  border: 2px solid #333;
  color: #222;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.card-btn a:hover {
  background: #222;
  color: #fff;
}

.card-btn a.active-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.card-btn a.active-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.price-card.featured {
  margin-top: -18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

/* Steps */
.steps-section {
  background: var(--light-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 22px;
  text-align: center;
}

.step-card span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: #777;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}

.faq-item h3 {
  font-size: 21px;
  color: var(--heading);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: #777;
}

/* CTA */


/* Footer */
.site-footer {
  background: #171b21;
  color: #a9b0b7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 70px 0 40px;
}

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

.site-footer p,
.site-footer li,
.site-footer a {
  color: #98a1a9;
  font-size: 15px;
}

.site-footer ul li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .header-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 18px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .features-grid,
  .pricing-grid,
  .steps-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: 28px;
  }

  section {
    padding: 60px 0;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: calc(100% - 24px);
  }

  .hero {
    padding: 55px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p,
  .section-heading p,
  .cta-box p {
    font-size: 15px;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: 24px;
  }

  .feature-card,
  .info-box,
  .step-card,
  .faq-item {
    padding: 22px;
  }
}