*, *::before, *::after { box-sizing: border-box; }
:root {
  --nav-h: 60px;              /* fixed nav height; hero + overlay offsets derive from it */
  --hero-h: min(100vh, 800px); /* single source of truth for hero/overlay/content offsets */
}
html, body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; color: #333; font-size: 16px; scroll-behavior: smooth; }

/* Modern Table Styling */
table, th, td {
  border: 1px solid #e0e0e0;
  border-collapse: collapse;
  font-size: 1em;
  padding: 16px;
}
.table-scroll {
  /* Wide pricing tables can legitimately need more room than a phone screen.
     A plain block div clips/scrolls reliably; overflow-x on <table> itself
     doesn't, since auto table-layout treats width as a minimum, not a cap. */
  overflow-x: auto;
}
table {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: white;
}
th {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
tr:nth-child(even) {
  background: #f8f9fa;
}
tr:hover {
  background: #f0f4f8;
  transition: background 0.3s ease;
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

ul {
  text-align: left;
  margin-left: 0;      /* Optional: removes extra indentation */
  padding-left: 10px;  /* Default browser value, adjust as needed */
}
li {
  text-align: left;
}

 
/* Modern Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-brand {
  color: #fff;
  font-family: 'Lustria', serif;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.hamburger {
  display: none;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger svg { display: block; }
#nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
  margin: 0;
}
#nav-links li a {
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 6px;
  display: inline-block;
}
#nav-links li a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.home-section { position: fixed; top: var(--nav-h); left: 0; width: 100%; background: #333; z-index: 0; }
.video-wrapper { position: relative; width: 100%; overflow: hidden; }
.video-container { position: relative; width: 100%; height: var(--hero-h); overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; z-index: 1; pointer-events: none; }
.video-overlay { position: absolute; top: calc(-1 * var(--hero-h)); left: 0; width: 100%; height: var(--hero-h); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 10; will-change: transform; }
.video-title { font-family: 'Lustria', serif; font-size: 48px; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); margin-bottom: 10px; }
.video-subtitle { font-family: 'Poppins', sans-serif; font-size: 24px; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); margin: 0; font-weight: 400; }

/* Modern Section Styling with Enhanced Separation */
section {
  position: relative;
  padding: 90px 0;
  border-bottom: 3px solid #d0d0d0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
}

/* Decorative Section Divider */
section::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Services Section - White background with subtle shadow */
.section-services {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding: 90px 0;
  border-bottom: 4px solid #e0e0e0;
}

/* Gallery Section - Light background with stronger contrast */
.section-gallery {
  background: linear-gradient(to bottom, #f5f7fa 0%, #e8ecf1 100%);
  padding: 90px 0;
  border-bottom: 4px solid #d0d5db;
}

/* About Section - Clean gradient with enhanced separation */
.section-about {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 100px 0;
  position: relative;
  border-bottom: 5px solid #1a2f5a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Subtle overlay pattern for About section */
.section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  opacity: 0.5;
  pointer-events: none;
}

/* Contact Section - White background with stronger separation */
.section-contact {
  background: #ffffff;
  padding: 90px 0;
  border-bottom: 4px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Pricing Section - Light background with enhanced border */
.section-pricing {
  background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 100%);
  padding: 90px 0;
  border-bottom: 4px solid #d0d5db;
}

/* Feature Box Improvements */
.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 30px;
}
.col-md-4 {
  width: 45%;
  padding: 15px;
}
.feature-box {
  padding: 30px;
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.feature-box img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}
.feature-box h3 {
  font-size: 24px;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}
.feature-box p, .feature-box ul {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}
/* Gallery Improvements */
.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Modern Section Titles with Enhanced Decoration */
.section-title {
  font-size: 36px;
  color: #1e3c72;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
}
.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  margin: 20px auto 0;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}
.section-title::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.1;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section-subtitle {
  color: #666;
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

/* About Section Content - Keep existing with z-index for overlay */
.section-about h2,
.section-about h3,
.section-about p,
.section-about ul {
  position: relative;
  z-index: 1;
}
.section-about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.section-about h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}
.section-about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.95);
}
.section-about ul {
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}
.section-about ul li {
  margin-bottom: 12px;
}
/* Modern Contact Form */
#contact form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.contact-form input[type="submit"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 3px solid #667eea;
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 100;
  background: #ffffff;
  margin-top: calc(var(--hero-h) + var(--nav-h));
  min-height: 100vh;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 768px) {
  .hamburger { display: block; }
  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
  }
  #nav-links.show {
    display: flex !important;
  }
  #nav-links li {
    text-align: center;
    padding: 0;
    width: 100%;
  }
  #nav-links li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Enhanced mobile section spacing */
  section {
    padding: 60px 0;
  }
  .section-services,
  .section-gallery,
  .section-contact,
  .section-pricing {
    padding: 60px 0;
  }
  .section-about {
    padding: 70px 0;
  }

  /* Ensure section dividers are visible on mobile */
  section::after {
    width: 80px;
    height: 4px;
  }

  :root { --hero-h: 500px; }
  .col-md-4 { width: 100%; }
  .video-title { font-size: 32px; }
  .video-subtitle { font-size: 18px; }
  .section-title { font-size: 28px; }
  .feature-box { padding: 20px; }
  .feature-box img { max-width: 150px; }
}

