/* =========================================================
   NEXORA — marketing site styles
   Design tokens (deliberate, not defaults):
   - True brand black (#030408, taken directly from the Nexora
     mark) instead of a generic #111 — everything dark on this
     site is built from that one value, not an arbitrary near-black.
   - Two-family type system: Unbounded (geometric, a little
     architectural) for display headlines and numerals, Plus
     Jakarta Sans for body/UI — a tech-premium pairing that
     isn't the default Inter+system-ui stack.
   - Violet is the single accent family (deep/electric/light),
     used with intent: electric violet for action, soft lavender
     only as a light-surface tint. No secondary accent colour.
   - Border radius scales with the size of the surface: 10px on
     buttons/inputs, 20px on cards, 28px on device/browser frames
     — not one radius reused everywhere regardless of hierarchy.
   ========================================================= */

:root {
  /* ---- Brand core ---- */
  --ink: #030408;              /* true brand black — matches the Nexora mark exactly */
  --near-black: #0b0716;       /* lifted, violet-tinted dark for large sections */
  --violet-950: #150c29;
  --violet-800: #2e1868;
  --violet-700: #4b2e93;
  --violet-600: #6e3ff2;       /* primary electric violet */
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;
  --violet-glow: rgba(139, 92, 246, 0.35);

  --lavender-100: #efeafb;
  --paper: #f1eafc;            /* main light background — light purple, not white */
  --white: #ffffff;

  --text: #17132b;             /* body text on light surfaces */
  --text-muted: rgba(23, 19, 43, 0.62);
  --text-on-dark: #f3f0fa;
  --text-on-dark-muted: rgba(243, 240, 250, 0.66);

  --line: rgba(23, 19, 43, 0.1);
  --line-dark: rgba(243, 240, 250, 0.14);

  --shadow-soft: 0 20px 50px -25px rgba(23, 19, 43, 0.35);
  --shadow-violet: 0 25px 60px -20px rgba(110, 63, 242, 0.4);

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --font-display: 'Unbounded', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5em; line-height: 1.15; color: var(--text); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-on-dark); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
select { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--violet-600); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--violet-500); outline-offset: 3px; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--violet-500);
  margin: 0 0 0.9em;
  font-weight: 600;
}
.section-head-light .kicker { color: var(--violet-400); }

/* ---------- Layout helpers ---------- */
.section { padding: 108px 0; position: relative; background-color: var(--paper); overflow: hidden; }
.section-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-dark { background: var(--near-black); }

/* Light sections get a faint grid + two soft violet glows behind the
   content — echoes the hero's grid/glow treatment so the light and dark
   parts of the page feel like one system, not a plain white gap between
   the "designed" bits. Dark sections opt out since they already carry
   their own background. Faded at the edges so section seams stay clean. */
