@charset "UTF-8";
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f7fa;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  flex: 1;
}

.nobullet {
  list-style-type: none;
  padding-left: 0;
}

.nobullet li {
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tight-bullets {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
}
.tight-bullets li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  line-height: 1.4;
}

.content-section p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

main {
  text-align: center;
}

.content-section {
  padding: 2.5rem 0;
}

.content-section:nth-child(odd) {
  background-color: #f4f7fa;
}

.content-section:nth-child(even) {
  background-color: #ffffff;
}

.why-work-layout {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
.why-work-layout.reverse {
  flex-direction: row-reverse;
}

.why-work-text {
  flex: 2;
  margin: 0;
}

.why-work-image {
  flex: 1;
  text-align: right;
}

.why-work-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

header {
  background: #001f3f;
  color: white;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

header h1 {
  font-size: 1.75rem;
  margin: 0;
}

.logo-placeholder {
  width: 3.125rem;
  height: 3.125rem;
  background: white;
  color: #001f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 0.3125rem;
}

.header-nav {
  margin-left: 3rem;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.header-nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.95rem;
}

.header-nav ul li a:hover {
  font-weight: bold;
}

.site-logo {
  height: 3.25rem;
  width: auto;
  display: block;
  border-radius: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.hero-section {
  height: 100vh;
  background-color: #f4f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #001f3f;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #00bcd4;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #00bcd4;
  color: white;
}

.btn.primary:hover {
  background-color: #0097a7;
}

.btn.secondary {
  background-color: #ffffff;
  color: #001f3f;
  border: 2px solid #001f3f;
}

.btn.secondary:hover {
  background-color: #e9eef2;
}

.dual-cta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.cta-box {
  flex: 1;
  min-width: 300px;
  padding: 1.5rem;
  background-color: #f4f7fa;
  border-radius: 8px;
}

h2 {
  margin-bottom: 1rem;
}

.cta-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 0.3125rem;
}

.cta-link:hover {
  background: #0097a7;
}

.demo-grid {
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-item {
  border-radius: 0.3125rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #1a1a1a;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  max-width: 800px;
}

.demo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.demo-image {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}

.demo-item h3 {
  padding: 1rem;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

.contact-intro {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-details {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details p strong {
  margin-right: 0.5rem;
}

.contact-details a {
  color: #001f3f;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

footer {
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .header-content {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header-nav {
    margin-left: 0;
  }
  .header-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.25rem;
  }
  .why-work-layout {
    flex-direction: column;
    text-align: center;
  }
  .why-work-image {
    margin-top: 1rem;
    text-align: center;
  }
  .dual-cta {
    flex-direction: column;
    align-items: center;
  }
  .cta-box {
    width: 100%;
  }
  .pricing-section .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .site-logo {
    height: 2.5rem;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .content-section p {
    padding: 0 1rem;
  }
  .pricing-section .pricing-cards .pricing-card {
    padding: 1.5rem 1rem;
  }
  .contact-details {
    padding: 1rem;
    text-align: center;
  }
  .demo-image {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pricing-section {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}
.pricing-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-section .pricing-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
.pricing-section .pricing-toggle {
  margin-bottom: 2rem;
}
.pricing-section .pricing-toggle button {
  background: #eaeaea;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
}
.pricing-section .pricing-toggle button.active {
  background: #001f3f;
  color: #fff;
}
.pricing-section .pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.pricing-section .pricing-cards .pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 480px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.pricing-section .pricing-cards .pricing-card.featured {
  border: 2px solid #001f3f;
}
.pricing-section .pricing-cards .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.pricing-section .pricing-cards .pricing-card .price {
  font-size: 2rem;
  margin: 0.5rem 0;
}
.pricing-section .pricing-cards .pricing-card .price span {
  font-size: 1rem;
  color: #555;
}
.pricing-section .pricing-cards .pricing-card .description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.pricing-section .pricing-cards .pricing-card ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.25rem;
}
.pricing-section .pricing-cards .pricing-card ul li {
  margin-bottom: 0.5rem;
}
.pricing-section .pricing-cards .pricing-card .select-button {
  margin-top: 1rem;
  background: #001f3f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pricing-section .pricing-cards .pricing-card .select-button:hover {
  background: #003366;
}

.pricing-category {
  margin-bottom: 4rem;
}

.pricing-category h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: #00bcd4;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-button:hover {
  background: #0097a7;
}

.tab-button.active {
  background: #007C91;
  color: #fff;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing-heading {
  font-size: 2.2rem;
  color: #001f3f;
  margin-bottom: 0.5rem;
}

.pricing-subheading {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-box {
  margin: 5rem auto;
  text-align: center;
  max-width: 1000px;
}

.comparison-box h2 {
  font-size: 2.2rem;
  color: #001f3f;
  margin-bottom: 0.75rem;
}

.comparison-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.comparison-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 2.2rem;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.comparison-card h3 {
  font-size: 1.4rem;
  color: #001f3f;
  margin-bottom: 1rem;
  text-align: center;
}

.comparison-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  color: #333;
}

.comparison-card li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-card li::before {
  content: "✔️";
  font-size: 1rem;
  line-height: 1;
}

.comparison-card li.warning::before {
  content: "⚠️";
}

.comparison-card li.cost::before {
  content: "💷";
}

.card-summary {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid #00BCD4;
  border-radius: 6px;
}/*# sourceMappingURL=main.css.map */