@media (max-width: 480px) {
  :root { --hero-h: 400px; }
  .video-title { font-size: 24px; }
  .video-subtitle { font-size: 16px; }
  .section-title { font-size: 20px; }
  .feature-box h3 { font-size: 18px; }
  .feature-box img { max-width: 120px; }
}

/* Respect users who prefer reduced motion: no smooth scroll, parallax (see JS), or hover motion */
@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .feature-box:hover, .process-step:hover, .gallery-img:hover,
  #nav-links li a:hover, .contact-form input[type="submit"]:hover { transform: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== NEW SECTIONS STYLING ===== */

/* Process Section */
.section-process {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-bottom: 4px solid #b8c5d6;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 1;
}
.process-number svg { width: 26px; height: 26px; }
.step-label {
  color: #764ba2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.web-page .process-steps { position: relative; }
.web-page .process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0.3;
  z-index: 0;
}
@media (max-width: 768px) {
  .web-page .process-steps::before { display: none; }
}

.process-step h3 {
  color: #1e3c72;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-step p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ Section */
.section-faq {
  background: white;
  border-bottom: 4px solid #e0e0e0;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #e9ecef;
  border-left-color: #764ba2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  color: #1e3c72;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
}

.faq-question::before {
  content: "Q:";
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 47px;
}

.faq-answer p {
  margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }

  .process-step {
    min-width: 100%;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 0;
    margin-top: 10px;
  }

  .faq-question::before {
    margin-right: 10px;
  }
}

/* ===== Hub / splitter page ===== */
.hub-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}
.hub-header {
  text-align: center;
  padding: 60px 20px 30px;
}
.hub-brand {
  font-family: 'Lustria', serif;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.hub-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin: 10px 0 0;
}
.hub-panels {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 20px auto 60px;
  padding: 0 20px;
}
.hub-panel {
  flex: 1 1 340px;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.hub-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}
