/* GetBackMyTime Custom Styling v6 - Strict Theme Overrides */

/* --- OVERRIDE GENERATEPRESS THEME DEFAULTS --- */
body, .site, .site-content, .inside-article, .site-main {
    background-color: #000000 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide the default theme navigation, header, sidebar, footer, AND SEARCH WIDGETS */
.site-header, .main-navigation, .sidebar, .site-footer, .page-header, .widget_search, .search-form {
    display: none !important;
}

/* Force full width container */
.container.grid-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* --- LANDING PAGE STYLES --- */
:root {
  --bg-body: #000000;
  --bg-surface: rgba(255, 255, 255, .03);
  --bg-surface-hover: rgba(255, 255, 255, .07);
  --text-primary: #ffffff;
  --text-secondary: #8a8f98;
  --text-tertiary: #575c66;
  --accent-primary: #5e6ad2;
  --accent-glow: rgba(94, 106, 210, .5);
  --border-color: rgba(255, 255, 255, .08);
  --border-hover: rgba(255, 255, 255, .15);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Newsreader", serif;
}

.gbmt-landing-page {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 40px;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.beam-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: var(--accent-primary);
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hero-wrapper h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-wrapper h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
}

.text-gradient-accent {
  background: linear-gradient(90deg, #b4befe, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-wrapper p {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.hero-bullets li::before {
  content: "✓";
  color: var(--text-primary);
  font-weight: bold;
}

/* Quiz Container */
#custom-quiz-container {
  max-width: 600px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
}

.quiz-step { display: none; animation: fadeIn 0.4s ease-out; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.quiz-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: left;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-option:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-hover);
}

.quiz-progress { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, #b4befe, #d8b4fe); width: 20%; transition: width 0.3s ease; }

.lead-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: #0000004d;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-primary);
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.lead-form input:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 2px rgba(94,106,210,0.2); }

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #f7f8f8;
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.submit-btn:hover { background: #e0e0e0; transform: translateY(-1px); }

.back-btn { background: none; border: none; color: var(--text-secondary); font-size: 0.9rem; cursor: pointer; padding: 0; margin-top: 1.5rem; display: inline-flex; width: 100%; justify-content: center; }
.back-btn:hover { color: var(--text-primary); }

/* The 3-Step Process Section */
.process-section {
  padding: 6rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.process-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.process-badge {
  background: var(--text-primary);
  color: #000;
  padding: 0.1em 0.3em;
  border-radius: 4px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 1.5rem;
  border-radius: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:nth-child(1) { background: linear-gradient(165deg, rgba(160, 160, 160, 0.2) 0%, rgba(100, 100, 100, 0.08) 100%); }
.step-card:nth-child(2) { background: linear-gradient(165deg, rgba(140, 140, 140, 0.18) 0%, rgba(90, 90, 90, 0.1) 100%); }
.step-card:nth-child(3) { background: linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(180, 180, 180, 0.08) 100%); }

.step-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.step-card-content { margin-top: auto; }
.step-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; font-weight: 600; color: var(--text-primary); font-family: var(--font-sans); }
.step-card p { font-size: 0.9375rem; color: #d4d4d8; line-height: 1.6; margin: 0; }

@media(max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}
