/* Nexora — Design System v4 */

:root {
  --bg: #07090d;
  --bg2: #0b1020;
  --card: rgba(255,255,255,.04);
  --card2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --border2: rgba(255,255,255,.16);
  --ink: #f8fafc;
  --muted: rgba(248,250,252,.72);
  --muted2: rgba(248,250,252,.55);

  --accent: #145a32;
  --accent2: #0e3e22;
  --accent-light: rgba(20,90,50,.25);
  --accentInk: #f8fafc;

  --shadow: 0 26px 90px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;

  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: Poppins, Inter, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(20,90,50,.25), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden }

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: -.03em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none }
a:hover { color: var(--ink) }
a:focus-visible,
button:focus-visible,
.faq__trigger:focus-visible,
.nav-toggle:focus-visible,
.inspo__card:focus-visible { outline: 3px solid rgba(20,90,50,.55); outline-offset: 3px; border-radius: 12px }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto }

/* ── Background ── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: .5;
}
.orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; opacity: .4; will-change: transform; backface-visibility: hidden }
.orb--a { width: 600px; height: 600px; left: -10%; top: 50%; background: radial-gradient(circle, rgba(20,90,50,.3) 0%, transparent 70%); animation: orb1 30s linear infinite }
.orb--b { width: 500px; height: 500px; right: -10%; top: 20%; background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%); animation: orb2 40s linear infinite }
@keyframes orb1 { 0% { transform: translate(0,0) } 50% { transform: translate(50px, 30px) } 100% { transform: translate(0,0) } }
@keyframes orb2 { 0% { transform: translate(0,0) } 50% { transform: translate(-40px, 20px) } 100% { transform: translate(0,0) } }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,10,20,.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: background .3s ease, box-shadow .3s ease;
}
.header--scrolled {
  background: rgba(7,10,20,.85);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  border-bottom-color: rgba(255,255,255,.14);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .75rem 0;
}
.brand { display: flex; align-items: center; gap: .8rem; font-weight: 800; letter-spacing: -.02em }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: .25rem }
.nav__link {
  padding: .5rem .85rem; border-radius: 10px;
  font-size: .95rem; font-weight: 500; color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--ink); background: rgba(255,255,255,.06) }

.header__right { display: flex; align-items: center; gap: .75rem }

/* Hamburger */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,.05); color: var(--ink); cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); border-color: var(--border2) }
.nav-toggle .icon-close { display: none }
.nav-toggle.is-open .icon-menu { display: none }
.nav-toggle.is-open .icon-close { display: block }
.nav-toggle svg { width: 20px; height: 20px }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(7,10,20,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.mobile-menu[aria-hidden="false"] {
  display: block;
  max-height: 400px;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1rem;
}
.mobile-nav__link {
  display: block; padding: .75rem 1rem;
  border-radius: 12px; font-weight: 500;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.mobile-nav__link:hover { color: var(--ink); background: rgba(255,255,255,.06) }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: var(--ink);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.09) }
.btn:active { transform: translateY(0) }
.btn--primary {
  border-color: rgba(20,90,50,.45);
  background: linear-gradient(135deg, rgba(20,90,50,.98), rgba(14,62,34,.92));
  color: var(--accentInk);
  box-shadow: 0 16px 60px rgba(20,90,50,.22);
  position: relative; overflow: hidden;
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
  transform: translateX(-140%);
}
.btn--primary:hover::after { animation: shine 1.05s ease }
@keyframes shine { to { transform: translateX(140%) } }

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  padding: 7rem 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; gap: 1.4rem }
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem .85rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: var(--muted);
  font-size: .88rem; font-weight: 600; width: fit-content;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2) }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1) }
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.grad {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.80) 40%, rgba(20,90,50,.98) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { margin: 0; color: var(--muted); font-size: 1.1rem; line-height: 1.7; max-width: 56ch }
.hero__cta { display: flex; gap: .85rem; flex-wrap: wrap }

