/* ═══════════════════════════════════════════════════════════
   MWX Digilabs IT Solutions — Premium Brand Stylesheet
   Identity: deep navy / electric blue / cyan glow
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy-950: #04070f;
  --navy-900: #070d1d;
  --navy-800: #0b1530;
  --navy-700: #122149;
  --blue-600: #2e7cf6;
  --blue-500: #4a8ef8;
  --cyan-400: #38e1ff;
  --ink-900: #0d1526;
  --ink-600: #45506b;
  --off-white: #f5f7fb;
  --white: #ffffff;
  --line-dark: rgba(120, 160, 255, 0.12);
  --line-light: rgba(13, 21, 38, 0.08);
  --grad-brand: linear-gradient(98deg, #2e7cf6 0%, #38e1ff 100%);
  --grad-instagram: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --shadow-card: 0 18px 50px -18px rgba(4, 10, 30, 0.45);
  --shadow-soft: 0 10px 36px -14px rgba(13, 21, 38, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: rgba(56, 225, 255, 0.35); color: #fff; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; letter-spacing: -0.015em; }

/* ── Eyebrow + section heads ─────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; }
.section-head p { margin-top: 16px; font-size: 1.05rem; opacity: 0.78; }

section { padding: 110px 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-light { background: var(--off-white); color: var(--ink-900); }
.section-light .section-head p { color: var(--ink-600); opacity: 1; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(46, 124, 246, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(56, 225, 255, 0.55); }
.btn-primary:disabled { opacity: 0.7; cursor: progress; transform: none; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(140, 175, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--cyan-400); background: rgba(56, 225, 255, 0.07); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy-800); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(255, 255, 255, 0.5); }
.btn-outline-light {
  background: transparent;
  color: #cfe0ff;
  border: 1.5px solid rgba(140, 175, 255, 0.3);
}
.btn-outline-light:hover { border-color: var(--cyan-400); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ── Reveal animation ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ NAV ═══════════ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(4, 7, 15, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  max-width: 200px;
  min-width: 100px;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 9px 15px;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(225, 235, 255, 0.75);
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; background: rgba(78, 130, 255, 0.14); }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta-mobile { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding: 190px 0 130px;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(90, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 140, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.orb-1 { width: 480px; height: 480px; background: rgba(46, 124, 246, 0.35); top: -160px; right: -80px; animation: drift 14s ease-in-out infinite alternate; }
.orb-2 { width: 360px; height: 360px; background: rgba(56, 225, 255, 0.18); bottom: -120px; left: -100px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 240px; height: 240px; background: rgba(80, 90, 255, 0.22); top: 40%; left: 42%; animation: drift 16s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(40px, 26px); } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(15, 28, 60, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #aac4ff;
  margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 12px var(--cyan-400); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 700; margin-bottom: 22px; }
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.12rem; color: rgba(222, 232, 255, 0.72); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; }
.meta-item strong { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; }
.meta-item span { font-size: 0.78rem; color: rgba(200, 215, 250, 0.55); font-weight: 600; margin-top: 2px; }
.meta-divider { width: 1px; height: 36px; background: var(--line-dark); }

/* ═══════════ PHONE FRAME (premium product-mockup style, no notch) ═══════════ */
.phone-frame {
  position: relative;
  width: 250px;
  aspect-ratio: 9 / 19.2;
  border-radius: 44px;
  /* metallic bezel — subtle gradient for depth */
  background:
    linear-gradient(160deg, #2a3a5f 0%, #131c36 40%, #0a1124 100%);
  padding: 7px;
  box-shadow:
    0 36px 70px -22px rgba(2, 6, 18, 0.7),
    0 14px 36px -16px rgba(2, 6, 18, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 100px -30px rgba(56, 150, 255, 0.45);
}
/* subtle inner bezel ring */
.phone-frame::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 39px;
  pointer-events: none;
  background: #0a1124;
  z-index: 1;
}
/* glass highlight on top-left for depth */
.phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.04) 0%, transparent 25%);
  z-index: 5;
}
/* The screen area — fills the bezel inset, has its own clipping */
.phone-screenshot {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #f4f6fb;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}
/* Tiny side buttons for realism (volume + power) */
.phone-frame .phone-btn-vol,
.phone-frame .phone-btn-pwr {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
  z-index: 0;
}
.phone-frame .phone-btn-vol {
  left: -2px;
  top: 26%;
  height: 38px;
  box-shadow: 0 60px 0 0 currentColor;
  color: transparent;
}
.phone-frame .phone-btn-vol::after {
  content: '';
  position: absolute;
  left: 0; top: 56px;
  width: 3px; height: 60px;
  background: inherit;
  border-radius: 2px;
}
.phone-frame .phone-btn-pwr {
  right: -2px;
  top: 30%;
  height: 60px;
}
/* legacy .phone-notch from previous version — hide if present (we removed notch design) */
.phone-notch { display: none; }

/* hero phones layout — more dynamic, polished composition */
.hero-visual { position: relative; height: 600px; perspective: 1400px; }

/* Brand-icon screen (hero only — clean app intro card) */
.phone-icon-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
}
.phone-icon-screen.screen-lotto {
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(78, 158, 255, 0.42), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 85%, rgba(255, 110, 80, 0.18), transparent 65%),
    linear-gradient(170deg, #0a1942 0%, #060d2a 55%, #04081d 100%);
}
.phone-icon-screen.screen-bible {
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(180, 215, 255, 0.65), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 85%, rgba(255, 220, 140, 0.35), transparent 65%),
    linear-gradient(170deg, #eaf3ff 0%, #cfe2fa 50%, #b6d3f4 100%);
}
.brand-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 170, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 170, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 78%);
  pointer-events: none;
}
.brand-bg-pattern.brand-bg-light {
  background-image:
    linear-gradient(rgba(60, 110, 200, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 110, 200, 0.08) 1px, transparent 1px);
}
.app-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.app-brand.app-brand-light { color: #11244c; }
.app-brand-icon-wrap {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 26px;
  padding: 4px;
  background: linear-gradient(155deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  box-shadow:
    0 24px 50px -14px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 60px -10px rgba(56, 225, 255, 0.5);
}
.app-brand.app-brand-light .app-brand-icon-wrap {
  background: linear-gradient(155deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  box-shadow:
    0 22px 44px -12px rgba(30, 80, 160, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
/* subtle glow halo behind icon */
.app-brand-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.35), transparent 70%);
  filter: blur(14px);
  z-index: -1;
}
.app-brand.app-brand-light .app-brand-icon-wrap::before {
  background: radial-gradient(circle, rgba(120, 180, 255, 0.45), transparent 70%);
}
.app-brand-icon {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}
.app-brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-top: 4px;
}
.app-brand-tag {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(225, 235, 255, 0.7);
  margin: 0;
  letter-spacing: 0.005em;
}
.app-brand.app-brand-light .app-brand-tag { color: rgba(30, 60, 110, 0.7); }
.app-brand-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.brand-pill {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(225, 235, 255, 0.85);
  text-transform: uppercase;
}
.app-brand.app-brand-light .brand-pill {
  background: rgba(20, 45, 90, 0.06);
  border-color: rgba(20, 45, 90, 0.18);
  color: rgba(20, 45, 90, 0.78);
}
.phone-main {
  position: absolute;
  left: 18%; top: 40px;
  z-index: 3;
  width: 240px;
  transform: rotateY(-4deg) rotateX(2deg);
  animation: floaty 7s ease-in-out infinite;
}
.phone-back {
  position: absolute;
  right: 4%; top: 110px;
  width: 220px;
  transform: rotateY(8deg) rotateX(2deg) rotate(6deg);
  z-index: 1;
  animation: floaty 8.5s ease-in-out 0.8s infinite;
}
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #d8e6ff;
  background: rgba(13, 24, 52, 0.78);
  border: 1px solid rgba(130, 170, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px -12px rgba(3, 8, 24, 0.8);
  z-index: 4;
}
.chip-1 { top: 4px; right: 4%; animation: floaty 6s ease-in-out 0.4s infinite; }
.chip-2 { bottom: 56px; left: 0; animation: floaty 7s ease-in-out 1.1s infinite; }
.chip-3 { bottom: -8px; right: 14%; animation: floaty 6.5s ease-in-out 0.2s infinite; }

/* ═══════════ TRUST ═══════════ */
.trust { padding-top: 60px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(20, 36, 76, 0.55), rgba(9, 16, 36, 0.65));
  border: 1px solid var(--line-dark);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 225, 255, 0.4);
  box-shadow: 0 22px 50px -20px rgba(40, 120, 255, 0.4);
}
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56, 140, 255, 0.12);
  color: var(--cyan-400);
  margin-bottom: 20px;
}
.trust-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.trust-card p { font-size: 0.92rem; color: rgba(212, 226, 255, 0.62); }

