/* HERO */
.hero { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero-text p { font-size: 1.15rem; color: var(--text-dim); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; }
.trust-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-dim); }
.trust-badge .icon { font-size: 1rem; }
.hero-visual { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; min-height: 350px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 70% 30%, rgba(0,229,255,0.08) 0%, transparent 50%); }
.hero-visual-content { text-align: center; color: var(--text-dim); z-index: 1; }

/* MOCK GMAIL */
.mock-gmail { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; width: 100%; max-width: 380px; text-align: left; }
.mock-gmail-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.mock-gmail-header .gmail-icon { width: 24px; height: 24px; background: var(--red); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.mock-email { padding: 0.5rem 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mock-email:last-child { border-bottom: none; }
.mock-email-from { font-weight: 600; font-size: 0.85rem; }
.mock-email-subject { font-size: 0.8rem; color: var(--text-dim); }
.mock-email-action { font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; white-space: nowrap; }
.action-replied { background: rgba(52,168,83,0.15); color: var(--green); }
.action-scheduled { background: rgba(66,133,244,0.15); color: var(--blue); }
.action-executing { background: rgba(66,133,244,0.15); color: var(--blue); }
.action-filed { background: rgba(251,188,5,0.15); color: var(--yellow); }

/* AGENT INDICATOR */
.agent-indicator { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; z-index: 2; }
.agent-indicator .pulse { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================ */
/* SECTION 1: GOOGLE FIRST                      */
/* ============================================ */
.google-first { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }

/* Flow diagram */
.flow-diagram { margin: 3rem 0; overflow-x: auto; }
.flow-container { display: flex; align-items: center; justify-content: center; gap: 0.75rem; min-width: 700px; padding: 1rem; }
.flow-node { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; min-width: 100px; }
.flow-node-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.flow-node-label { font-weight: 600; font-size: 0.85rem; }
.flow-node-sub { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.2rem; }
.flow-arrow { font-size: 1.5rem; color: var(--blue); font-weight: 700; flex-shrink: 0; }

.flow-gcp-box { background: linear-gradient(135deg, rgba(66,133,244,0.06), rgba(0,229,255,0.06)); border: 2px solid rgba(66,133,244,0.3); border-radius: 16px; padding: 1.25rem; position: relative; }
.flow-gcp-label { display: flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.8rem; color: var(--blue); margin-bottom: 0.75rem; text-align: left; }
.gcp-logo-inline { flex-shrink: 0; }
.flow-gcp-inner { display: flex; align-items: center; gap: 0.5rem; }
.flow-gcp-node { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem; text-align: center; min-width: 90px; }
.flow-gcp-node-icon { font-size: 1.2rem; }
.flow-gcp-node-name { font-weight: 600; font-size: 0.75rem; margin-top: 0.2rem; }
.flow-gcp-node-desc { font-size: 0.65rem; color: var(--text-dim); }
.flow-gcp-connector { width: 20px; height: 2px; background: var(--border); flex-shrink: 0; }

/* Google badges grid */
.google-badges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.google-badge { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; transition: all 0.2s; }
.google-badge:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.google-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(66,133,244,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.google-badge h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.google-badge p { font-size: 0.8rem; color: var(--text-dim); }

.google-footer-note { margin-top: 2.5rem; text-align: center; }
.google-footer-note p { color: var(--text-dim); font-size: 0.95rem; font-style: italic; max-width: 700px; margin: 0 auto; padding: 1.25rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }

/* ============================================ */
/* SECTION 2: AI INCLUDED                       */
/* ============================================ */
.ai-included { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ai-included-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.left-align { text-align: left; }
.section-desc { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 2rem; }

.ai-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.ai-check-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.ai-check-item.crossed span:last-child { text-decoration: line-through; color: var(--text-dim); }
.cross-icon { font-size: 0.85rem; flex-shrink: 0; }
.ai-result { display: flex; align-items: center; gap: 0.75rem; font-size: 1.05rem; font-weight: 600; padding: 1rem 1.25rem; background: rgba(52,168,83,0.08); border: 1px solid rgba(52,168,83,0.2); border-radius: var(--radius); }
.check-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Comparison cards */
.ai-comparison { display: flex; flex-direction: column; gap: 1.25rem; }
.ai-comp-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ai-comp-card.ours { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 4px 16px rgba(66,133,244,0.15); }
.ai-comp-header { padding: 0.75rem 1.25rem; font-weight: 700; font-size: 0.95rem; }
.ai-comp-card.others .ai-comp-header { background: var(--surface-2); color: var(--text-dim); }
.ai-comp-card.ours .ai-comp-header { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; }
.ai-comp-body { padding: 1rem 1.25rem; background: var(--bg); }
.ai-comp-line { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.85rem; color: var(--text-dim); }
.ai-comp-line.highlight { color: var(--green); font-weight: 600; }
.ai-comp-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.ai-comp-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; padding: 0.4rem 0; }
.ai-comp-card.ours .ai-comp-total { color: var(--blue); }
.ai-comp-note { font-size: 0.75rem; color: var(--red); margin-top: 0.5rem; text-align: center; }
.ai-comp-note.positive { color: var(--green); }

/* ============================================ */
/* SECTION 3: EMPLOYEE                          */
/* ============================================ */
.employee-section { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }

.employee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.employee-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.employee-card-header { padding: 1rem 1.5rem; font-weight: 700; font-size: 1.1rem; }
.bot-header { background: var(--surface-2); color: var(--text-dim); }
.agent-header { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; }
.employee-list { list-style: none; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.employee-list li { font-size: 0.9rem; color: var(--text-dim); display: flex; align-items: flex-start; gap: 0.5rem; }
.bot-card .employee-list li::before { content: '\2212'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.positive-list li { color: var(--text) !important; }
.positive-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.employee-evolves { margin-top: 2.5rem; display: flex; align-items: flex-start; gap: 1.25rem; padding: 2rem; background: linear-gradient(135deg, rgba(66,133,244,0.05), rgba(0,229,255,0.05)); border: 1px solid rgba(66,133,244,0.2); border-radius: 16px; }
.evolves-icon { font-size: 2rem; flex-shrink: 0; }
.employee-evolves h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.employee-evolves p { color: var(--text-dim); font-size: 0.9rem; }

/* ============================================ */
/* USE CASES                                    */
/* ============================================ */
.use-cases { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.use-cases .section-title,
.use-cases .section-subtitle { padding: 0 1.5rem; }

.cases-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; padding: 0 1.5rem; flex-wrap: wrap; }
.case-tab { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 1.25rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; color: var(--text-dim); }
.case-tab:hover { border-color: var(--blue); color: var(--blue); }
.case-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.cases-grid { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cases-grid.hidden { display: none; }

.case-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: all 0.2s; }
.case-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.case-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.case-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.case-card p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1rem; }
.case-example { background: var(--surface); border-radius: 8px; padding: 0.75rem; font-size: 0.8rem; }
.case-example-label { font-weight: 600; color: var(--blue); margin-right: 0.25rem; }

/* HOW IT WORKS */
.how-it-works { padding: 5rem 0; }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; padding: 2rem; }
.step-number { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.25rem; }
.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* PRICING */
.pricing { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--border); }
.pricing-inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; position: relative; }
.price-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(66,133,244,0.15); }
.price-card.featured::before { content: attr(data-recommended); position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.price-card .plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-card .plan-price { font-size: 2.5rem; font-weight: 800; }
.price-card .plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-dim); }
.plan-includes { display: inline-block; background: rgba(52,168,83,0.12); color: var(--green); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; margin-top: 0.5rem; }
.price-card ul { list-style: none; margin: 1.5rem 0; }
.price-card li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.5rem; }
.price-card li::before { content: '\2713'; color: var(--green); font-weight: 700; }
.price-card .btn-plan { width: 100%; padding: 0.85rem; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.price-card .btn-plan.primary { background: var(--blue); color: #fff; }
.price-card .btn-plan.primary:hover { filter: brightness(1.1); }
.price-card .btn-plan.outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.price-card .btn-plan.outline:hover { border-color: var(--blue); color: var(--blue); }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; padding: 5rem 1.5rem; }
.faq-inner { width: 100%; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item[open] { border-color: var(--blue); }
.faq-item summary { padding: 1.25rem 1.5rem; font-weight: 600; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--text-dim); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }

/* CTA FINAL */
.cta-final { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }
.cta-banner { background: linear-gradient(135deg, var(--blue), #1a73e8, var(--cyan)); border-radius: 20px; padding: 4rem 3rem; text-align: center; color: #fff; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.btn-white { background: #fff; color: var(--blue); border: none; padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }

  .flow-diagram { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .flow-container { justify-content: flex-start; padding: 1rem; }

  .google-badges-grid { grid-template-columns: 1fr; }

  .ai-included-inner { grid-template-columns: 1fr; gap: 2rem; }
  .left-align { text-align: center; }

  .employee-grid { grid-template-columns: 1fr; }

  .cases-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .trust-badges { gap: 0.75rem; }
  .flow-container { gap: 0.5rem; }
}
