/* =====================================================
   Innovations App Lab LLC — Landing Page
   Palette: dark navy / black background, bright blue accents
   Fonts: Montserrat (headings), Open Sans (body)
   ===================================================== */

:root {
  --color-bg: #060b1a;
  --color-bg-alt: #0a1226;
  --color-card-bg: #0c1530;
  --color-border: #1c2b52;
  --color-white: #ffffff;
  --color-text-muted: #9fb3d1;
  --color-blue: #00a3e0;
  --color-blue-bright: #2196f3;
  --color-blue-gradient: linear-gradient(135deg, #1e6fd9 0%, #00a3e0 100%);
  --font-heading: 'Montserrat', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===================== HEADER ===================== */

.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(28, 43, 82, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}

.header-logo .logo-img {
  height: 46px;
  width: auto;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-img {
  height: 40px;
  width: auto;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-wordmark-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--color-white);
  white-space: nowrap;
}

.logo-wordmark-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  color: var(--color-blue);
  white-space: nowrap;
}

.header-nav .nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--color-white);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

/* ===================== HERO ===================== */

.hero-content {
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 130px 24px 110px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 163, 224, 0.25);
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 24px auto 40px;
}

.get-started-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: var(--color-blue-gradient);
  border: none;
  border-radius: 999px;
  padding: 16px 44px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 163, 224, 0.5);
}

/* ===================== PROCESS SECTION ===================== */

.process-section {
  background-color: var(--color-bg);
  padding: 80px 24px 100px;
  text-align: center;
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--color-blue);
  margin-bottom: 48px;
}

.process-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.process-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
}

.process-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.process-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ===================== FOOTER ===================== */

.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(28, 43, 82, 0.6);
  padding: 24px 40px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-content p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-left {
  text-align: left;
}

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

.footer-right {
  text-align: right;
}

/* ===================== PAGE HERO (sub-pages) ===================== */

.page-hero {
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 90px 24px 70px;
  border-bottom: 1px solid rgba(28, 43, 82, 0.6);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.2;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 20px auto 0;
}

/* ===================== GENERIC SECTION ===================== */

.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 14px;
}

.section-title .accent {
  color: var(--color-blue);
}

.section-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ===================== PROCESS DETAIL (Our Process page) ===================== */

.process-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(0, 163, 224, 0.3);
}

.process-step-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 6px;
}

.process-step-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===================== CTA BAND ===================== */

.cta-band {
  background: linear-gradient(135deg, rgba(0, 163, 224, 0.12) 0%, rgba(6, 11, 26, 0.4) 100%);
  border-top: 1px solid rgba(28, 43, 82, 0.6);
  border-bottom: 1px solid rgba(28, 43, 82, 0.6);
  text-align: center;
  padding: 70px 24px;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-band p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

/* ===================== SERVICES ===================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
}

.service-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 163, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.service-card > p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

/* ===================== PRICING ===================== */

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.pricing-toggle-label.active {
  color: var(--color-white);
}

.pricing-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.pricing-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue-gradient);
  transition: transform 0.25s ease;
}

.pricing-toggle-switch.on .pricing-toggle-knob {
  transform: translateX(24px);
}

.pricing-grid.pricing-panel {
  display: none;
}

.pricing-grid.pricing-panel.active {
  display: grid;
}

.pricing-addon {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
  padding-top: 16px;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--color-blue);
  background: linear-gradient(180deg, rgba(0, 163, 224, 0.1) 0%, var(--color-card-bg) 30%);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue-gradient);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: var(--color-blue);
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-card .price-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.pricing-cta {
  display: inline-block;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}

.pricing-card.featured .pricing-cta {
  background: var(--color-blue-gradient);
  border: none;
}

.pricing-cta:hover {
  background-color: rgba(0, 163, 224, 0.15);
}