/* ═══════════ SERVICES ═══════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -22px rgba(13, 30, 70, 0.28); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(46, 124, 246, 0.12), rgba(56, 225, 255, 0.12));
  color: var(--blue-600);
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--ink-900); }
.service-card p { font-size: 0.94rem; color: var(--ink-600); margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags i {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--line-light);
  color: var(--ink-600);
}

/* ═══════════ PORTFOLIO ═══════════ */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(18, 32, 70, 0.5), rgba(8, 14, 32, 0.7));
  border: 1px solid var(--line-dark);
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
.project-card-flip .project-visual { order: 2; }
.project-card-flip .project-info { order: 1; }

.project-visual { position: relative; display: flex; justify-content: center; padding: 30px 0; min-height: 480px; align-items: center; }
.project-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(95px); opacity: 0.55; pointer-events: none; }
.glow-lotto { background: radial-gradient(circle, rgba(46, 110, 246, 0.6), rgba(230, 70, 60, 0.22)); }
.glow-bible { background: radial-gradient(circle, rgba(120, 180, 255, 0.55), rgba(250, 210, 120, 0.22)); }

/* Phone gallery: 3 phones layered — premium product showcase */
.phone-gallery {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
}
.phone-gallery-main {
  width: 240px;
  z-index: 4;
  box-shadow:
    0 50px 90px -30px rgba(2, 6, 18, 0.85),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 120px -30px rgba(56, 150, 255, 0.65);
  animation: floaty 7s ease-in-out infinite;
  transform: translateY(-10px);
}
.phone-gallery-side {
  width: 200px;
  position: absolute;
  z-index: 1;
}
.phone-gallery-left {
  left: 4%;
  top: 50%;
  transform: translateY(-50%) rotateY(14deg) rotate(-10deg);
  animation: floaty 8s ease-in-out 0.4s infinite;
}
.phone-gallery-right {
  right: 4%;
  top: 50%;
  transform: translateY(-50%) rotateY(-14deg) rotate(10deg);
  animation: floaty 8s ease-in-out 0.8s infinite;
}
/* Soft floor reflection */
.phone-gallery::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(56, 150, 255, 0.35) 0%, transparent 65%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
.project-card:hover .phone-gallery-main { transform: translateY(-18px); }