/* Hero card */
.hero__card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.hero-card__row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0;
}
.hero-card__divider { height: 1px; background: var(--border) }
.hero-card__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(20,90,50,.15); border: 1px solid rgba(20,90,50,.25);
}
.hero-card__icon svg { width: 22px; height: 22px; color: rgba(20,90,50,.9) }
.hero-card__label { font-size: .82rem; color: var(--muted2); font-weight: 500; text-transform: uppercase; letter-spacing: .06em }
.hero-card__value { font-size: .98rem; font-weight: 600; color: var(--ink); margin-top: .15rem }
.hero-card__status {
  display: flex; align-items: center; gap: .55rem;
  margin-top: 1.2rem; padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: .85rem; color: var(--muted2); font-weight: 500;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── Sections ── */
.section { position: relative; z-index: 1; padding: 4rem 0 }
.section--soft {
  background:
    radial-gradient(1100px 650px at 20% 0%, rgba(20,90,50,.12), transparent 60%),
    rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head { text-align: center; margin-bottom: 2.5rem }
.section__head h2 { margin: 0 auto .6rem; font-size: clamp(1.7rem, 3vw, 2.4rem) }
.section__head p { margin: 0 auto; color: var(--muted2); max-width: 70ch }

/* ── Solutions ── */
.solutions {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem;
}
.solution-card {
  position: relative; border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--card); padding: 2.5rem 2rem;
  text-align: center; cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.solution-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius2);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20,90,50,.12), transparent 70%);
  opacity: 0; transition: opacity .3s ease;
}
.solution-card:hover::before { opacity: 1 }
.solution-card:hover { transform: translateY(-8px); border-color: rgba(20,90,50,.45); box-shadow: 0 30px 100px rgba(0,0,0,.5) }
.solution-card__logo { height: 80px; width: auto; margin-bottom: 1.5rem; object-fit: contain }
.solution-card h3 { font-size: 1.8rem; margin: 0 0 1rem }
.solution-card p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6 }
.solution-card .btn { width: 100% }

/* ── Preview / Phone Mockup ── */
.inspo { margin-top: 1.6rem; display: grid; grid-template-columns: 1fr; gap: 1.2rem }
.inspo__cards { display: flex; gap: .65rem; overflow: auto; padding: .25rem .1rem; justify-content: center }
.inspo__card {
  flex: 0 0 auto; min-width: 180px;
  padding: .85rem 1rem; border-radius: 16px;
  border: 1px solid var(--border); background: var(--card); cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.inspo__card:hover { transform: translateY(-2px); border-color: var(--border2); background: rgba(255,255,255,.07) }
.inspo__card.is-active { border-color: rgba(20,90,50,.60); box-shadow: 0 18px 60px rgba(20,90,50,.15) }
.inspo__name { font-weight: 700; letter-spacing: -.02em }
.inspo__desc { margin-top: .25rem; color: var(--muted2); font-size: .92rem }

.preview {
  position: relative;
  border: 1px solid var(--border); background: var(--card);
  border-radius: var(--radius2); box-shadow: var(--shadow); overflow: hidden;
}
.preview__top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.preview__title { display: flex; flex-direction: column; gap: .15rem }
.preview__title strong { font-size: 1.05rem; letter-spacing: -.02em }
.preview__title span { color: var(--muted2); font-size: .95rem }
.preview__body {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; perspective: 1000px; gap: 1.5rem;
}

.preview-nav {
  flex: 0 0 auto; align-self: center;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05); color: var(--ink); cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1); z-index: 10; padding: 0;
}
.preview-nav:hover { background: rgba(255,255,255,.12); transform: scale(1.1); border-color: rgba(20,90,50,.5); box-shadow: 0 0 20px rgba(20,90,50,.2) }
.preview-nav svg { width: 24px; height: 24px }

