/* GoHostAm Modern Redesign Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Base Resets & Layout Rules ── */
html, body {
  height: auto !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Inter', sans-serif;
  color: #111014;
}

#dc-root {
  height: auto !important;
  min-height: 100vh;
  overflow: visible !important;
}

#dc-root > .sc-host {
  height: auto !important;
  overflow: visible !important;
}

a {
  color: #673DE6;
  text-decoration: none;
}

a:hover {
  color: #5528d1;
}

::selection {
  background: #673DE6;
  color: #fff;
}

/* ── Custom Animations ── */
@keyframes gh-float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -30px); }
}

@keyframes gh-float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-26px, 24px); }
}

@keyframes gh-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Auto-Scrolling Testimonial Track ── */
@keyframes gh-testimonial-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}

.gh-testimonial-container {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.gh-testimonial-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: gh-testimonial-marquee 28s linear infinite;
}

.gh-testimonial-marquee-track:hover {
  animation-play-state: paused;
}

.gh-testimonial-card-wide {
  width: 440px !important;
  min-height: 310px !important;
  padding: 36px 32px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

@media (max-width: 768px) {
  .gh-testimonial-card-wide {
    width: 320px !important;
    min-height: 280px !important;
    padding: 24px 20px !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTION 1: TOP ANNOUNCEMENT BAR & HEADER NAV
   ───────────────────────────────────────────────────────────── */
.gh-announcement-bar {
  background: #673DE6;
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

.gh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #ECEBF3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  gap: 24px;
}

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

.gh-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.gh-desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.gh-nav-link {
  color: #37354a;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gh-nav-link:hover {
  color: #673DE6;
}

.gh-desktop-auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gh-btn-login {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #37354a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gh-btn-login:hover {
  color: #673DE6;
}

.gh-btn-signup {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: #673DE6;
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.gh-btn-signup:hover {
  transform: scale(1.05);
  background: #5528d1;
}

.gh-hamburger-btn {
  display: none;
  background: #F1ECFE;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 10px;
  color: #673DE6;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

/* Mobile Drawer Overlay */
.gh-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.gh-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECEBF3;
  padding-bottom: 16px;
}

.gh-drawer-close {
  background: #F1ECFE;
  border: none;
  font-size: 20px;
  color: #673DE6;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 800;
}

.gh-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.gh-drawer-item {
  color: #111014;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #F7F7FA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.gh-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #ECEBF3;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 2: HERO DOMAIN SEARCH SECTION
   ───────────────────────────────────────────────────────────── */
.gh-hero-sec {
  background: #0B0B10;
  padding: 88px 40px 100px;
  position: relative;
  overflow: hidden;
}

.gh-hero-glow1 {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,61,230,0.55), transparent 70%);
  filter: blur(40px);
  animation: gh-float1 11s ease-in-out infinite;
  pointer-events: none;
}

.gh-hero-glow2 {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,61,230,0.4), transparent 70%);
  filter: blur(50px);
  animation: gh-float2 14s ease-in-out infinite;
  pointer-events: none;
}

.gh-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.gh-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.gh-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #a9a7b8;
  margin: 0;
  max-width: 540px;
}

.gh-domain-box {
  display: flex;
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(103,61,230,0.25);
  box-sizing: border-box;
}

.gh-domain-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #111014;
  background: transparent;
}

.gh-domain-select {
  border: none;
  outline: none;
  padding: 12px 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #37354a;
  background: #F7F7FA;
  border-radius: 10px;
  cursor: pointer;
}

.gh-domain-btn {
  border: none;
  background: #673DE6;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gh-domain-btn:hover {
  transform: scale(1.04);
  background: #5528d1;
}

.gh-hero-footnote {
  font-size: 14px;
  color: #8b899c;
  margin-top: 6px;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 3: HOW IT WORKS (4 STEPS CARD GRID)
   ───────────────────────────────────────────────────────────── */
.gh-steps-sec {
  background: #ffffff;
  padding: 104px 40px;
}

.gh-sec-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gh-pill-badge {
  background: #F1ECFE;
  color: #673DE6;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.gh-sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111014;
  margin: 0;
  max-width: 640px;
}

.gh-sec-desc {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  max-width: 540px;
  line-height: 1.6;
}

.gh-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  width: 100%;
  position: relative;
}

.gh-step-card {
  background: #F7F7FA;
  border: 1px solid #ECEBF3;
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gh-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(103,61,230,0.12);
  border-color: #D9DBFF;
}

.gh-step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #673DE6;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(103,61,230,0.25);
}

.gh-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #111014;
  margin-top: 6px;
}

.gh-step-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 4: BUILT FOR HOW YOU ACTUALLY WORK (ACCORDION)
   ───────────────────────────────────────────────────────────── */
.gh-accordion-sec {
  background: #180F33;
  padding: 100px 40px;
}

.gh-accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 64px;
  align-items: start;
}

.gh-accordion-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #ffffff;
  margin: 0 0 36px;
}

.gh-accordion-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.gh-accordion-item-pad {
  padding-top: 28px;
}

.gh-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.gh-accordion-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

.gh-accordion-toggle {
  font-size: 24px;
  color: #d4c5ff;
  font-weight: 300;
}

