/* ========================================
   EZAIX — Shared Design System
   Extracted from wireframe index.html
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0D0B14;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.12s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.19s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.26s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.33s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(110, 51, 181, 0.15);
  padding: 0 24px;
}

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

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

.navbar-logo img {
  height: 160px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #B8B0C8;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-links a:hover {
  color: #FFFFFF;
  background: rgba(110, 51, 181, 0.15);
}

/* Products dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #B8B0C8;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.25);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #B8B0C8;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
  color: #FFFFFF;
  background: rgba(76, 28, 140, 0.4);
}

.nav-cta {
  background: #ED4DBF !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  background: #d43daa !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(237, 77, 191, 0.35) !important;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ED4DBF;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: #d43daa;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(237, 77, 191, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.btn-ghost:hover {
  border-color: #ED4DBF;
  background: rgba(237, 77, 191, 0.08);
  transform: translateY(-2px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(76, 28, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 77, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.hero h1 .accent-line {
  display: block;
  background: linear-gradient(135deg, #ED4DBF, #6E33B5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.55;
  color: #B8B0C8;
  max-width: 700px;
  margin: 0 auto 44px;
  font-weight: 400;
}

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

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.social-proof {
  background: #1A1525;
  border-top: 1px solid rgba(110, 51, 181, 0.12);
  border-bottom: 1px solid rgba(110, 51, 181, 0.12);
  padding: 48px 24px;
}

.social-proof-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8B0C8;
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.1;
}

.stat-item .stat-number .accent {
  color: #ED4DBF;
}

.stat-item .stat-label {
  font-size: 14px;
  color: #B8B0C8;
  margin-top: 6px;
  font-weight: 500;
}

/* ========================================
   MICROSOFT BADGE
   ======================================== */
.ms-badge {
  text-align: center;
  padding: 36px 24px;
  color: #B8B0C8;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ms-badge span {
  color: rgba(110, 51, 181, 0.5);
  margin: 0 14px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 20px;
  color: #B8B0C8;
  max-width: 550px;
  margin: 0 auto;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.products-section {
  padding: 100px 24px;
}

/* Featured card — full width */
.product-featured {
  background: linear-gradient(135deg, #4C1C8C, #3A1570);
  border-left: 4px solid #ED4DBF;
  border-radius: 16px;
  padding: 48px 52px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(76, 28, 140, 0.4);
}

.product-featured::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(237, 77, 191, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.badge-flagship {
  background: #ED4DBF;
  color: #FFFFFF;
}

.badge-new {
  background: #ED4DBF;
  color: #FFFFFF;
}

.product-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.product-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #ED4DBF;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #ED4DBF;
  transition: gap 0.2s ease;
}

.product-link:hover {
  gap: 12px;
}

/* 2x2 grid cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.15);
  border-radius: 16px;
  padding: 40px 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 51, 181, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card .product-tagline {
  color: #6E33B5;
}

.product-card .product-desc {
  color: #B8B0C8;
  font-size: 15px;
}

.product-card .product-link {
  color: #6E33B5;
}

.product-card .product-link:hover {
  color: #ED4DBF;
}

/* ========================================
   RESULT CARDS
   ======================================== */
.results-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0D0B14 0%, #12101C 50%, #0D0B14 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.result-card {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 77, 191, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.result-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(76, 28, 140, 0.25);
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
}

.result-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.result-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #B8B0C8;
}

/* ========================================
   HOW WE WORK / STEPS
   ======================================== */
.how-section {
  padding: 100px 24px;
}

.steps-container {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  position: relative;
  align-items: flex-start;
}

/* Connecting gradient line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 3px;
  background: linear-gradient(90deg, #ED4DBF, #6E33B5, #4C1C8C);
  border-radius: 2px;
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(237, 77, 191, 0.3);
}

.step-circle-1 {
  background: #ED4DBF;
  color: #FFFFFF;
}

.step-circle-2 {
  background: #6E33B5;
  color: #FFFFFF;
}

.step-circle-3 {
  background: #4C1C8C;
  color: #FFFFFF;
}

.step-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: #B8B0C8;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ========================================
   BOTTOM CTA
   ======================================== */
