/* GotTime Marketing Site Styles */

:root {
  --color-bg: #050816;
  --color-surface: #0b1020;
  --color-surface-alt: #101829;
  --color-accent: #00f5a0;
  --color-accent-soft: rgba(0, 245, 160, 0.1);
  --color-primary: #ff9f1c;
  --color-primary-soft: rgba(255, 159, 28, 0.16);
  --color-text: #f7fafc;
  --color-muted: #9ca3af;
  --color-border: rgba(148, 163, 184, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.8);
  --shadow-glow: 0 0 40px rgba(0, 245, 160, 0.4);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(255, 159, 28, 0.18), transparent 55%),
    radial-gradient(circle at top right, rgba(0, 245, 160, 0.2), transparent 55%),
    rgba(5, 8, 22, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  /* background: radial-gradient(circle at 20% 20%, #ffffff, #00f5a0); */
  color: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-kicker {
  color: var(--color-muted);
}

.brand-main {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-muted);
}

.site-nav a:hover {
  color: var(--color-text);
}

.site-nav .nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #0af5f4);
  color: #020617;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 4px;
}

main {
  flex: 1;
}

.hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 159, 28, 0.16), transparent 60%),
    radial-gradient(circle at top right, rgba(0, 245, 160, 0.2), transparent 55%),
    radial-gradient(circle at bottom, rgba(59, 130, 246, 0.1), transparent 60%),
    linear-gradient(145deg, #020617, #020617 45%, #050816);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--color-accent);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 0.9rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 0.6rem;
}

.hero-footnote {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #ff4f4f);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.45);
  color: #020617;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(248, 113, 113, 0.6);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--color-text);
  background: rgba(15, 23, 42, 0.6);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.5);
  background: transparent;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-phone {
  width: 280px;
  border-radius: 32px;
  padding: 1rem 0.9rem 1.1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-phone-header {
  display: flex;
  justify-content: flex-start;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}

.hero-phone-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}

.hero-chat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
}

.bubble {
  border-radius: 16px;
  padding: 0.55rem 0.7rem;
  max-width: 90%;
}

.bubble-business {
  background: var(--color-primary-soft);
  border: 1px solid rgba(248, 113, 113, 0.65);
}

.bubble-customer {
  margin-left: auto;
  background: rgba(15, 118, 110, 0.2);
  border: 1px solid rgba(45, 212, 191, 0.7);
}

.bubble-reminder {
  background: var(--color-accent-soft);
  border: 1px dashed rgba(34, 197, 94, 0.8);
}

.hero-phone-footer {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--color-muted);
}

.pill-outline {
  border-style: dashed;
}

.section {
  padding: 3.5rem 0;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.7), transparent 60%);
}

.section:nth-of-type(even) {
  background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.9), transparent 60%),
    linear-gradient(160deg, #020617, #050816);
}

.section-header {
  text-align: left;
  margin-bottom: 2.1rem;
  max-width: 40rem;
}

.section-header h2 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1.8rem;
}

.section-intro {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-alt));
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.65);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.section-flow .flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.flow-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.3rem 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.flow-number {
  position: absolute;
  left: 0.85rem;
  top: 1.05rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #020617;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.flow-step h3 {
  margin: 0 0 0.45rem 0.6rem;
  font-size: 1rem;
}

.flow-step p {
  margin: 0 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.section-highlight {
  background: radial-gradient(circle at center, rgba(0, 245, 160, 0.18), transparent 60%),
    linear-gradient(160deg, #020617, #050816);
}

.highlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--color-text);
}

.highlight-list li::before {
  content: '•';
  color: var(--color-accent);
  margin-right: 0.45rem;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-primary), #ff4f4f);
  color: #020617;
}

.section-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-cta h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-cta p {
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-cta .btn-primary {
  background: #020617;
  color: #e5e7eb;
  box-shadow: none;
}

.section-cta .btn-ghost {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  padding: 2.5rem 0 2.2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-meta {
  margin: 0;
}

.section-hero-sub {
  padding-top: 3.4rem;
  padding-bottom: 2.2rem;
  background: linear-gradient(135deg, #020617, #050816);
}

.section-split .split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.94rem;
  color: var(--color-muted);
}

.bullet-list li::before {
  content: '•';
  color: var(--color-accent);
  margin-right: 0.4rem;
}

.feature-card {
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.4), transparent);
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

.section-diagram .diagram {
  margin-top: 1.5rem;
}

.diagram-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.diagram-node {
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(0, 245, 160, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.diagram-node h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.diagram-node p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(0, 245, 160, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.pricing-card.primary {
  background: radial-gradient(circle at top left, rgba(255, 159, 28, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.96);
}

.pricing-card h2 {
  margin: 0 0 0.75rem;
}

.price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.currency {
  font-size: 1rem;
  color: var(--color-muted);
}

.amount {
  font-size: 2.15rem;
  font-weight: 700;
}

.period {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
  font-size: 0.78rem;
  margin-top: 0.6rem;
}

.price-tagline {
  margin-top: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.pricing-card .bullet-list {
  margin-bottom: auto;
}

.fine-print {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.section-faq .faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 0.8rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.section-text-blocks .text-block {
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.section-text-blocks .text-block + .text-block {
  margin-top: 1.4rem;
}

.section-text-blocks p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.page-legal .section-legal {
  padding-top: 2.2rem;
}

.legal-content h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.legal-content h3 {
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
}

.legal-content p {
  font-size: 0.94rem;
  color: var(--color-muted);
}

.legal-content ul {
  font-size: 0.94rem;
  color: var(--color-muted);
}

.effective-date {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3.4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .highlight-inner,
  .section-cta .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(5, 8, 22, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    flex-direction: column;
    padding: 0.8rem 1.5rem 1.2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease, opacity 0.16s ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

