/* ==========================================================================
   AltixDigital LLC — main stylesheet
   Light theme: near-white body #F9F8FC, dark text #14121E, fuchsia accent #D946EF
   ========================================================================== */

:root {
  --bg: #F9F8FC;
  --surface: #FFFFFF;
  --ink: #14121E;
  --muted: #4A4558;
  --faint: #6B6479;
  --accent: #D946EF;
  --accent-dark: #C026D3;
  --accent-soft: #F5D0FE;
  --accent-deep: #2E0A33;
  --line: #ECE9F4;
  --line-strong: #DED9EC;
  --shadow: 0 10px 30px rgba(46, 10, 51, 0.08);
  --shadow-lg: 0 18px 50px rgba(46, 10, 51, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

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

.btn-accent {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(217, 70, 239, 0.32);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.btn-ghost:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Pixel navigation
   -------------------------------------------------------------------------- */
.pixel-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--surface);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 4px 18px rgba(46, 10, 51, 0.06);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pixel-logo {
  display: grid;
  grid-template-columns: repeat(4, 7px);
  grid-auto-rows: 7px;
  gap: 2px;
}

.pixel-logo span {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background-color: var(--accent-soft);
}

.pixel-logo span.on {
  background-color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  padding: 11px 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--accent-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero — crystal
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  padding: 96px 0 88px;
}

.crystal-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background-color: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.crystal-copy h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
}

.crystal-copy h1 span {
  color: var(--accent-dark);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-trust li {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--accent);
}

/* Crystal stage */
.crystal-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 440px;
  margin: 0 auto;
}

.crystal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.28) 0%, rgba(245, 208, 254, 0.12) 45%, transparent 70%);
}

.crystal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 320px;
  filter: drop-shadow(0 18px 34px rgba(192, 38, 211, 0.35));
  animation: crystal-float 5.5s ease-in-out infinite;
}

.gem {
  position: relative;
  width: 180px;
  height: 320px;
  background-color: var(--accent-dark);
  clip-path: polygon(50% 0%, 100% 18%, 82% 100%, 50% 86%, 18% 100%, 0% 18%);
}

.facet {
  position: absolute;
  inset: 0;
}

.facet-left {
  background-color: #B0219A;
  clip-path: polygon(50% 0%, 0% 18%, 18% 100%, 50% 86%);
}

.facet-right {
  background-color: var(--accent);
  clip-path: polygon(50% 0%, 100% 18%, 82% 100%, 50% 86%);
}

.facet-center {
  background-color: var(--accent-soft);
  clip-path: polygon(50% 0%, 68% 22%, 50% 86%);
}

.edge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #FDF7FF;
  box-shadow: 0 0 16px #FFFFFF;
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 14px rgba(217, 70, 239, 0.9);
  animation: spark-pulse 2.8s ease-in-out infinite;
}

.spark-1 {
  top: 6%;
  left: 8%;
}

.spark-2 {
  top: 30%;
  right: -4%;
  animation-delay: 0.9s;
  width: 9px;
  height: 9px;
}

.spark-3 {
  bottom: 10%;
  left: 14%;
  animation-delay: 1.7s;
  width: 8px;
  height: 8px;
}

@keyframes crystal-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 12px)); }
}

@keyframes spark-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

/* --------------------------------------------------------------------------
   Statement row
   -------------------------------------------------------------------------- */
.statement-section {
  padding: 96px 0;
  background-color: var(--accent-deep);
}

