/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f1f3f4;
  color: #202124;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

/* =============================================
   UTILITY BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background-color: #4285f4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.btn-primary:hover {
  background-color: #185abc;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #4285f4;
  border: 1px solid #4285f4;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.btn-outline:hover {
  background-color: rgba(66, 133, 244, 0.05);
}

.btn-green {
  display: inline-block;
  background-color: #34a853;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.btn-green:hover {
  opacity: 0.9;
}

.btn-white {
  display: inline-block;
  background-color: #ffffff;
  color: #185abc;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
}
.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-full {
  width: 100%;
  display: block;
  padding: 12px;
  margin-top: 32px;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.btn-rounded {
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 16px;
}

.flex-1 {
  flex: 1;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 24px;
  background-color: #ffffff;
  border-bottom: 2px solid #f1f3f4;
}

@media (min-width: 768px) {
  .navbar-header {
    padding: 12px 48px;
  }
}

.navbar-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #5f6368;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #4285f4;
}

.nav-actions-desktop {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .nav-actions-desktop {
    display: flex;
  }
}

.hamburger-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #202124;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px solid #dadce0;
  margin-top: 12px;
}

.mobile-menu.flex {
  display: flex;
}

.mobile-nav-link {
  color: #5f6368;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: #4285f4;
}

.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  flex-grow: 1;
}

/* =============================================
   SECTION 1: HERO
   ============================================= */
.section-hero {
  background-color: #f1f3f4;
  padding: 80px 16px 0;
}