.phone-mockup {
  position: relative; width: 320px; height: 680px;
  background-color: #000;
  background-image: url('assets/phone-template.avif');
  background-size: 100% 100%; background-position: center; background-repeat: no-repeat;
  border: 10px solid #000; border-radius: 44px;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,.8); overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s ease;
}
.phone-mockup:hover { transform: translateY(-10px) rotateX(10deg) rotateY(-5deg); box-shadow: 20px 60px 100px -20px rgba(0,0,0,.7) }
.phone-mockup .screen {
  position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 40px; background: #fff; overflow: hidden; z-index: 5;
}
.phone-mockup img { width: 100%; height: 100%; object-fit: contain; background: #fff; display: block }
[data-preview-img] { transition: opacity .3s ease, transform .5s ease }

/* ── Features ── */
.features {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem;
  margin-bottom: 1.5rem;
}
.feature {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 18px;
  border: 1px solid var(--border); background: var(--card);
  transition: border-color .2s ease, background .2s ease;
}
.feature:hover { border-color: rgba(20,90,50,.35); background: rgba(20,90,50,.05) }
.feature__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(20,90,50,.15); border: 1px solid rgba(20,90,50,.25);
}
.feature__icon svg { width: 22px; height: 22px; stroke: rgba(20,90,50,.9) }
.feature h3 { margin: 0; letter-spacing: -.02em; font-size: 1.05rem }
.feature p { margin: .35rem 0 0; color: var(--muted); font-size: .95rem }

/* ── Cards grid ── */
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem }
.card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: var(--radius); padding: 1.4rem 1.2rem;
  box-shadow: 0 18px 70px rgba(0,0,0,.3);
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(20,90,50,.35); transform: translateY(-3px) }
.card__icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: .9rem;
  display: grid; place-items: center;
  background: rgba(20,90,50,.12); border: 1px solid rgba(20,90,50,.2);
}
.card__icon svg { width: 20px; height: 20px; stroke: rgba(20,90,50,.9) }
.card h3 { margin: .1rem 0 .45rem; letter-spacing: -.02em; font-size: 1.05rem }
.card p { margin: 0; color: var(--muted); font-size: .95rem }
.list { margin: .85rem 0 0; padding-left: 1.1rem; color: var(--muted2) }
.list li { margin: .3rem 0 }

/* ── Pricing ── */
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem }
.price {
  position: relative; border-radius: 22px;
  border: 1px solid var(--border); background: var(--card);
  padding: 1.5rem 1.3rem;
  box-shadow: 0 18px 70px rgba(0,0,0,.3);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.price:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); box-shadow: 0 30px 100px rgba(0,0,0,.5) }
.price--featured {
  border-color: rgba(20,90,50,.45);
  background: linear-gradient(180deg, rgba(20,90,50,.1), var(--card) 60%);
  box-shadow: 0 0 0 1px rgba(20,90,50,.2), 0 30px 80px rgba(20,90,50,.12);
}
.price--featured:hover { border-color: rgba(20,90,50,.7) }
.badge {
  position: absolute; top: 14px; right: 14px;
  font-weight: 700; font-size: .78rem; color: var(--accentInk);
  background: linear-gradient(135deg, rgba(20,90,50,.98), rgba(14,62,34,.92));
  padding: .3rem .65rem; border-radius: 999px;
}
.price h3 { margin: 0 0 .4rem; font-size: 1.2rem }
.price__tag { margin: 0 0 .15rem; color: var(--muted2); font-size: .88rem }
.price__value { font-size: 2.2rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: 1.2rem }
.price__value span { font-size: 1rem; font-weight: 600; color: var(--muted2) }
.price__list {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.price__list li {
  display: flex; align-items: center; gap: .6rem;
  color: var(--muted); font-size: .95rem;
}
.price__list svg { width: 17px; height: 17px; flex: 0 0 auto; stroke: #22c55e }
.price .btn { width: 100%; margin-top: auto }

/* ── FAQ ── */
.faq { display: grid; gap: .65rem; margin-top: .5rem }
.faq__item {
  border-radius: 18px; border: 1px solid var(--border); background: var(--card);
  overflow: hidden; transition: border-color .2s ease;
}
.faq__item.is-open { border-color: rgba(20,90,50,.4) }
.faq__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.2rem; background: none; border: none; color: var(--ink);
  font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer;
  transition: background .15s ease;
}
.faq__trigger:hover { background: rgba(255,255,255,.04) }
.faq__chevron {
  width: 20px; height: 20px; flex: 0 0 auto; transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg) }
.faq__body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
  padding: 0 1.2rem;
}
.faq__item.is-open .faq__body { max-height: 240px; padding: 0 1.2rem .9rem }
.faq__body p { margin: 0; color: var(--muted); line-height: 1.7 }

