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

body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #202124;
  background: #f8f9fa;
  min-height: 100vh;
}

/* Site Header (Scrollable - not fixed) */
.site-header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-left {
  flex-shrink: 0;
}

.site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-right {
  flex: 1;
  text-align: right;
}

.header-title {
  font-size: 28px;
  font-weight: 400;
  color: #202124;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 3px rgba(44, 62, 80, 0.15);
}

.ai-highlight {
  color: #dc3545;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(220, 53, 69, 0.3);
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 50px 60px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  margin-bottom: 60px;
}

h1 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #202124;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 20px;
  color: #5f6368;
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.efficiency-tag {
  font-size: 16px;
  color: #1a73e8;
  font-weight: 500;
  margin-bottom: 40px;
}

.cta-button-primary {
  display: inline-block;
  background: #1a73e8;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.cta-button-primary:hover {
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  background: #1765cc;
}

/* Hero Split Layout */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin: 40px 0;
  align-items: start;
}

.demo-preview-left {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
  padding: 32px 28px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 2px 4px 0 rgba(26, 115, 232, 0.1);
}

.demo-preview-left .demo-preview-icon {
  margin-bottom: 16px;
}

.demo-preview-left .demo-preview-icon svg {
  display: inline-block;
  opacity: 0.9;
}

.demo-preview-left h3 {
  font-size: 22px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 10px;
}

.demo-preview-left .demo-preview-subtitle {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 24px;
}

.demo-preview-examples {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.example-query {
  background: white;
  padding: 16px 20px;
  border-radius: 28px;
  font-size: 14px;
  color: #1a73e8;
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.example-query:hover {
  transform: translateX(8px);
  box-shadow: 0 2px 6px 0 rgba(60,64,67,0.3);
}

.query-icon {
  flex-shrink: 0;
}

.example-query span {
  flex: 1;
}

/* Features Cards Right */
.features-cards-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card-mini {
  background: white;
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
}

.feature-card-mini .feature-number {
  font-size: 36px;
  font-weight: 400;
  color: #1a73e8;
  margin-bottom: 6px;
}

.feature-card-mini .feature-label {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 4px;
}

.feature-card-mini .feature-desc {
  font-size: 13px;
  color: #5f6368;
}

/* Content Sections */
.content-section {
  margin: 80px 0;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 32px;
}

/* How It Works - Side by Side Layout */
.how-it-works-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.benefits-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 20px;
}

.benefit-item-compact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.15);
  transition: box-shadow 0.2s ease;
}

.benefit-item-compact:hover {
  box-shadow: 0 2px 4px 0 rgba(60,64,67,0.2);
}

.benefit-icon-compact {
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content-compact h3 {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 6px;
}

.benefit-content-compact p {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.6;
}

.memory-indicator {
  display: inline-block;
  background: #e8f0fe;
  color: #1967d2;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
}

.diagram-section {
  min-width: 0;
}

/* Flow Diagram Container */
.diagram-container {
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.flow-diagram-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Demo Callout */
.demo-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #e8f0fe;
  padding: 24px;
  border-radius: 8px;
  margin: 60px 0;
}

.demo-callout-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.demo-callout-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1967d2;
  margin-bottom: 8px;
}

.demo-callout-content p {
  font-size: 16px;
  color: #174ea6;
  line-height: 1.6;
}

.demo-callout-content a {
  color: #1967d2;
  text-decoration: none;
  font-weight: 500;
}

.demo-callout-content a:hover {
  text-decoration: underline;
}

/* Price Comparison */
.price-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.price-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.price-card.ours {
  border: 2px solid #34a853;
}

.price-card.competitor {
  border: 2px solid #ea4335;
}

.price-header {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.price-card.ours .price-header {
  color: #34a853;
}

.price-card.competitor .price-header {
  color: #ea4335;
}

.price-amount {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-card.ours .price-amount {
  color: #34a853;
}

.price-card.competitor .price-amount {
  color: #ea4335;
}

.price-desc {
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #5f6368;
  padding-left: 24px;
  position: relative;
}

.price-features li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #5f6368;
}

.competitor-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #5f6368;
  font-style: italic;
  line-height: 1.5;
}

