.no-card {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  min-height: 120vh;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  overflow-x: hidden;
  color: #333;
}

section {
min-width: 100%;
}

/* Landing Page Styles */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  left: 0;
  right: 0;
  /* Full-bleed hero: flush to screen edges regardless of body padding */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -20px;
  width: 100vw;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 i {
  margin-right: 20px;
  color: #64ffda;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #81429e, #701d87);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgb(203, 79, 238, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgb(138, 32, 177, 0.4);
}

.cta-button.large {
  padding: 20px 50px;
  font-size: 1.2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.applications {
  padding: 80px 0;
  background: white;
}

.applications h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Let the applications section use the full screen width */
.applications .container {
  max-width: 100vw !important;
  width: 100vw !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Desktop: 2 cards per row with 250px minimum */
@media (min-width: 768px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
  }
}

/* XL screens: maintain 2 cards per row */
@media (min-width: 1200px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
  }
}

.application-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #7b1a9e;
}

.card-icon {
  font-size: 2.5rem;
  color: #8d2e99;
  align-self: flex-start;
}

.badge {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.application-badge {
  background: linear-gradient(45deg, #722d8b, #8f13a0);
  color: white;
}

.service-badge {
  background: linear-gradient(45deg, #2196F3, #1976D2);
  color: white;
}

.application-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.application-card p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.features {
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #555;
}

.feature i {
  color: #8d2e99;
  margin-right: 10px;
  width: 20px;
}

.card-summary {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #8d2e99;
}

.card-summary p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Expandable details inside cards */
.details-block {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}

.details-block summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 600;
  color: #2e7d32;
  display: flex;
  align-items: center;
}

.details-block summary::before {
  content: "\f0fe"; /* plus-square */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #8d2e99;
}

.details-block[open] summary::before {
  content: "\f146"; /* minus-square */
}

.details-content {
  padding: 14px 16px 16px 16px;
  color: #444;
}

.details-content h4,
.details-content h5 {
  color: #222;
  margin: 14px 0 10px 0;
  font-weight: 700;
}

.details-content p {
  margin: 10px 0 12px 0;
  line-height: 1.7;
}

.details-content ul,
.details-content ol {
  margin: 10px 0 14px 22px;
}

.details-content li {
  margin: 6px 0 8px 0;
  line-height: 1.65;
}

.app-button {
  display: inline-block;
  background: linear-gradient(45deg, #8d2e99, #8b2ca5);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgb(123, 17, 172, 0.3);
}

.why-choose {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit {
  text-align: center;
  padding: 30px 20px;
}

.benefit i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit p {
  color: #666;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  background-color: #2a2550 !important; /* fallback */
  color: #ffffff !important;
  text-align: center;
}

/* Fix white-on-white: remove white card styling from CTA/Footer containers */
.cta-section .container,
.footer .container {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Kill any residual white backgrounds in CTA except the button */
.cta-section .container > *:not(.cta-button),
.cta-section .container > *:not(.cta-button) * {
  background: transparent !important;
  box-shadow: none !important;
}

/* Ensure legibility even if something applies text-shadow */
.cta-section h2,
.cta-section p {
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Ensure CTA section background and text */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
}

.cta-section * {
  color: white !important;
}

/* Ensure CTA text is readable on dark gradient */
.cta-section h2,
.cta-section p,
.cta-section a,
.cta-section i {
  color: #ffffff !important;
}

/* Subtle note below CTA button */
.pricing-note {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
/* Navigation Styles */
.navbar {
  position: fixed;
  top: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  margin-top: 10px;
  border-bottom: 1px solid rgba(179, 102, 255, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu li:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  margin: 0 0.8rem;
  font-weight: 300;
  font-size: 0.7rem;
}

.nav-menu a {
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  font-size: 0.7rem;
}

.nav-menu a i {
  font-size: 0.6rem;
  min-width: 10px;
  max-width: 12px;
  width: 0.6rem;
  height: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-menu a:hover {
  color: #b366ff;
}

.nav-menu a.active {
  color: #b366ff;
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(179, 102, 255, 0.3);
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

/* Legal Footer */
.legal-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  padding: 8px 0;
  border-top: 1px solid rgba(179, 102, 255, 0.3);
  z-index: 1001;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 1rem;
  position: relative;
  font-size: 11px;
  overflow: hidden;
}

.legal-links a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #330066, #b366ff);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(179, 102, 255, 0.5);
}

.legal-links a:hover::before {
  width: 90%;
}

.legal-links a:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.legal-links a:hover {
  color: #b366ff;
}

/* Embedded preview frame styling (used on main page cards) */
.embed-container {
  margin-top: 12px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.embed-container iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ====== Card Screenshot Gallery (16:9) ====== */
.card-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.gallery-tip {
  margin: 8px 0 6px 0;
  font-size: 0.85rem;
  color: #666;
}

.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e9ecef;
  background: #f5f7fa;
}

.card-thumb::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 fallback for browsers without aspect-ratio */
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card-thumb.expanded {
  grid-column: 1 / -1;
  cursor: zoom-out;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-thumb,
.card-thumb img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  cursor: pointer;
}

.lightbox { display: none; }
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  object-fit: contain;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .card-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .card-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

/* Larger screens: display all 3 images in one row */
@media (min-width: 1280px) {
  .card-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
    width: 100%;
  }
  
  .card-thumb {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .card-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
}

@media (min-width: 1600px) {
  .container {
    width: 90vw;
    padding: 0 3vw;
  }
  
  .card-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    max-width: 100%;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 1.5rem;
  position: relative;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.footer-links a:hover {
  color: #b366ff;
}

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

/* Questionnaire Specific Styles */
.questionnaire-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  margin: 0;
}

body.questionnaire {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  width: 100vw;
}

/* Purchase Options Styles */
.purchase-options-container {
  margin-top: 15px;
}

.purchase-option {
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.purchase-option:hover {
  border-color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.purchase-option.selected {
  border-color: #4CAF50;
  background: #f8fff8;
}

/* When a card is selected, make the top header large and green */
.purchase-option.selected .option-header {
  background: linear-gradient(45deg, #2e7d32, #4CAF50);
  color: #ffffff;
  padding-top: 22px;
  padding-bottom: 22px;
}

.purchase-option.selected .option-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}

.purchase-option.selected .option-title i {
  color: #ffffff;
}

.purchase-option.selected .application-tag,
.purchase-option.selected .service-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.purchase-option.selected .option-header input[type="checkbox"] {
  accent-color: #ffffff;
}

.option-header {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #e1e5e9;
  transition: background 0.25s ease, padding 0.2s ease, color 0.2s ease;
}

.option-header input[type="checkbox"] {
  margin-right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.option-title {
  display: flex;
  align-items: center;
  flex: 1;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  margin: 0;
}

.option-title i {
  margin-right: 12px;
  font-size: 1.5rem;
  color: #4CAF50;
  width: 30px;
}

.option-title span {
  margin-right: 10px;
}

.application-tag {
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-tag {
  background: linear-gradient(45deg, #2196F3, #1976D2);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-summary {
  padding: 20px 25px 25px 25px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.75;
  display: none;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 0 0 10px 10px;
  border-top: 2px solid #e1e5e9;
  margin-top: 5px;
}

.option-summary h5 {
  color: #222;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
  text-align: center;
  letter-spacing: 0.2px;
}

.option-summary h6 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 14px 0;
  padding: 12px 14px;
  background: rgba(76, 175, 80, 0.08);
  border-left: 3px solid #4CAF50;
  border-radius: 5px;
  letter-spacing: 0.1px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.option-summary .feature-details {
  margin-top: 18px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
}

.option-summary ul, .option-summary ol {
  margin: 16px 0 24px 0;
  padding: 0 0 8px 22px;
}

.option-summary li {
  margin: 10px 0 14px 0;
  line-height: 1.75;
  position: relative;
  padding-left: 6px;
  padding-bottom: 6px;
}

.option-summary ul li::before {
  content: "•";
  color: #4CAF50;
  font-weight: 700;
  position: absolute;
  left: -15px;
  font-size: 1rem;
}

.option-summary ol li {
  padding-left: 10px;
  counter-increment: step-counter;
}

.option-summary ol {
  counter-reset: step-counter;
}

.option-summary ol li::before {
  content: counter(step-counter);
  background: #4CAF50;
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: absolute;
  left: -26px;
  top: 2px;
}

.option-summary strong {
  color: #222;
  font-weight: 600;
}

.option-summary b {
  color: #222;
  font-weight: 600;
}

.option-summary li strong,
.option-summary li b {
  color: #222;
  font-weight: 600;
}

.option-summary p strong,
.option-summary p b {
  color: #222;
  font-weight: 600;
}

.option-summary p {
  margin: 14px 0 24px 0;
  text-align: justify;
  line-height: 1.75;
}

.option-summary .feature-details p {
  margin: 12px 0 22px 0;
  text-align: justify;
  line-height: 1.7;
}

.option-summary .feature-details > h6:first-child {
  margin-top: 0;
}

.option-summary .feature-details > *:not(:last-child) {
  margin-bottom: 24px;
}

.option-summary .feature-details ul p {
  margin: 8px 0 18px 0;
}

.option-summary .feature-details ol p {
  margin: 8px 0 18px 0;
}

.option-summary > p:first-of-type {
  font-size: 1.02rem;
  color: #555;
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  line-height: 1.6;
}

.option-summary > p:last-child {
  margin-top: 28px;
  padding: 18px;
  background: linear-gradient(45deg, #4CAF50, #45a049);
  color: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  line-height: 1.6;
}

.purchase-option.selected .option-summary {
  display: block;
}

.selected-options-summary {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  border-left: 4px solid #4CAF50;
}

.selected-options-summary h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.selected-options-summary h4 i {
  margin-right: 8px;
  color: #4CAF50;
}

.selected-summary-content {
  color: #555;
}

.no-selection {
  color: #999;
  font-style: italic;
}

.selected-app {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 3px solid #4CAF50;
}

.selected-app:last-child {
  margin-bottom: 0;
}

.selected-app h5 {
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.selected-app h5 i {
  margin-right: 8px;
  color: #4CAF50;
}

.selected-app p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 90%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.header {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.logo-icon {
  font-size: 3.5em;
  color: #4CAF50; /* A pleasant green */
  margin-bottom: 10px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.header p {
  font-size: 1em;
  color: #666;
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
  font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
  outline: none;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.api-key-helper {
  margin-bottom: 8px;
}

.no-api-key-label {
  font-size: 0.85em;
  color: #666;
}

.clickable-link {
  color: #4CAF50;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}

.clickable-link:hover {
  color: #45a049;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

button[type="submit"]:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.message-area {
  margin-top: 25px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1em;
  display: none; /* Hidden by default */
}

.message-area.success {
  background-color: #e6ffe6;
  color: #28a745;
  border: 1px solid #28a745;
}

.message-area.error {
  background-color: #ffe6e6;
  color: #dc3545;
  border: 1px solid #dc3545;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0 6px;
  }
  
  .application-card {
    padding: 20px;
    margin: 0;
  }

  /* Remove side padding from the applications container on mobile */
  .applications .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  
  .container {
      padding: 15px;
      margin: 0;
      width: 100%;
      max-width: 100%;
  }

  h1 {
      font-size: 1.8em;
  }

  .logo-icon {
      font-size: 3em;
  }

  .form-group label {
      font-size: 0.9em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  button[type="submit"] {
      padding: 10px 12px;
      font-size: 0.95em;
  }

  button[type="submit"] {
      margin-top: 15px;
  }
  
  .option-summary {
    padding: 15px 20px 20px 20px;
    font-size: 0.9rem;
  }
  
  .option-summary h5 {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
  }
  
  .option-summary h6 {
    font-size: 1.05rem;
    padding: 12px 15px;
    margin: 30px 0 15px 0;
    color: #333;
    font-weight: 600;
  }
  
  /* Ensure contrast for strong/bold inside green callout */
  .option-summary > p:last-child strong,
  .option-summary > p:last-child b {
    color: #ffffff;
    font-weight: 700;
  }
  
  .option-summary .feature-details {
    padding: 20px;
    margin-top: 20px;
  }
  
  .option-summary ol li::before {
    width: 18px;
    height: 18px;
    left: -25px;
    font-size: 0.7rem;
  }
  
  .option-summary ul, .option-summary ol {
    padding: 0 0 0 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .container {
      padding: 20px;
  }

  h1 {
      font-size: 1.5em;
  }

  .logo-icon {
      font-size: 2.5em;
  }

  .header p {
      font-size: 0.9em;
  }
  
  .option-summary {
    padding: 12px 15px 15px 15px;
    font-size: 0.85rem;
  }
  
  .option-summary h5 {
    font-size: 1.1rem;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
  }
  
  .option-summary h6 {
    font-size: 1rem;
    padding: 10px 12px;
    margin: 25px 0 12px 0;
    color: #333;
    font-weight: 600;
  }
  
  .option-summary .feature-details {
    padding: 15px;
    margin-top: 18px;
  }
  
  .option-summary ol li::before {
    width: 16px;
    height: 16px;
    left: -22px;
    font-size: 0.65rem;
  }
  
  .option-summary ul, .option-summary ol {
    padding: 0 0 0 12px;
  }
  
  .option-summary ul li::before {
    left: -12px;
  }
}



/* Engage Users Section */
.engage-users,
.why-choose,
.cta-section {
  background: white;
  color: black;
  padding: 60px 0;
  text-align: center;
  width: 100vw;
}

.engage-users .container,
.engage-content {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 15px;
  color: black;
  background: white;
  padding: 40px;
}


.engage-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: black !important;
}

.engage-questions {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.question-text {
  font-size: 1.3rem;
  margin: 25px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333 !important;
}

.question-text i {
  color: #ffd700;
  font-size: 1.2rem;
}

.answer-text {
  font-size: 1.1rem;
  margin: 0 0 20px;
  padding-left: 35px;
  font-style: italic;
  opacity: 0.95;
  line-height: 1.6;
  color: #555 !important;
}

.engage-cta {
  text-align: center;
  margin-top: 40px;
}

.engage-cta .cta-text {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #333 !important;
}

@media (max-width: 768px) {
  .engage-content h2 {
    font-size: 2rem;
  }
  
  .question-text {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .answer-text {
    padding-left: 0;
    font-size: 1rem;
  }
  
  .engage-cta .cta-text {
    font-size: 1.2rem;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 1rem;
  position: relative;
  font-size: 0.9rem;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  color: #764ba2;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.footer-links a:hover {
  color: #b366ff; /* purple hover to match palette */
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

/* Optional: legal footer variant (if ever used) aligned to site palette */
.legal-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  padding: 8px 0;
  border-top: 1px solid rgba(118, 75, 162, 0.3);
  z-index: 1001;
}

/* ====== Site Footer (applies to the <footer> element) ====== */
footer {
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(118, 75, 162, 0.35);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: #bbbbbb;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 1rem;
  position: relative;
  font-size: 11px;
}

.legal-links a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(118, 75, 162, 0.5);
}

.legal-links a:hover::before {
  width: 90%;
}

.legal-links a:not(:last-child)::after {
  content: "|";
  color: #764ba2;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.legal-links a:hover {
  color: #b366ff;
}