/* ---------- Tertiary / utility pages (login, payments, etc.) ---------- */
.util-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--grey-100);
}
.util-page .logo-link {
  margin-bottom: 32px;
}
.util-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-sizing: border-box;
}
.util-card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--grey-900);
  margin: 0 0 8px 0;
}
.util-card .subtitle {
  color: var(--grey-600);
  margin: 0 0 28px 0;
  font-size: 0.95rem;
}
.util-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.util-actions .btn {
  width: 100%;
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: rgba(232, 93, 4, 0.08);
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}
.util-back {
  margin-top: 28px;
}
.util-back a {
  color: var(--grey-600);
  font-weight: 500;
  font-size: 0.95rem;
}
.util-back a:hover {
  color: var(--orange);
}
.util-card-wide {
  max-width: 520px;
  text-align: left;
}
.util-card-wide h1 {
  text-align: center;
}
.util-card-wide .util-back {
  text-align: center;
}
@media (max-width: 480px) {
  .util-card {
    padding: 28px 20px;
  }
  .util-card h1 {
    font-size: 1.35rem;
  }
}

/* ============================================
   Sign Guy MS — Modern Orange + Grey Theme
   ============================================ */
:root {
  --orange: #E85D04;
  --orange-dark: #D00000;
  --orange-light: #F48C06;
  --grey-900: #1A1A1A;
  --grey-800: #2D2D2D;
  --grey-700: #3D3D3D;
  --grey-600: #555555;
  --grey-400: #888888;
  --grey-200: #E5E5E5;
  --grey-100: #F4F4F4;
  --white: #FFFFFF;
  --max-width: 1140px;
  --header-height: 72px;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-900);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}
.logo-link:hover { color: var(--grey-900); }
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text .accent {
  color: var(--orange);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-800);
  transition: var(--transition);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover {
  color: var(--orange);
  background: rgba(232, 93, 4, 0.08);
}
.main-nav a.external {
  color: var(--grey-600);
}
.main-nav a.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 4px;
}
.main-nav a.btn-nav:hover {
  background: var(--orange-dark);
}
.main-nav .divider {
  width: 1px;
  height: 24px;
  background: var(--grey-200);
  margin: 0 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 50%, rgba(232,93,4,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--grey-900);
  border-color: var(--grey-200);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-intro {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--grey-600);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About ---------- */
.about {
  background: var(--grey-100);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--grey-700);
}
.about-highlights {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.about-highlights li {
  padding-left: 28px;
  position: relative;
  color: var(--grey-800);
}
.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat {
  margin-bottom: 28px;
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--grey-600);
  font-weight: 500;
}
.card-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.5;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-800) 100%);
  color: var(--white);
  border: none;
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
  color: var(--white);
}
.service-card.featured .card-extra {
  margin-top: 16px;
  font-style: italic;
  opacity: 0.85;
  font-size: 0.95rem;
}
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--grey-600);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.service-card ul {
  display: grid;
  gap: 6px;
}
.service-card li {
  font-size: 0.95rem;
  color: var(--grey-700);
  padding-left: 18px;
  position: relative;
}
.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-card.featured li::before {
  color: var(--orange-light);
}

/* ---------- Why Us ---------- */
.why-us {
  background: var(--grey-100);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-item {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.why-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 12px;
}
.why-item p {
  color: var(--grey-600);
  font-size: 0.98rem;
}
.why-item a {
  font-weight: 600;
}
.why-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Get Started ---------- */
.get-started {
  background: var(--white);
}
.get-started-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.get-started-cta .btn {
  font-size: 1.15rem;
  padding: 18px 40px;
}

/* ---------- Refer Us (new) ---------- */
.refer-us .refer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .refer-us .refer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.refer-us .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.refer-us .service-card h3,
.refer-us .service-card p,
.refer-us .service-card .subtitle {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.refer-us .refer-review {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.refer-us .refer-review .btn {
  margin: 0 auto;
}

/* ---------- Refer Us – extra width for ShareThis on mobile ---------- */
.refer-us .sharethis-inline-share-buttons {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto;
}

/* Reduce card padding on mobile so more icons fit */
@media (max-width: 768px) {
  .refer-us .service-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Even tighter on very small phones */
@media (max-width: 400px) {
  .refer-us .service-card {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Optional: let the ShareThis buttons wrap to a second row if needed */
.refer-us .sharethis-inline-share-buttons,
.refer-us .st-inline-share-buttons {
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grey-900);
  color: var(--grey-200);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand .logo-link {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo-img {
  width: 40px;
  height: 40px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-brand .review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--grey-600);
  color: var(--grey-200);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
}
.footer-brand .review-btn:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  background: rgba(232, 93, 4, 0.1);
}
.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: var(--grey-200);
  font-size: 0.95rem;
  padding: 4px 0;
}
.footer-links a:hover {
  color: var(--orange-light);
}
.footer-meta p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-payments {
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-bottom: 12px;
}
.footer-payments a {
  color: var(--grey-400);
}
.footer-payments a:hover {
  color: var(--orange-light);
}
.copyright {
  font-size: 0.85rem !important;
  color: var(--grey-400) !important;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ---------- Coming Soon page ---------- */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--grey-100);
}
.coming-soon-page .logo-link {
  margin-bottom: 32px;
}
.coming-soon-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 16px;
}
.coming-soon-page p {
  font-size: 1.15rem;
  color: var(--grey-600);
  max-width: 480px;
  margin-bottom: 32px;
}

/* ---------- Responsive ---------- */
/* Hamburger nav for mobile portrait + landscape (and small tablets) */
@media (max-width: 1111px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 16px 24px 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav .divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
  .main-nav a.btn-nav {
    margin-left: 0;
    text-align: center;
  }
}

/* Mobile landscape only: header + menu scroll with the page */
@media (max-width: 1111px) and (orientation: landscape) {
  html {
    scroll-padding-top: 0;
  }
  .site-header {
    position: relative;
  }
  .hero {
    margin-top: 0;
  }
  .main-nav {
    position: absolute;
    top: 100%;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .services-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: auto;
  }
  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
  }
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}