.project-app-icon {
  position: absolute;
  width: 76px; height: 76px;
  border-radius: 20px;
  object-fit: cover;
  z-index: 5;
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: floaty 7s ease-in-out infinite;
}
.icon-lotto { bottom: 20px; left: 50%; transform: translateX(-220%); }
.icon-bible { bottom: 20px; left: 50%; transform: translateX(120%); }

.project-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.project-num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan-400);
  border: 1.5px solid rgba(56, 225, 255, 0.35);
  border-radius: 10px;
  padding: 4px 10px;
}
.project-type { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(190, 210, 255, 0.55); }
.project-info h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 16px; }
.project-info > p { color: rgba(218, 230, 255, 0.72); margin-bottom: 26px; max-width: 480px; }
.project-features { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin-bottom: 32px; }
.project-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(225, 236, 255, 0.85);
}
.project-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 124, 246, 0.3), rgba(56, 225, 255, 0.3));
  border: 1.5px solid var(--cyan-400);
}

/* ═══════════ STORE BUTTONS (Google Play / App Store) ═══════════ */
.project-stores { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 13px;
  border: 1.5px solid rgba(160, 195, 255, 0.18);
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  cursor: pointer;
  min-width: 168px;
}
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .store-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78; }
.store-btn .store-name { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; letter-spacing: 0.005em; margin-top: 1px; }
.store-btn-active:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-400);
  box-shadow: 0 16px 36px -14px rgba(46, 124, 246, 0.55);
}
.store-btn-disabled {
  background: rgba(20, 30, 56, 0.6);
  border: 1.5px dashed rgba(160, 195, 255, 0.22);
  color: rgba(210, 224, 250, 0.55);
  cursor: not-allowed;
  pointer-events: none;
}
.store-btn-disabled .store-name { color: rgba(220, 232, 255, 0.7); }

