/* =========================================
   GLOBAL
========================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: #172033;

  line-height: 1.6;

  background: #ffffff;

}


a {
  color: inherit;
}


.wrap {

  width:
    min(
      1120px,
      calc(100% - 40px)
    );

  margin: 0 auto;

}


.narrow {
  max-width: 850px;
}



/* =========================================
   HEADER
========================================= */

.header {

  position: sticky;

  top: 0;

  z-index: 100;

  background:
    rgba(
      255,
      255,
      255,
      0.97
    );

  border-bottom:
    1px solid #e5e7eb;

}


.nav {

  min-height: 72px;

  display: flex;

  align-items: center;

  justify-content:
    space-between;

}



/* =========================================
   BRAND / LOGO
========================================= */

.brand {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  font-size: 1.30rem;

  font-weight: 800;

  letter-spacing: -0.03em;

  color: #172033;

}


.brand-logo {

  width: 44px;

  height: 44px;

  object-fit: cover;

  border-radius: 9px;

  display: block;

}



/* =========================================
   NAVIGATION
========================================= */

nav {

  display: flex;

  align-items: center;

  gap: 28px;

}


nav a {

  text-decoration: none;

  font-weight: 600;

  font-size: 0.95rem;

}


nav a:hover {
  color: #2463eb;
}


.nav-cta {

  background: #2463eb;

  color: #ffffff !important;

  padding: 10px 17px;

  border-radius: 8px;

}


.nav-cta:hover {
  background: #174bb8;
}



/* Mobile menu button */

.menu {

  display: none;

  border: 0;

  background: none;

  font-size: 1.6rem;

  cursor: pointer;

}



/* =========================================
   HERO
========================================= */

.hero {

  padding:
    88px 0 80px;

  background:
    linear-gradient(
      180deg,
      #f3f6ff,
      #ffffff
    );

}


.hero-grid {

  display: grid;

  grid-template-columns:
    1.3fr 0.7fr;

  gap: 60px;

  align-items: center;

}


.kicker {

  margin:
    0 0 12px;

  color: #2463eb;

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform:
    uppercase;

}


.hero h1 {

  font-size:
    clamp(
      2.5rem,
      6vw,
      4.5rem
    );

  line-height: 1.08;

  letter-spacing:
    -0.04em;

  margin: 0;

}


.lead {

  color: #667085;

  font-size: 1.18rem;

  max-width: 700px;

  margin:
    22px 0 30px;

}



/* =========================================
   BUTTONS
========================================= */

.actions {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

}


.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 9px;

  padding:
    13px 20px;

  text-decoration: none;

  font-weight: 700;

  cursor: pointer;

  font-size: 0.98rem;

  transition:
    0.2s ease;

}


.primary {

  background: #2463eb;

  color: #ffffff;

}


.primary:hover {

  background: #174bb8;

}


.secondary {

  background: #ffffff;

  border:
    1px solid #e4e7ec;

}


.secondary:hover {

  border-color: #2463eb;

}


.full {
  width: 100%;
}



/* =========================================
   HERO CHECKS
========================================= */

.checks {

  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 25px;

  color: #475467;

  font-size: 0.93rem;

}



/* =========================================
   OFFER CARD
========================================= */

.offer {

  background: #ffffff;

  border:
    1px solid #e4e7ec;

  border-radius: 18px;

  padding: 32px;

  box-shadow:
    0 20px 50px
    rgba(
      16,
      24,
      40,
      0.08
    );

}


.offer-label,
.plan {

  text-transform:
    uppercase;

  font-size: 0.80rem;

  font-weight: 800;

  letter-spacing:
    0.08em;

  color: #667085;

}


.big-price {

  font-size: 4rem;

  font-weight: 800;

  line-height: 1;

  margin:
    10px 0;

}


.offer hr {

  border: 0;

  border-top:
    1px solid #e4e7ec;

  margin:
    25px 0;

}


.monthly {

  font-size: 1.6rem;

  font-weight: 800;

  margin:
    6px 0;

}


.muted {
  color: #667085;
}



/* =========================================
   TRUST STRIP
========================================= */

.trust {

  border-top:
    1px solid #e4e7ec;

  border-bottom:
    1px solid #e4e7ec;

}


.trust-grid {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

}


.trust-grid > div {

  padding: 25px;

  border-right:
    1px solid #e4e7ec;

}


.trust-grid > div:last-child {
  border-right: 0;
}


.trust-grid strong,
.trust-grid span {

  display: block;

}


.trust-grid span {

  color: #667085;

  font-size: 0.92rem;

  margin-top: 5px;

}



/* =========================================
   GENERAL SECTIONS
========================================= */

.section {

  padding:
    90px 0;

}


.section h2,
.sample h2 {

  line-height: 1.08;

  letter-spacing:
    -0.04em;

}


.section h2 {

  font-size:
    clamp(
      2rem,
      4vw,
      3.1rem
    );

  max-width: 760px;

  margin:
    0 0 38px;

}


.alt {
  background: #f7f8fa;
}



/* =========================================
   SERVICE CARDS
========================================= */

.cards {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 18px;

}


.cards article {

  border:
    1px solid #e4e7ec;

  border-radius: 14px;

  padding: 26px;

  background: #ffffff;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

}


.cards article:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 30px
    rgba(
      16,
      24,
      40,
      0.08
    );

}


