/* ================================================================
   sections.css — Page sections styling
   Includes: stats bar, apps catalog, why mobile, services, process,
   pricing, FAQ, contact, reverse engineering, and responsive rules.
   ================================================================ */

/* ── STATS BAR ── */
.stats-bar {
  background-color: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px;
}
.stats-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center; padding: 8px;
}
.stat-val {
  font-family: var(--font-mono);
  font-size: 38px; font-weight: 500;
  color: var(--text);
  display: block; line-height: 1;
  letter-spacing: -.02em;
}
.stat-val .accent { color: var(--gold); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text3);
  margin-top: 8px; display: block;
  letter-spacing: .04em;
}

/* ── APPS CATALOG ── */
.apps-section { background-color: var(--bg); }
.apps-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.apps-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.app-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--text);
  position: relative; overflow: hidden;
  transition: all .25s;
  display: block;
}
.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--app-color);
  opacity: 0; transition: opacity .25s;
}
.app-card:hover {
  border-color: rgba(255,255,255,.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.app-card:hover::before { opacity: 1; }
.app-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--app-color);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: #fff; margin-bottom: 16px;
}
.app-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.app-card-desc {
  font-size: 13px; color: var(--text3); line-height: 1.5;
  margin-bottom: 16px;
}
.app-card-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text3);
  margin-right: 4px; margin-bottom: 4px;
}
.app-card-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--app-color);
  margin-top: 14px; font-weight: 600;
}
.app-card.coming-soon {
  opacity: .5; pointer-events: none;
}
.coming-badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 9px;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,.06); color: var(--text3);
  text-transform: uppercase; letter-spacing: .08em;
}

/* ── WHY MOBILE ── */
.why-section { background-color: var(--bg2); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.why-visual {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text3); padding: 8px 12px;
  text-align: left; border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 10px 12px; font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.yes { color: var(--cyan) !important; font-family: var(--font-mono); }
.no { color: var(--text3) !important; font-family: var(--font-mono); }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px;
}
.why-point h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}
.why-point p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── SERVICES ── */
.services-section { background-color: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .2s;
}
.service-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold); margin-bottom: 16px; letter-spacing: .08em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.stag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,.04); color: var(--text3);
  border: 1px solid var(--border);
}

/* ── PROCESS ── */
.process-section { background-color: var(--bg2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: .3; z-index: 0;
}
.process-step {
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--gold); margin: 0 auto 20px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text3); line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { background-color: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
  align-items: start;
}
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: rgba(139,92,246,.4);
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.price-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(139,92,246,.15); color: var(--gold);
  margin-bottom: 16px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.price-desc { font-size: 13px; color: var(--text3); margin-bottom: 24px; line-height: 1.5; }
.price-amount {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1; margin-bottom: 4px;
}
.price-amount .currency { font-size: 22px; color: var(--gold); }
.price-period { font-size: 13px; color: var(--text3); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text2);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; font-size: 13px; }

/* ── FAQ ── */
.faq-section { background-color: var(--bg2); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
}
.faq-list { margin-top: 56px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  letter-spacing: -.01em; line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 12px;
  transition: all .2s;
}
.faq-item.open .faq-icon {
  background: var(--gold); color: #fff; border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { background-color: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px;
  color: var(--text3); margin-bottom: 8px; font-weight: 500;
}
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 8px; color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: rgba(139,92,246,.5); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--bg3); }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: var(--text);
  transition: all .2s;
}
.contact-info-item:hover { border-color: var(--border2); transform: translateX(4px); }
.contact-info-item i {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.icon-tg { background: rgba(0,136,204,.15); color: #29B6F6; }
.icon-mail { background: rgba(139,92,246,.1); color: var(--gold); }
.contact-info-item .ci-label { font-size: 12px; color: var(--text3); }
.contact-info-item .ci-val { font-size: 15px; font-weight: 500; }

/* ── LIVE DATA UPDATE ── */
@keyframes row-slide-in {
  from { opacity: 0; transform: translateX(16px); background: rgba(139,92,246,.1); }
  to   { opacity: 1; transform: translateX(0);    background: transparent; }
}
.hvc-row.new-row {
  animation: row-slide-in .35s ease both !important;
}

/* ── HERO MOBILE STRIP ── */
.hero-apps-strip { display: none; margin-top: 40px; }
.has-label {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px; display: block;
}
.has-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.has-chips .hach {
  width: 48px; height: 48px; border-radius: 12px;
  font-size: 11px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.has-stats {
  display: flex; gap: 24px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.has-stat-val {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 500; color: var(--text);
  line-height: 1; display: block;
}
.has-stat-val .a { color: var(--gold); }
.has-stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text3);
  text-transform: uppercase; letter-spacing: .06em;
  margin-top: 4px; display: block;
}

/* ── HERO VISUAL V3 (INTERCEPTION DIAGRAM) ── */
.extract-wrap { display: flex; gap: 12px; align-items: center; }
.phone-mock-hero {
  width: 88px; height: 162px; flex-shrink: 0;
  border: 2px solid var(--border2); border-radius: 18px;
  background: #070A0F; position: relative;
  display: flex; flex-direction: column;
  align-items: center; padding: 22px 6px 6px; overflow: hidden;
}
.phone-mock-hero::before {
  content: ''; position: absolute; top: 10px;
  width: 28px; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px;
}
.phone-screen-hero {
  flex: 1; width: 100%; border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px; gap: 4px;
  transition: background .5s ease;
}
.psh-label { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; }
.psh-lines { display: flex; flex-direction: column; gap: 3px; width: 100%; margin-top: 6px; }
.psh-line { height: 2.5px; border-radius: 2px; background: rgba(255,255,255,.2); }
.psh-line.f { width: 100%; } .psh-line.m { width: 75%; } .psh-line.s { width: 50%; }

.flow-col-hero { display: flex; flex-direction: column; gap: 14px; padding: 0 2px; flex-shrink: 0; }
.flow-row-hero { height: 1px; width: 40px; position: relative; background: rgba(255,255,255,.06); }
.fdot-hero {
  position: absolute; top: -3px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: fdotmove 2s linear infinite; opacity: 0;
}
.fdot-hero:nth-child(2) { animation-delay: .8s; }
.flow-row-hero:nth-child(2) .fdot-hero:nth-child(1) { animation-delay: .4s; }
.flow-row-hero:nth-child(2) .fdot-hero:nth-child(2) { animation-delay: 1.2s; }
.flow-row-hero:nth-child(3) .fdot-hero:nth-child(1) { animation-delay: .7s; }
.flow-row-hero:nth-child(3) .fdot-hero:nth-child(2) { animation-delay: 1.5s; }
@keyframes fdotmove {
  0%   { left: 0; opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 34px; opacity: 0; }
}
.out-panel-hero {
  flex: 1; background: var(--bg);
  border: 1px solid var(--border2); border-radius: 9px;
  padding: 12px 14px; font-family: var(--font-mono); font-size: 11px;
  position: relative;
}
.out-panel-hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--cyan); border-radius: 1px 0 0 1px;
}
.oph-row { display: flex; gap: 6px; padding: 3px 0; line-height: 1.6; }
.oph-k { color: var(--text3); }
.oph-v { color: var(--cyan); transition: opacity .3s; }
.oph-v.g { color: var(--gold); }
.oph-v.b { color: var(--blue); }
.hero-apps-row {
  display: flex; gap: 5px; align-items: center; flex-wrap: wrap;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}