.comparison-result {
  text-align: center;
  font-size: 18px;
  color: #34a853;
  padding: 24px;
  background: #e6f4ea;
  border-radius: 8px;
  margin-top: 24px;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.capability-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  transition: box-shadow 0.2s ease;
}

.capability-card:hover {
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
}

.capability-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.capability-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.6;
}

/* Extensions Grid (What's Easy to Add) */
.extensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.extension-card {
  background: white;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.extension-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px 0 rgba(60,64,67,0.35);
}

.extension-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.extension-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 10px;
}

.extension-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

.extension-card a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.extension-card a:hover {
  text-decoration: underline;
}

/* Extension CTA Card (9th card) */
.extension-card-cta {
  background: linear-gradient(135deg, #e8f0fe 0%, #f8f9fa 100%);
  border-left-color: #1a73e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.extension-card-cta:hover {
  background: linear-gradient(135deg, #d2e3fc 0%, #e8f0fe 100%);
  border-left-color: #1557b0;
}

.extension-card-cta .extension-icon {
  color: #1a73e8;
}

.extension-card-cta h3 {
  color: #1967d2;
}

.extension-cta-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #1a73e8;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.extension-cta-link:hover {
  background: #1765cc;
  transform: translateX(4px);
  text-decoration: none !important;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 80px 0;
  padding: 60px 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 32px;
}

.cta-button-secondary {
  display: inline-block;
  background: #1a73e8;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.cta-button-secondary:hover {
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  background: #1765cc;
}

.cta-note {
  margin-top: 24px;
  font-size: 14px;
  color: #5f6368;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.faq-icon {
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

/* Contact Section */
.contact-highlight {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.contact-highlight h3 {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 16px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  color: #5f6368;
}

.contact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34a853;
  font-weight: bold;
  font-size: 18px;
}

/* Demo Request Section */
.demo-request-section {
  text-align: center;
  margin: 80px 0 40px;
  padding: 60px 32px;
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.demo-request-section h2 {
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

.demo-request-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.demo-request-button {
  display: inline-block;
  background: white;
  color: #1a73e8;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.demo-request-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

/* Security Note */
.security-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e8f0fe;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #174ea6;
  line-height: 1.6;
}

.security-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.security-text strong {
  font-weight: 600;
  color: #1967d2;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-cards-right {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
  }

  .feature-card-mini {
    min-width: 200px;
  }

  .how-it-works-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits-sidebar {
    position: static;
    order: 2;
  }

  .diagram-section {
    order: 1;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 16px;
  }

  .header-left,
  .header-right {
    width: 100%;
  }

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

  .site-logo {
    height: 40px;
    margin: 0 auto;
  }

  .header-title {
    font-size: 20px;
  }

  .container {
    padding: 40px 16px;
  }

  h1 {
    font-size: 36px;
  }

  .hero {
    padding: 40px 24px 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .demo-preview-left {
    padding: 28px 20px;
  }
  
  .demo-preview-left h3 {
    font-size: 20px;
  }
  
  .demo-preview-left .demo-preview-subtitle {
    font-size: 14px;
  }
  
  .example-query {
    font-size: 13px;
    padding: 14px 16px;
  }

  .diagram-container {
    padding: 20px 10px;
  }

  .price-comparison {
    grid-template-columns: 1fr;
  }

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

  .extensions-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .demo-request-section {
    padding: 40px 20px;
  }

  .demo-request-section h2 {
    font-size: 28px;
  }

  .demo-request-subtitle {
    font-size: 16px;
  }

  .security-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .content-section {
    margin: 60px 0;
  }
}

@media (max-width: 480px) {
  .site-logo {
    height: 35px;
  }

  .header-title {
    font-size: 18px;
  }
}