:root {
  --navy: #0B2A66;
  --cyan: #35BFEA;
  --orange: #D96B00;
  --light-blue: #EAF7FC;
  --text: #1F2933;
  --muted: #5B6775;
  --white: #ffffff;
  --border: #D8E6EF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 58px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--text);
}

.nav a:hover {
  color: var(--navy);
}

.nav-button {
  background: var(--navy);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at 10% 80%, rgba(53, 191, 234, 0.22), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(217, 107, 0, 0.12), transparent 30%),
    var(--light-blue);
  padding: 82px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin: 0 0 14px;
}

.hero h1,
.section h2,
.contact-section h2 {
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 68px);
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 19px;
  color: var(--text);
  max-width: 620px;
}

.hero-lead {
  margin-top: 28px;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 28px rgba(217, 107, 0, 0.22);
}

.button-outline {
  background: white;
  color: var(--navy);
  border: 2px solid rgba(11, 42, 102, 0.16);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  color: var(--text);
  font-weight: 800;
}

.insured-note {
  margin-top: 18px;
  font-weight: 900;
  color: var(--navy);
}

/* Hero visual card */

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(11, 42, 102, 0.14);
}

.screen-card {
  background: linear-gradient(135deg, white, #f4fbfe);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
}

.screen-top {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
}

.screen-top span:nth-child(2) {
  background: var(--orange);
}

.screen-top span:nth-child(3) {
  background: #b8c4cf;
}

.brand-screen {
  background: white;
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 38px 24px;
  text-align: center;
  margin-bottom: 18px;
}

.screen-logo {
  max-width: 320px;
  width: 90%;
  height: auto;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-cards div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.mini-cards strong {
  color: var(--navy);
}

.mini-cards p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
}

/* Sections */

.section {
  padding: 82px 0;
}

.section-blue {
  background: var(--light-blue);
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}

.section-heading h2,
.split h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.section-heading p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(11, 42, 102, 0.08);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 0 0 10px;
}

.service-card p {
  color: var(--muted);
  min-height: 56px;
}

.service-card strong {
  display: block;
  margin-top: 18px;
  background: #f6fafc;
  color: var(--navy);
  padding: 12px;
  border-radius: 12px;
}

/* Small Business IT Cleanup */

.cleanup-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(53, 191, 234, 0.16), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(217, 107, 0, 0.10), transparent 28%),
    white;
}

.cleanup-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 22px 55px rgba(11, 42, 102, 0.09);
}

.cleanup-content h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 0 0 20px;
}

.cleanup-content p {
  color: var(--muted);
  font-size: 18px;
}

.cleanup-lead {
  color: var(--text) !important;
  font-size: 20px !important;
  font-weight: 700;
}

.cleanup-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cleanup-card {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(11, 42, 102, 0.16);
}

.cleanup-card h3 {
  font-size: 30px;
  margin: 0 0 20px;
}

.cleanup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.cleanup-list li {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 13px 15px;
  font-weight: 800;
}

.cleanup-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
  margin-right: 10px;
}

.cleanup-note {
  margin: 24px 0 0;
  color: #dcecff;
  font-weight: 700;
}

/* Digital Products Teaser */

.digital-teaser-section {
  background: var(--light-blue);
}

.digital-teaser-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 22px 55px rgba(11, 42, 102, 0.09);
}

.digital-teaser-box h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 0 0 20px;
}

.digital-teaser-box p {
  color: var(--muted);
  font-size: 18px;
}

.digital-teaser-actions {
  display: grid;
  gap: 14px;
}

/* Digital Products Page */

.digital-products-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(53, 191, 234, 0.20), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(217, 107, 0, 0.12), transparent 30%),
    var(--light-blue);
}

.digital-products-box {
  max-width: 920px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 48px 36px;
  box-shadow: 0 22px 55px rgba(11, 42, 102, 0.09);
}

.digital-products-box h1 {
  color: var(--navy);
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.digital-products-box p {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto 18px;
}

.digital-products-lead {
  color: var(--text) !important;
  font-size: 21px !important;
  font-weight: 800;
}

.digital-products-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-categories-section {
  background: white;
}

.store-callout {
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
  background: var(--light-blue);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 36px;
}

.store-callout h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px;
}

.store-callout p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

/* Split sections */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-grid div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  font-weight: 800;
  color: var(--text);
}

/* Insured Section */

.insured-section {
  background: white;
}

.insured-box {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(11, 42, 102, 0.08);
}

.insured-box p {
  color: var(--muted);
  font-size: 18px;
}

.insured-badge {
  background: var(--light-blue);
  border: 2px solid var(--cyan);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  color: var(--navy);
}

.insured-badge strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

.insured-badge span {
  color: var(--muted);
  font-weight: 700;
}

/* About */

.about-box {
  background: var(--navy);
  border-radius: 32px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  box-shadow: 0 24px 60px rgba(11, 42, 102, 0.18);
}

.about-box div {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 18px;
  font-weight: 900;
  text-align: center;
}

.bold-line {
  color: var(--navy) !important;
  font-weight: 900;
}

/* Reviews */

.reviews-section {
  background: var(--light-blue);
}

.review-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(11, 42, 102, 0.09);
}

.stars {
  color: var(--orange);
  font-size: 34px;
  letter-spacing: 5px;
  margin-bottom: 12px;
}

.review-card h3 {
  color: var(--navy);
  font-size: 28px;
  margin: 0 0 10px;
}

.review-card p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 26px;
  max-width: 580px;
}

.review-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Contact */

.contact-section {
  background: var(--navy);
  color: white;
}

.contact-section .eyebrow {
  color: var(--cyan);
}

.contact-section h2 {
  color: white;
}

.contact-section p {
  color: #dcecff;
}

.contact-details {
  margin-top: 28px;
}

.contact-details a {
  color: white;
  font-weight: 900;
}

.contact-card {
  background: white;
  color: var(--text);
  border-radius: 30px;
  padding: 34px;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 28px;
  margin-top: 0;
}

.contact-card li {
  margin-bottom: 12px;
  color: var(--text);
}

.full-button {
  width: 100%;
  margin-top: 18px;
}

/* Footer */

footer {
  background: #071a3f;
  color: #c9d5e8;
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

/* Mobile */

@media (max-width: 850px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .insured-box,
  .cleanup-box,
  .digital-teaser-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0;
  }

  .hero-checks,
  .trust-grid,
  .mini-cards,
  .about-box {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .logo-image {
    height: 48px;
  }

  .insured-box,
  .cleanup-box,
  .digital-teaser-box {
    padding: 28px 20px;
  }

  .digital-products-box {
    padding: 34px 22px;
  }

  .digital-products-actions {
    flex-direction: column;
  }

  .digital-products-actions .button,
  .digital-teaser-actions .button {
    width: 100%;
  }

  .review-card,
  .store-callout {
    padding: 28px 20px;
  }

  .stars {
    font-size: 28px;
    letter-spacing: 3px;
  }
}