.hach {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 7px; font-weight: 800; color: #fff;
}
.hach-more { font-family: var(--font-mono); font-size: 10px; color: var(--text3); white-space: nowrap; }

/* ── REVERSE ENGINEERING SECTION ── */
.reverse-section {
  background-color: var(--bg);
  position: relative;
}
.reverse-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 25% 50%, rgba(77,166,255,.05) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.reverse-section .container { position: relative; z-index: 1; }
.reverse-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.reverse-terminal {
  background: #070B11;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
}
.terminal-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.t-title { font-size: 11px; color: var(--text3); margin-left: 8px; letter-spacing: .04em; }
.terminal-body {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px;
}
.t-line { font-size: 12.5px; line-height: 1.6; display: flex; gap: 8px; align-items: baseline; }
.t-prompt { color: var(--cyan); }
.t-cmd { color: var(--text); }
.t-comment { color: var(--text3); font-style: italic; font-size: 12px; padding: 2px 0; }
.t-key { color: var(--text3); }
.t-val-blue { color: var(--blue); }
.t-val-gold { color: var(--gold); }
.t-success { color: var(--cyan); }
.t-cursor {
  display: inline-block; width: 7px; height: 13px;
  background: var(--blue);
  animation: blink-cursor 1s step-end infinite;
  vertical-align: middle; margin-left: 2px;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.reverse-points { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.reverse-point { display: flex; gap: 16px; align-items: flex-start; }
.reverse-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(77,166,255,.1);
  border: 1px solid rgba(77,166,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px;
}
.reverse-point h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; margin-bottom: 4px;
}
.reverse-point p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.btn-blue {
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-blue:hover { background: #6AB8FF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,166,255,.25); }

/* ── WIDE PRICING CARD (REVERSE) ── */
.price-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(77,166,255,.05) 0%, var(--bg2) 55%);
  border-color: rgba(77,166,255,.2);
}
.price-card-wide::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.price-wide-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 200px;
  gap: 48px;
  align-items: start;
}
.price-wide-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px;
}
.price-wide-features {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.price-wide-features li {
  border-bottom: none !important;
  padding: 5px 0 !important;
}
.price-wide-cta {
  display: flex; flex-direction: column; align-items: center;
  padding-left: 48px;
  border-left: 1px solid var(--border);
}
.price-wide-cta .btn-blue { width: 100%; justify-content: center; margin-top: 20px; }

/* ── LIGHT THEME CARD DEPTH ── */
[data-theme="light"] .app-card,
[data-theme="light"] .service-card,
[data-theme="light"] .price-card,
[data-theme="light"] .why-visual,
[data-theme="light"] .apps-showcase {
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
}

/* ── GLOBAL GRID BACKGROUND ── */
.apps-section, .why-section, .services-section, .process-section,
.pricing-section, .faq-section, .contact-section, .reverse-section,
.stats-bar, footer.site-footer {
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
  background-attachment: fixed;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-apps-strip { display: block; }
  .hero-epanel { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .process-step { margin-bottom: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reverse-grid { grid-template-columns: 1fr; }
  .reverse-terminal { display: none; }
  .price-wide-inner { grid-template-columns: 1fr; gap: 24px; }
  .price-wide-cta { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 24px; align-items: flex-start; }
  .price-wide-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 96px 20px 60px; align-items: flex-start; }
  .stats-bar { padding: 24px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .apps-catalog { grid-template-columns: repeat(2, 1fr); }
  .faq-list { margin-top: 32px; }
  .why-visual { margin-top: 16px; }
  .compare-table th, .compare-table td { padding: 8px 8px; font-size: 13px; }
  .price-wide-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 16px 48px; }
  .stats-bar { padding: 20px 16px; }
  header.site-header { padding: 0 16px; }
  .apps-catalog { grid-template-columns: 1fr; }
  .stat-val { font-size: 30px; }
  .stat-label { font-size: 11px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}