.cards h3 {

  margin:
    12px 0 8px;

}


.cards p {

  color: #667085;

  margin: 0;

}


.icon {
  font-size: 1.7rem;
}



/* =========================================
   PRICING
========================================= */

.price-card {

  background: #ffffff;

  border:
    1px solid #e4e7ec;

  border-radius: 18px;

  padding: 34px;

  box-shadow:
    0 12px 36px
    rgba(
      16,
      24,
      40,
      0.06
    );

}


.price-card ul {

  padding-left: 20px;

  margin:
    28px 0;

}


.price-card li {

  margin:
    9px 0;

}



/* =========================================
   MAINTENANCE
========================================= */

.care {

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 25px;

  background: #101828;

  color: #ffffff;

  border-radius: 14px;

  padding:
    28px 32px;

  margin-top: 20px;

}


.care h3,
.care p {

  margin: 0;

}


.care p {

  opacity: 0.75;

  margin-top: 5px;

}


.care-price {

  white-space: nowrap;

}


.care-price strong {

  font-size: 2rem;

}


.care-price span {

  margin-left: 4px;

}



/* =========================================
   STEPS
========================================= */

.steps {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap: 28px;

}


.steps span {

  display: inline-flex;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  background: #edf3ff;

  color: #2463eb;

  font-weight: 800;

}


.steps p {

  color: #667085;

}



/* =========================================
   FREE SAMPLE SECTION
========================================= */

.sample {

  background: #2463eb;

  color: #ffffff;

  padding:
    70px 0;

}


.sample-inner {

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 30px;

}


.sample h2 {

  font-size:
    clamp(
      2rem,
      4vw,
      3rem
    );

  margin:
    0 0 12px;

}


.sample p {
  margin: 0;
}


.light {
  color: #dbe7ff;
}


.light-btn {

  background: #ffffff;

  color: #101828;

}


.light-btn:hover {

  background: #f2f4f7;

}



/* =========================================
   CONTACT
========================================= */

.contact-grid {

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 70px;

}


.contact-info {

  margin-top: 28px;

}


.contact-info p {

  margin:
    6px 0;

}


.contact-info a {

  color: #2463eb;

}



/* =========================================
   CONTACT FORM
========================================= */

.form {

  border:
    1px solid #e4e7ec;

  border-radius: 16px;

  padding: 28px;

}


.form label {

  display: block;

  font-weight: 700;

  font-size: 0.90rem;

  margin-bottom: 18px;

}


.form input,
.form textarea {

  display: block;

  width: 100%;

  margin-top: 7px;

  border:
    1px solid #d0d5dd;

  border-radius: 8px;

  padding: 12px;

  font: inherit;

}


.form input:focus,
.form textarea:focus {

  outline: none;

  border-color: #2463eb;

  box-shadow:
    0 0 0 3px
    rgba(
      36,
      99,
      235,
      0.10
    );

}


.form textarea {

  resize: vertical;

}


.form-note {

  font-size: 0.78rem;

  color: #667085;

  margin-bottom: 0;

}



/* =========================================
   FOOTER
========================================= */

footer {

  background: #0b1220;

  color: #ffffff;

  padding:
    35px 0;

}


.footer-inner {

  display: flex;

  justify-content:
    space-between;

  align-items: center;

  gap: 30px;

}


.footer-brand {

  display: flex;

  align-items: center;

  gap: 9px;

}


.footer-logo {

  width: 32px;

  height: 32px;

  border-radius: 6px;

}


.footer-inner p {

  color: #98a2b3;

  margin:
    5px 0 0;

  font-size: 0.90rem;

}



/* =========================================
   MOBILE
========================================= */

@media
(max-width: 820px) {


  /* Header */

  .menu {
    display: block;
  }


  .brand {

    font-size: 1.12rem;

  }


  .brand-logo {

    width: 38px;

    height: 38px;

  }


  nav {

    display: none;

    position: absolute;

    top: 72px;

    left: 0;

    right: 0;

    background: #ffffff;

    padding:
      18px 20px;

    border-bottom:
      1px solid #e4e7ec;

    flex-direction: column;

    align-items: stretch;

  }


  nav.open {
    display: flex;
  }


  /* Grids */

  .hero-grid,
  .trust-grid,
  .cards,
  .steps,
  .contact-grid {

    grid-template-columns:
      1fr;

  }


  .hero {

    padding:
      60px 0;

  }


  .hero-grid {

    gap: 38px;

  }


  /* Trust */

  .trust-grid > div {

    border-right: 0;

    border-bottom:
      1px solid #e4e7ec;

  }


  .trust-grid > div:last-child {

    border-bottom: 0;

  }


  /* Pricing / sample */

  .care,
  .sample-inner,
  .footer-inner {

    flex-direction: column;

    align-items: flex-start;

  }


  .contact-grid {

    gap: 36px;

  }


}


/* =========================================
   SMALL MOBILE
========================================= */

@media
(max-width: 480px) {


  .wrap {

    width:
      min(
        100% - 28px,
        1120px
      );

  }


  .hero h1 {

    font-size: 2.55rem;

  }


  .big-price {

    font-size: 3.4rem;

  }


  .section {

    padding:
      70px 0;

  }


  .brand span {

    font-size: 1rem;

  }


}