/* ── Contact ── */
.contact {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; padding-top: .5rem }
.contact__info h3 { margin: 0; font-size: 1.45rem; line-height: 1.3 }
.contact__badges { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem }
.contact__badge {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem; border-radius: 14px;
  border: 1px solid var(--border); background: var(--card);
  font-size: .9rem; color: var(--muted);
}
.contact__badge svg { width: 18px; height: 18px; flex: 0 0 auto; stroke: rgba(20,90,50,.8) }
.form {
  border-radius: 22px; border: 1px solid var(--border); background: var(--card);
  padding: 1.4rem; box-shadow: 0 18px 70px rgba(0,0,0,.3);
}
.form label { display: grid; gap: .4rem; margin-bottom: .85rem }
.form span { color: var(--muted2); font-weight: 600; font-size: .9rem }
.form input, .form textarea, .form select {
  width: 100%; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20); color: var(--ink);
  padding: .85rem .9rem; outline: none;
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none; -webkit-appearance: none;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: rgba(20,90,50,.6); box-shadow: 0 0 0 4px rgba(20,90,50,.18);
}
.form textarea { resize: vertical; min-height: 120px }
.form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(248,250,252,0.55)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem }
.form select option { background: #0b1020; color: var(--ink) }

/* ── Showcase ── */
.showcase {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center;
}
.showcase__side { display: flex; flex-direction: column; gap: 1.2rem }
.showcase__heading { margin: 0 0 .5rem; font-size: clamp(1.8rem, 3vw, 2.4rem) }
.showcase__items { display: flex; flex-direction: column; gap: .35rem }
.showcase__item {
  padding: .9rem 1.1rem; border-radius: 16px;
  border: 1px solid transparent; cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.showcase__item:hover { background: var(--card); border-color: var(--border) }
.showcase__item.is-active { background: rgba(20,90,50,.08); border-color: rgba(20,90,50,.35) }
.showcase__item h4 { margin: 0 0 .25rem; font-size: 1rem; letter-spacing: -.02em }
.showcase__item p { margin: 0; color: var(--muted2); font-size: .9rem }
.showcase__view { display: flex; justify-content: center }
.showcase-reel { position: relative; width: 100%; height: 100%; background: #fff }
.showcase-reel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; opacity: 0;
  transition: opacity .4s ease;
}
.showcase-reel img.active { opacity: 1 }

/* ── Deployment ── */
.deploy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem }
.deploy-card {
  border-radius: var(--radius2); border: 1px solid var(--border); background: var(--card);
  padding: 2rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.deploy-card:hover { transform: translateY(-5px); border-color: rgba(20,90,50,.35); box-shadow: 0 30px 80px rgba(0,0,0,.4) }
.deploy-tag {
  display: inline-block; padding: .3rem .75rem; border-radius: 999px;
  background: rgba(20,90,50,.12); border: 1px solid rgba(20,90,50,.25);
  color: rgba(20,90,50,.9); font-size: .82rem; font-weight: 600; margin-bottom: 1rem;
}
.deploy-card h3 { margin: 0 0 .75rem; font-size: 1.4rem }
.deploy-card > p { color: var(--muted); margin-bottom: 1.5rem; font-size: .97rem }
.deploy-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
.deploy-split h4 {
  margin: 0 0 .5rem; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted2); font-weight: 700;
}
.deploy-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem }
.deploy-list li { font-size: .9rem; color: var(--muted); padding-left: 1.2rem; position: relative }
.deploy-list--pro li::before { content: "✓"; position: absolute; left: 0; color: #22c55e; font-weight: 700 }
.deploy-list--con li::before { content: "–"; position: absolute; left: 0; color: var(--muted2); font-weight: 700 }

/* ── Windows Mockup ── */
.win-mockup {
  border-radius: var(--radius2); border: 1px solid var(--border); background: var(--card);
  overflow: hidden; box-shadow: var(--shadow); max-width: 960px; margin: 0 auto;
}
.win-chrome {
  display: flex; align-items: center; gap: .65rem; padding: .85rem 1.1rem;
  background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border);
}
.win-dots { display: flex; gap: .4rem }
.win-dot { width: 12px; height: 12px; border-radius: 50% }
.win-dot--red { background: #ff5f57 }
.win-dot--yellow { background: #febc2e }
.win-dot--green { background: #28c840 }
.win-title { margin-left: auto; color: var(--muted2); font-size: .78rem; font-weight: 600 }
.win-screen { position: relative; aspect-ratio: 16/9; background: #000 }
.win-screen img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .4s ease;
}
.win-screen img.active { opacity: 1 }
.win-tabs {
  display: flex; gap: .5rem; padding: .75rem 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--border); background: rgba(255,255,255,.03);
  overflow-x: auto;
}
.win-tab {
  padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,.04); color: var(--muted2);
  font-size: .88rem; font-weight: 500; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.win-tab:hover { background: rgba(255,255,255,.08); color: var(--ink) }
.win-tab.active { background: rgba(20,90,50,.15); border-color: rgba(20,90,50,.35); color: var(--ink) }

/* ── Solutions Detail ── */
.solutions-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem }
.sol-detail {
  border-radius: var(--radius2); border: 1px solid var(--border); background: var(--card); padding: 2rem;
  transition: border-color .3s ease;
}
.sol-detail:hover { border-color: rgba(20,90,50,.35) }
.sol-detail__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem }
.sol-detail__header img { height: 44px; width: auto; object-fit: contain }
.sol-detail__header h3 { margin: 0; font-size: 1.2rem }
.sol-detail > p { color: var(--muted); margin: 0 0 1.1rem; font-size: .95rem }
.sol-detail__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem }
.sol-detail__list li {
  display: flex; gap: .6rem; color: var(--muted); font-size: .93rem; align-items: flex-start;
}
.sol-detail__list li::before { content: "✓"; color: #22c55e; font-weight: 700; flex: 0 0 auto; margin-top: .05rem }

/* ── Form row ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem }

/* ── Utilities ── */
.small { font-size: .9rem }
.muted { color: var(--muted2) }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1) }
.reveal.is-in { opacity: 1; transform: translateY(0) }

