/* =============================================
   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: 9999px;
  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: 50;
  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 40px;
  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;
}

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

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

@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;

  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-bottom: 52px;
  z-index: 3;
  border-radius: 12px !important;
  padding-top: 60px;
  bottom: 25px;
}

/* 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;
  max-width: 460px;
}

@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: 800px;
  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: WHY DOES ADSENSE REJECT WEBSITES
   (Stitch two-column feature section)
   ============================================= */
.section-why-reject {
  padding: 80px 24px;
  background: linear-gradient(
    #ffffff 0%,
    #f1f3f4 15%,
    #f1f3f4 85%,
    #ffffff 100%
  );
}

.why-reject-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-reject-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .why-reject-layout {
    flex-direction: row;
    gap: 64px;
    align-items: stretch;
  }
}

/* ---- Left: Text Content ---- */
.why-reject-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .why-reject-content {
    width: 50%;
  }
}

.why-reject-heading {
  font-size: 32px;
  font-weight: 700;
  color: #202124;
  line-height: 1.2;
  max-width: 480px;
  margin: 0 0 16px 0;
}

@media (min-width: 640px) {
  .why-reject-heading {
    font-size: 36px;
  }
}

.why-reject-para {
  font-size: 15px;
  font-weight: 400;
  color: #5f6368;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 12px 0;
}

@media (min-width: 640px) {
  .why-reject-para {
    font-size: 16px;
  }
}

.why-reject-cta {
  margin-top: 32px;
}

/* ---- Right: Media Placeholder ---- */
.why-reject-media-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 280px;
}

@media (min-width: 1024px) {
  .why-reject-media-wrap {
    width: 50%;
    min-height: 360px;
  }
}

.why-reject-media-box {
  flex: 1 1 0%;
  width: 100%;
  background-color: #f1f3f4;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.why-reject-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.platform-tag {
  font-size: 12px;
  font-weight: 500;
  color: #5f6368;
  background: #f1f3f4;
  border: 1px solid #dadce0;
  border-radius: 6px;
  padding: 3px 9px;
}

/* =============================================
   USER MENU DROPDOWN (authenticated header)
   ============================================= */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid #dadce0;
  border-radius: 100px;
  cursor: pointer;
  padding: 5px 10px 5px 5px;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  color: #202124;
}

.user-menu-btn:hover {
  border-color: #4285f4;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.12);
}

.user-avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  overflow: hidden;
}

.user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
  animation: dropdownFadeIn 0.15s ease;
}

.user-menu-dropdown.open {
  display: block;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-menu-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f1f3f4;
}

.user-menu-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #202124;
  margin-bottom: 2px;
}

.user-menu-email {
  display: block;
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-site {
  display: block;
  font-size: 12px;
  color: #4285f4;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
}

.user-menu-site:hover {
  text-decoration: underline;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #202124;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.12s;
}

.user-menu-item:hover {
  background: #f8f9fa;
  color: #4285f4;
}

.user-menu-divider {
  border: none;
  border-top: 1px solid #f1f3f4;
}

.user-menu-logout {
  color: #d93025;
}

.user-menu-logout:hover {
  background: #fff0ef;
  color: #d93025;
}

/* ─── Auth-aware nav: simple Account link ─────────────────────────────────── */
.nav-account-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5f6368;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-account-link:hover {
  color: #4285f4;
}

/* ─── First name label inside nav avatar button ───────────────────────────── */
.user-menu-firstname {
  font-size: 13px;
  font-weight: 500;
  color: #202124;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Card head ── */
.pc-head {
  margin-bottom: 20px;
}

.pc-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pc-amount {
  font-size: 44px;
  font-weight: 800;
  color: #202124;
  line-height: 1;
  letter-spacing: -0.02em;
}

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

.pc-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 6px;
}

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

.pc-plan-desc {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.55;
  margin: 0;
}

.pricing-card .btn-full {
  margin-top: 20px;
}

/* Badges */
.pc-badges {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pc-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #5f6368;
}

/* Divider */
.pc-divider {
  border: none;
  border-top: 1px solid #e8eaed;
  margin: 18px 0;
}

/* Feature list — equal rows across all cards */
.pc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}

.pc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* Icon wrapper: fixed size so check & cross align perfectly */
.pc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

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

/* Available features */
.pc-feature-on {
  color: #202124;
}

/* Unavailable features — dimmed text */
.pc-feature-off {
  color: #b0b8c1;
}

/* ── Height fix: all cards same height ── */
/* Top-align wrapping text with the icon */
.pc-feature {
  align-items: flex-start;
}
.pc-icon {
  margin-top: 1px;
}

/* Grid stretches so all cards fill the same row height */
@media (min-width: 768px) {
  /* Side cards: indent from top with padding instead of margin-top
             so they stay the same height as the center card */
  .pricing-card-side {
    margin-top: 0 !important;
    padding-top: 70px !important;
  }
}

/* =============================================
   SECTION 4b: QUICK AUDIT WIDGET (homepage)
   ============================================= */
.section-quick-audit {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f1f3f4 18%,
    #f1f3f4 82%,
    #ffffff 100%
  );
  width: 100%;
  padding: 56px 16px;
}

@media (min-width: 768px) {
  .section-quick-audit {
    padding: 64px 24px;
  }
}

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

.audit-url-card-home {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dadce0;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin: 40px 0;
}

@media (min-width: 640px) {
  .audit-url-card-home {
    padding: 48px 40px;
  }
}

.audit-home-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #202124;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .audit-home-heading {
    font-size: 30px;
  }
}

.audit-home-subtitle {
  font-size: 14px;
  color: #5f6368;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .audit-home-subtitle {
    font-size: 16px;
  }
}

.audit-url-card-home .audit-form {
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   SHARED URL INPUT (used in homepage audit widget)
   Mirrors audit.css — needed because audit.css is
   not loaded on index.html
   ============================================= */
.url-input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 9999px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.url-input-container:focus-within {
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.18);
}

.url-globe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  margin-right: 8px;
  flex-shrink: 0;
}

.url-globe-icon svg {
  width: 20px;
  height: 20px;
}

.url-text-input {
  width: 100%;
  background: transparent;
  font-size: 14px;
  color: #202124;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

@media (min-width: 640px) {
  .url-text-input {
    font-size: 16px;
  }
}

.url-text-input::placeholder {
  color: rgba(95, 99, 104, 0.6);
}

.btn-scan-pill {
  background-color: #4285f4;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 9999px;
  padding: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  height: 42px;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    transform 0.1s ease;
}

@media (min-width: 640px) {
  .btn-scan-pill {
    font-size: 16px;
    padding: 0 28px;
  }
}

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

.btn-scan-pill:active {
  transform: scale(0.98);
}
/* =============================================
   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: stretch; /* ← changed from center to stretch */
}

@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;
  max-width: 460px;
}

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

.budget-image-wrap {
  width: 100%;
  height: 100%; /* ← fill the grid cell height */
  min-height: 0; /* ← prevents grid blowout */
  display: flex;
  align-self: stretch; /* ← stretch to match left column */
}

.budget-image {
  width: 100%;
  height: 100%; /* ← fill the wrapper */
  min-height: 0; /* ← prevents image from overflowing */
  object-fit: cover;
  object-position: center top; /* ← keep face visible, crop bottom */
  border-radius: 12px;
  display: block;
}
