:root {
  --navy-950: #0a1628;
  --navy-900: #0f2744;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --gold-500: #f59e0b;
  --orange-500: #f97316;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: rgba(148, 163, 184, 0.25);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 39, 68, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-600);
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.site-header:has(+ main .hero) {
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand:hover .brand-logo {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-600));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav a:not(.nav-cta):hover {
  color: var(--blue-700);
}

.nav-cta {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--teal-600));
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
  filter: brightness(1.05);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--slate-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background: linear-gradient(160deg, #ecfdf5 0%, #eff6ff 35%, #fff 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.45), transparent 70%);
}

.orb-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  animation-delay: -3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
  animation-delay: -5s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 85%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-700), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--slate-700);
  font-size: 1.1rem;
  max-width: 56ch;
}

.lead em {
  color: var(--teal-600);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--teal-600) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.45);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue-700);
  border-color: var(--border);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--blue-600);
  background: var(--white);
  transform: translateY(-1px);
  color: var(--blue-700);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(37, 99, 235, 0.3), rgba(249, 115, 22, 0.15));
  z-index: -1;
  opacity: 0.6;
  filter: blur(12px);
}

.hero-card-inner {
  display: grid;
  gap: 0.85rem;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f1f5f9);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.stat-accent {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(20, 184, 166, 0.08));
  border-color: rgba(29, 78, 216, 0.15);
}

.stat-icon {
  color: var(--teal-500);
  font-size: 0.6rem;
  line-height: 2.2;
}

.stat-accent .stat-icon {
  color: var(--orange-500);
}

.stat-value {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.15rem;
  color: var(--slate-500);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-tag {
  margin: 0 0 0.6rem;
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.section-head p {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 78, 216, 0.2);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1.15rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
}

.card-icon-teal {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-600);
}

.card-icon-gold {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-500);
}

.card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
}

.card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.98rem;
}

/* ── Featured product ── */
.section-featured {
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--teal-500), var(--orange-500));
}

.product-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-copy h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.product-copy p {
  margin: 0 0 1rem;
  color: var(--slate-700);
}

.feature-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--slate-700);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-600));
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.mock-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.product-spotlight:hover .mock-panel {
  transform: scale(1.02);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 14px;
  background: linear-gradient(90deg, var(--navy-900), var(--blue-800));
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.mock-dot:first-child { background: #f87171; }
.mock-dot:nth-child(2) { background: #fbbf24; }
.mock-dot:nth-child(3) { background: #34d399; }

.mock-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 240px;
}

.mock-sidebar {
  background: #f1f5f9;
  border-right: 1px solid var(--border);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-nav-item {
  height: 8px;
  border-radius: 4px;
  background: #cbd5e1;
  margin-inline: 0.25rem;
}

.mock-nav-item.active {
  background: linear-gradient(90deg, var(--blue-600), var(--teal-500));
  height: 10px;
}

.mock-content {
  padding: 1rem;
}

.mock-line {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 0.85rem;
}

.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.mock-mini-card {
  height: 48px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid var(--border);
}

.mock-mini-card.accent {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(20, 184, 166, 0.15));
  border-color: rgba(29, 78, 216, 0.2);
}

/* ── About ── */
.section-about {
  background: var(--navy-950);
  color: var(--slate-300);
}

.section-about .section-tag {
  color: var(--teal-500);
}

.section-about h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.section-about p {
  margin: 0 0 1rem;
  color: #94a3b8;
  font-size: 1.02rem;
}

.section-about p strong {
  color: var(--white);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.about-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #64748b;
}

.about-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.about-logo {
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-tagline {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
}

.about-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.about-name {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-name-ik {
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #f97316;
}

.about-name-ikra {
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

.about-name-alp {
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #2dd4bf;
}

.about-name-plus {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.about-values span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal-500);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Contact ── */
.section-contact {
  background: linear-gradient(180deg, #fff, var(--surface));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-grid h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy-900);
}

.contact-grid > div > p:last-of-type {
  margin: 0;
  color: var(--slate-500);
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
}

.contact-row strong,
.contact-row a {
  font-size: 1.02rem;
  font-weight: 600;
}

/* ── Mobile download ── */
.section-mobile {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.mobile-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.mobile-download-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.mobile-download-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mobile-download-card-huawei {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.mobile-download-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.mobile-download-icon svg {
  width: 28px;
  height: 28px;
}

.mobile-download-icon-android {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
}

.mobile-download-icon-huawei {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.mobile-download-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
}

.mobile-download-card > p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.mobile-download-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mobile-download-meta li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 500;
}

.mobile-download-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
}

.mobile-download-btn {
  margin-top: 0.5rem;
}

.mobile-download-note {
  margin: 1.75rem 0 0;
  text-align: center;
  color: var(--slate-500);
  font-size: 0.9rem;
  max-width: 720px;
  margin-inline: auto;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--blue-700);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid,
  .cards,
  .product-spotlight,
  .mobile-download-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .nav a:not(.nav-cta):hover {
    background: var(--surface);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .eyebrow-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .product-spotlight, .hero-card, .contact-card, .brand-logo, .stat { transition: none; }
}