.hero-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 900px;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-subtitle {
  font-size: 16px;
  color: #5f6368;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.scan-form {
  max-width: 580px;
  width: 100%;
  background: #ffffff;
  height: 52px;
  border-radius: 9999px;
  border: 1px solid #dadce0;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.scan-input {
  background: transparent;
  color: #202124;
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.scan-input::placeholder {
  color: #5f6368;
}

.scan-btn {
  background-color: #4285f4;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 24px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

.scan-btn:hover {
  background-color: #185abc;
}

/* =============================================
   SECTION 2: MOCKUP / HOW IT WORKS
   ============================================= */
.section-video {
  background-color: #f1f3f4;
  padding: 72px 16px 64px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.mockup-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0px,
    rgba(0, 0, 0, 0.18) 1.5px,
    transparent 1.5px,
    transparent 14px
  );
  -webkit-mask-image: radial-gradient(80% 70%, black 30%, transparent 80%);
  mask-image: radial-gradient(80% 70%, black 30%, transparent 80%);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-radius: 16px;
  border: 1px solid #dadce0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Browser Chrome Bar */
.browser-chrome {
  height: 36px;
  background-color: #f1f3f4;
  border-bottom: 1px solid #dadce0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red {
  background-color: #ea4335;
}
.dot-yellow {
  background-color: #fbbc04;
}
.dot-green {
  background-color: #34a853;
}

.browser-url-bar {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 9999px;
  padding: 2px 16px;
  font-size: 11px;
  color: #5f6368;
  font-weight: 400;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.url-lock-icon {
  width: 12px;
  height: 12px;
  color: #5f6368;
}

/* Inside mockup */
.mockup-body {
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

@media (min-width: 768px) {
  .mockup-body {
    flex-direction: row;
  }
}

/* Sidebar */
.mockup-sidebar {
  width: 100%;
  background-color: #f1f3f4;
  border-bottom: 1px solid #dadce0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .mockup-sidebar {
    width: 200px;
    border-right: 1px solid #dadce0;
    border-bottom: none;
  }
}

.sidebar-site-name {
  font-weight: 700;
  font-size: 13px;
  color: #202124;
  padding: 16px;
  border-bottom: 1px solid #dadce0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ea4335;
  flex-shrink: 0;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.sidebar-item {
  height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #5f6368;
  cursor: pointer;
  transition: background-color 0.15s;
}
.sidebar-item:hover {
  background-color: #ffffff;
}

.sidebar-item-active {
  background-color: #ffffff;
  border-left: 3px solid #4285f4;
  color: #4285f4;
  font-weight: 500;
}

/* Main area */
.mockup-main {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .stat-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 12px;
}

@media (min-width: 640px) {
  .stat-card {
    padding: 12px 16px;
  }
}

.stat-label {
  font-size: 11px;
  color: #5f6368;
  font-weight: 500;
  display: block;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 4px;
}

.stat-sub {
  font-size: 10px;
  color: #5f6368;
}

.stat-red {
  color: #ea4335;
}
.stat-yellow {
  color: #fbbc04;
}
.stat-green {
  color: #34a853;
}

/* Issues table */
.issues-table-wrap {
  overflow-x: auto;
  border: 1px solid #dadce0;
  border-radius: 8px;
}

.issues-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.issues-thead-row {
  background-color: #f1f3f4;
  border-bottom: 1px solid #dadce0;
}

.issues-th {
  padding: 8px 12px;
  font-size: 11px;
  color: #5f6368;
  font-weight: 500;
}

.issues-tbody {
  font-size: 12px;
  color: #202124;
}

.issues-row {
  border-bottom: 1px solid #f1f3f4;
}

.issues-row-last {
  /* no border */
}

.issues-td {
  padding: 8px 12px;
}

.issues-td-bold {
  font-weight: 500;
}

.issues-td-muted {
  color: #5f6368;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 500;
}

.badge-critical {
  background-color: #fce8e6;
  color: #ea4335;
}

.badge-warning {
  background-color: #fef7e0;
  color: #b06000;
}

.badge-pass {
  background-color: #e6f4ea;
  color: #137333;
}

.mockup-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.btn-fix {
  background-color: #34a853;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Inter", sans-serif;
}
.btn-fix:hover {
  background-color: #2d9247;
}

/* =============================================
   SECTION 3: PLATFORMS
   ============================================= */
.section-platforms {
  padding: 48px 24px;
  background-color: #f1f3f4;
  border-bottom: none;
}

.platforms-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platforms-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #202124;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.platforms-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .platforms-logos {
    gap: 56px;
  }
}

.platform-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.platform-logo:hover {
  opacity: 1;
}

/* =============================================
   SECTION 4: REASONS
   ============================================= */
.section-reasons {
  padding: 80px 16px;
  background: linear-gradient(#f1f3f4 0%, #ffffff 8%, #ffffff 100%);
}

.reasons-inner {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #202124;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 36px;
  }
}

.section-subtitle {
  font-size: 15px;
  color: #5f6368;
  margin-bottom: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.reason-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  margin-bottom: 16px;
  background-color: #f1f3f4;
}

.reason-icon {
  width: 20px;
  height: 20px;
}

.reason-title {
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}

.reason-desc {
  color: #5f6368;
  font-size: 14px;
  line-height: 1.6;
}

.reasons-note {
  font-size: 14px;
  font-style: italic;
  color: #5f6368;
  margin-bottom: 24px;
}

.reasons-cta {
  display: flex;
  justify-content: center;
}

/* =============================================
   SECTION 5: PRICING
   ============================================= */
.section-pricing {
  padding: 80px 16px;
  background-color: #ffffff;
  border-bottom: 2px solid #f1f3f4;
  border-top: 2px solid #f1f3f4;
}

.pricing-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  flex: 1;
}

/* Side cards: pushed down + pulled inward so center overlaps their edges */
@media (min-width: 768px) {
  .pricing-card-side {
    margin-top: 38px;
    z-index: 1;
  }

  /* Left card: overlap its right edge behind the center */
  .pricing-card-side:first-child {
    margin-right: -18px;
    border-radius: 12px 0 0 12px;
  }

  /* Right card: overlap its left edge behind the center */
  .pricing-card-side:last-child {
    margin-left: -18px;
    border-radius: 0 12px 12px 0;
  }
}

/* Center card: sits above and over side cards */
.pricing-card-center {
  padding-top: 52px;
  padding-bottom: 52px;
  z-index: 3;
  border-radius: 12px !important;
}

/* Mobile: reset everything */
@media (max-width: 767px) {
  .pricing-card-side {
    margin-top: 0;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 12px !important;
    z-index: auto;
  }
  .pricing-card-center {
    padding-top: 32px;
    padding-bottom: 32px;
    z-index: auto;
  }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fbbc04;
  color: #202124;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #202124;
}

.pricing-plan-name-blue {
  color: #4285f4;
}

.pricing-amount-wrap {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 700;
  color: #202124;
  line-height: 1;
}

.pricing-custom {
  font-size: 30px;
}

.pricing-period {
  font-size: 14px;
  color: #5f6368;
}

.pricing-custom-note {
  font-size: 12px;
  color: #5f6368;
  display: block;
  margin-top: 4px;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #202124;
}

.check {
  color: #34a853;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   SECTION 6: URGENCY
   ============================================= */
.section-urgency {
  background-color: #ffffff;
  padding: 80px 16px;
}

.urgency-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.urgency-title {
  font-size: 28px;
  font-weight: 700;
  color: #202124;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .urgency-title {
    font-size: 36px;
  }
}

.urgency-desc {
  font-size: 18px;
  color: #5f6368;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

.urgency-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.urgency-point {
  font-size: 16px;
  color: #202124;
  font-weight: 500;
}

@media (min-width: 768px) {
  .urgency-point {
    font-size: 18px;
  }
}

.urgency-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 32px;
}

/* =============================================
   SECTION 7: BUDGET
   ============================================= */
.section-budget {
  padding: 80px 24px;
  background: linear-gradient(#ffffff 75%, #f1f3f4 100%);
}

.budget-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .budget-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.budget-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.budget-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #202124;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .budget-title {
    font-size: 36px;
  }
}