.bottom-cta {
  background: linear-gradient(135deg, #4C1C8C, #6E33B5);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 77, 191, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bottom-cta h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.bottom-cta .btn-primary {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding: 18px 44px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0A0812;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(110, 51, 181, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(110, 51, 181, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo img {
  height: 200px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  color: #B8B0C8;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #B8B0C8;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ED4DBF;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #B8B0C8;
}

.footer-bottom .ms-certs {
  color: rgba(110, 51, 181, 0.6);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal-links a {
  font-size: 13px;
  color: #B8B0C8;
  transition: color 0.2s ease;
}

.footer-bottom .legal-links a:hover {
  color: #ED4DBF;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 51, 181, 0.15);
  border: 1px solid rgba(110, 51, 181, 0.25);
  transition: all 0.2s;
}

.social-links a:hover {
  background: rgba(237, 77, 191, 0.2);
  border-color: #ED4DBF;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #B8B0C8;
}

.social-links a:hover svg {
  fill: #ED4DBF;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
  padding: 100px 24px;
}

.faq-item {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(110, 51, 181, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question:hover {
  color: #ED4DBF;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
  stroke: #B8B0C8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8B0C8;
}

/* ========================================
   GENERIC CARDS (dark bg, border, hover)
   ======================================== */
.card {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.15);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 51, 181, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   STYLED TABLES
   ======================================== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.styled-table thead th {
  background: rgba(76, 28, 140, 0.3);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid rgba(110, 51, 181, 0.3);
}

.styled-table tbody tr {
  background: #1A1525;
  border-bottom: 1px solid rgba(110, 51, 181, 0.1);
  transition: background 0.2s ease;
}

.styled-table tbody tr:hover {
  background: rgba(76, 28, 140, 0.2);
}

.styled-table td {
  padding: 14px 20px;
  color: #B8B0C8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .bottom-cta h2 {
    font-size: 36px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #1A1525;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(110, 51, 181, 0.2);
    gap: 4px;
  }

  .navbar-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(76, 28, 140, 0.15);
    border: none;
    box-shadow: none;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 4px 8px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: 140px 24px 80px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .product-featured {
    padding: 32px 28px;
  }

  .product-title {
    font-size: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .steps-container::before {
    display: none;
  }

  .bottom-cta h2 {
    font-size: 28px;
  }

  .bottom-cta p {
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .btn-primary, .btn-ghost {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .product-card {
    padding: 28px 24px;
  }

  .step-item p {
    max-width: 100%;
  }
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
  padding: 100px 24px;
  background: #12101E;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-card {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 51, 181, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.trust-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #B8B0C8;
}

.trust-badges {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #B8B0C8;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PROBLEM CARDS
   ======================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #1A1525;
  border: 1px solid rgba(110, 51, 181, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 51, 181, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.problem-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8B0C8;
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CREDIBILITY CALLOUT (Testimonial quote)
   ======================================== */
.credibility-callout {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(76, 28, 140, 0.12), rgba(110, 51, 181, 0.08));
  border: 1px solid rgba(110, 51, 181, 0.2);
  border-radius: 16px;
}

.credibility-callout p {
  font-size: 20px;
  line-height: 1.7;
  color: #FFFFFF;
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

.credibility-callout span {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: #B8B0C8;
  font-style: normal;
  font-weight: 500;
}

section.credibility-callout {
  margin: 80px auto;
}

@media (max-width: 768px) {
  .credibility-callout {
    padding: 40px 24px;
  }

  .credibility-callout p {
    font-size: 17px;
  }
}

/* ========================================
   PRODUCT SCREENSHOTS
   ======================================== */
.screenshot-preview {
  padding: 80px 0;
  background: #0F0D18;
}

.screenshot-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.screenshot-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ED4DBF;
  margin-bottom: 16px;
}

.screenshot-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.screenshot-subtext {
  text-align: center;
  font-size: 15px;
  color: #B8B0C8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(110,51,181,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(76,28,140,0.15);
}

.screenshot-frame img {
  width: 100%;
  display: block;
}

.screenshot-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(13,11,20,0.4) 100%);
}

/* Two-up screenshot grid */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.screenshot-grid .screenshot-frame {
  border-radius: 10px;
}

.screenshot-caption {
  text-align: center;
  font-size: 13px;
  color: #8A7FA0;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-heading {
    font-size: 24px;
  }
}