/* ── Footer ── */
.footer {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  color: var(--muted2); margin-top: 5rem;
}
.footer__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; padding: 3.5rem 0 2rem;
}
.footer__brand { display: flex; flex-direction: column; gap: .75rem; max-width: 280px }
.footer__brand p { margin: 0; font-size: .95rem; line-height: 1.6 }
.footer__links { display: flex; gap: 3rem; flex-wrap: wrap }
.footer__col { display: flex; flex-direction: column; gap: .6rem }
.footer__col h4 { margin: 0 0 .3rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700 }
.footer__col a { font-size: .92rem; color: var(--muted2); transition: color .15s ease }
.footer__col a:hover { color: var(--ink) }
.footer__bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .88rem; text-align: center; color: var(--muted2);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important }
  .reveal { opacity: 1; transform: none }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .preview__body { gap: 1rem }
  .preview-nav { width: 44px; height: 44px }
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr }
  .hero__card { display: none }
  .hero { text-align: center }
  .hero__content { align-items: center }
  .hero p { max-width: 100% }
  .hero__cta { justify-content: center }
  .solutions { grid-template-columns: 1fr }
  .grid3 { grid-template-columns: 1fr }
  .features { grid-template-columns: 1fr }
  .pricing { grid-template-columns: 1fr }
  .contact { grid-template-columns: 1fr }
  .mock__img { aspect-ratio: 3/4; max-height: 56vh; object-fit: contain; background: rgba(0,0,0,.18) }
  .showcase { grid-template-columns: 1fr }
  .showcase__view { order: -1 }
  .deploy-grid { grid-template-columns: 1fr }
  .solutions-detail { grid-template-columns: 1fr }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr }
  .deploy-split { grid-template-columns: 1fr }
}

@media (max-width: 768px) {
  .nav { display: none }
  .nav-toggle { display: flex }
  .header__right .btn--primary { display: none }
  .inspo__cards { justify-content: flex-start }
  .preview-nav { display: none }
  .preview__body { padding: 1.5rem; flex-direction: column }
  .footer__top { flex-direction: column; gap: 2rem }
  .footer__links { gap: 2rem }
}

@media (max-width: 480px) {
  .phone-mockup { width: 260px; height: 530px }
  .hero { padding: 5rem 0 3rem }
}