.budget-desc {
  font-size: 16px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .budget-desc {
    font-size: 18px;
  }
}

.budget-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.budget-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* =============================================
   SECTION 8: FAQ
   ============================================= */
.section-faq {
  background-color: #f1f3f4;
  padding: 80px 16px;
}

.faq-inner {
  max-width: 768px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: box-shadow 0.15s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #202124;
  font-size: 16px;
  font-weight: 500;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #4285f4;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-chevron.rotate-180 {
  transform: rotate(180deg);
}

.faq-answer {
  color: #5f6368;
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.65;
}

/* =============================================
   SECTION 9: FINAL CTA BANNER
   ============================================= */
.section-cta-banner {
  background-color: #185abc;
  padding: 64px 16px;
  text-align: center;
  color: #ffffff;
}

.cta-banner-inner {
  max-width: 768px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: #202124;
  color: #ffffff;
  padding: 48px 24px;
  border-top: 1px solid #3c4043;
}

.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 4fr;
    gap: 48px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 360px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
  margin-top: 8px;
}

.social-link {
  color: #9ca3af;
  transition: color 0.2s;
}
.social-link:hover {
  color: #ffffff;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e5e7eb;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.footer-link {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.2s;
  display: block;
  padding: 2px 0;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(75, 85, 99, 0.6);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 640px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #9ca3af;
  gap: 8px 8px;
}

.footer-legal-link {
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: #ffffff;
}

/* =============================================
   SECTION: HOW IT WORKS (PROCESS STEPS)
   ============================================= */
.section-process-steps {
  padding: 80px 24px;
  background: linear-gradient(
    #ffffff 0%,
    #f1f3f4 15%,
    #f1f3f4 85%,
    #ffffff 100%
  );
}

.process-inner {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.process-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-step-num {
  font-size: 30px;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 12px;
  user-select: none;
  line-height: 1;
}

.process-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}

.process-card-desc {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.65;
}

/* =============================================
   SECTION: REAL EXAMPLE
   ============================================= */
.section-real-example {
  padding: 80px 24px;
  background: linear-gradient(
    #ffffff 0%,
    #f1f3f4 25%,
    #f1f3f4 75%,
    #ffffff 100%
  );
}

.real-example-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.real-example-card {
  background-color: #185abc;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .real-example-card {
    padding: 48px;
  }
}

.real-example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .real-example-grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}

.real-example-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fbbc04;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.real-example-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .real-example-title {
    font-size: 28px;
  }
}

.real-example-desc {
  font-size: 15px;
  color: #e5e7eb;
  line-height: 1.7;
}

.real-example-checklist {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e6f4ea;
  color: #34a853;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-icon svg {
  width: 14px;
  height: 14px;
}

.checklist-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.checklist-desc {
  font-size: 12px;
  color: #e5e7eb;
  line-height: 1.5;
}

/* =============================================
   STICKY NAVBAR
   ============================================= */

.navbar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}

/* =============================================
   READINESS BAR + CHECKLIST
   ============================================= */

.readiness-scroll-container {
  position: relative;
}