.hub-panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.hub-panel-icon {
  width: 100%;
  height: 220px;
  display: block;
  overflow: hidden;
}
.hub-panel-icon svg { display: block; width: 100%; height: 100%; }
.hub-panel-icon .cursor-blink {
  animation: cursorBlink 1.1s steps(1) infinite;
}
@keyframes cursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hub-panel-icon .cursor-blink { animation: none; opacity: 1; }
}
.hub-panel-body {
  padding: 25px 25px 30px;
  text-align: center;
}
.hub-panel-body h2 {
  font-size: 22px;
  color: #1e3c72;
  margin: 0 0 10px;
  font-weight: 700;
}
.hub-panel-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.hub-panel-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: #667eea;
  letter-spacing: 0.3px;
}
.hub-footer {
  text-align: center;
  padding: 25px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hub-footer a {
  color: #fff;
}

@media (max-width: 480px) {
  .hub-header { padding: 40px 20px 20px; }
  .hub-brand { font-size: 32px; }
  .hub-tagline { font-size: 16px; }
}

/* ===== /web/ page ===== */
/* No video hero here, so the nav doesn't need to be fixed/overlaid like on /drone/ */
.web-page .main-nav {
  /* relative (not static): stays in normal document flow like static, but
     still anchors the mobile #nav-links dropdown (position:absolute) right
     below the bar instead of it falling back to the viewport as its
     containing block and rendering off in the wrong place. */
  position: relative;
  box-shadow: none;
}
.section-web-hero {
  background: linear-gradient(120deg, #1e3c72 0%, #2a5298 25%, #6a5cc0 50%, #2a5298 75%, #1e3c72 100%);
  background-size: 320% 320%;
  animation: heroGradientShift 8s ease-in-out infinite;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.web-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}
.web-hero-text { flex: 1 1 420px; }
.web-hero-visual {
  flex: 1 1 320px;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.web-hero-visual svg { width: 100%; height: auto; display: block; }
.web-hero-title {
  font-family: 'Lustria', serif;
  font-size: 44px;
  margin: 0 0 20px;
}
.web-hero-subtitle {
  font-size: 19px;
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.web-hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.web-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 900px) {
  .web-hero-inner { flex-direction: column; text-align: center; gap: 40px; }
  .web-hero-text { flex: none; }
  .web-hero-subtitle { margin: 0 auto 30px; }
  .web-hero-visual { max-width: 300px; }
}
@media (max-width: 768px) {
  .web-hero-title { font-size: 32px; }
  .web-hero-subtitle { font-size: 17px; }
  .section-web-hero { padding: 70px 0; }
}
@media (max-width: 480px) {
  .web-hero-title { font-size: 26px; }
}


/* ===== /web/ page — pricing card (replaces the shared <table> pattern for a single flat-rate offer) ===== */
.pricing-card {
  max-width: 480px;
  margin: 40px auto 0;
  background: white;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 30px rgba(30,60,114,0.12);
  border: 1px solid #e6eaf0;
  text-align: center;
}
.pricing-card-price { margin-bottom: 8px; }
.pricing-card-price .amount {
  font-family: 'Lustria', serif;
  font-size: 48px;
  font-weight: 700;
  color: #1e3c72;
}
.pricing-card-price .period {
  font-size: 16px;
  color: #666;
  margin-left: 4px;
}
.pricing-card-note {
  color: #666;
  font-size: 14px;
  margin: 0 0 30px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #eef1f5;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.pricing-features li:first-child { border-top: none; }
.pricing-features li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: #667eea; }
.pricing-features li strong { color: #1e3c72; }

/* ===== /web/ page — FAQ as native <details>/<summary> accordions ===== */
details.faq-item {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
details.faq-item:hover {
  background: #e9ecef;
  border-left-color: #764ba2;
}
details.faq-item summary.faq-question {
  color: #1e3c72;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary.faq-question::before {
  content: "Q:";
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}
details.faq-item summary.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #764ba2;
  border-bottom: 2px solid #764ba2;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details.faq-item[open] summary.faq-question::after { transform: rotate(-135deg); }
details.faq-item .faq-answer {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 47px;
  margin-top: 15px;
}
details.faq-item .faq-answer p { margin: 0; }
@media (max-width: 768px) {
  details.faq-item summary.faq-question { font-size: 16px; }
  details.faq-item .faq-answer { padding-left: 0; }
}

/* ===== Scroll-reveal (used on /web/ only — JS adds .reveal, toggles .is-visible) ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== /web/ hero — animated wireframe globe (replaces the static browser mockup) ===== */
.hero-globe { transform-box: fill-box; }
.globe-spin-slow   { transform-origin: 160px 160px; animation: globeSpin 22s linear infinite; }
.globe-spin-slower { transform-origin: 160px 160px; animation: globeSpin 30s linear infinite reverse; }
.globe-spin-slowest{ transform-origin: 160px 160px; animation: globeSpin 38s linear infinite; }
.globe-arc-a { transform-origin: 160px 160px; animation: globeSpin 55s linear infinite; }
.globe-arc-b { transform-origin: 160px 160px; animation: globeSpin 70s linear infinite reverse; }
@keyframes globeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.globe-dot { animation: dotTwinkle 3.2s ease-in-out infinite; }
.globe-dot:nth-child(3n)   { animation-delay: 0.6s; }
.globe-dot:nth-child(5n)   { animation-delay: 1.4s; }
.globe-dot:nth-child(7n)   { animation-delay: 2.1s; }
@keyframes dotTwinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
