/* GS USER CSS LOADED - 2026-06-19 TEST */
body::before {
  content: "CSS LOADED";
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 999999;
  background: red;
  color: white;
  padding: 8px 12px;
  font: 700 14px Arial, sans-serif;
}

:root {
  --gs-bg: #f6f5f2;
  --gs-soft: #efedf4;
  --gs-text: #111217;
  --gs-muted: #5d6068;
  --gs-card: #ffffff;
  --gs-dark: #080b12;
  --gs-radius: 28px;
  --gs-shadow: 0 24px 60px rgba(0,0,0,.10);
  --gs-max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gs-bg);
  color: var(--gs-text);
}

.container-component,
.com-content-article,
.item-page {
  max-width: none;
  padding: 0;
  margin: 0;
}

.page-header {
  display: none;
}

.gs-onepage {
  overflow: hidden;
  background: var(--gs-bg);
}

.gs-section {
  padding: 96px 20px;
}

.gs-section > *,
.gs-section-head,
.gs-footer-card {
  max-width: var(--gs-max);
  margin-left: auto;
  margin-right: auto;
}

.gs-section-head {
  text-align: center;
  margin-bottom: 42px;
}

.gs-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: var(--gs-muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.gs-section h2,
.gs-hero h1,
.gs-footer-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .95;
  letter-spacing: -.04em;
}

.gs-section h2 {
  font-size: 4.2rem;
}

.gs-section p {
  color: var(--gs-muted);
  font-size: 1.1rem;
}

.gs-actions,
.gs-footer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gs-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.gs-btn-dark {
  background: var(--gs-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.gs-btn-light {
  background: #fff;
  color: var(--gs-dark);
}

/* Header */

.container-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease;
}

.container-header.is-scrolled {
  background: rgba(8, 11, 18, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.container-header .navbar-brand,
.container-header .mod-menu a,
.container-header .container-nav .mod-menu > li > a {
  color: #fff;
}

/* Hero */

.gs-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 130px 20px 70px;
  background: linear-gradient(135deg, #5ba6a4, #d8c17b);
}

.gs-hero-copy {
  position: relative;
  z-index: 3;
  max-width: var(--gs-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.gs-hero-copy h1 {
  max-width: 780px;
  font-size: 6rem;
  margin-bottom: 20px;
}

.gs-hero-copy p:not(.gs-eyebrow) {
  max-width: 660px;
  font-size: 1.35rem;
  color: #fff;
}

.gs-slide-count {
  margin-top: 38px;
  font-weight: 700;
  letter-spacing: .08em;
}

.gs-hero-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.gs-hero-slider article {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), var(--bg);
  background-size: cover;
  background-position: center;
  transition: opacity .8s ease;
}

.gs-hero-slider article.is-active {
  opacity: 1;
}

/* Hosting feature layout */

.gs-hosting {
  background: var(--gs-bg);
}

.gs-feature-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.gs-feature-card {
  background: var(--gs-card);
  border-radius: var(--gs-radius);
  padding: 20px;
  box-shadow: var(--gs-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-feature-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 34px 80px rgba(0,0,0,.15);
}

.gs-feature-card-large {
  grid-row: span 2;
}

.gs-feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
}

.gs-feature-card-large img {
  height: 520px;
}

.gs-feature-card h3,
.gs-mini-card h3,
.gs-wide-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

/* Service cards */

.gs-services {
  background: #fff;
}

.gs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gs-mini-card {
  background: var(--gs-card);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

/* Email section */

.gs-email {
  background: var(--gs-soft);
}

.gs-scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 740px);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 20px 28px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.gs-scroll-row::-webkit-scrollbar {
  height: 10px;
}

.gs-scroll-row::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.2);
  border-radius: 999px;
}

.gs-wide-card {
  position: relative;
  min-height: 430px;
  scroll-snap-align: center;
  overflow: hidden;
  background: var(--gs-card);
  border-radius: var(--gs-radius);
  padding: 28px;
  box-shadow: var(--gs-shadow);
}

.gs-wide-card img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--gs-radius);
}

.gs-wide-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent 35%, rgba(0,0,0,.75));
}

.gs-wide-card h3,
.gs-wide-card p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gs-wide-card h3 {
  margin-top: 260px;
}

.gs-note {
  text-align: center;
  font-style: italic;
}

/* Answers */

.gs-answers {
  background: #fff;
}

.gs-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gs-answer-grid article {
  background: #f8f8f8;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,.06);
}

.gs-answer-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* Proof */

.gs-proof {
  background: linear-gradient(180deg, #fff, #fff0f4);
}

.gs-metric-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.gs-metric-row div {
  width: 160px;
  min-height: 180px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--gs-shadow);
  transform: rotate(-5deg);
}

.gs-metric-row div:nth-child(2) {
  transform: rotate(4deg);
}

