/* ROI Calculator CTA Button Accent Color */
.roi-calculator .cta-button-primary {
  background: #f4b4a1;
  color: #fff;
  border: none;
}

.roi-calculator .cta-button-primary:hover {
  background: #e07d4f;
  color: #fff;
}
/* ROI Calculator CTA Button Accent Color */
.roi-calculator .cta-button-primary {
  background: #f4b4a1;
  color: #fff;
  border: none;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  overflow-x: hidden;
  background-color: #fffcf5;
}

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

/* CTA Primary Button Base Style */
.cta-button-primary {
  background: #f4b4a1;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(244, 180, 161, 0.15);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(145, 198, 197, 0.2);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 252, 245, 0.98);
  box-shadow: 0 2px 20px rgba(145, 198, 197, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #91c6c5;
}

.logo-image {
  height: 4rem;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

.navbar.scrolled .logo-image {
  height: 2.5rem;
}

.nav-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #91c6c5;
}

.cta-button-small {
  background: linear-gradient(135deg, #91c6c5, #a3dcd8);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(145, 198, 197, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2d3748;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fffcf5 0%, #f7f4ed 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.highlight {
  background: linear-gradient(135deg, #91c6c5, #a3dcd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #91c6c5;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-section .cta-buttons .cta-button-primary {
  background: #fff;
  color: #f4b4a1;
  border: 2px solid #f4b4a1;
}

.cta-section .cta-buttons .cta-button-primary:hover {
  background: #e07d4f;
  color: #fff;
  border-color: #e07d4f;
}

.cta-button-primary:hover {
  background: #e07d4f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(244, 180, 161, 0.3);
}

.cta-section .cta-button-secondary {
  background: #91c6c5;
  color: #fff;
  border: 2px solid #91c6c5;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-section .cta-button-secondary:hover {
  background: #fff;
  color: #91c6c5;
  border-color: #91c6c5;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(145, 198, 197, 0.15);
}

.cta-button-secondary:hover {
  border-color: #91c6c5;
  background: rgba(145, 198, 197, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.hero-guarantee i {
  color: #91c6c5;
}

/* Dashboard Preview */
.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.3s ease;
}

.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.dashboard-header {
  background: linear-gradient(135deg, #91c6c5, #a3dcd8);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

.status-dot.active {
  background: #f4b4a1;
  animation: pulse 2s infinite;
}

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

.dashboard-content {
  padding: 1.5rem;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.order-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.order-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(163, 220, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91c6c5;
}

.order-details {
  flex: 1;
}

.order-id {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a202c;
}

.order-status {
  font-size: 0.8rem;
  font-weight: 500;
}

.order-status.processing {
  color: #f59e0b;
}

.order-status.completed {
  color: #10b981;
}

.order-status.queued {
  color: #6b7280;
}

.progress-bar {
  width: 100px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #91c6c5, #a3dcd8);
  transition: width 0.5s ease;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background: rgba(163, 220, 216, 0.1);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

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

.problem-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.problem-icon.error {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 161, 0.3),
    rgba(244, 180, 161, 0.5)
  );
  color: #f4b4a1;
}

.problem-icon.expensive {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 161, 0.2),
    rgba(244, 180, 161, 0.4)
  );
  color: #f4b4a1;
}

.problem-icon.slow {
  background: linear-gradient(
    135deg,
    rgba(145, 198, 197, 0.2),
    rgba(163, 220, 216, 0.4)
  );
  color: #91c6c5;
}

.problem-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.problem-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #fffcf5;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-top: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(145, 198, 197, 0.1);
}

.feature-card:hover {
  background: white;
  border-color: rgba(163, 220, 216, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(145, 198, 197, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #91c6c5, #a3dcd8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #91c6c5 0%, #a3dcd8 100%);
  color: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-section .section-title {
  color: white;
  text-align: left;
  margin-bottom: 2rem;
}

.benefit-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-item i {
  color: #f4b4a1;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.roi-calculator {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-calculator h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.calculator-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost {
  font-weight: 600;
  font-size: 1.1rem;
}

.calculator-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 0;
  margin-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  font-weight: 700;
}

.savings {
  color: #fff;
  background: #f4b4a1;
  padding: 0.25em 0.75em;
  border-radius: 0.5em;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: rgba(163, 220, 216, 0.05);
}

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

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border-color: #91c6c5;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f4b4a1, #f4b4a1);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.pricing-header p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7280;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1a202c;
}

.period {
  font-size: 1.1rem;
  color: #6b7280;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-item i {
  color: #91c6c5;
  font-size: 1rem;
}

.pricing-button {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  background: white;
  color: #4a5568;
}

.pricing-button:hover {
  border-color: #91c6c5;
  color: #91c6c5;
}

.pricing-button.primary {
  background: linear-gradient(135deg, #91c6c5, #a3dcd8);
  color: white;
  border-color: transparent;
}

.pricing-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(145, 198, 197, 0.4);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4b4a1, rgba(244, 180, 161, 0.9));
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.cta-guarantee {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #91c6c5;
}

.footer-logo .logo-image {
  height: 2rem;
  width: auto;
  margin-right: 0.75rem;
}

.footer-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.footer-section p {
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #91c6c5;
  transform: translateY(-2px);
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-image {
    height: 3rem;
  }

  .navbar.scrolled .logo-image {
    height: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dashboard-preview {
    transform: none;
    margin-top: 2rem;
  }

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

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .container {
    padding: 0 15px;
  }
}
