﻿/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #0d0b2e;
  background-image:
    radial-gradient(ellipse at 75% 5%, rgba(45, 27, 105, 0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(26, 16, 64, 0.6) 0%, transparent 50%);
  min-height: 100vh;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 46, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 9px;
  padding: 4px;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.nav-brand-sub {
  font-size: 0.58rem;
  color: #7a8bbf;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-block;
  padding: 9px 26px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 22px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 84px 24px 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  max-width: 820px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7a8bbf;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.hero-title .accent {
  color: #4fc8e4;
}

.hero-desc {
  color: #a0aece;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  list-style: none;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  max-width: 620px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: #ccd6f6;
}

.hero-bullets li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1.5px solid #4fc8e4;
  background-color: rgba(79, 200, 228, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234fc8e4' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 22px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid rgba(79, 200, 228, 0.6);
  color: #d9f7ff;
  background: rgba(79, 200, 228, 0.1);
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: rgba(79, 200, 228, 0.2);
  border-color: rgba(79, 200, 228, 0.95);
  transform: translateY(-2px);
}

.trial-badge {
  background: rgba(128, 101, 150, 0.25);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: #c4b5fd;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ===== APP PREVIEW (hero right) ===== */
.hero-visual {
  position: relative;
}

.app-preview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px 26px;
  backdrop-filter: blur(10px);
}

.app-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.app-preview-logo {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 7px;
  padding: 3px;
  object-fit: contain;
}

.app-preview-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.app-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.app-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.app-stat-label {
  font-size: 0.7rem;
  color: #7a8bbf;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.app-stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.app-stat-value.green { color: #4ade80; }
.app-stat-value.cyan  { color: #4fc8e4; }

.app-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.app-module {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 11px 6px 9px;
  text-align: center;
  font-size: 0.72rem;
  color: #8b9cc8;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.app-module:hover {
  background: rgba(79, 200, 228, 0.08);
  color: #4fc8e4;
  border-color: rgba(79, 200, 228, 0.2);
}

.app-module-icon {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

/* ===== SECTION COMMONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.section-subtitle {
  text-align: center;
  color: #7a8bbf;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.15s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 200, 228, 0.3);
}

.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}

.feature-desc {
  font-size: 0.9rem;
  color: #7a8bbf;
  line-height: 1.65;
}

/* ===== PLANS ===== */
.plans-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plans-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 30px 28px;
  min-width: 200px;
  max-width: 240px;
  flex: 1;
  transition: transform 0.15s, border-color 0.2s;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.featured {
  border-color: rgba(79, 200, 228, 0.45);
  background: rgba(79, 200, 228, 0.05);
}

.plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 4px;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.plan-saving {
  font-size: 0.85rem;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 6px;
  min-height: 20px;
}

.plan-monthly {
  font-size: 0.8rem;
  color: #7a8bbf;
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  margin: 0;
}

.plan-features li {
  font-size: 0.88rem;
  color: #a0aece;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-features li::before {
  content: 'v';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section-wrapper {
  text-align: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 36px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #ccd6f6;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  margin-top: 16px;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.testimonial-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.testimonial-btn:hover {
  background: rgba(79, 200, 228, 0.18);
}

.testimonial-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.15s;
}

.dot.active {
  background: #4fc8e4;
}

/* ===== VALUE PROPS BAR ===== */
.value-bar {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 24px;
}

.value-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.intelligence-tagline {
  text-align: left;
  flex-shrink: 0;
}

.intelligence-tagline .intel-line {
  font-size: 1.2rem;
  color: #a0aece;
}

.intelligence-tagline .intel-word {
  color: #4fc8e4;
  font-weight: 800;
}

.intelligence-tagline .intel-sub {
  font-size: 0.9rem;
  color: #7a8bbf;
  margin-top: 5px;
}

.value-bar-contact {
  text-align: right;
  flex-shrink: 0;
}

.value-bar-contact-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 9px;
}

.value-bar-contact-item {
  font-size: 0.9rem;
  color: #a0aece;
  margin: 5px 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 24px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #7a8bbf;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-contact h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 9px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: #7a8bbf;
  margin: 4px 0;
}

.footer-company {
  font-size: 0.82rem;
  color: #4a5580;
  text-align: right;
}

/* ===== SAMPLES PAGE ===== */
.samples-header {
  background: linear-gradient(160deg, rgba(45, 27, 105, 0.55) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 24px 52px;
  text-align: center;
}

.samples-header-inner {
  max-width: 700px;
  margin: 0 auto;
}

.samples-back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7a8bbf;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.15s;
}

.samples-back:hover {
  color: #4fc8e4;
}

.samples-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7a8bbf;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.samples-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}

.samples-desc {
  color: #a0aece;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.samples-section {
  padding-top: 52px;
  padding-bottom: 60px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.sample-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.18s, border-color 0.2s, box-shadow 0.2s;
}

.sample-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 200, 228, 0.35);
  box-shadow: 0 8px 32px rgba(79, 200, 228, 0.08);
}

.sample-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sample-tile-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.sample-tile-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
}

.badge-report {
  background: rgba(79, 200, 228, 0.12);
  color: #4fc8e4;
  border: 1px solid rgba(79, 200, 228, 0.3);
}

.badge-receipt {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-clean {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.badge-letterhead {
  background: rgba(167, 139, 250, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.sample-tile-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Saira', 'Roboto', Arial, sans-serif;
}

.sample-tile-desc {
  font-size: 0.87rem;
  color: #7a8bbf;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}

.sample-tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(79, 200, 228, 0.1);
  border: 1px solid rgba(79, 200, 228, 0.4);
  color: #4fc8e4;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 22px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

.sample-tile-btn:hover {
  background: rgba(79, 200, 228, 0.2);
  border-color: rgba(79, 200, 228, 0.8);
  transform: translateY(-1px);
}

.btn-arrow {
  font-style: normal;
  font-size: 1rem;
}

.samples-cta-strip {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 24px;
}

.samples-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

.samples-cta-text {
  font-size: 1.1rem;
  color: #a0aece;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .hero {
    padding: 52px 20px 44px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .value-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .intelligence-tagline {
    text-align: center;
  }

  .value-bar-contact {
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-company {
    text-align: center;
  }
}