/* ═══════════ PROCESS ═══════════ */
.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -22px rgba(13, 30, 70, 0.25); }
.process-step::after {
  content: '';
  position: absolute;
  top: 50%; right: -24px;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, rgba(46, 124, 246, 0.5), rgba(56, 225, 255, 0.2));
}
.process-step:nth-child(3n)::after,
.process-step:last-child::after { display: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(46, 124, 246, 0.1), rgba(56, 225, 255, 0.12));
  color: var(--blue-600);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.12rem; color: var(--ink-900); margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; color: var(--ink-600); }

/* ═══════════ ABOUT ═══════════ */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-copy > p { color: rgba(218, 230, 255, 0.72); font-size: 1.02rem; margin-bottom: 34px; }
.founder-card {
  display: flex;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(16, 28, 60, 0.55);
  border: 1px solid var(--line-dark);
  align-items: flex-start;
}
.founder-photo {
  flex: none;
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #fff;
  border: 2px solid rgba(56, 225, 255, 0.35);
  box-shadow: 0 14px 32px -10px rgba(3, 10, 30, 0.65), 0 0 0 4px rgba(56, 225, 255, 0.08);
}
.founder-meta { flex: 1; min-width: 0; }
.founder-card strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.founder-card span { display: block; font-size: 0.78rem; font-weight: 700; color: var(--cyan-400); margin-bottom: 12px; letter-spacing: 0.04em; }
.founder-quote {
  position: relative;
  font-size: 0.94rem;
  font-style: italic;
  color: rgba(222, 234, 255, 0.82);
  line-height: 1.6;
  padding-left: 18px;
  border-left: 2px solid rgba(56, 225, 255, 0.35);
}
.founder-quote .quote-mark {
  position: absolute;
  left: -2px;
  top: -8px;
  font-size: 1.8rem;
  font-family: var(--font-head);
  color: var(--cyan-400);
  font-style: normal;
  line-height: 1;
  font-weight: 800;
}

.about-panel {
  background: linear-gradient(165deg, rgba(22, 40, 86, 0.55), rgba(10, 18, 40, 0.7));
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  padding: 42px 38px;
  box-shadow: var(--shadow-card);
}
.about-panel h3 { font-size: 1.3rem; margin-bottom: 26px; }
.why-list { display: flex; flex-direction: column; gap: 17px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 0.97rem; color: rgba(226, 237, 255, 0.88); }
.check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 124, 246, 0.25), rgba(56, 225, 255, 0.25));
  border: 1.5px solid var(--cyan-400);
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 6px; top: 4.5px;
  width: 6px; height: 9px;
  border: solid var(--cyan-400);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

