/* SGMOM static page */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --navy: rgba(15, 26, 12, 1);
  --green: rgba(68, 214, 44, 1);
  --green-dark: #38b824;
  --dark-text: rgba(26, 31, 23, 1);
  --muted: rgba(107, 127, 101, 1);
  --border: #E2E8F4;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 20px;
  font-weight: 500;
}

a { color: inherit; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 247, 1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
}

.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #5A6A85;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  cursor: pointer;
}

.nav-links > li > a:hover {
  color: var(--green);
}

.nav-dropdown {
  position: absolute;
  top: 62px;
  left: -12px;
  background: var(--green);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  backface-visibility: hidden;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: background-color 0.15s;
  background-color: transparent;
}

.nav-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 400 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
  align-self: center;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.sg-hero {
  position: relative;
  background: rgba(0, 33, 49, 1);
  color: #fff;
  min-height: 640px;
  padding: 72px 8% 88px;
  overflow: hidden;
}

.sg-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.sg-label,
.sg-pricing-label,
.sg-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* "Simple Process" kicker — match VeriSafe .vs-section-label sizing across all screens */
.sg-section-kicker {
  font-size: 14px;
}

@media (min-width: 1920px) {
  .sg-section-kicker { font-size: 15px; }
}

@media (min-width: 2560px) {
  .sg-section-kicker { font-size: 17px; }
}

@media (min-width: 3840px) {
  .sg-section-kicker { font-size: 20px; }
}

.sg-label {
  border: 1px solid rgba(68, 214, 44, 0.35);
  background: rgba(68, 214, 44, 0.08);
  padding: 9px 14px;
  margin-bottom: 48px;
}

.sg-label svg {
  width: 14px;
  height: 14px;
}

.sg-hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sg-hero h1 span {
  color: var(--green);
}

.sg-hero-copy p {
  max-width: 540px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 600;
}

.sg-hero-panel {
  display: grid;
  gap: 24px;
}

.sg-requirement {
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
}

.sg-requirement h2 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sg-requirement p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.sg-requirement p .sg-white {
  color: #fff;
}

.sg-requirement a {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(68, 214, 44, 0.35);
  color: var(--green);
  background: rgba(68, 214, 44, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.sg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.sg-stats div {
  padding: 28px 24px;
  text-align: center;
}

.sg-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-stats strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.sg-stats span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sg-cert {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(68, 214, 44, 0.25);
  background: rgba(68, 214, 44, 0.08);
}

.sg-cert > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(68, 214, 44, 0.12);
  flex: 0 0 auto;
}

.sg-cert svg {
  width: 20px;
  height: 20px;
}

.sg-cert strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sg-cert p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: rgba(46, 184, 30, 1);
  color: #fff;
  padding: 8px 22px 8px 8px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow 0.2s, transform 0.2s;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46, 184, 30, 0.5);
}

.floating-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.floating-cta-icon svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 480px) {
  .floating-cta {
    right: 16px;
    bottom: 18px;
    padding: 8px 16px 8px 8px;
    font-size: 12px;
  }

  .floating-cta-icon {
    width: 28px;
    height: 28px;
  }
}

.sg-process {
  background: var(--surface);
  padding: 64px 8% 84px;
}

.sg-section-head,
.sg-pricing-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.sg-section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-dark);
}

.sg-section-head h2,
.sg-pricing h2 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sg-section-head p,
.sg-pricing-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.65;
}

.sg-steps {
  max-width: 1440px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.sg-step {
  min-height: 640px;
  padding: 26px 20px 34px;
  border: 1px solid #e4e8ee;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.sg-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
}

.sg-step h3 {
  color: #4a4a4a;
  font-size: 21px;
  line-height: 1.55;
}

.sg-step p,
.sg-step li {
  color: #5f7191;
  font-size: 17px;
  line-height: 1.55;
}

.sg-step p {
  margin-top: 20px;
  text-align: left;
}

.sg-step ul {
  margin-top: 18px;
  padding-left: 18px;
  text-align: left;
}

.sg-step a {
  color: #5f7191;
}

.sg-step-btn {
  display: inline-flex;
  width: min(100%, 252px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 68px auto 0;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--navy) !important;
  font-size: clamp(14px, calc(5.14px + 0.67vw), 18px);
  font-weight: 700;
  text-decoration: none;
}

.sg-step-btn + .sg-step-btn {
  margin-top: 8px;
}

.sg-pricing {
  background: rgba(245, 251, 240, 1);
  padding: 78px 5% 96px;
}

.sg-pricing-inner {
  text-align: center;
}

.sg-pricing-label {
  background: rgba(0, 33, 49, 1);
  padding: 8px 16px;
}

.sg-check-types {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.sg-check-types article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid #b9d8ff;
  border-radius: 6px;
}

.sg-check-types span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #f4f7f8;
}

.sg-check-types svg {
  width: 18px;
  height: 18px;
}

.sg-check-types h3 {
  color: var(--navy);
  font-size: 16px;
}

.sg-check-types p {
  margin-top: 8px;
  color: #64738a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.sg-note {
  margin-top: 16px;
  padding: 16px;
  text-align: left;
  color: #65768c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  background: var(--surface);
  border: 1px solid #b9d8ff;
  border-left: 4px solid rgba(208, 229, 255, 1);
  border-radius: 0 4px 4px 0;
}