.section:not(.section-dark)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(560px 420px at 6% -8%, rgba(110, 63, 242, 0.14), transparent 65%),
    radial-gradient(520px 400px at 100% 108%, rgba(139, 92, 246, 0.12), transparent 65%),
    linear-gradient(rgba(23, 19, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 43, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 55%, transparent 100%);
}
.section-head { max-width: 620px; margin: 0 0 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-lede { color: var(--text-muted); font-size: 1.04rem; max-width: 56ch; }
.section-dark .section-lede { color: var(--text-on-dark-muted); }
.section-dark p { color: var(--text-on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary { background: var(--violet-600); color: #fff; box-shadow: var(--shadow-violet); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 30px 70px -18px rgba(110, 63, 242, 0.55); }
.btn-outline { border-color: var(--line); color: var(--text); background: transparent; }
.section-dark .btn-outline { border-color: var(--line-dark); color: var(--text-on-dark); }
.btn-outline:hover { border-color: var(--violet-500); color: var(--violet-500); }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--text-on-dark); border-color: var(--line-dark); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* The glass blur lives on a ::before, not on .site-header itself. A
   backdrop-filter on .site-header would make it a containing block for
   any position:fixed descendant (the mobile nav drawer included), which
   breaks that drawer's full-viewport-height positioning. Keeping the
   filter on a pseudo-element with no descendants avoids that entirely. */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(3, 4, 8, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.35s var(--ease);
}
.site-header.is-scrolled {
  padding: 12px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px -24px rgba(23, 19, 43, 0.25);
}
.site-header.is-scrolled::before { background: rgba(250, 249, 253, 0.86); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; display: block; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em;
  color: var(--text-on-dark);
  transition: color 0.35s var(--ease);
}
.site-header.is-scrolled .brand-word { color: var(--text); }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  color: var(--text-on-dark-muted); font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s var(--ease);
}
.site-header.is-scrolled .primary-nav a { color: var(--text-muted); }
.primary-nav a:hover { color: var(--text-on-dark); }
.site-header.is-scrolled .primary-nav a:hover { color: var(--text); }
.primary-nav a.active { color: var(--violet-400); }
.site-header.is-scrolled .primary-nav a.active { color: var(--violet-600); }

.nav-cta {
  background: var(--violet-600); color: #fff !important; padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta:hover { color: #fff !important; opacity: 0.92; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 20; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-on-dark); margin: 5px 0; border-radius: 2px; transition: background 0.3s var(--ease); }
.site-header.is-scrolled .nav-toggle span { background: var(--text); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: -10% -10%;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.hero-glow-a { width: 620px; height: 620px; background: radial-gradient(circle, var(--violet-700), transparent 70%); top: -180px; left: -120px; }
.hero-glow-b { width: 520px; height: 520px; background: radial-gradient(circle, #2c4bd6, transparent 70%); bottom: -220px; right: -80px; opacity: 0.35; }
.particle { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--violet-400); opacity: 0.6; animation: floatY 8s ease-in-out infinite; }
.particle.p1 { top: 22%; left: 12%; animation-delay: 0s; }
.particle.p2 { top: 65%; left: 8%; animation-delay: 1.4s; width: 3px; height: 3px; }
.particle.p3 { top: 30%; left: 92%; animation-delay: 0.8s; }
.particle.p4 { top: 78%; left: 88%; animation-delay: 2.2s; width: 4px; height: 4px; }
.particle.p5 { top: 12%; left: 55%; animation-delay: 3s; width: 3px; height: 3px; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 40px 32px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
}
.hero-copy h1 {
  color: var(--text-on-dark);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero-lede { color: var(--text-on-dark-muted); font-size: 1.08rem; max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { color: rgba(243, 240, 250, 0.45); font-size: 0.85rem; margin: 0; }

/* ---------- Hero visual: mockup stack ---------- */
.hero-visual { position: relative; height: 480px; }
.mockup-stack { position: absolute; inset: 0; }

.browser-window, .device-laptop-screen .lumiere-demo, .device-phone, .phone-window {
  box-shadow: var(--shadow-soft);
}

.browser-window {
  position: absolute; top: 6%; left: 4%; width: min(480px, 82%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.08);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.browser-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: #efeafb;
  border-bottom: 1px solid var(--line);
}
.chrome-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(23,19,43,0.18); }
.chrome-url {
  margin-left: 10px; font-size: 11px; color: var(--text-muted);
  background: rgba(23,19,43,0.06); padding: 4px 14px; border-radius: 20px;
}
.browser-body { position: relative; background: var(--white); }

.orion-demo { padding-bottom: 4px; }
.orion-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px 6px; }
.orion-logo { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; color: var(--violet-700); }
.orion-links { display: flex; gap: 8px; }
.orion-links i { width: 18px; height: 3px; background: var(--line); border-radius: 2px; display: block; }
.orion-hero { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 18px 30px 16px; }
.orion-eyebrow { font-size: 9px; letter-spacing: 0.14em; color: var(--violet-600); text-transform: uppercase; font-weight: 600; }
.orion-heading { font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.2; color: var(--text); }
.orion-btn { margin-top: 8px; font-size: 10.5px; font-weight: 600; padding: 9px 20px; border-radius: 20px; background: var(--violet-600); color: #fff; }
.orion-cards { display: flex; gap: 10px; padding: 4px 22px 22px; }
.orion-card { flex: 1; height: 46px; border-radius: 10px; background: linear-gradient(135deg, var(--lavender-100), #fff); border: 1px solid var(--line); }

.phone-window, .device-phone {
  border-radius: 30px;
  border: 6px solid var(--near-black);
  background: var(--near-black);
  overflow: hidden;
  position: relative;
}
.phone-window { position: absolute; bottom: 0; right: 2%; width: 150px; height: 300px; transform: perspective(1400px) rotateY(-6deg) rotateX(1deg); }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 46%; height: 16px; background: var(--near-black); border-radius: 0 0 10px 10px; z-index: 2; }
.phone-body { position: relative; background: var(--white); height: 100%; }

.orion-demo-mobile { padding-top: 22px; height: 100%; display: flex; flex-direction: column; }
.orion-nav-m { display: flex; justify-content: space-between; align-items: center; padding: 6px 14px 10px; }
.orion-nav-m > span { width: 34px; height: 6px; border-radius: 3px; background: var(--violet-700); display: block; }
.burger { display: flex; flex-direction: column; gap: 3px; }
.burger i { width: 14px; height: 2px; background: var(--line); display: block; border-radius: 2px; }
.orion-hero-m { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 16px 10px; flex: 1; justify-content: center; }
.orion-heading-m { font-family: var(--font-display); font-weight: 600; font-size: 13px; line-height: 1.3; color: var(--text); }
.orion-btn-m { font-size: 9px; font-weight: 600; padding: 7px 16px; border-radius: 20px; background: var(--violet-600); color: #fff; }
.orion-card-m { display: block; height: 26px; margin: 6px 14px; border-radius: 8px; background: var(--lavender-100); border: 1px solid var(--line); }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: var(--text-on-dark);
  font-size: 0.82rem; font-weight: 600;
  padding: 9px 15px; border-radius: 30px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  animation: floatY 6s ease-in-out infinite;
}
.chip-ico { width: 14px; height: 14px; display: inline-block; background-color: var(--violet-400); -webkit-mask-image: var(--icon); mask-image: var(--icon); mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center; }
/* Positioned in the clear dark margin around the mockups (verified against
   their rendered bounding boxes) so the glass chips never sit on top of the
   light browser/phone surfaces, where their translucent background loses
   all contrast. */
.chip-design { top: -8%; left: 6%; animation-delay: 0.2s; }
.chip-online { top: -8%; right: -4%; animation-delay: 2.8s; }
.chip-fast { top: 40%; right: -20%; animation-delay: 2s; }
.chip-mobile { bottom: -12%; left: 28%; animation-delay: 1.2s; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================================================================
   FIRST IMPRESSION
   ================================================================ */
.section-impression { padding: 100px 0; }
.impression-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.impression-grid h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 14ch; }
.impression-copy > p { font-size: 1.06rem; color: var(--text-muted); margin-bottom: 40px; max-width: 58ch; }
.impression-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.impression-points h3 { font-size: 1.02rem; margin-bottom: 8px; }
.impression-points p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-violet); border-color: rgba(110,63,242,0.25); }
.service-icon {
  display: block; width: 26px; height: 26px; margin-bottom: 20px;
  background-color: var(--violet-600);
  -webkit-mask-image: var(--icon); mask-image: var(--icon);
  mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-4deg); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ================================================================
   COMPARISON
   ================================================================ */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-card { padding: 36px 32px; border-radius: var(--radius-md); }
.comparison-basic { background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); }
.comparison-basic h3 { color: rgba(243,240,250,0.7); }
.comparison-basic li { color: rgba(243,240,250,0.5); }
.comparison-nexora { background: linear-gradient(160deg, rgba(110,63,242,0.22), rgba(110,63,242,0.04)); border: 1px solid rgba(110,63,242,0.4); }
.comparison-card li { position: relative; padding: 10px 0 10px 26px; font-size: 0.96rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.comparison-card li:last-child { border-bottom: none; }
.comparison-basic li::before { content: '–'; position: absolute; left: 2px; color: rgba(243,240,250,0.35); }
.comparison-nexora li { color: var(--text-on-dark); }
.comparison-nexora li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--violet-400); }

/* ================================================================
   PORTFOLIO
   ================================================================ */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  border: 1px solid var(--line); background: transparent; color: var(--text-muted);
  padding: 9px 18px; border-radius: 30px; font-size: 0.86rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--violet-500); color: var(--violet-600); }
.filter-btn.is-active { background: var(--violet-600); border-color: var(--violet-600); color: #fff; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-violet); }
.portfolio-card.is-hidden { display: none; }

.portfolio-preview { aspect-ratio: 4/3; display: flex; flex-direction: column; background: var(--mk-bg, #eee); }
.mini-browser { display: flex; gap: 5px; padding: 10px 12px; background: rgba(0,0,0,0.08); }
.mini-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.mini-content { flex: 1; padding: 18px; color: var(--mk-text); }
.mini-centered { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; }
.mini-split { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.mini-word { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.mini-line { font-size: 0.78rem; opacity: 0.8; }
.mini-btn { align-self: center; font-size: 0.72rem; font-weight: 600; padding: 8px 16px; border-radius: 20px; background: var(--mk-accent); color: #fff; }
.mini-split .mini-btn { align-self: flex-start; }
.mini-grid { display: flex; gap: 6px; }
.mini-grid i { width: 30px; height: 22px; border-radius: 5px; background: var(--mk-accent); opacity: 0.55; display: block; }
.mini-grid i:nth-child(2) { opacity: 0.35; }
.mini-grid i:nth-child(3) { opacity: 0.2; }

.mockup-theme-lumiere { --mk-bg: #17130f; --mk-text: #f4efe6; --mk-accent: #b08d57; }
.mockup-theme-dental { --mk-bg: #eaf2fb; --mk-text: #12314c; --mk-accent: #2f8fd1; }
.mockup-theme-fitness { --mk-bg: #121116; --mk-text: #ffffff; --mk-accent: #ff5b6e; }
.mockup-theme-beauty { --mk-bg: #fbeef2; --mk-text: #5b2a3a; --mk-accent: #c98aa0; }
.mockup-theme-property { --mk-bg: #edf1f6; --mk-text: #1f2937; --mk-accent: #9c7c4e; }
.mockup-theme-orion { --mk-bg: #f6f3fc; --mk-text: #211441; --mk-accent: #6e3ff2; }
.mockup-theme-cafe { --mk-bg: #2b1c14; --mk-text: #f3e6d8; --mk-accent: #caa06a; }
.mockup-theme-construction { --mk-bg: #1c1a17; --mk-text: #f2ede4; --mk-accent: #e0a333; }
.mockup-theme-financial { --mk-bg: #0e1b2e; --mk-text: #eef3f8; --mk-accent: #c9a24b; }
.mockup-theme-shop { --mk-bg: #f1f0e8; --mk-text: #33362c; --mk-accent: #7c8f5c; }

.portfolio-info { padding: 22px 24px 26px; }
.portfolio-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--violet-600); background: var(--lavender-100); padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.portfolio-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-info p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11, 7, 22, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  max-width: 880px; width: 100%; max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(23,19,43,0.08); color: var(--text); font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.modal-close:hover { background: rgba(23,19,43,0.15); }
.modal-preview { min-height: 260px; }
.modal-preview .portfolio-preview { aspect-ratio: auto; height: 100%; }
.modal-info { padding: 34px 34px 34px 28px; display: flex; flex-direction: column; }
.modal-meta { font-size: 0.85rem; color: var(--violet-600); font-weight: 600; margin-bottom: 6px; }
.modal-info p { color: var(--text-muted); }
.modal-devices { display: flex; gap: 10px; margin: 6px 0 22px; }
.modal-devices span { font-size: 0.76rem; color: var(--text-muted); border: 1px solid var(--line); padding: 5px 12px; border-radius: 20px; }
.modal-cta { margin-top: auto; }

/* ================================================================
   LUMIÈRE CASE STUDY
   ================================================================ */
.case-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.case-copy p { max-width: 46ch; }
.case-steps { display: flex; flex-wrap: wrap; gap: 22px; margin: 28px 0 30px; }
.case-steps li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--text-on-dark-muted); }
.case-steps span {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(110,63,242,0.18); border: 1px solid rgba(110,63,242,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--violet-400);
}
.link-arrow { color: var(--violet-400); border-bottom: 1px solid var(--violet-700); padding-bottom: 3px; font-size: 0.94rem; font-weight: 600; }
.link-arrow:hover { color: var(--violet-300, #c4b0ff); }

.case-devices { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 380px; }
.device-laptop { width: 100%; max-width: 480px; }
.device-laptop-screen {
  background: #0c0b10; border-radius: 16px 16px 4px 4px; padding: 12px 12px 6px;
}
.lumiere-demo { border-radius: 8px; overflow: hidden; background: #f4efe6; aspect-ratio: 16/10; }
.lumiere-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: #17130f; }
.lumiere-nav span { font-family: var(--font-display); font-style: normal; font-weight: 600; color: #f4efe6; font-size: 12px; letter-spacing: 0.02em; }
.lumiere-nav i { width: 16px; height: 2px; background: rgba(244,239,230,0.4); display: block; margin-left: 8px; }
.lumiere-hero { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 28px 24px; background: linear-gradient(160deg, #211b15, #17130f); height: 100%; }
.lumiere-eyebrow { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #b08d57; font-weight: 600; }
.lumiere-heading { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: #f4efe6; max-width: 12ch; line-height: 1.25; }
.lumiere-btn { margin-top: auto; font-size: 10.5px; font-weight: 600; padding: 9px 18px; background: #f4efe6; color: #17130f; border-radius: 2px; }
.device-laptop-base {
  width: 112%; max-width: 540px; height: 14px; margin: -2px auto 0; position: relative; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, #2a2733, #16141c); border-radius: 0 0 10px 10px;
}

.device-phone { position: absolute; right: 2%; bottom: -18px; width: 130px; height: 262px; border-color: #0c0b10; }
.lumiere-demo-mobile { background: #17130f; height: 100%; padding-top: 20px; display: flex; flex-direction: column; }
.lumiere-nav-m { text-align: center; padding-bottom: 14px; }
.lumiere-nav-m span { font-family: var(--font-display); font-weight: 600; font-size: 11px; color: #f4efe6; }
.lumiere-hero-m { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 0 16px; }
.lumiere-heading-m { font-family: var(--font-display); font-weight: 500; font-size: 12px; color: #f4efe6; line-height: 1.3; }
.lumiere-btn-m { font-size: 9px; font-weight: 600; padding: 7px 16px; background: #f4efe6; color: #17130f; border-radius: 2px; }

/* ================================================================
   WEBSITE TYPES
   ================================================================ */
.types-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.type-chip {
  padding: 12px 22px; border-radius: 30px; border: 1px solid var(--line);
  font-size: 0.92rem; font-weight: 500; color: var(--text);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.type-chip:hover { border-color: var(--violet-500); color: var(--violet-600); background: var(--lavender-100); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.journey-flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 64px; padding: 22px 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark);
}
.journey-flow span {
  font-size: 0.82rem; font-weight: 600; color: var(--text-on-dark-muted);
  padding: 8px 16px; border-radius: 20px; background: rgba(255,255,255,0.05);
  position: relative;
}
.journey-flow span:not(:last-child)::after {
  content: '→'; position: absolute; right: -19px; top: 50%; transform: translateY(-50%);
  color: rgba(243,240,250,0.3); font-size: 0.85rem;
}
.journey-brand { background: var(--violet-600) !important; color: #fff !important; }

.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 28px; }
.process-timeline li { padding-top: 20px; border-top: 1px solid var(--line-dark); }
.process-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--violet-500); margin-bottom: 14px; }
.process-timeline h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-timeline p { font-size: 0.9rem; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pricing-card {
  padding: 32px 26px; border-radius: var(--radius-md); border: 1px solid var(--line);
  background: var(--white); display: flex; flex-direction: column;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pricing-for { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 22px; min-height: 42px; }
.pricing-card ul { margin-bottom: 26px; flex: 1; }
.pricing-card li { position: relative; padding: 8px 0 8px 22px; font-size: 0.88rem; border-bottom: 1px solid var(--line); }
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-500); }
.pricing-card.is-featured { background: linear-gradient(165deg, rgba(110,63,242,0.08), rgba(110,63,242,0.02)); border-color: rgba(110,63,242,0.35); position: relative; box-shadow: var(--shadow-violet); }
.pricing-badge {
  position: absolute; top: -13px; left: 26px; background: var(--violet-600); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 5px 14px; border-radius: 20px;
}
.pricing-custom { justify-content: center; }
.pricing-tell { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 26px; }

/* ================================================================
   WHY NEXORA
   ================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px; }
.why-item h3 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.why-icon {
  display: block; width: 24px; height: 24px; margin-bottom: 16px;
  background-color: var(--violet-600);
  -webkit-mask-image: var(--icon); mask-image: var(--icon);
  mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center;
}

/* ================================================================
   FUTURE / ROADMAP
   ================================================================ */
.future-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.future-grid > div > p { max-width: 46ch; }
.roadmap-list { display: flex; flex-direction: column; gap: 14px; }
.roadmap-list li {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark);
  font-size: 0.94rem; color: var(--text-on-dark-muted);
}
.roadmap-tag {
  flex-shrink: 0; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--violet-400); border: 1px solid rgba(110,63,242,0.4); padding: 4px 10px; border-radius: 20px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 4px; font-size: 1.02rem; font-weight: 600; color: var(--text);
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-left: 20px; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--violet-600); border-radius: 2px; transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.faq-icon::after { width: 2px; height: 18px; top: 0; left: 8px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer p { padding: 0 4px 22px; color: var(--text-muted); font-size: 0.95rem; max-width: 64ch; margin: 0; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 14ch; }
.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin: 8px 0 24px; }
.contact-details { display: flex; gap: 24px; flex-wrap: wrap; }
.contact-details a { color: var(--text-on-dark-muted); font-size: 0.94rem; border-bottom: 1px solid var(--line-dark); padding-bottom: 2px; }
.contact-details a:hover { color: var(--text-on-dark); border-color: var(--violet-400); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: block; font-size: 0.82rem; color: var(--text-on-dark-muted); }
.contact-form label span { display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  color: var(--text-on-dark); padding: 12px 14px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.94rem;
}
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.contact-form select option { background: var(--near-black); color: var(--text-on-dark); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--violet-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: rgba(243,240,250,0.45); font-size: 0.82rem; margin: -4px 0 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 70px 0 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer-brand-col p { font-size: 0.92rem; margin: 16px 0 22px; max-width: 30ch; }
.footer-brand { margin-bottom: 4px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--text-on-dark); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--text-on-dark-muted); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(243,240,250,0.4); margin: 0; }
.footer-seal { width: 78px; height: auto; border-radius: 10px; opacity: 0.9; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .particle, .float-chip { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-primary:hover, .service-card:hover, .portfolio-card:hover { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ================================================================
   ICONS (mask-image data URIs)
   ================================================================ */
[data-ico="custom"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020l2.2-.5a2%202%200%200%200%201.02-.55L18.4%207.77a1.5%201.5%200%200%200%200-2.12l-.05-.05a1.5%201.5%200%200%200-2.12%200L5.05%2016.78a2%202%200%200%200-.55%201.02L4%2020Z%22/%3E%3Cpath%20d%3D%22M14.5%206.5l3%203%22/%3E%3C/svg%3E"); }
[data-ico="business"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%228%22%20width%3D%2217%22%20height%3D%2211%22%20rx%3D%222%22/%3E%3Cpath%20d%3D%22M8.5%208V6.5A2.5%202.5%200%200%201%2011%204h2a2.5%202.5%200%200%201%202.5%202.5V8%22/%3E%3Cpath%20d%3D%22M3.5%2013h17%22/%3E%3C/svg%3E"); }
[data-ico="restaurant"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%2212%22%20r%3D%226.2%22/%3E%3Cpath%20d%3D%22M17%205v6%22/%3E%3Cpath%20d%3D%22M15%205v3.2a2%202%200%200%200%202%202%202%202%200%200%200%202-2V5%22/%3E%3Cpath%20d%3D%22M17%2010.2V19%22/%3E%3C/svg%3E"); }
[data-ico="ecommerce"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6.5%208h11l1%2012h-13z%22/%3E%3Cpath%20d%3D%22M9%208V6.5a3%203%200%200%201%206%200V8%22/%3E%3C/svg%3E"); }
[data-ico="landing"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%224.5%22%20y%3D%223.5%22%20width%3D%2215%22%20height%3D%2217%22%20rx%3D%222%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2213%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M12%208.3v1.4M12%2016.3v1.4M7.3%2013h1.4M15.3%2013h1.4%22/%3E%3C/svg%3E"); }
[data-ico="redesign"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M19%2012a7%207%200%200%201-11.9%205%22/%3E%3Cpath%20d%3D%22M5%2012a7%207%200%200%201%2011.9-5%22/%3E%3Cpath%20d%3D%22M16.5%204.5V7.5H13.5%22/%3E%3Cpath%20d%3D%22M7.5%2019.5V16.5H10.5%22/%3E%3C/svg%3E"); }
[data-ico="mobile"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%227%22%20y%3D%223%22%20width%3D%2210%22%20height%3D%2218%22%20rx%3D%222.2%22/%3E%3Cpath%20d%3D%22M11%2018h2%22/%3E%3C/svg%3E"); }
[data-ico="deploy"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2015V4%22/%3E%3Cpath%20d%3D%22M8%208l4-4%204%204%22/%3E%3Cpath%20d%3D%22M4.5%2015v3.5A1.5%201.5%200%200%200%206%2020h12a1.5%201.5%200%200%200%201.5-1.5V15%22/%3E%3C/svg%3E"); }
[data-ico="maintenance"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14.7%206.3a4%204%200%200%200-5.4%204.9L4%2016.5V20h3.5l5.3-5.3a4%204%200%200%200%204.9-5.4l-2.6%202.6-2.1-.6-.6-2.1Z%22/%3E%3C/svg%3E"); }
[data-ico="dev"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%208l-4.5%204L9%2016%22/%3E%3Cpath%20d%3D%22M15%208l4.5%204L15%2016%22/%3E%3C/svg%3E"); }
[data-ico="tech"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%227%22%20y%3D%227%22%20width%3D%2210%22%20height%3D%2210%22%20rx%3D%221.5%22/%3E%3Cpath%20d%3D%22M9.5%207V4.3M14.5%207V4.3M9.5%2020v-2.7M14.5%2020v-2.7M7%209.5H4.3M7%2014.5H4.3M20%209.5h-2.7M20%2014.5h-2.7%22/%3E%3C/svg%3E"); }
[data-ico="fast"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12.5%203.5%205%2013.5h5.5L11%2020.5l7.5-10.5H13Z%22/%3E%3C/svg%3E"); }
[data-ico="presentation"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%224.5%22%20width%3D%2217%22%20height%3D%2212%22%20rx%3D%221.8%22/%3E%3Cpath%20d%3D%22M9%2020h6M12%2016.5V20%22/%3E%3Cpath%20d%3D%22M8%2011l2.3%202.3L16%208%22/%3E%3C/svg%3E"); }
[data-ico="support"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4.5%2013v-1a7.5%207.5%200%200%201%2015%200v1%22/%3E%3Crect%20x%3D%223.5%22%20y%3D%2213%22%20width%3D%223.5%22%20height%3D%225%22%20rx%3D%221.3%22/%3E%3Crect%20x%3D%2217%22%20y%3D%2213%22%20width%3D%223.5%22%20height%3D%225%22%20rx%3D%221.3%22/%3E%3Cpath%20d%3D%22M19.5%2018v.5a3%203%200%200%201-3%203H13.8%22/%3E%3C/svg%3E"); }
[data-ico="design"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%226%22/%3E%3Crect%20x%3D%2211%22%20y%3D%2211%22%20width%3D%229.5%22%20height%3D%229.5%22%20rx%3D%222%22/%3E%3C/svg%3E"); }
[data-ico="online"] { --icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228%22/%3E%3Cpath%20d%3D%22M4%2012h16%22/%3E%3Cpath%20d%3D%22M12%204c2.5%202.3%202.5%2013.7%200%2016M12%204c-2.5%202.3-2.5%2013.7%200%2016%22/%3E%3C/svg%3E"); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 420px; max-width: 560px; margin: 0 auto; width: 100%; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .impression-grid, .case-grid, .future-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-devices { margin-top: 20px; }
}

@media (max-width: 900px) {
  .comparison-grid, .contact-grid { grid-template-columns: 1fr; }
  .impression-points { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 76px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .primary-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    background: var(--near-black); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 22px;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { color: var(--text-on-dark); font-size: 1rem; }
  .nav-cta { margin-top: 10px; }
  .nav-toggle { display: block; }

  .services-grid, .why-grid, .portfolio-grid, .pricing-grid, .process-timeline { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { padding-top: 10px; }
  .float-chip { font-size: 0.76rem; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-preview { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
