body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f7f8fa;
  color: #222c36;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 16px;
}

.hero {
  background: linear-gradient(120deg, #e9edf2 0%, #dbe6f6 100%);
  box-shadow: 0 2px 16px rgba(34, 44, 54, 0.06);
  padding: 64px 0 48px 0;
  text-align: center;
}


.hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a2330;
}
.subheadline {
  font-size: 1.2rem;
  color: #4a5a6a;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  background: #3a5a8c;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(34,44,54,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #27446a;
}

.features ul {
  list-style: disc inside;
  padding-left: 0;
  color: #2d3a4a;
}
.features h2 {
  margin-bottom: 12px;
}
.features li {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

/* Calculator Styles */
.calculator {
  background: #f0f3f7;
  border-radius: 12px;
  margin: 32px auto;
  padding: 40px 32px;
}

.calculator h2 {
  text-align: center;
  margin-bottom: 8px;
  color: #1a2330;
}

.calculator-intro {
  text-align: center;
  color: #4a5a6a;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-weight: 600;
  color: #2d3a4a;
  font-size: 0.95rem;
}

.input-group input {
  padding: 12px 16px;
  border: 2px solid #e3e8ee;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: #3a5a8c;
  box-shadow: 0 0 0 3px rgba(58, 90, 140, 0.1);
}

.calculator-results {
  position: sticky;
  top: 20px;
}

.results-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(34, 44, 54, 0.08);
  border: 1px solid #e3e8ee;
}

.results-card h3 {
  margin: 0 0 20px 0;
  color: #1a2330;
  font-size: 1.3rem;
}

.cost-breakdown {
  margin-bottom: 24px;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f3f7;
}

.cost-item.total {
  border-bottom: 2px solid #3a5a8c;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 8px;
  padding-top: 12px;
}

.cost-label {
  color: #4a5a6a;
}

.cost-value {
  font-weight: 600;
  color: #1a2330;
}

.cost-item.total .cost-value {
  color: #3a5a8c;
  font-size: 1.2rem;
}

.time-breakdown {
  margin-bottom: 24px;
}

.time-breakdown h4 {
  margin: 0 0 12px 0;
  color: #2d3a4a;
  font-size: 1.1rem;
}

.time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.time-label {
  color: #4a5a6a;
}

.time-value {
  font-weight: 600;
  color: #1a2330;
}

.time-value.automation {
  color: #28a745;
}

.time-value.savings {
  color: #dc3545;
}