.gh-accordion-body {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gh-accordion-text {
  font-size: 15px;
  line-height: 1.65;
  color: #c4c0db;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 5: EMAIL SERVICES
   ───────────────────────────────────────────────────────────── */
.gh-email-sec {
  background: #F7F7FA;
  padding: 100px 40px;
}

.gh-email-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.gh-email-card {
  background: #ffffff;
  border: 1px solid #ECEBF3;
  border-radius: 28px;
  padding: 44px 44px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gh-email-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(103,61,230,0.12);
}

.gh-email-badge {
  background: #F7F7FA;
  color: #37354a;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 6: PRICING SECTION
   ───────────────────────────────────────────────────────────── */
.gh-pricing-sec {
  background: #F7F7FA;
  padding: 100px 40px;
}

.gh-pricing-toggle-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #ECEBF3;
  border-radius: 999px;
  padding: 6px;
}

.gh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 7: WHAT OUR CUSTOMERS SAY (TESTIMONIALS)
   ───────────────────────────────────────────────────────────── */
.gh-testimonials-sec {
  background: #F7F7FA;
  padding: 90px 40px;
}

.gh-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gh-testimonials-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  box-sizing: border-box;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gh-testimonial-card-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  flex: 1 0 340px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.gh-testimonial-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(103,61,230,0.12);
}


/* ─────────────────────────────────────────────────────────────
   SECTION 8: TRUST STATS & ZIMI ANNOUNCEMENT
   ───────────────────────────────────────────────────────────── */
.gh-trust-sec {
  background: #180F33;
  padding: 64px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gh-zimi-sec {
  background: #ffffff;
  padding: 20px 40px 90px;
}

.gh-zimi-card {
  max-width: 1120px;
  margin: 0 auto;
  background: #F1ECFE;
  border: 1px solid #E4DBFD;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 9: FAQ ACCORDION SECTION
   ───────────────────────────────────────────────────────────── */
.gh-faq-sec {
  background: #F7F7FA;
  padding: 100px 40px;
}

.gh-faq-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.gh-faq-card {
  background: #ffffff;
  border: 1px solid #ECEBF3;
  border-radius: 20px;
  padding: 24px 28px;
  transition: box-shadow 0.3s ease;
}

.gh-faq-card:hover {
  box-shadow: 0 12px 30px rgba(103,61,230,0.08);
}

.gh-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.gh-faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111014;
}

.gh-faq-chevron {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1ECFE;
  color: #673DE6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gh-faq-answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 0;
}


/* ─────────────────────────────────────────────────────────────
   SECTION 10: DELUXE CTA BANNER & FOOTER
   ───────────────────────────────────────────────────────────── */
.gh-cta-sec {
  background: #F1ECFE;
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid #E4DBFD;
}

.gh-footer-sec {
  background: #F7F7FA;
  padding: 64px 40px 32px;
  border-top: 1px solid #ECEBF3;
}

/* ── Interactive CTA Buttons & Arrows ── */
.gh-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.gh-cta .gh-arrow-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  display: inline-block;
}

.gh-cta .gh-arrow {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease-in-out;
}

.gh-cta .gh-arrow-2 {
  left: -36px;
}

.gh-cta:hover .gh-arrow {
  transform: translateX(36px);
}

/* ── Stacking Cards Layout ── */
#gh-cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gh-card {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gh-card__content {
  transform-origin: 50% 0;
  will-change: transform;
  border-radius: 32px;
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}

/* ── Horizontal Product Scroll Showcase ── */
#productTrack {
  scrollbar-width: none;
}

#productTrack::-webkit-scrollbar {
  display: none;
}

/* ── Comprehensive Responsive Media Queries ── */

/* Tablet & Mobile Devices (<= 991px) */
@media (max-width: 991px) {
  /* Section Spacing & Padding */
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Headings Fluid Typography */
  h1 { font-size: 32px !important; line-height: 1.2 !important; }
  h2 { font-size: 26px !important; line-height: 1.25 !important; }
  h3 { font-size: 20px !important; line-height: 1.3 !important; }

  /* Header & Navigation on Mobile */
  header {
    padding: 14px 20px !important;
    flex-wrap: nowrap !important;
  }

  .gh-desktop-nav, .gh-desktop-auth {
    display: none !important;
  }

  .gh-hamburger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px !important;
    padding: 6px 12px !important;
    background: #F1ECFE !important;
    border-radius: 10px !important;
    color: #673DE6 !important;
  }

  /* Grid Layouts Stacked on Mobile */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Sticky Product Scroll Section Cards on Mobile */
  #productSticky {
    padding: 20px 0 !important;
  }

  #productSticky [style*="max-width:1120px"] {
    padding: 0 20px !important;
    margin-bottom: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  #productTrack {
    padding: 0 20px !important;
    gap: 16px !important;
  }

  .gh-product-card {
    width: 300px !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }

  /* Stacking Cards Content Mobile Padding */
  .gh-card__content {
    border-radius: 24px !important;
  }

  /* Footer Columns Stacking */
  footer div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 20px !important;
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  footer div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .gh-product-card {
    width: 280px !important;
    padding: 20px !important;
  }

  /* Hero & Section Typography */
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
}
