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

:root {
  --bg:       #080c10;
  --bg-2:     #0d1117;
  --bg-3:     #161b22;
  --border:   rgba(255,255,255,.07);
  --accent:   #00d4ff;
  --accent-2: #0099cc;
  --green:    #39d353;
  --text:     #e6edf3;
  --muted:    #7d8590;
  --radius:   12px;
  --font:     'Inter', sans-serif;
  --mono:     'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--sm  { font-size: .85rem; padding: 8px 16px; }
.btn--lg  { font-size: 1rem;   padding: 14px 28px; }

.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover {
  background: #33ddff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,212,255,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, border .3s;
}
.nav.scrolled {
  background: rgba(8,12,16,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -.5px;
}
.logo-bracket { color: var(--accent); }
.logo-dot     { color: var(--muted); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: .9rem;
  color: var(--muted);
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}
.glow--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; left: -100px;
}
.glow--2 {
  width: 500px; height: 500px;
  background: #7c3aed;
  bottom: -100px; right: -100px;
}

.hero__inner { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-family: var(--mono);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255,255,255,.03);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── TERMINAL ── */
.hero__terminal { margin-bottom: 36px; }
.terminal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
}
.terminal__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.t-dot.red    { background: #ff5f57; }
.t-dot.yellow { background: #ffbd2e; }
.t-dot.green  { background: #28c840; }
.t-title {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--muted);
  margin-left: 6px;
}
.terminal__body {
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: .9rem;
  min-height: 60px;
}
.t-prompt { color: var(--green); margin-right: 8px; }
.t-cmd    { color: var(--text); }
.t-cursor {
  color: var(--accent);
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.t-output {
  color: var(--accent);
  font-size: .85rem;
  margin-top: 6px;
  min-height: 20px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat__num {
  display: block;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat__label {
  font-size: .8rem;
  color: var(--muted);
}
.stat__div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ── SECTIONS COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* ── CATEGORY TABS ── */
/* ── CASES ── */
.cases { padding: 100px 0; }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.case-card {
  --cc: #00d4ff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.case-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cc);
  opacity: 0;
  transition: opacity .2s;
}
.case-card:hover {
  border-color: color-mix(in srgb, var(--cc) 40%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.case-card:hover::after { opacity: 1; }
.case-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--cc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cc);
}
.case-ico svg { width: 22px; height: 22px; }
.case-body { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.case-problem {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.case-answer {
  font-size: .81rem;
  color: var(--muted);
  line-height: 1.4;
}
.case-arrow {
  font-size: .85rem;
  color: var(--cc);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-4px);
  font-weight: 600;
  align-self: flex-end;
}
.case-card:hover .case-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 1100px) { .cases__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .cases__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .cases__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  font-family: var(--font);
}
.cat-tab:hover { color: var(--text); border-color: rgba(255,255,255,.15); }
.cat-tab.active { background: rgba(0,212,255,.1); color: var(--accent); border-color: rgba(0,212,255,.3); }

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover {
  border-color: rgba(0,212,255,.3);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }

.service-card.skeleton {
  height: 180px;
  animation: shimmer 1.5s infinite;
  background: linear-gradient(90deg, var(--bg-3) 25%, var(--bg-2) 50%, var(--bg-3) 75%);
  background-size: 200% 100%;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.service-card__num {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--accent);
  opacity: .6;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.service-card__price .amount {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.service-card__price .currency {
  font-size: .85rem;
  color: var(--muted);
}

/* ── SERVICE CARD — NEW ELEMENTS ── */
.sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.service-card:hover .sc-icon {
  background: rgba(0,212,255,.16);
  border-color: rgba(0,212,255,.3);
}
.sc-time {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.sc-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3px;
  background: rgba(57,211,83,.1);
  color: var(--green);
  border: 1px solid rgba(57,211,83,.22);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.btn-order {
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent);
  opacity: .6;
  transition: opacity .2s;
  white-space: nowrap;
}
.service-card:hover .btn-order { opacity: 1; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.step:hover { border-color: rgba(0,212,255,.3); }

.step__num {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--accent);
  opacity: .5;
  margin-bottom: 16px;
}
.step__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.step__time {
  display: inline-block;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent);
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.18);
  border-radius: 999px;
  padding: 3px 12px;
  margin-top: 14px;
}
.step__arrow {
  font-size: 1.5rem;
  color: var(--muted);
  align-self: center;
  opacity: .4;
  flex-shrink: 0;
}

/* ── GUARANTEES ── */
.guarantees {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.g-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.g-card:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateY(-2px);
}
.g-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(124,58,237,.08));
  border: 1px solid rgba(0,212,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.g-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.g-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── REVIEWS ── */
.reviews {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: rgba(0,212,255,.2);
  transform: translateY(-2px);
}
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 12px; right: 22px;
  font-size: 5rem;
  color: var(--accent);
  opacity: .07;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: .9rem;
}
.review-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open {
  border-color: rgba(0,212,255,.3);
  background: var(--bg-3);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 500;
  color: var(--text);
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--muted);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,212,255,.08) 0%, rgba(124,58,237,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.cta-banner__text p { color: var(--muted); }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.contact__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s;
}
.contact__card:hover { border-color: rgba(0,212,255,.3); }
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact__card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.contact__card p  { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.contact__link {
  font-size: .85rem;
  color: var(--accent);
  font-family: var(--mono);
}
.contact__link:hover { text-decoration: underline; }
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--green);
  font-family: var(--mono);
}

/* ── FOOTER ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: .8rem; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: .8rem; color: var(--muted); }
.footer__links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
.desktop-only { display: initial; }

@media (max-width: 768px) {
  .desktop-only { display: none; }

  .nav__links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(8,12,16,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 20px; }
  .stat__div { display: none; }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }

  .guarantees, .reviews, .faq { padding: 72px 0; }
  .guarantees__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .faq__list { padding: 0; }
  .faq-q { font-size: .9rem; padding: 16px 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; max-height: 300px; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
}

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

@media (max-width: 480px) {
  .hero__title { letter-spacing: -1px; }
  .terminal { font-size: .8rem; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRICING ── */
.pricing { padding: 96px 0; }

.pricing__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

/* Main card */
.price-card {
  background: var(--bg-2);
  border: 1px solid rgba(0,212,255,.25);
  border-radius: 20px;
  padding: 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(0,212,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.price-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 1.25rem;
}
.price-card__amount {
  display: flex;
  align-items: flex-end;
  gap: .35rem;
  margin-bottom: .3rem;
}
.price-card__num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: -2px;
}
.price-card__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .4rem;
}
.price-card__desc {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
  font-size: .88rem;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
}
.price-card__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card__cta {
  width: 100%;
  justify-content: center;
}

/* Right column */
.pricing__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing__extra-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}
.pricing__extra-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: .6rem;
}
.pricing__extra-price {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text);
  margin-bottom: .4rem;
}
.pricing__extra-price span:last-child { font-size: .9rem; color: var(--muted); font-family: var(--font); font-weight: 400; }
.pricing__extra-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.pricing__note {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.pricing__note--accent { border-color: rgba(0,212,255,.15); }
.pricing__note--green  { border-color: rgba(57,211,83,.15); }
.pricing__note-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.pricing__note strong { display: block; font-size: .88rem; margin-bottom: .25rem; }
.pricing__note p { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.pricing__note em { font-style: normal; color: var(--accent); }

/* Responsive */
@media (max-width: 760px) {
  .pricing__layout { grid-template-columns: 1fr; }
  .price-card__num { font-size: 2.8rem; }
}