.statement-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.statement-text {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.statement-text::before {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  background-color: var(--accent);
  margin-bottom: 26px;
  border-radius: 3px;
}

.statement-copy p {
  color: #F1E6F4;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.statement-copy p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 80px 0;
  background-color: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.stat {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat h3 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat p {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.stat-note {
  font-size: 14px;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   Capabilities (tabs)
   -------------------------------------------------------------------------- */
.capabilities-section {
  padding: 96px 0;
  background-color: var(--bg);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-button {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  background-color: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.tab-button.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.tab-panels {
  max-width: 860px;
  margin: 0 auto;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
  padding: 40px;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.tab-panel > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background-color: var(--accent-soft);
  border-radius: 5px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process-section {
  padding: 96px 0;
  background-color: var(--surface);
  border-top: 1px solid var(--line);
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-item {
  position: relative;
  padding-top: 8px;
}

.process-item::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background-color: var(--accent-soft);
}

.process-item:last-child::before {
  display: none;
}

.process-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(217, 70, 239, 0.3);
}

.process-body {
  text-align: center;
}

.process-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

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

/* --------------------------------------------------------------------------
   Compare table
   -------------------------------------------------------------------------- */
.compare-section {
  padding: 96px 0;
  background-color: var(--bg);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: var(--surface);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
}

.compare-table thead th {
  background-color: var(--accent-deep);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
}

.compare-table thead th:first-child {
  border-top-left-radius: 0;
}

.compare-table thead th:nth-child(2) {
  background-color: var(--accent-dark);
}

.compare-table thead th:nth-child(3) {
  background-color: var(--accent-deep);
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--accent-dark);
  background-color: #FBF6FD;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td {
  color: var(--muted);
}

.compare-table tbody tr:nth-child(even) td {
  background-color: var(--bg);
}

/* --------------------------------------------------------------------------
   Horizontal scroll services
   -------------------------------------------------------------------------- */
.services-section {
  padding: 96px 0;
  background-color: var(--surface);
  border-top: 1px solid var(--line);
}

.hscroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px max(24px, calc((100% - var(--max)) / 2)) 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hscroll::-webkit-scrollbar {
  height: 8px;
}

.hscroll::-webkit-scrollbar-thumb {
  background-color: var(--accent-soft);
  border-radius: 4px;
}

.hscroll::-webkit-scrollbar-track {
  background-color: var(--bg);
}

.hscroll-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hscroll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 18px;
}

.hscroll-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.hscroll-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 96px 0;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  color: var(--ink);
  background-color: var(--bg);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
}

.form-status {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  min-height: 24px;
}

.contact-info {
  background-color: var(--accent-deep);
  border-radius: var(--radius);
  padding: 40px;
  color: #FFFFFF;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #FFFFFF;
}

.info-item {
  margin-bottom: 22px;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.info-item a,
.info-item p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
}

.info-item a:hover {
  color: var(--accent-soft);
}

/* --------------------------------------------------------------------------
   Split CTA band
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 0 0 96px;
  background-color: var(--bg);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, var(--accent-dark) 0%, var(--accent) 60%, #E879F9 100%);
  border-radius: var(--radius);
  padding: 56px 60px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.cta-copy h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-copy p {
  font-size: 17px;
  color: #FDF2FF;
  max-width: 560px;
}

.cta-btn {
  background-color: #FFFFFF;
  color: var(--accent-dark);
  border-color: #FFFFFF;
  white-space: nowrap;
}

.cta-btn:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--surface);
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-col .brand {
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

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

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col ul a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .crystal-copy h1 {
    font-size: 40px;
  }

  .statement-text {
    font-size: 30px;
  }

  .process-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

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

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

  .crystal-copy {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .crystal-stage {
    height: 360px;
    max-width: 320px;
  }

  .statement-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-copy p {
    margin: 0 auto;
  }

  .cta-btn {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--surface);
    border-bottom: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 8px 24px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-inner {
    position: relative;
    height: 68px;
  }

  .pixel-nav {
    position: sticky;
  }

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

  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-item::before {
    top: auto;
    left: 28px;
    width: 2px;
    height: calc(100% + 28px);
    top: 64px;
  }

  .process-item:last-child::before {
    display: none;
  }

  .process-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }

  .process-num {
    margin: 0;
  }

  .process-body {
    text-align: left;
    padding-bottom: 4px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    padding: 28px;
  }

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

  .section-head h2 {
    font-size: 30px;
  }

  .crystal-copy h1 {
    font-size: 34px;
  }

  .statement-text {
    font-size: 26px;
  }

  .cta-band {
    padding: 40px 28px;
  }

  .crystal {
    transform: translate(-50%, -50%) scale(0.85);
  }
}

@media (max-width: 480px) {
  .crystal-copy h1 {
    font-size: 29px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-section {
    padding: 64px 0 64px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .stat h3 {
    font-size: 46px;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-info {
    padding: 30px 26px;
  }
}
