/* SpeakApp-Inspired Clean Light Minimalist SaaS Theme for Grapweb */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-subtle-hover: #f1f5f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-subtle: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --btn-black: #0f172a;
  --btn-black-hover: #000000;
  --brand-blue: #0284c7;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 32px -6px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #ffffff !important;
  color: #0f172a !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* ==================== Header / Navbar ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background-color: #0284c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0f172a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #0f172a;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.15s ease;
}

.dropdown-trigger:hover,
.nav-dropdown.open .dropdown-trigger,
.nav-dropdown:hover .dropdown-trigger {
  color: #0f172a;
}

.dropdown-trigger .arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-trigger .arrow,
.nav-dropdown:hover .dropdown-trigger .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.18s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translate(-50%, -6px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #0f172a !important;
  transition: background-color 0.15s ease;
}

.dropdown-item:hover {
  background-color: #f8fafc;
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background-color: #f5f3ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.dropdown-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.dropdown-sub {
  font-size: 12px;
  color: #64748b;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #0f172a;
  cursor: pointer;
}

/* ==================== Hero Section ==================== */
.hero-section {
  padding: 80px 0 56px;
  background: radial-gradient(circle at 50% 15%, #f8fafc 0%, #ffffff 80%);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #0f172a;
  max-width: 860px;
  margin: 0 auto 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-checklist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.check-icon {
  width: 18px;
  height: 18px;
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #0f172a;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.15s ease;
}

.hero-btn-primary:hover {
  background-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a !important;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.hero-btn-secondary:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* ==================== Sub-Hero ==================== */
.subhero-section {
  padding: 64px 0 40px;
  text-align: center;
}

.subhero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 12px;
}

.subhero-desc {
  font-size: 16px;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== SpeakApp Zigzag Showcase ==================== */
.zigzag-section {
  padding: 40px 0 80px;
}

.section-head {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: #64748b;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 64px;
}

.zigzag-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.zigzag-row.reverse .zigzag-content {
  order: 2;
}

.zigzag-row.reverse .zigzag-visual {
  order: 1;
}

/* Zigzag Content Column */
.zigzag-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.zigzag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill-tag {
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.zigzag-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.zigzag-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-zigzag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background-color: #0f172a;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-zigzag:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Zigzag Visual Container (SpeakApp Pastel Card) */
.zigzag-visual {
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.08);
}

/* Visual Background Themes (Light Pastel Gradients) */
.bg-gradient-ig {
  background: linear-gradient(135deg, #fce7f3 0%, #fae8ff 50%, #ede9fe 100%);
  border: 1px solid #fbcfe8;
}

.bg-gradient-yt {
  background: linear-gradient(135deg, #fee2e2 0%, #ffedd5 50%, #fef3c7 100%);
  border: 1px solid #fecaca;
}

.bg-gradient-tt {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 50%, #f0fdf4 100%);
  border: 1px solid #99f6e4;
}

.bg-gradient-fb {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #ede9fe 100%);
  border: 1px solid #bfdbfe;
}

.bg-gradient-pin {
  background: linear-gradient(135deg, #ffe4e6 0%, #fce7f3 50%, #fff1f2 100%);
  border: 1px solid #fecdd3;
}

.bg-gradient-ai {
  background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 50%, #f5f3ff 100%);
  border: 1px solid #ddd6fe;
}

/* Mockup Window */
.mockup-window {
  width: 100%;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mockup-header {
  height: 38px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.mockup-url-bar {
  flex-grow: 1;
  max-width: 240px;
  height: 20px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 11px;
  color: #64748b;
  font-family: monospace;
}

.mockup-body {
  padding: 20px;
}

.preview-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.preview-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.preview-info {
  flex-grow: 1;
}

.preview-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.preview-info p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

.preview-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #dcfce7;
  color: #15803d;
}

.res-options {
  display: flex;
  gap: 8px;
}

.res-chip {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #0f172a;
}

.res-chip.active {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Transcript AI Mockup */
.transcript-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.transcript-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 8px;
  border-radius: 6px;
}

.transcript-line:hover {
  background-color: #f1f5f9;
}

.timestamp {
  font-family: monospace;
  font-size: 11px;
  font-weight: 600;
  color: #0284c7;
  background-color: #e0f2fe;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.transcript-text {
  color: #334155;
}

/* ==================== Metrics Ribbon ==================== */
.metrics-section {
  padding: 44px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.metric-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.metric-item p {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* ==================== 3-Step Guide ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ==================== FAQ Accordion ==================== */
.faq-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==================== CTA Banner ==================== */
.cta-banner {
  padding: 60px 0;
}

.cta-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}

.cta-box h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a !important;
  background-color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-white:hover {
  background-color: #f1f5f9;
  transform: translateY(-1px);
}

/* ==================== Site Footer ==================== */
.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 64px 0 32px;
  background-color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-col ul a:hover {
  color: #0f172a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  color: #94a3b8;
}

/* ==================== Mobile Drawer ==================== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px;
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer a {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .zigzag-row, .zigzag-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .zigzag-row.reverse .zigzag-content {
    order: 1;
  }
  .zigzag-row.reverse .zigzag-visual {
    order: 2;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-title { font-size: 38px; }
  .zigzag-title { font-size: 26px; }
  .zigzag-visual { padding: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-checklist { flex-direction: column; align-items: center; gap: 12px; }
}