/* ═══════════ CTA ═══════════ */
.cta { background: var(--navy-950); padding: 40px 0 110px; }
.cta-block {
  position: relative;
  text-align: center;
  padding: 88px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0d2a6e 0%, #103a96 45%, #0a5dab 100%);
  border: 1px solid rgba(120, 180, 255, 0.3);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.35), transparent 65%);
  top: -280px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-block h2 { position: relative; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.cta-block p { position: relative; font-size: 1.08rem; color: rgba(225, 240, 255, 0.8); margin-bottom: 38px; }
.cta-actions { position: relative; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ═══════════ CONTACT ═══════════ */
.contact-inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--ink-900); margin-bottom: 18px; }
.contact-copy > p { color: var(--ink-600); margin-bottom: 34px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-details li { display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--ink-900); font-size: 0.97rem; }
.contact-details svg { color: var(--blue-600); flex: none; }
.contact-details a { transition: color 0.2s ease; }
.contact-details a:hover { color: var(--blue-600); }
.contact-socials { display: flex; gap: 12px; align-items: center; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-light);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.social-pill svg { flex: none; }
.social-pill-sm {
  padding: 0;
  width: 42px; height: 42px;
  justify-content: center;
  border-radius: 50%;
}
.social-instagram {
  background: var(--grad-instagram);
  color: #fff;
  border-color: transparent;
}
.social-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(204, 35, 102, 0.55);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 26px;
  padding: 44px;
  box-shadow: 0 28px 64px -28px rgba(13, 30, 70, 0.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-size: 0.84rem; font-weight: 800; color: var(--ink-900); letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink-900);
  padding: 13px 17px;
  border-radius: 13px;
  border: 1.5px solid var(--line-light);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 124, 246, 0.12);
}
.form-status { margin-top: 16px; font-size: 0.92rem; font-weight: 700; min-height: 1.4em; padding: 10px 14px; border-radius: 10px; opacity: 0; transition: opacity 0.25s ease; }
.form-status.visible { opacity: 1; }
.form-status.success { color: #0a6b3a; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); }
.form-status.error { color: #b1241b; background: rgba(193, 36, 27, 0.08); border: 1px solid rgba(193, 36, 27, 0.25); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #030509;
  border-top: 1px solid var(--line-dark);
  padding: 72px 0 34px;
  color: rgba(205, 220, 250, 0.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}
.footer-logo-wrap {
  max-width: 220px;
  margin-bottom: 16px;
}
.footer-logo {
  height: auto;
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p { font-size: 0.92rem; max-width: 250px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.footer-h-gap { margin-top: 16px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cyan-400); }
.footer-loc { font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(120, 160, 255, 0.08);
  font-size: 0.84rem;
}
.footer-made { color: rgba(170, 195, 245, 0.4); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { height: 540px; max-width: 560px; margin: 0 auto; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .project-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .project-card-flip .project-visual { order: 0; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .nav-logo-img { height: 42px; }
}

@media (max-width: 820px) {
  .nav-logo { max-width: 160px; }
  .nav-logo-img { height: 38px; max-height: 38px; }
}

@media (max-width: 720px) {
  section { padding: 76px 0; }
  .hero { padding: 140px 0 90px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { max-width: 150px; }
  .nav-logo-img { height: 36px; max-height: 36px; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(4, 7, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-dark);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { display: block; padding: 13px 16px; font-size: 1rem; }
  .nav-cta-mobile { display: block; margin-top: 12px; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; }

  .hero-visual { height: auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
  .phone-main, .phone-back { position: static; transform: none; }
  .phone-back { display: none; }
  .float-chip { display: none; }
  .hero-meta { gap: 14px; }
  .meta-divider { display: none; }
  .meta-item strong { font-size: 0.95rem; }
  .meta-item span { font-size: 0.74rem; }

  .phone-gallery { height: 460px; max-width: 380px; }
  .phone-gallery-main { width: 200px; }
  .phone-gallery-side { width: 160px; }
  .project-app-icon { width: 64px; height: 64px; }
  .icon-lotto { transform: translateX(-180%); }
  .icon-bible { transform: translateX(80%); }

  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .founder-photo { width: 130px; height: 130px; }
  .founder-quote { padding-left: 14px; }

  .trust-grid, .services-grid, .process-track { grid-template-columns: 1fr; }
  .project-card { padding: 30px 22px; }
  .project-features { grid-template-columns: 1fr; }
  .project-stores { gap: 10px; }
  .store-btn { min-width: 0; flex: 1 1 calc(50% - 5px); padding: 9px 14px 9px 12px; }
  .store-btn .store-name { font-size: 0.92rem; }
  .icon-lotto { transform: translateX(-140%); }
  .icon-bible { transform: translateX(40%); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 30px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-block { padding: 60px 24px; }
}

/* Foldable / very narrow phones */
@media (max-width: 380px) {
  .nav-logo { max-width: 120px; }
  .nav-logo-img { height: 30px; max-height: 30px; }
  .container { width: calc(100% - 32px); }
  .store-btn { flex: 1 1 100%; }
  .phone-gallery { height: 380px; }
  .phone-gallery-main { width: 180px; }
  .phone-gallery-side { width: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}