/* ===================== PORTFOLIO ===================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.portfolio-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 160px;
  background: linear-gradient(135deg, #0c1530 0%, #142657 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}

.portfolio-body {
  padding: 22px 24px 26px;
}

.portfolio-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 10px;
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.portfolio-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===================== TESTIMONIALS ===================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 30px 26px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-white);
  margin-bottom: 22px;
}

.testimonial-quote::before {
  content: open-quote;
}

.testimonial-quote::after {
  content: close-quote;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-blue);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ===================== CONTACT / START YOUR APP ===================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.form-group .optional {
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5c6f94;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

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

.form-submit-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--color-white);
  background: var(--color-blue-gradient);
  border: none;
  border-radius: 999px;
  padding: 15px 36px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 163, 224, 0.45);
}

.form-note {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 14px;
  text-align: center;
}

.contact-sidebar h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 22px;
}

.sidebar-step {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.sidebar-step-number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-step-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.sidebar-step-body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-info-block {
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
  padding-top: 26px;
}

.contact-info-block p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.contact-info-block a {
  color: var(--color-blue);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .hero-title {
    font-size: 38px;
  }

  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .services-grid,
  .pricing-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .process-step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .header-content {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }

  .header-nav .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    padding: 90px 20px 70px;
  }

  .hero-title {
    font-size: 30px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 70px 20px 50px;
  }

  .page-hero-title {
    font-size: 26px;
  }

  .section {
    padding: 60px 20px;
  }

  .services-grid,
  .pricing-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band h2 {
    font-size: 22px;
  }
}

/* =====================================================
   UPGRADE PACK — animations, glow accents, new sections
   ===================================================== */

html {
  scroll-behavior: smooth;
}

/* Blurred sticky header */
.site-header {
  background-color: rgba(6, 11, 26, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Scroll-reveal (only hides content when JS is running) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero upgrades */
.hero-content {
  position: relative;
  overflow: hidden;
}

.hero-content::before,
.hero-content::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero-content::before {
  width: 420px;
  height: 420px;
  background: #0ea5e9;
  top: -160px;
  left: -120px;
}

.hero-content::after {
  width: 520px;
  height: 520px;
  background: #1e40af;
  bottom: -220px;
  right: -140px;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7dd3fc;
  border: 1px solid rgba(0, 163, 224, 0.4);
  background: rgba(0, 163, 224, 0.08);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.gradient-text {
  background: linear-gradient(90deg, #38bdf8, #00a3e0 45%, #4f8ff0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ghost-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  padding: 16px 44px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  background-color: rgba(0, 163, 224, 0.15);
  transform: translateY(-2px);
}

/* Floating stat strip */
.stat-strip {
  position: relative;
  z-index: 5;
  max-width: 1080px;
  margin: -46px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(2, 6, 16, 0.5);
}

.stat-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.stat b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-white);
}

.stat span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 34px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 163, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Tech stack strip */
.tech-strip {
  text-align: center;
}

.tech-strip-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-badge {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: #bcd3f2;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  padding: 10px 18px;
  border-radius: 999px;
}

.tech-badge em {
  color: var(--color-blue);
  font-style: normal;
}

/* Process page timeline */
.process-detail-list {
  position: relative;
}

.process-detail-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-border) 8%, var(--color-border) 92%, transparent);
}

.process-detail-list .process-step {
  border-bottom: none;
  position: relative;
}

.deliverable-chip {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #7dd3fc;
  background: rgba(0, 163, 224, 0.08);
  border: 1px solid rgba(0, 163, 224, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Include strip (Services) */
.include-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 20px;
}

.include-item .tick {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 16px;
}

.include-item p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.include-item p b {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 2px;
}

/* FAQ accordion */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  color: var(--color-blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 320px;
}

.faq-a p {
  padding: 0 22px 20px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* CTA band glow */
.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

/* Upgraded footer */
.site-footer {
  padding: 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 56px 40px 40px;
}

.footer-brand .footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--color-blue);
}

.footer-links-col p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(28, 43, 82, 0.6);
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-blue-gradient);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.4);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Flowing process tiles */
.process-cards {
  align-items: stretch;
}

.process-cards .process-card {
  position: relative;
  animation: tile-float 5.5s ease-in-out infinite;
  will-change: transform;
}