.sg-note strong {
  color: var(--navy);
  font-weight: 700;
}

.sg-table-wrap {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid #b9d8ff;
  overflow-x: auto;
}

.sg-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.sg-table th {
  padding: 28px 20px;
  background: rgba(0, 33, 49, 1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.sg-table th:first-child,
.sg-table td:first-child {
  text-align: left;
}

.sg-table td {
  padding: 28px 20px;
  border-top: 1px solid #d7e8fb;
  color: var(--navy);
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
}

.sg-table td:first-child {
  min-width: 190px;
  font-size: 20px;
}

.sg-table tbody tr {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .sg-table tbody tr:hover {
    background-color: rgba(68, 214, 44, 0.06);
    box-shadow: inset 4px 0 0 var(--green);
  }
}

.sg-flag {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 20px;
  margin-right: 12px;
  object-fit: cover;
  border: 1px solid #d7e8fb;
}

.sg-tat {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid #b9d8ff;
  color: #1f73bb;
  font-size: 12px;
  font-weight: 700;
}

.sg-table select {
  width: 100%;
  min-width: 320px;
  padding: 12px 36px 12px 14px;
  border: 1px solid #b9d8ff;
  background: var(--surface);
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
}

.sg-table td:nth-child(3) {
  min-width: 380px;
}

.sg-table td:nth-child(4) {
  font-weight: 700;
}

.sg-table td:nth-child(5) {
  text-align: left;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.sg-price {
  white-space: nowrap;
}

.sg-table small {
  margin-right: 12px;
  color: #6d7c92;
  font-size: 13px;
  font-weight: 700;
}

.sg-table strong {
  color: var(--navy);
  font-size: 25px;
  font-weight: 400;
}

.sg-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 38px;
  background: var(--green);
  color: #001d25;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(14px, calc(5.14px + 0.67vw), 18px);
  font-weight: 700;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.sg-buy:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(56, 184, 36, 0.28);
}

.sg-buy:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(56, 184, 36, 0.22);
}

.sg-cta {
  background: var(--green);
  padding: 86px 8%;
  text-align: center;
}

.sg-cta h2 {
  color: #000;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.15;
  font-weight: 900;
}

.sg-cta p {
  margin-top: 32px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.sg-cta div {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.sg-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: clamp(14px, calc(5.14px + 0.67vw), 18px);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.sg-cta-light {
  background: #fff;
  color: var(--green-dark);
}

.sg-cta-outline {
  border: 2px solid #fff;
  color: #fff;
}

footer {
  background: #f8f8f6;
  padding: 56px 60px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
}

.footer-heading {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  color: #5A6A85;
  text-transform: none;
}

.footer-col a {
  display: block;
  margin-bottom: 14px;
  color: #0C1E3C;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px 60px;
  font-size: 11px;
}

/* Footer responsive — identical breakpoints to the site-wide footer */
@media (max-width: 960px) {
  footer {
    padding: 40px 24px 40px;
    overflow: hidden;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    flex: 1;
  }

  .footer-right {
    align-items: flex-end;
    flex-shrink: 0;
  }

  .footer-bar {
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    justify-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-right {
    align-items: center;
    width: 100%;
  }

  .footer-logo-img {
    height: 70px;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 16px 5%;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 5%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > li {
    padding: 10px 0;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
  }

  .sg-hero,
  .sg-process,
  .sg-pricing,
  .sg-cta {
    padding-left: 5%;
    padding-right: 5%;
  }

  .sg-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .sg-step {
    min-height: auto;
  }

  .sg-check-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sg-table-wrap {
    background: transparent;
    border: 0;
    overflow-x: visible;
  }

  .sg-table,
  .sg-table tbody,
  .sg-table tr,
  .sg-table td {
    display: block;
    width: 100%;
  }

  .sg-table {
    min-width: 0;
  }

  .sg-table thead {
    display: none;
  }

  .sg-table tr {
    margin-bottom: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid #b9d8ff;
  }

  .sg-table td {
    padding: 12px 0;
    border-top: 1px solid #eaf2fb;
    text-align: left;
  }

  .sg-table td:first-child {
    padding-top: 0;
    border-top: 0;
    min-width: 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
  }

  .sg-table td[data-label] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
  }

  .sg-table td[data-label]::before {
    content: attr(data-label);
    color: #6d7c92;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex: 0 0 auto;
  }

  .sg-table td:nth-child(3) {
    min-width: 0;
  }

  .sg-table select {
    width: auto;
    max-width: 60%;
    min-width: 0;
    text-align: right;
  }

  .sg-table strong {
    font-size: 22px;
  }

  .sg-table td.sg-action-cell {
    padding-top: 16px;
  }

  .sg-table td.sg-action-cell::before {
    display: none;
  }

  .sg-buy {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .sg-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 112px;
  }

  .sg-label {
    margin-bottom: 32px;
    line-height: 1.4;
  }

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

  .sg-stats,
  .sg-steps {
    grid-template-columns: 1fr;
  }

  .sg-stats div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sg-cta div {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sg-cta a {
    width: 100%;
    max-width: 280px;
  }
}