#progress-bar-section {
  position: sticky;
  top: 74px;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid #dadce0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* =============================================
   CHECKLIST CUSTOM CHECKBOX
   ============================================= */

.custom-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #dadce0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.custom-checkbox:hover {
  border-color: #4285f4;
}

.custom-checkbox:active {
  transform: scale(0.95);
}

/* Hide checkmark until checked */
.custom-checkbox svg {
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

/* Checked state */
.custom-checkbox.checked {
  background-color: #4285f4;
  border-color: #4285f4;
}

.custom-checkbox.checked svg {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   CHECKLIST PRIORITY TAGS
   ============================================= */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  padding: 3px 8px;
  border-radius: 9999px;

  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

/* Critical */
.badge-critical {
  background-color: #fce8e6;
  color: #ea4335;
}

/* Important */
.badge-important {
  background-color: #fef7e0;
  color: #b06000;
}

/* Required */
.badge-required {
  background-color: #e8f0fe;
  color: #1967d2;
}

/* =============================================
   SINGLE-CLASS COMPONENT STYLES
   Every multi-utility element in the HTML is represented by one class.
   ============================================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px solid #dadce0;
  margin-top: 12px;
}
.mobile-menu.flex {
  display: flex;
}
.btn-outline-fde05b {
  display: inline-block;
  background-color: transparent;
  color: #4285f4;
  border: 1px solid #4285f4;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.btn-outline-fde05b:hover {
  background-color: rgba(66, 133, 244, 0.05);
}
.btn-outline-fde05b {
  flex: 1 1 0%;
}
.btn-primary-9ae598 {
  display: inline-block;
  background-color: #4285f4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.btn-primary-9ae598:hover {
  background-color: #185abc;
}
.btn-primary-9ae598 {
  flex: 1 1 0%;
}
.utility-db18e2 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.utility-db18e2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.utility-db18e2 {
  background-color: #f1f3f4;
}
.utility-e44760 {
  text-align: center;
}
.utility-e44760 {
  margin-left: auto;
  margin-right: auto;
}
.utility-e44760 {
  max-width: 1024px;
}
.utility-0b3d79 {
  display: inline-block;
}
.utility-0b3d79 {
  text-transform: uppercase;
}
.utility-0b3d79 {
  margin-bottom: 0.75rem;
}
.utility-0b3d79 {
  font-weight: 700;
}
.utility-0b3d79 {
  font-size: 12px;
}
.utility-0b3d79 {
  letter-spacing: 0.1em;
}
.utility-0b3d79 {
  color: #4285f4;
}
.utility-48096c {
  margin-bottom: 1rem;
}
.utility-48096c {
  line-height: 1.1;
}
.utility-48096c {
  font-weight: 700;
}
.utility-48096c {
  font-size: 36px;
}
.utility-48096c {
  letter-spacing: -0.02em;
}
.utility-48096c {
  color: #202124;
}
@media (min-width: 768px) {
  .utility-48096c {
    font-size: 48px;
  }
}
.utility-b08a3d {
  margin-left: auto;
  margin-right: auto;
}
.utility-b08a3d {
  margin-bottom: 2rem;
}
.utility-b08a3d {
  line-height: 1.6;
}
.utility-b08a3d {
  font-size: 18px;
}
.utility-b08a3d {
  max-width: 560px;
}
.utility-b08a3d {
  color: #5f6368;
}
.utility-a76c16 {
  display: flex;
}
.utility-a76c16 {
  flex-direction: row;
}
.utility-a76c16 {
  align-items: center;
}
.utility-a76c16 {
  justify-content: center;
}
.utility-a76c16 {
  gap: 0.75rem;
}
.utility-e55669 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.utility-e55669 {
  padding-top: 6px;
  padding-bottom: 6px;
}
.utility-e55669 {
  border-radius: 9999px;
}
.utility-e55669 {
  border-width: 1px;
  border-style: solid;
}
.utility-e55669 {
  font-weight: 500;
}
.utility-e55669 {
  font-size: 14px;
}
.utility-e55669 {
  background-color: #ffffff;
}
.utility-e55669 {
  border-color: #dadce0;
}
.utility-e55669 {
  color: #202124;
}
.utility-e55669 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.utility-4ddb8c {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.utility-4ddb8c {
  padding-top: 32px;
  padding-bottom: 32px;
}
.utility-c981bf {
  margin-left: auto;
  margin-right: auto;
}
.utility-c981bf {
  max-width: 1152px;
}
.utility-9574c5 {
  display: flex;
}
.utility-9574c5 {
  align-items: center;
}
.utility-9574c5 {
  justify-content: space-between;
}
.utility-9574c5 {
  margin-bottom: 0.75rem;
}
.utility-8e039f {
  font-weight: 600;
}
.utility-8e039f {
  font-size: 14px;
}
.utility-8e039f {
  color: #202124;
}
.utility-ebbce0 {
  font-weight: 700;
}
.utility-ebbce0 {
  font-size: 14px;
}
.utility-ebbce0 {
  color: #4285f4;
}
.utility-3e38ba {
  overflow: hidden;
}
.utility-3e38ba {
  width: 100%;
}
.utility-3e38ba {
  border-radius: 9999px;
}
.utility-3e38ba {
  background-color: #f1f3f4;
}
.utility-3e38ba {
  height: 8px;
}
.global-progress-fill {
  height: 100%;
}
.global-progress-fill {
  border-radius: 9999px;
}
.global-progress-fill {
  transition-property: all;
}
.global-progress-fill {
  transition-duration: 400ms;
}
.global-progress-fill {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.global-progress-fill {
  width: 0%;
  background: linear-gradient(90deg, #4285f4, #34a853);
}
.utility-bfe540 {
  text-align: center;
}
.utility-bfe540 {
  margin-top: 0.75rem;
}
.utility-bfe540 {
  font-size: 12px;
}
.utility-bfe540 {
  color: #5f6368;
}
.checklist-section-bg-b69ef9 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.checklist-section-bg-b69ef9 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.checklist-section-bg-b69ef9 {
  background: linear-gradient(180deg, #ffffff 0%, #f1f3f4 8%, #f1f3f4 100%);
}
.utility-68af36 {
  display: grid;
}
.utility-68af36 {
  gap: 1.5rem;
}
.utility-68af36 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .utility-68af36 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .utility-68af36 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.category-card {
  display: flex;
}
.category-card {
  flex-direction: column;
}
.category-card {
  justify-content: space-between;
}
.category-card {
  padding: 1.5rem;
}
.category-card {
  border-radius: 12px;
}
.category-card {
  border-width: 1px;
  border-style: solid;
}
.category-card {
  transition-property: all;
}
.category-card {
  transition-duration: 200ms;
}
.category-card {
  background-color: #ffffff;
}
.category-card {
  border-color: #dadce0;
}
.category-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.category-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.utility-5a88dc {
  display: flex;
}
.utility-5a88dc {
  align-items: center;
}
.utility-5a88dc {
  gap: 0.75rem;
}
.utility-5a88dc {
  margin-bottom: 0.75rem;
}
.utility-603815 {
  display: flex;
}
.utility-603815 {
  align-items: center;
}
.utility-603815 {
  justify-content: center;
}
.utility-603815 {
  flex-shrink: 0;
}
.utility-603815 {
  width: 2.5rem;
}
.utility-603815 {
  height: 2.5rem;
}
.utility-603815 {
  border-radius: 8px;
}
.utility-603815 {
  background-color: #f1f3f4;
}
.utility-603815 {
  color: #4285f4;
}
.utility-b8006e {
  line-height: 1.375;
}
.utility-b8006e {
  font-weight: 700;
}
.utility-b8006e {
  font-size: 18px;
}
.utility-b8006e {
  color: #202124;
}
.cat-count-badge {
  margin-left: auto;
}
.cat-count-badge {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.cat-count-badge {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.cat-count-badge {
  border-radius: 9999px;
}
.cat-count-badge {
  font-weight: 600;
}
.cat-count-badge {
  font-size: 11px;
}
.cat-count-badge {
  background-color: #f1f3f4;
}
.cat-count-badge {
  color: #5f6368;
}
.utility-25446a {
  overflow: hidden;
}
.utility-25446a {
  width: 100%;
}
.utility-25446a {
  height: 0.25rem;
}
.utility-25446a {
  margin-bottom: 1rem;
}
.utility-25446a {
  border-radius: 9999px;
}
.utility-25446a {
  background-color: #f1f3f4;
}
.cat-progress-fill {
  height: 100%;
}
.cat-progress-fill {
  border-radius: 9999px;
}
.cat-progress-fill {
  transition-property: all;
}
.cat-progress-fill {
  transition-duration: 300ms;
}
.cat-progress-fill {
  background-color: #4285f4;
}
.cat-progress-fill {
  width: 0%;
}
.utility-85631f.u-divide-f1f3f4 > * + * {
  border-top: 1px solid #f1f3f4;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checklist-item {
  display: flex;
}
.checklist-item {
  align-items: flex-start;
}
.checklist-item {
  gap: 0.75rem;
}
.checklist-item {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.custom-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #dadce0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}
.custom-checkbox:hover {
  border-color: #4285f4;
}
.custom-checkbox:active {
  transform: scale(0.95);
}
.custom-checkbox svg {
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.custom-checkbox.checked {
  background-color: #4285f4;
  border-color: #4285f4;
}
.custom-checkbox.checked svg {
  opacity: 1;
  transform: scale(1);
}
.custom-checkbox {
  margin-top: 0.125rem;
}
.checklist-text {
  flex: 1 1 0%;
}
.checklist-text {
  line-height: 1.5;
}
.checklist-text {
  font-size: 14px;
}
.checklist-text {
  color: #202124;
}
.badge-critical {
  background-color: #fce8e6;
  color: #ea4335;
}
.badge-critical {
  flex-shrink: 0;
}
.badge-critical {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.badge-critical {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.badge-critical {
  border-radius: 9999px;
}
.badge-critical {
  font-weight: 500;
}
.badge-critical {
  font-size: 10px;
}
.badge-important {
  background-color: #fef7e0;
  color: #b06000;
}
.badge-important {
  flex-shrink: 0;
}
.badge-important {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.badge-important {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.badge-important {
  border-radius: 9999px;
}
.badge-important {
  font-weight: 500;
}
.badge-important {
  font-size: 10px;
}
.badge-required {
  background-color: #e8f0fe;
  color: #1967d2;
}
.badge-required {
  flex-shrink: 0;
}
.badge-required {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.badge-required {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.badge-required {
  border-radius: 9999px;
}
.badge-required {
  font-weight: 500;
}
.badge-required {
  font-size: 10px;
}
.utility-eae0b6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.utility-eae0b6 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.utility-eae0b6 {
  background-color: #185abc;
}
.utility-798838 {
  text-align: center;
}
.utility-798838 {
  margin-left: auto;
  margin-right: auto;
}
.utility-798838 {
  max-width: 1000px;
}
.utility-c9ce1a {
  display: inline-block;
}
.utility-c9ce1a {
  text-transform: uppercase;
}
.utility-c9ce1a {
  margin-bottom: 0.75rem;
}
.utility-c9ce1a {
  font-weight: 700;
}
.utility-c9ce1a {
  font-size: 12px;
}
.utility-c9ce1a {
  letter-spacing: 0.1em;
}
.utility-c9ce1a {
  color: #fbbc04;
}
.utility-c032a3 {
  margin-bottom: 1rem;
}
.utility-c032a3 {
  line-height: 1.3;
}
.utility-c032a3 {
  font-weight: 700;
}
.utility-c032a3 {
  font-size: 28px;
}
.utility-c032a3 {
  color: #ffffff;
}
.utility-ad4325 {
  line-height: 1.7;
}
.utility-ad4325 {
  font-size: 16px;
}
.utility-ad4325 {
  color: rgba(255, 255, 255, 0.9);
}
.checklist-section-bg-1b030a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.checklist-section-bg-1b030a {
  padding-top: 48px;
  padding-bottom: 48px;
}
.checklist-section-bg-1b030a {
  border-top-width: 1px;
  border-top-style: solid;
}
.checklist-section-bg-1b030a {
  background-color: #ffffff;
}
.checklist-section-bg-1b030a {
  border-color: #dadce0;
}
.checklist-section-bg-1b030a {
  background: linear-gradient(180deg, #ffffff 0%, #f1f3f4 8%, #f1f3f4 100%);
}
.utility-fbe7bc {
  display: grid;
}
.utility-fbe7bc {
  gap: 1.5rem;
}
.utility-fbe7bc {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .utility-fbe7bc {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.utility-d2cbde {
  text-align: center;
}
.utility-d2cbde {
  padding: 1.5rem;
}
.utility-d2cbde {
  border-radius: 12px;
}
.utility-d2cbde {
  border-width: 1px;
  border-style: solid;
}
.utility-d2cbde {
  background-color: #ffffff;
}
.utility-d2cbde {
  border-color: #dadce0;
}
.utility-d2cbde {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.utility-cff18f {
  line-height: 1;
}
.utility-cff18f {
  font-weight: 700;
}
.utility-cff18f {
  font-size: 48px;
}
.utility-cff18f {
  color: #4285f4;
}
.utility-79f058 {
  margin-top: 0.5rem;
}
.utility-79f058 {
  font-size: 14px;
}
.utility-79f058 {
  color: #5f6368;
}
.utility-9a220a {
  text-align: center;
}
.utility-9a220a {
  padding-left: 1rem;
  padding-right: 1rem;
}
.utility-9a220a {
  padding-top: 64px;
  padding-bottom: 64px;
}
.utility-9a220a {
  background-color: #185abc;
}
.utility-1c3e84 {
  margin-left: auto;
  margin-right: auto;
}
.utility-1c3e84 {
  max-width: 1000px;
}
.utility-f85810 {
  margin-bottom: 0.75rem;
}
.utility-f85810 {
  line-height: 1.15;
}
.utility-f85810 {
  font-weight: 700;
}
.utility-f85810 {
  font-size: 32px;
}
.utility-f85810 {
  font-size: 40px;
}
.utility-f85810 {
  letter-spacing: -0.02em;
}
.utility-f85810 {
  color: #ffffff;
}
@media (min-width: 768px) {
  .utility-f85810 {
    font-size: 40px;
  }
}
.utility-0d8f84 {
  margin-left: auto;
  margin-right: auto;
}
.utility-0d8f84 {
  margin-bottom: 2rem;
}
.utility-0d8f84 {
  line-height: 1.6;
}
.utility-0d8f84 {
  font-size: 18px;
}
.utility-0d8f84 {
  max-width: 480px;
}
.utility-0d8f84 {
  color: rgba(255, 255, 255, 0.9);
}
.shadow-md-55b2e6 {
  display: inline-flex;
}
.shadow-md-55b2e6 {
  align-items: center;
}
.shadow-md-55b2e6 {
  cursor: pointer;
}
.shadow-md-55b2e6 {
  gap: 0.5rem;
}
.shadow-md-55b2e6 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.shadow-md-55b2e6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.shadow-md-55b2e6 {
  border-radius: 9999px;
}
.shadow-md-55b2e6 {
  border: none;
}
.shadow-md-55b2e6 {
  font-weight: 700;
}
.shadow-md-55b2e6 {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
}
.shadow-md-55b2e6 {
  transition-duration: 150ms;
}
.shadow-md-55b2e6 {
  font-size: 16px;
}
.shadow-md-55b2e6 {
  background-color: #ffffff;
}
.shadow-md-55b2e6 {
  color: #185abc;
}
.shadow-md-55b2e6 {
  background-color: #ffffff;
}
.shadow-md-55b2e6:hover {
  background-color: #f3f4f6;
}
.utility-7bc912 {
  margin-top: 0.75rem;
}
.utility-7bc912 {
  font-size: 12px;
}
.utility-7bc912 {
  color: rgba(255, 255, 255, 0.7);
}
.shadow-md-55b2e6 {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Checklist checkbox */
.custom-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #dadce0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.custom-checkbox:hover {
  border-color: #4285f4;
}

.custom-checkbox:active {
  transform: scale(0.95);
}

.badge-important {
  background: #fef7e0;
  color: #b06000;
}

.badge-required {
  background: #e8f0fe;
  color: #1967d2;
}

/* =============================================
   ONE-CLASS INTERACTIVE STATES
   ============================================= */

.mobile-menu[data-open="true"] {
  display: flex;
}

.custom-checkbox[data-checked="true"] {
  background-color: #4285f4;
  border-color: #4285f4;
}

.custom-checkbox[data-checked="true"] svg {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox svg {
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.checklist-text[data-checked="true"] {
  text-decoration: line-through;
  color: #5f6368;
}