.process-cards .process-card:nth-child(1) { animation-delay: 0s; }
.process-cards .process-card:nth-child(2) { animation-delay: 0.7s; }
.process-cards .process-card:nth-child(3) { animation-delay: 1.4s; }
.process-cards .process-card:nth-child(4) { animation-delay: 2.1s; }

@keyframes tile-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* flowing light line across the top of each tile */
.process-cards .process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, #00a3e0 50%, transparent 100%);
  background-size: 200% 100%;
  animation: flow-line 3.2s linear infinite;
  opacity: 0.75;
}

@keyframes flow-line {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

/* flow arrows between tiles */
.process-cards .process-card:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 700;
  opacity: 0.85;
  text-shadow: 0 0 12px rgba(0, 163, 224, 0.6);
  z-index: 2;
}

@media (max-width: 900px) {
  .process-cards .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-cards .process-card,
  .process-cards .process-card::before {
    animation: none;
  }
}

/* Upgrade pack responsive */
@media (max-width: 900px) {
  .stat-strip,
  .why-grid,
  .include-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    margin-top: -30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 24px 32px;
  }

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

  .process-detail-list::before {
    left: 21px;
  }
}

/* ===================== FORM STATUS / SUCCESS ===================== */

.form-status {
  font-family: var(--font-body);
  font-size: 13.5px;
  margin-top: 12px;
  text-align: center;
  color: var(--color-text-muted);
}

.form-status.error {
  color: #f87171;
}

.form-success {
  text-align: center;
  padding: 30px 10px;
}

.form-success-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-blue-gradient);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 28px rgba(0, 163, 224, 0.4);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

.form-success-sub a {
  color: var(--color-blue);
}

/* ===================== PRODUCTS PAGE ===================== */

.product-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 36px;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.product-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.product-head h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-white);
}

.product-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Legal links, directly under the app name.
   Inside .product-head's text column rather than a row of its own, so it needs
   no margin juggling against the head's 26px bottom gap and it reads in the
   order it belongs: name, then what the app is, then the terms it ships under.
   Muted by default - these matter to the person looking for them and to the two
   app stores, and to nobody else on the page. */
.product-legal {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  /* The head stays a flex row on phones, so this column is ~230px wide at
     360px. Wrapping is the expected outcome there, not a fallback. */
  flex-wrap: wrap;
}

.product-legal a {
  color: var(--color-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 163, 224, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.product-legal a:hover,
.product-legal a:focus-visible {
  color: var(--color-blue-bright);
  border-color: var(--color-blue-bright);
}

.product-legal-sep {
  color: var(--color-border);
}

.product-qr-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.product-qr {
  width: 132px;
  height: 132px;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  flex-shrink: 0;
}

.product-qr img {
  width: 100%;
  height: 100%;
}

.product-store-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qr-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: #7dd3fc;
  margin-bottom: 2px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 9px 18px;
  background: #000;
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

a.store-badge:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

.store-badge .store-icon {
  font-size: 22px;
}

.store-badge .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge .store-text small {
  font-size: 10px;
  font-weight: 500;
  color: #cbd5e1;
}

.store-badge .store-text b {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.store-badge.coming-soon {
  opacity: 0.55;
  cursor: default;
}

.store-badge.coming-soon .store-text b {
  color: #94a3b8;
}

.product-shots {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-blue) rgba(28, 43, 82, 0.5);
}

.product-shots img {
  height: 400px;
  width: auto;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  scroll-snap-align: start;
}

.product-shots::-webkit-scrollbar {
  height: 8px;
}

.product-shots::-webkit-scrollbar-track {
  background: rgba(28, 43, 82, 0.5);
  border-radius: 999px;
}

.product-shots::-webkit-scrollbar-thumb {
  background: var(--color-blue-gradient);
  border-radius: 999px;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 850px;
}

/* website product */
.product-site-shot {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  margin-bottom: 26px;
}

.visit-site-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  background: var(--color-blue-gradient);
  border-radius: 999px;
  padding: 12px 30px;
  margin-top: 18px;
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.3);
  transition: transform 0.2s ease;
}

.visit-site-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .product-card {
    padding: 26px 20px;
  }

  .product-shots img {
    height: 300px;
  }
}
