/* INDUSTRIES SECTION */
.site-watermark {
  /* helper wrapper if needed */
}

/* Visually hidden but accessible (for screen readers/SEO-safe hidden text) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* FAQ accordion (shared styles) */
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background: rgba(255,255,255,0.03); border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,0.06); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.faq-q { width:100%; text-align:left; padding:16px 20px; background:transparent; border:0; color:var(--text); display:flex; justify-content:space-between; align-items:center; font-weight:700; cursor:pointer; font-size:1rem }
.faq-q:focus { outline:2px solid rgba(123,47,242,0.22); outline-offset:2px }
.faq-a { padding:0 20px; max-height:0; overflow:hidden; transition:max-height 0.32s ease, padding 0.32s ease; color: rgba(255,255,255,0.9); }
.faq-item.open .faq-a { padding:12px 20px 18px 20px; max-height:1000px }
.faq-icon { background: rgba(255,255,255,0.04); color:var(--text); padding:6px 10px; border-radius:8px; font-weight:700 }

/* Watermark: fixed, low-opacity background logo visible across the whole site */
body {
  position: relative;
  z-index: 0;
}

/* Watermark element (fixed) — use explicit element instead of body pseudo-element */
.site-watermark {
  position: fixed;
  inset: 0;
  background-image: url('assets/ssssdadw.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 85vmin;
  opacity: 0.16;
  pointer-events: none;
  z-index: 2; /* above section backgrounds but below content (content uses z-index:3) */
  filter: none;
  mix-blend-mode: normal;
}

/* Ensure primary page content renders above the watermark */
header, main, footer, .container, .hero-section, .automation-section, .features-section, .impact-section, .benefits-section {
  position: relative;
  z-index: 3;
}

.industries-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--bg-gradient);
  color: #fff;
  padding: 0;
  box-sizing: border-box;
}
.industries-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.industries-header {
  text-align: center;
  margin-bottom: 38px;
}
.industries-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.industries-subhead {
  color: var(--muted);
  font-size: 1.13rem;
  margin-bottom: 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  justify-items: center;
    --container: clamp(980px, 85vw, 1200px);
  padding: 0 12px;
}
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {

/* Hide long nav links on small screens to keep header tidy */
@media (max-width: 900px) {
  .nav-links { display: none; }
}
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
.industry-card {
  background: rgba(123,47,242,0.13);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(123,47,242,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 320px;
  transition: box-shadow 0.2s;
  border: 1.5px solid rgba(123,47,242,0.18);
}
.industry-card:hover {
  box-shadow: 0 8px 32px rgba(123,47,242,0.18);
}
.industry-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.industry-icon {
  margin-top: -24px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(76,175,80,0.12);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 2px;
  text-align: center;
}
.industry-desc {
  font-size: 0.97rem;
  color: #e5d6fa;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 2px;
}
.result-contrast {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff !important;
  background: none !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 #333;
}
.automation-card-icon svg, .feature-icon svg {
  fill: #F55A7A !important;
}
.highlight {
  font-size: 1.18rem;
  font-weight: 700;
  color: #7B2FF2;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #F5B8FF 0%, #7B2FF2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
/* AUTOMATION SECTION */
.automation-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--bg-gradient);
  color: #fff;
  padding: 0;
}
.automation-bg {
  width: 100%;
  padding: 64px 0 64px 0;
}
.automation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.automation-header {
  text-align: center;
  margin-bottom: 38px;
}
.automation-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.automation-subhead {
  color: var(--muted);
  font-size: 1.13rem;
  margin-bottom: 0;
}
.automation-main {
  display: flex;
  flex-direction: row;
  gap: 38px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 38px;
}
.automation-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.automation-card {
  background: rgba(74,28,110,0.22);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(74,28,110,0.13), 0 1.5px 8px 0 rgba(74,28,110,0.10);
  padding: 22px 28px 18px 28px;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(160,196,255,0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s cubic-bezier(.4,1.6,.6,1), border-color 0.22s;
}
.automation-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 12px 36px 0 rgba(80,40,120,0.22), 0 2.5px 12px 0 rgba(80,40,120,0.13);
  border-color: var(--primary);
}
.automation-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.automation-card-desc {
  font-size: 1.01rem;
  color: var(--muted);
  font-weight: 400;
}
.automation-right {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.workflow-card {
  background: rgba(74,28,110,0.22);
  border-radius: 18px;
  box-shadow: 0 8px 40px #2d115555;
  padding: 28px 32px 18px 32px;
  min-width: 340px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1.5px solid rgba(160,196,255,0.18);
  backdrop-filter: blur(14px);
  color: #fff;
}
.workflow-title {
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.workflow-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  width: 100%;
}
.workflow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 1.01rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-left: 0;
  flex-direction: column;
  align-items: flex-start;
}
.step-num {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #2d1155;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
  margin-right: 8px;
  font-size: 1.01rem;
}
.step-status {
  margin-left: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 2px 10px;
}
.step-status.done {
  background: #00e67633;
  color: #00e676;
}
.step-status.pending {
  background: #ffd60a33;
  color: #ffd60a;
}
.step-status.queue {
  background: #a0c4ff33;
  color: #a0c4ff;
}
.step-desc {
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 400;
  margin-left: 30px;
}
.workflow-result {
  background: rgba(160,196,255,0.13);
  color: #2d1155;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.08rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.result-title {
  color: #4a1c6e;
  margin-right: 8px;
}
.result-time {
  color: #00e676;
}
.automation-features {
  display: flex;
  flex-direction: row;
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin: 38px auto 0 auto;
  justify-content: center;
}
.automation-feature-card {
  background: rgba(74,28,110,0.22);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(74,28,110,0.13), 0 1.5px 8px 0 rgba(74,28,110,0.10);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 170px;
  border: 1.5px solid rgba(160,196,255,0.18);
  backdrop-filter: blur(14px);
  color: #fff;
  flex: 1 1 0;
  text-align: center;
  transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s cubic-bezier(.4,1.6,.6,1), border-color 0.22s;
}
.automation-feature-card:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 12px 36px 0 rgba(80,40,120,0.22), 0 2.5px 12px 0 rgba(80,40,120,0.13);
  border-color: var(--primary);
}
.automation-feature-card .feature-icon {
  font-size: 2.1rem;
  margin-bottom: 6px;
  color: var(--primary);
  filter: drop-shadow(0 2px 8px #a0c4ff33);
}
.automation-feature-card .feature-title {
  font-weight: 700;
  font-size: 1.13rem;
  color: #fff;
}
.automation-feature-card .feature-desc {
  color: var(--muted);
  font-size: 1.01rem;
}

@media (max-width: 1100px) {
  .automation-main, .automation-features {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .automation-features {
    margin-top: 24px;
  }
}
/* BENEFITS & IMPACT SECTION */
.benefits-section {
  background: linear-gradient(135deg, #1a0933 0%, #2d1155 100%);
  padding: 64px 0 64px 0;
  color: var(--text);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.benefits-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
.benefits-list {
  flex: 1 1 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 2px;
}
.benefit-icon {
  font-size: 1.25rem;
  color: #00e676;
  margin-right: 8px;
  display: inline-block;
}
.benefit-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.08rem;
  display: inline-block;
  margin-bottom: 1px;
}
.benefit-desc {
  color: var(--muted);
  font-size: 0.99rem;
  margin-left: 0.5em;
}
.impact-card {
  background: rgba(74,28,110,0.22);
  border-radius: 18px;
  box-shadow: 0 8px 40px #2d115555;
  padding: 32px 36px 18px 36px;
  min-width: 340px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  border: 1.5px solid rgba(160,196,255,0.18);
  backdrop-filter: blur(14px);
  color: #fff;
}
.impact-card-title {
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.impact-card-stat {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 6px 0 0 0;
  text-shadow: 0 2px 12px #a0c4ff33;
}
.impact-blue {
  color: #4f5dff;
}
.impact-card-desc {
  color: var(--muted);
  font-size: 1.01rem;
  margin-bottom: 2px;
  text-align: center;
}
.impact-card-bar {
  background: linear-gradient(90deg, #a0c4ff 0%, #4a1c6e 100%);
  color: #2d1155;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  font-weight: 500;
  margin-top: 18px;
  width: 100%;
  box-shadow: 0 2px 12px #a0c4ff33;
}
.impact-bar-icon {
  font-size: 1.15rem;
  margin-right: 2px;
  color: #4a1c6e;
}
.impact-bar-title {
  font-weight: 700;
  margin-right: 6px;
  color: #4a1c6e;
}
.impact-bar-desc {
  font-weight: 400;
  font-size: 0.97rem;
  color: #2d1155;
}

@media (max-width: 900px) {
  .benefits-content {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .impact-card {
    min-width: 0;
    max-width: 100%;
    margin-top: 18px;
  }
}
/* BADGES */
.badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.badge-blue {
  background: #4f5dff;
  color: #fff;
}

/* FEATURES SECTION */
.features-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #2d1155 0%, #4a1c6e 100%);
  color: var(--text);
  padding: 0;
}
/* Features page hero (green grid background used on standalone features page) */
.features-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 96px 0 120px 0;
  background: var(--bg-gradient);
  color: #fff;
  overflow: hidden;
}
.features-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.features-hero-inner { position: relative; z-index: 3; text-align:center; max-width:1100px; margin:0 auto; padding: 0 18px }
.features-hero-title { font-size: clamp(34px, 4.6vw, 56px); line-height:1.04; margin-bottom:14px; font-weight:800 }
.features-hero-subhead { color: rgba(255,255,255,0.82); max-width:64ch; margin:0 auto 22px; font-size:1.05rem }
.features-hero-pills { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:18px }
.features-hero .pill { background: #fff; color: #4a1c6e; border: none; padding:10px 16px; font-weight:700; border-radius:999px; box-shadow: 0 6px 18px rgba(74,28,110,0.14) }
.features-hero .pill svg { margin-right:8px; color: #4a1c6e }
.features-hero .pill i {
  margin-right: 8px;
  font-size: 16px;
  color: #4a1c6e;
  width: 18px;
  display: inline-block;
  text-align: center;
  vertical-align: -2px;
}

/* Icon placeholders for pills. Replace background-image URLs with production PNGs or use an icon font. */
.features-hero .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
.icon-architecture { background-image: url('assets/icon-architecture.png'); }
.icon-processing { background-image: url('assets/icon-processing.png'); }
.icon-ml { background-image: url('assets/icon-ml.png'); }
.icon-security { background-image: url('assets/icon-security.png'); }
.icon-apis { background-image: url('assets/icon-apis.png'); }
.icon-performance { background-image: url('assets/icon-performance.png'); }

/* Emoji/text fallback when PNGs aren't available */
.features-hero .icon:empty::before {
  content: attr(data-fallback);
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  width: 18px;
  text-align: center;
}


@media (max-width:900px){
  .features-hero { padding:64px 0 80px 0 }
  .features-hero-title { font-size: clamp(28px, 7vw, 40px) }
  .features-hero-pills { gap:10px }
}

/* Architecture section (purple theme) */
.architecture-section { padding: 64px 0; background: var(--bg-gradient); color: var(--text) }
.architecture-inner { max-width:1100px; margin:0 auto; text-align:center; }
.section-title { font-size: 1.8rem; font-weight:800; color: #fff; margin-bottom:8px }
.section-sub { color: rgba(255,255,255,0.84); margin-bottom:28px }
.arch-cards { display:flex; gap:20px; justify-content:center; align-items:stretch; margin-top:18px }
.arch-card { background: rgba(255,255,255,0.04); border-radius:12px; padding:22px; width:320px; box-shadow:0 12px 34px rgba(18,8,40,0.35); border:1.5px solid rgba(160,196,255,0.06); text-align:left; backdrop-filter: blur(10px) }
.arch-card .arch-icon { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; margin-bottom:10px }
.arch-card--green .arch-icon { background: linear-gradient(90deg,#7B2FF2,#A770FF) }
.arch-card--orange .arch-icon { background: linear-gradient(90deg,#9A77FF,#7B2FF2) }
.arch-card--blue .arch-icon { background: linear-gradient(90deg,#8C6BFF,#7B2FF2) }
.arch-title { font-weight:700; margin:6px 0 10px 0; color: #fff }
.arch-list { list-style:none; padding:0; margin:0; color: rgba(255,255,255,0.88) }
.arch-list li { margin-bottom:8px; padding-left:18px; position:relative }
.arch-list li:before { content:'\2713'; position:absolute; left:0; color: var(--primary); font-weight:700 }

@media (max-width:900px){
  .arch-cards { flex-direction:column; align-items:center }
  .arch-card { width:100%; max-width:520px }
}

/* Pipeline section (purple theme) */
.pipeline-section { padding: 64px 0 96px 0; background: linear-gradient(180deg, rgba(45,17,85,0.06), rgba(45,17,85,0.04)); color: var(--text) }
.pipeline-inner { max-width:1100px; margin:0 auto; text-align:center }
.pipeline-cards { display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-top:22px; align-items:start }
.pipeline-card { background: rgba(255,255,255,0.03); border-radius:12px; padding:20px; text-align:left; border:1.5px solid rgba(160,196,255,0.06); box-shadow:0 12px 30px rgba(18,8,40,0.2); backdrop-filter: blur(10px) }
.pipeline-card .pipeline-icon { width:44px; height:44px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center; font-size:18px; color:#fff; margin-bottom:10px }
.pipeline-card--left .pipeline-icon { background: linear-gradient(90deg,#7B2FF2,#A770FF) }
.pipeline-card--right .pipeline-icon { background: linear-gradient(90deg,#8C6BFF,#7B2FF2) }
.pipeline-title { font-weight:800; margin:6px 0 8px 0; color:#fff }
.pipeline-desc { color: rgba(255,255,255,0.86); margin-bottom:10px }
.tech-head { color: var(--primary); font-weight:700; margin-top:8px; margin-bottom:8px }
.tech-list { list-style:none; padding:0; margin:0; color: rgba(255,255,255,0.9) }
.tech-list li { margin-bottom:6px; padding-left:18px; position:relative }
.tech-list li:before { content:'</>'; position:absolute; left:0; color: var(--primary); font-weight:700 }
.confidence { margin-top:14px; color: rgba(255,255,255,0.9); font-weight:700 }
.conf-bar { height:10px; background:linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border-radius:999px; margin-top:8px; overflow:hidden }
.conf-fill { height:100%; background: linear-gradient(90deg,var(--primary), #7B2FF2) }
.conf-note { color: var(--primary); font-weight:700; margin-top:6px }
.supported { color: rgba(255,255,255,0.9); font-weight:700; margin-top:12px }
.script-tags { margin-top:8px; display:flex; gap:8px; flex-wrap:wrap }
.script-tags span { background: rgba(160,196,255,0.08); color: var(--primary); padding:6px 8px; border-radius:8px; font-weight:700; font-size:0.85rem }

@media (max-width:900px){
  .pipeline-cards { grid-template-columns: 1fr }
}

/* Machine Learning Intelligence section */
.ml-section { padding: 72px 0; background: var(--bg-gradient); color: var(--text) }
.ml-inner { max-width:1100px; margin:0 auto; text-align:center }
.ml-cards { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-top:28px; align-items:stretch }
.ml-card { background: rgba(255,255,255,0.03); border-radius:12px; padding:28px; text-align:left; border:1.5px solid rgba(160,196,255,0.06); box-shadow:0 18px 40px rgba(18,8,40,0.22); backdrop-filter: blur(10px) }
.ml-icon { width:64px; height:64px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; margin:0 auto 14px auto }
.ml-icon--blue { background: linear-gradient(90deg,#4f8bff,#7B2FF2) }
.ml-icon--green { background: linear-gradient(90deg,#34c38f,#7B2FF2) }
.ml-icon--purple { background: linear-gradient(90deg,#7B2FF2,#A770FF) }
.ml-title { font-weight:800; color:#fff; margin:6px 0 8px 0; text-align:center }
.ml-desc { color: rgba(255,255,255,0.86); font-size:0.98rem; text-align:center; margin-bottom:12px }
.ml-subhead { color: var(--primary); font-weight:700; margin-top:10px; margin-bottom:8px }
.ml-list { list-style:none; padding:0; margin:0; color: rgba(255,255,255,0.9) }
.ml-list li { padding-left:20px; margin-bottom:8px; position:relative }
.ml-list li:before { content:'\2713'; position:absolute; left:0; color: var(--primary); font-weight:700 }

@media (max-width:1100px){
  .ml-cards { grid-template-columns: 1fr 1fr }
}
@media (max-width:700px){
  .ml-cards { grid-template-columns: 1fr }
  .ml-card { text-align:left }
  .ml-title, .ml-desc { text-align:left }
}

/* Security (Zero-Trust) section */
.security-section { padding: 72px 0; background: linear-gradient(180deg, rgba(13,6,23,0.95), rgba(45,17,85,1)); color: var(--text) }
.security-inner { max-width:1100px; margin:0 auto; text-align:center }
.security-cards { display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-top:28px }
.sec-card { background: rgba(255,255,255,0.03); border-radius:14px; padding:22px; text-align:left; border:1.5px solid rgba(160,196,255,0.06); box-shadow:0 18px 40px rgba(8,6,20,0.45); backdrop-filter: blur(10px) }
.sec-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; color:#fff; margin-bottom:12px }
.sec-icon--red { background: linear-gradient(90deg,#ff6b6b,#d65bd6) }
.sec-icon--orange { background: linear-gradient(90deg,#ffb86b,#d67bff) }
.sec-icon--blue { background: linear-gradient(90deg,#6fb3ff,#8c6bff) }
.sec-icon--green { background: linear-gradient(90deg,#3bd38a,#7B2FF2) }
.sec-title { font-weight:800; color:#fff; margin:4px 0 6px 0 }
.sec-desc { color: rgba(255,255,255,0.84); margin-bottom:8px }
.sec-head { color: var(--primary); font-weight:700; margin-top:8px; margin-bottom:8px }
.sec-list { list-style:none; padding:0; margin:0; color: rgba(255,255,255,0.9) }
.sec-list li { margin-bottom:8px; padding-left:18px; position:relative }
.sec-list li:before { content: '🔒'; position:absolute; left:0; color: var(--primary); font-weight:700 }

@media (max-width:900px){
  .security-cards { grid-template-columns: 1fr }
}
.features-bg {
  width: 100%;
  padding: 64px 0 32px 0;
}
.features-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-header {
  text-align: center;
  margin-bottom: 38px;
}
.features-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.features-subhead {
  color: var(--muted);
  font-size: 1.13rem;
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  width: 100%;
}
.feature-card {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(80,40,120,0.13), 0 1.5px 8px 0 rgba(80,40,120,0.10);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 170px;
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s cubic-bezier(.4,1.6,.6,1), border-color 0.22s;
  color: #fff;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 12px 36px 0 rgba(80,40,120,0.22), 0 2.5px 12px 0 rgba(80,40,120,0.13);
  border-color: var(--primary);
}
.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 6px;
  color: var(--primary);
  filter: drop-shadow(0 2px 8px #a0c4ff33);
}
.feature-title {
  font-weight: 700;
  font-size: 1.13rem;
  color: #fff;
}
.feature-desc {
  color: var(--muted);
  font-size: 1.01rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 600px) and (max-width: 1100px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* IMPACT SECTION */
.impact-section {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  text-align: center;
  padding: 56px 0 32px 0;
  background: linear-gradient(135deg, #1a0933 0%, #2d1155 100%);
  color: #fff;
}
.impact-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
}
.impact-desc {
  color: #fff;
  font-size: 1.13rem;
  max-width: 600px;
  margin: 0 auto;
}
/* NAVBAR */
.navbar {
  width: 100%;
  /* glassy navbar */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.brand {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}
.dropdown-toggle {
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(20,10,40,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  z-index: 1050;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: flex;
}
.dropdown-menu a { color: #fff; padding: 8px 10px; border-radius:6px; text-decoration:none }
.dropdown-menu a:hover { background: rgba(255,255,255,0.04) }
.nav-links a {
  color: var(--text);
  opacity: 0.85;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.btn {
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.btn-yellow {
  background: linear-gradient(90deg, #ffe066 0%, #ffd60a 100%);
  color: #2d1155;
  box-shadow: 0 2px 12px #ffd60a33;
}
.btn-orange {
  background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
  color: #fff;
  box-shadow: 0 2px 12px #ff7e5f33;
}
.btn-lang {
  background: #fff;
  color: #2d1155;
  font-weight: 700;
  padding: 9px 14px;
}

/* HERO SECTION */
.hero-main {
  padding-top: 24px;
}

/* Logo image sizing (header + hero) */
.site-logo { height: 52px; width: auto; display: block; }
.site-logo--small { height: 40px; }

/* Ensure logo image does not overflow its container */
.nav-left img { max-height: 52px; max-width: 320px; display: block; }

/* Bigger logo inside hero pill */
.logo-block .site-logo { height: 80px; }

@media (max-width: 1400px) {
  .logo-block .site-logo { height: 68px; }
}

@media (max-width: 900px) {
  .logo-block .site-logo { height: 48px; }
  .logo-block { max-width: 260px; padding: 6px 10px; }
}
.hero-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  min-height: 70vh;
}
.hero-left {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.upgrade-badge {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.logo-block {
  background: #fff;
  border-radius: 28px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 8px 28px #a0c4ff18;
  max-width: 360px; /* shrink the long white pill */
  width: fit-content;
}
.logo-m {
  color: #4a1c6e;
  font-size: 2.5rem;
  font-family: serif;
  font-weight: 900;
}
.logo-text {
  color: #222;
  font-weight: 700;
  font-size: 2.1rem;
}
.logo-sub {
  display: block;
  font-size: 0.95rem;
  color: #444;
  font-weight: 400;
  margin-left: 8px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
}
.hero-desc {
  color: var(--muted);
  font-size: 1.13rem;
  margin-bottom: 18px;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #ffe066;
  margin-top: 8px;
}
.star-rating {
  color: #ffe066;
  font-weight: 700;
}
.meta-divider {
  width: 6px;
  height: 6px;
  background: #ffe066;
  border-radius: 50%;
  display: inline-block;
}
.meta-note {
  color: var(--muted);
  font-size: 1rem;
}

/* HERO RIGHT (Dashboard Card) */
.hero-right {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 320px;
}
.dashboard-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(45,17,85,0.12);
  padding: 36px 40px 28px 40px;
  width: clamp(420px, 40vw, 760px); /* larger on wide screens */
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: none;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms;
  will-change: transform;
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.dashboard-title {
  font-weight: 800;
  font-size: 1.18rem;
  color: #222;
}
.dashboard-status.online {
  width: 10px;
  height: 10px;
  background: #00e676;
  border-radius: 50%;
  display: inline-block;
}
.dashboard-desc {
  color: #888;
  font-size: 0.98rem;
  margin-left: auto;
}
.dashboard-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.metric {
  flex: 1 1 0;
  background: #f6f6fa;
  border-radius: 12px;
  padding: 16px 0 12px 0;
  text-align: center;
}
.metric-label {
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4a1c6e;
}
.dashboard-doc {
  background: #f6f6fa;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  color: #333;
}
.doc-title {
  font-weight: 600;
}
.doc-status {
  color: #4a1c6e;
  font-size: 0.97rem;
  margin-left: 8px;
}
.doc-time {
  color: #00e676;
  font-size: 0.97rem;
  margin-left: auto;
}
.dashboard-breakdown {
  margin: 8px 0 0 0;
}
.breakdown-row {
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 6px;
}
.breakdown-bar {
  display: flex;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #ececec;
  margin-bottom: 2px;
}
.bar {
  display: inline-block;
  height: 100%;
}
.bar.pdf { background: #a0c4ff; }
.bar.docx { background: #ffd60a; }
.bar.xlsx { background: #00e676; }
.bar.jpeg { background: #ffb347; }
.bar.png { background: #ff7e5f; }
.dashboard-footer {
  background: #f6f6fa;
  border-radius: 10px;
  padding: 12px 0 8px 0;
  text-align: center;
  margin-top: 8px;
}
.footer-title {
  font-weight: 700;
  color: #4a1c6e;
  font-size: 1.08rem;
}
.footer-desc {
  color: #333;
  font-size: 1.01rem;
}
.footer-desc span {
  color: #888;
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .hero-right {
    min-width: 0;
    justify-content: center;
  }
  .dashboard-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
  }
  .dashboard-metrics { flex-direction: column; gap: 12px }
  .metric { padding: 10px 0 }
  .metric-value { font-size: 1.2rem }
  .hero-title { font-size: 1.9rem }
  .hero-desc { font-size: 1rem }
}

/* HARDWARE MODELS SECTION */

.hardware-section {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  background: var(--bg-gradient);
  color: #fff;
  padding: 64px 0 40px;
}
.hardware-header {text-align:center; margin-bottom:18px}
.hardware-title {font-size:32px; margin:0; color:#fff; font-weight:800}
.hardware-sub {color:var(--muted); margin-top:8px}
.models-grid {
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  max-width: 1200px;
}
.model-card {
  background: rgba(74,28,110,0.22);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(45,17,85,0.18);
  border: 1px solid rgba(160,196,255,0.08);
  display:flex;
  flex-direction:column;
  gap:12px;
  width: 320px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.model-large {width: 520px}
.model-featured {position:relative}
.model-badge {position:absolute; top:12px; right:12px; background:rgba(255,255,255,0.06); color:#fff; padding:6px 10px; border-radius:999px; font-size:12px}
.model-icon {font-size:20px; width:52px; height:52px; display:flex; align-items:center; justify-content:center; background:rgba(123,47,242,0.12); border-radius:12px; margin: 0 auto}
.model-title {font-size:18px; font-weight:800; margin:4px 0; color:#fff; text-align:center}
.model-subtitle {color:var(--muted); font-size:13px; text-align:center}
.model-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.model-row{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:12px;
  background:rgba(160,196,255,0.06);
  border-radius:10px;
  font-size:13px;
  align-items:center;
  min-width:0;
}
.model-label {color:rgba(255,255,255,0.78); font-size:12px}
.model-value {font-weight:700; color:#fff}
.model-cta-wrap {margin-top:12px}
.model-cta-wrap .btn-outline {width:100%; border-color:rgba(160,196,255,0.14); color:#fff}
.model-cta-wrap .btn-primary {width:100%; background: linear-gradient(90deg, #7B2FF2 0%, #4a1c6e 100%); color:#fff}

@media (max-width: 720px) {
  .model-features {grid-template-columns: 1fr}
  .model-large {width: 100%}
  .model-card {width: 100%}
}
.hardware-note {color:rgba(255,255,255,0.78); font-size:12px; margin-top:14px;text-align:center}

@media (max-width: 1100px) {
  .models-grid {grid-template-columns: 1fr 1fr;}
  .model-large {grid-column: span 2}
}
@media (max-width: 720px) {
  .models-grid {grid-template-columns: 1fr}
  .model-large {grid-column: span 1}
}
:root {
  /* Backgrounds */
  --bg-main: #0f0518;
  --bg-gradient: linear-gradient(135deg, #0f0518 0%, #2d1155 50%, #4a1c6e 100%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Primary */
  --primary: #a0c4ff;
  --primary-dark: #7ba3d9;

  /* Status */
  --success: #00e676;
  --warning: #ffa726;
  --danger: #ef5350;

  /* Neutrals (derived, no new brand colors) */
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.55);

  --radius: 16px;
  --radius-sm: 12px;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);

  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg-main);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.bg {
  position: fixed;
  inset: 0;
  background: var(--bg-gradient);
  z-index: -2;
}

.bg::before {
  content: "";
  position: fixed;
  inset: -120px;
  background:
    radial-gradient(900px 480px at 15% 15%, rgba(160, 196, 255, 0.22), transparent 62%),
    radial-gradient(700px 420px at 85% 25%, rgba(160, 196, 255, 0.14), transparent 60%),
    radial-gradient(780px 520px at 50% 95%, rgba(255, 255, 255, 0.06), transparent 65%);
  filter: blur(0px);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.shots {
  padding: 24px 0 10px;
  display: grid;
  gap: 18px;
}

.shot {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brandMark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 14px 40px rgba(160, 196, 255, 0.25);
}

.brandName {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 18px;
}

.navLink {
  color: var(--muted);
  font-weight: 520;
}

.navLink:hover {
  color: var(--text);
}

.headerCtas {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 620;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btnPrimary {
  background: var(--primary);
  color: rgba(15, 5, 24, 0.95);
  box-shadow: 0 18px 50px rgba(160, 196, 255, 0.2);
}

.btnPrimary:hover {
  background: var(--primary-dark);
}

.btnGhost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btnGlass {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.btnGlass:hover,
.btnGhost:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding: 28px 0 12px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  margin: 0 0 14px;
}

.h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.gradientText {
  background: linear-gradient(90deg, rgba(160, 196, 255, 0.95), rgba(255, 255, 255, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 18px;
}

.heroCtas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

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

.stat {
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.statValue {
  font-size: 18px;
  font-weight: 720;
  letter-spacing: 0.2px;
}

.statLabel {
  color: var(--muted-2);
  font-size: 13px;
}

.heroCard {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heroCardHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dotRed {
  background: var(--danger);
}

.dotOrange {
  background: var(--warning);
}

.dotGreen {
  background: var(--success);
}

.spacer {
  flex: 1;
}

.badge {
  font-size: 12px;
  font-weight: 650;
  color: rgba(15, 5, 24, 0.95);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
}

.heroCardBody {
  padding: 16px;
}

.skeletonTitle {
  height: 14px;
  width: 60%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  margin-bottom: 12px;
}

.skeletonLine {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.skeletonLine.short {
  width: 70%;
}

.uploadTile {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.uploadIcon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(160, 196, 255, 0.14);
  border: 1px solid rgba(160, 196, 255, 0.28);
}

.uploadTitle {
  font-weight: 650;
}

.uploadDesc {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 42px 0;
}

.sectionHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.015em;
}

.h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
  margin: 0;
}

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

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.cardIcon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(160, 196, 255, 0.12);
  border: 1px solid rgba(160, 196, 255, 0.22);
  margin-bottom: 12px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.stepNumber {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(160, 196, 255, 0.14);
  border: 1px solid rgba(160, 196, 255, 0.25);
  font-weight: 720;
}

.stepTitle {
  font-weight: 680;
}

.priceHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.priceValue {
  font-size: 22px;
  font-weight: 760;
}

.list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.price.featured {
  border-color: rgba(160, 196, 255, 0.35);
  box-shadow: 0 24px 70px rgba(160, 196, 255, 0.14);
}

.cta {
  padding-bottom: 60px;
}

.ctaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.ctaForm {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.input {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 12px;
  min-width: 240px;
  color: var(--text);
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* CTA Section */
.cta-section {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  background: var(--bg-gradient);
  color: #fff;
}
.cta-bg {
  backdrop-filter: blur(6px);
  padding: 4rem 0;
}
.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.cta-title {
  font-size: 32px;
  margin: 0.25rem 0 0.5rem;
}
.cta-sub {
  color: rgba(255,255,255,0.92);
  max-width: 780px;
  margin: 0 auto 1.25rem;
}
.cta-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.cta-card {
  background: rgba(123,47,242,0.10);
  padding: 1rem;
  border-radius: 12px;
  width: 260px;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(123,47,242,0.14);
}
.cta-card-icon {margin-bottom: 0.5rem}
.cta-card-title {font-weight:700}
.cta-card-desc {font-size:13px; color:rgba(255,255,255,0.9)}
.cta-actions {display:flex; gap:0.75rem; justify-content:center; margin-top:1.25rem}
.btn-outline {background:transparent; border:1px solid rgba(160,196,255,0.14); color:#fff; padding:0.75rem 1rem; border-radius:8px}
.btn-primary {background: linear-gradient(90deg, #7B2FF2 0%, #4a1c6e 100%); color:#fff; padding:0.75rem 1rem; border-radius:8px; border:none}
.cta-meta {font-size:13px; color:rgba(255,255,255,0.88); margin-top:0.9rem}

@media (max-width: 900px) {
  .cta-cards {flex-direction: column; align-items: center}
  .cta-card {width: 100%; max-width: 420px}
}

.footer {
  padding: 24px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerBrand {
  font-weight: 680;
}

.footerLeft {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footerRight {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

  .sectionHeader {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    order: 3;
    justify-content: center;
    padding-top: 4px;
  }

  .headerCtas {
    margin-left: auto;
  }

  .ctaInner {
    flex-direction: column;
    align-items: stretch;
  }

  .ctaForm {
    justify-content: flex-start;
  }

  .input {
    min-width: 0;
    width: 100%;
  }
}

/* New footer styles */
.site-footer { background: linear-gradient(180deg,#0f0518 0%, #120617 100%); color: #dcd7e6; padding-top: 36px; }
.footer-grid { display: grid; grid-template-columns: 360px 1fr 1fr 360px; gap: 28px; align-items: start; padding: 36px 0 }
.footer-col { text-align: left }
.footer-logo { height: 44px; margin-bottom: 12px }
.footer-desc { color: rgba(255,255,255,0.8); max-width: 320px; margin-bottom: 12px }
.footer-socials { display:flex; gap:10px }
.social-link { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:rgba(255,255,255,0.03); border-radius:8px; color:var(--primary); text-decoration:none }
.footer-heading { font-size:1rem; font-weight:700; margin-bottom:12px; color:#fff }
.footer-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration:none }
.contact-item { margin-bottom:12px; color: rgba(255,255,255,0.85); font-size:0.95rem }

.site-footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); margin-top: 18px }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; padding:16px 0 }
.footer-bottom-inner a { color: rgba(255,255,255,0.7); margin-left:12px }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 320px; grid-auto-rows: auto; }
  .footer-col--brand { order: 1 }
  .footer-col--contact { order: 2 }
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap:18px }
  .footer-bottom-inner { flex-direction: column; gap: 8px }
}

/* Contact Section */
.contact-section {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(180deg, rgba(15,5,24,0.98) 0%, rgba(45,17,85,0.98) 100%);
  color: #fff;
  padding: 64px 0 48px;
}
.contact-bg { padding: 0 }
.contact-content { max-width: 1100px; margin: 0 auto; padding: 0 1rem; text-align: center }
.contact-title { font-size: 32px; margin: 0 0 6px; font-weight: 800 }
.contact-sub { color: var(--muted); margin-bottom: 28px }
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 28px; align-items: start }
.contact-left { display:flex; justify-content:flex-start }
.contact-cards { display:flex; flex-direction:column; gap:18px; align-items:flex-start }
.contact-card { background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); padding:18px; border-radius:12px; min-width:320px; max-width:380px; text-align:left }
.contact-card h4 { margin:0 0 8px; font-size:0.95rem; color:#f3f3f5 }
.card-line { color: rgba(255,255,255,0.78); font-size:0.92rem; line-height:1.4 }
.address-card { max-width: 520px }
.btn-green { background: #16c784; color: #072a18; padding:10px 14px; border-radius:8px; display:inline-block; margin-top:6px }

.contact-right { display:flex; justify-content:flex-end }
.contact-form { background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); padding:20px; border-radius:12px; width:100%; max-width:520px; text-align:left }
.form-note { font-weight:700; margin-bottom:10px }
.form-note span { font-weight:400; display:block; color:var(--muted); font-size:0.9rem }
.form-row { display:flex; gap:12px; margin-bottom:12px }
.form-row.single { flex-direction:column }
.input-wrap label { display:block; font-size:0.85rem; color:var(--muted); margin-bottom:6px }
.contact-input { width:100%; padding:10px 12px; border-radius:8px; background: rgba(0,0,0,0.18); border:1px solid rgba(255,255,255,0.06); color:var(--text) }
.contact-input::placeholder { color: rgba(255,255,255,0.35) }
.contact-textarea { width:100%; min-height:110px; padding:12px; border-radius:8px; background: rgba(0,0,0,0.18); border:1px solid rgba(255,255,255,0.06); color:var(--text); resize:vertical }
.form-actions { margin-top:8px }
.form-foot { font-size:0.82rem; color:var(--muted); margin-top:8px }

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 420px }
  .contact-card { max-width: 360px }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right { order: 2 }
  .contact-left { order: 1 }
  .contact-card { max-width: 100%; min-width: auto }
  .contact-form { max-width: 100% }
  .form-row { flex-direction: column }
}

/* Purple-themed Developer & Performance sections */
.developer-section { padding: 64px 0; }
.developer-section .section-title { color: #ffffff; font-weight:800; margin-bottom:6px }
.developer-section .section-sub { color: rgba(255,255,255,0.92); margin-bottom:28px }
.dev-inner { max-width: 1200px; margin: 0 auto }
.dev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px }
.dev-card { background: rgba(123,47,242,0.08); border-radius: 14px; padding: 22px; box-shadow: 0 12px 40px rgba(58,26,112,0.12); border:1px solid rgba(255,255,255,0.06); color:var(--text); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px) }
.dev-icon { width:44px; height:44px; border-radius:10px; background: linear-gradient(180deg,#9b59ff 0%, #7B2FF2 100%); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.1rem; margin-bottom:10px }
.dev-title { font-size:1.05rem; font-weight:800; margin-bottom:6px }
.dev-desc { color: rgba(255,255,255,0.9); margin-bottom:8px; font-weight:600 }
.dev-list { margin: 8px 0 0 18px; color: rgba(255,255,255,0.88) }
.dev-badges { display:flex; gap:8px; margin:8px 0 }
.badge { background: rgba(255,255,255,0.04); color: #e6d7ff; padding:6px 8px; border-radius:8px; font-weight:700; font-size:0.82rem; border:1px solid rgba(255,255,255,0.04) }
.badge--blue { background: rgba(255,255,255,0.04); color:#c7e0ff }
.badge--yellow { background: rgba(255,255,255,0.04); color:#fff0c2 }
.dev-mini { color: rgba(255,255,255,0.78); font-size:0.95rem }

.performance-section { background: linear-gradient(180deg, rgba(123,47,242,0.04), rgba(74,28,110,0.02)); padding: 64px 0; }
.perf-inner { max-width: 1200px; margin: 0 auto }
.perf-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top:18px }
.perf-card { background: rgba(123,47,242,0.06); border-radius: 12px; padding: 22px; text-align: center; box-shadow: 0 12px 36px rgba(58,26,112,0.10); border:1px solid rgba(255,255,255,0.04); color:var(--text); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px) }
.perf-metric { font-size: 2.6rem; font-weight:900; color:#ffffff; margin-bottom:6px }
.perf-metric--orange { color:#ffd08a }
.perf-metric--blue { color:#bcdcff }
.perf-metric--green { color:#9ff0c6 }
.perf-title { font-weight:800; color:#ffffff; margin-bottom:6px }
.perf-note { color: rgba(255,255,255,0.86); font-size:0.95rem }

@media (max-width: 1100px) {
  .dev-cards { grid-template-columns: 1fr }
  .perf-cards { grid-template-columns: repeat(2,1fr) }
}

@media (max-width: 700px) {
  .perf-cards { grid-template-columns: 1fr }
}