.savings-highlight {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.savings-amount {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.savings-percentage {
  font-size: 1rem;
  opacity: 0.9;
}

/* Tooltip styles */
.tooltip {
  color: #666;
  cursor: help;
  font-size: 0.9rem;
  margin-left: 4px;
}

/* Error cost scenario styles */
.error-cost-scenario {
  margin-top: 24px;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.error-cost-scenario details {
  cursor: pointer;
}

.error-cost-scenario summary {
  font-weight: 600;
  color: #d32f2f;
  font-size: 1.1rem;
  padding: 8px 0;
  transition: color 0.2s;
}

.error-cost-scenario summary:hover {
  color: #b71c1c;
}

.error-content {
  margin-top: 12px;
  padding: 16px;
  background: #fff3e0;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.error-content p {
  margin: 0 0 12px 0;
  color: #5d4037;
  line-height: 1.5;
}

.error-calculation {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ffcc80;
  color: #d84315;
}

/* Responsive design for calculator */
@media (max-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .calculator {
    padding: 24px 20px;
  }
  
  .results-card {
    padding: 20px;
  }
  
  .savings-amount {
    font-size: 1.2rem;
  }
}

.demo-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.video-placeholder {
  width: 360px;
  height: 200px;
  background: #e3e8ee;
  color: #7a8ca3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,44,54,0.07);
}
.video-placeholder span {
  font-size: 0.95rem;
  color: #b0b8c1;
}

.who-for h2, .about h2, .pricing h2, .testimonial h2, .contact h2 {
  margin-bottom: 10px;
}

.testimonial blockquote {
  background: #f0f3f7;
  border-left: 4px solid #3a5a8c;
  margin: 0;
  padding: 24px 28px;
  font-style: italic;
  color: #2d3a4a;
  box-shadow: 0 2px 8px rgba(34,44,54,0.05);
  border-radius: 6px;
}
.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: #5a6a7a;
  font-size: 0.98rem;
}

.pricing-box {
  background: #e9edf2;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(34,44,54,0.07);
  padding: 28px 24px;
  text-align: center;
  margin-top: 12px;
}
.price {
  font-size: 2.2rem;
  font-weight: 600;
  color: #3a5a8c;
  margin-bottom: 8px;
}
.price span {
  font-size: 1.1rem;
  color: #4a5a6a;
  font-weight: 400;
}
.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  color: #2d3a4a;
}
.pricing-box li {
  margin-bottom: 7px;
}

.about strong {
  color: #3a5a8c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-form label {
  font-weight: 600;
  color: #2d3a4a;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #c3c9d1;
  border-radius: 5px;
  font-size: 1rem;
  background: #f7f8fa;
  color: #222c36;
}
.contact-form button {
  background: #3a5a8c;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 12px 0;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,44,54,0.08);
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #27446a;
}

.purchase-box {
  text-align: center;
  margin-top: 10px;
}
.purchase-btn {
  background: #1a2330;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,44,54,0.08);
  transition: background 0.2s;
}
.purchase-btn:hover {
  background: #3a5a8c;
}
.purchase-note {
  color: #7a8ca3;
  font-size: 0.98rem;
  margin-top: 6px;
}

.footer {
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

.footer p {
  color: #7a8ca3;
  font-size: 0.98rem;
  padding: 24px 0 12px 0;
  margin-top: 32px;
}

.before-after {
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.demo-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.demo-image {
  max-width: 98vw;
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(34,44,54,0.07);
  background: #fff;
  border: 1px solid #e3e8ee;
  transition: box-shadow 0.2s, border 0.2s;
  cursor: zoom-in;
}
.demo-image-block a:hover .demo-image {
  box-shadow: 0 4px 24px rgba(34,44,54,0.15);
  border: 1.5px solid #3a5a8c;
}
.demo-caption {
  margin-top: 8px;
  font-size: 1.05rem;
  color: #3a5a8c;
  font-weight: 600;
  text-align: center;
}
.demo-note {
  font-size: 0.95rem;
  color: #7a8ca3;
  font-weight: 400;
}
.demo-arrow {
  font-size: 2.2rem;
  color: #b0b8c1;
  margin: 12px 0;
  user-select: none;
  transform: rotate(90deg);
}
.demo-description {
  text-align: center;
  color: #4a5a6a;
  margin-top: 18px;
  font-size: 1.08rem;
}
@media (max-width: 900px) {
  .before-after {
    flex-direction: column;
    gap: 18px;
  }
  .demo-arrow {
    margin: 0;
    transform: rotate(90deg);
  }
  .demo-image {
    max-width: 98vw;
    max-height: 220px;
  }
}

.video-demo {
  margin-top: 36px;
  text-align: center;
}
.video-demo h3 {
  color: #1a2330;
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.video-demo .video-placeholder {
  width: 480px;
  max-width: 100%;
  height: 270px;
  background: #e3e8ee;
  color: #7a8ca3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,44,54,0.07);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .video-demo .video-placeholder {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 20px 6px;
  }
  .hero {
    padding: 40px 0 28px 0;
  }
  .video-placeholder {
    width: 100%;
    min-width: 0;
    height: 140px;
    font-size: 1rem;
  }
  .pricing-box {
    padding: 18px 8px;
  }
  .video-section {
    padding: 1rem 0;
    margin-top: 1rem;
  }
  .carousel-video {
    width: 100%;
    max-width: 400px;
  }
}

.video-section {
  width: 100%;
  background: #f0f3f7;
  padding: 2rem 0;
  margin-top: 2rem;
}

.video-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 450px;
}

.video-caption {
  font-size: 1.1rem;
  color: #3a5a8c;
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
  transition: opacity 0.15s ease-in-out;
}
.carousel-arrow {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0 0.5rem;
}
.carousel-arrow:focus {
  outline: none;
}
.carousel-video {
  max-width: 100%;
  width: 900px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-video.active {
  display: block;
  position: relative;
} 

/* Creator profile styles */
.creator-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.creator-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.creator-info {
  flex: 1;
}
.linkedin-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0077b5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.linkedin-link:hover {
  color: #005983;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .creator-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .creator-photo {
    width: 90px;
    height: 90px;
  }
} 