.gs-metric-row div:nth-child(3) {
  transform: rotate(0deg);
}

.gs-metric-row div:nth-child(4) {
  transform: rotate(6deg);
}

.gs-metric-row div:nth-child(5) {
  transform: rotate(-7deg);
}

.gs-metric-row strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.gs-metric-row span {
  color: var(--gs-muted);
}

/* Testimonials */

.gs-testimonial-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 380px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.gs-testimonial-row article {
  scroll-snap-align: start;
  background: var(--gs-card);
  border-radius: var(--gs-radius);
  padding: 26px;
  box-shadow: var(--gs-shadow);
}

.gs-testimonial-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ */

.gs-faq-section {
  background: #fff;
}

.gs-faq {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gs-faq details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.gs-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.gs-faq summary::-webkit-details-marker {
  display: none;
}

.gs-faq summary::after {
  content: "+";
  float: right;
}

.gs-faq details[open] summary::after {
  content: "-";
}

/* Contact */

.gs-contact {
  background: #fff;
}

/* Footer CTA */

.gs-footer-cta {
  padding: 70px 20px;
  background: var(--gs-bg);
}

.gs-footer-card {
  background: #fff;
  border-radius: 32px;
  padding: 70px;
  box-shadow: var(--gs-shadow);
}

.gs-footer-card h2 {
  max-width: 850px;
  font-size: 6rem;
  color: rgba(0,0,0,.16);
}

.gs-footer-card > p:not(.gs-eyebrow) {
  max-width: 720px;
  color: var(--gs-muted);
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 34px;
  margin-top: 42px;
}

.gs-footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.gs-footer-grid a,
.gs-footer-grid p {
  display: block;
  color: var(--gs-muted);
  text-decoration: none;
  margin: 0 0 8px;
}

/* Responsive */

@media (max-width: 1100px) {
  .gs-hero-copy h1 {
    font-size: 4.8rem;
  }

  .gs-section h2 {
    font-size: 3.4rem;
  }

  .gs-footer-card h2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 900px) {
  .gs-section {
    padding: 70px 20px;
  }

  .gs-feature-layout,
  .gs-card-grid,
  .gs-answer-grid,
  .gs-footer-grid {
    grid-template-columns: 1fr;
  }

  .gs-feature-card-large {
    grid-row: auto;
  }

  .gs-feature-card-large img,
  .gs-feature-card img {
    height: 280px;
  }

  .gs-hero {
    min-height: 760px;
  }

  .gs-hero-copy h1 {
    font-size: 3.6rem;
  }

  .gs-section h2 {
    font-size: 2.8rem;
  }

  .gs-wide-card {
    min-height: 360px;
  }

  .gs-wide-card h3 {
    margin-top: 210px;
  }

  .gs-footer-card {
    padding: 36px;
  }

  .gs-footer-card h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 600px) {
  .gs-hero {
    min-height: 700px;
    padding-top: 110px;
  }

  .gs-hero-copy h1 {
    font-size: 2.8rem;
  }

  .gs-hero-copy p:not(.gs-eyebrow) {
    font-size: 1.05rem;
  }

  .gs-section h2 {
    font-size: 2.25rem;
  }

  .gs-scroll-row {
    grid-auto-columns: 86%;
  }

  .gs-metric-row div {
    width: 140px;
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Make hero slider feel intentional */

.gs-hero-slider article {
  transform: scale(1.04);
}

.gs-hero-slider article.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity .9s ease, transform 5s ease;
}

.gs-slide-count {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  color: #fff;
}

/* Better email cards: centered, larger, carousel-like */

.gs-scroll-row {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 8vw 36px;
}

.gs-wide-card {
  flex: 0 0 72%;
  max-width: 860px;
  min-height: 460px;
  scroll-snap-align: center;
}

.gs-wide-card:hover {
  transform: translateY(-10px) scale(1.015);
}

/* Scroll reveal animation */

.gs-reveal {
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition: opacity .65s ease, transform .65s ease, box-shadow .25s ease;
}

.gs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Add life to cards */

.gs-feature-card:hover,
.gs-mini-card:hover,
.gs-answer-grid article:hover,
.gs-testimonial-row article:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.02);
}

/* Floating metric cards */

.gs-metric-row div {
  animation: gsFloat 5s ease-in-out infinite;
}

.gs-metric-row div:nth-child(2) {
  animation-delay: .3s;
}

.gs-metric-row div:nth-child(3) {
  animation-delay: .6s;
}

.gs-metric-row div:nth-child(4) {
  animation-delay: .9s;
}

.gs-metric-row div:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes gsFloat {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
  100% {
    margin-top: 0;
  }
}

/* Make the hero image more like the original full-width visual */

.gs-hero {
  min-height: 760px;
}

.gs-hero-copy h1 {
  max-width: 580px;
}

@media (max-width: 900px) {
  .gs-wide-card {
    flex-basis: 86%;
  }
}