/* =========================================================
   VELORA.STUDIO
   Production CSS — matched to current index.html
   ========================================================= */

:root {
  --bg: #07070a;
  --bg-soft: #0b0b10;
  --surface: #101016;
  --surface-2: #15151d;

  --text: #f5f5f7;
  --muted: #9899a5;
  --muted-2: #666873;

  --accent: #8b6cff;
  --accent-light: #b9a9ff;

  --line: rgba(255,255,255,.10);
  --line-soft: rgba(255,255,255,.06);

  --radius: 22px;
  --radius-small: 14px;

  --container: 1240px;
  --header-height: 78px;

  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 80% 5%,
      rgba(139,108,255,.09),
      transparent 28%
    ),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

/* =========================================================
   LOADER
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.loader-line {
  position: relative;
  width: 110px;
  height: 1px;
  overflow: hidden;
  margin: 0 auto 15px;
  background: rgba(255,255,255,.12);
}

.loader-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background: var(--accent);
  animation: loader 1.2s ease-in-out infinite;
}

.page-loader p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
}

@keyframes loader {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(330%);
  }
}

/* =========================================================
   CURSOR
   ========================================================= */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, border-color .2s ease;
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--accent-light);
}

@media (pointer:fine) {
  .cursor-dot,
  .cursor-ring {
    opacity: 1;
  }

  body {
    cursor: none;
  }

  a,
  button,
  input,
  select,
  textarea {
    cursor: none;
  }
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(139,108,255,.7);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7,7,10,.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  background: rgba(7,7,10,.86);
  border-color: var(--line-soft);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--accent-light);
}

.brand-name span,
.footer-brand span {
  color: var(--accent-light);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav > a:not(.nav-book) {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  transition: color .25s ease;
}

.desktop-nav > a:not(.nav-book):hover {
  color: #fff;
}

.desktop-nav > a:not(.nav-book)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.desktop-nav > a:not(.nav-book):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book,
.mobile-book {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #08080b;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.nav-book:hover,
.mobile-book:hover {
  transform: translateY(-2px);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
  display: none;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform .3s ease,
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #f5f5f7;
  color: #08080b;
}

.button-primary:hover {
  background: #fff;
  box-shadow: 0 15px 40px rgba(255,255,255,.1);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.035);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}

.full-width {
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.hero-glow-one {
  top: 5%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(139,108,255,.11);
}

.hero-glow-two {
  bottom: -15%;
  left: 20%;
  width: 350px;
  height: 350px;
  background: rgba(139,108,255,.05);
}

.hero-inner {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 68%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(139,108,255,.8);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(58px, 8.5vw, 122px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.065em;
}

.hero h1 > span {
  display: block;
  color: var(--accent-light);
}

.hero-description {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  gap: 45px;
  margin-top: 52px;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta span {
  color: var(--accent-light);
  font-size: 10px;
  letter-spacing: .16em;
}

.hero-meta strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   HERO BROWSER
   ========================================================= */

.hero-visual {
  position: absolute;
  right: -2%;
  z-index: 2;
  width: 47%;
  transition: transform .25s ease-out;
}

.hero-browser {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: #0d0d12;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
}

.browser-top {
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid var(--line-soft);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.browser-address {
  text-align: center;
  color: var(--muted-2);
  font-size: 9px;
}

.browser-status {
  justify-self: end;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(139,108,255,.8);
}

.browser-content {
  min-height: 390px;
  padding: 27px;
  background:
    radial-gradient(circle at 80% 20%, rgba(139,108,255,.16), transparent 35%),
    linear-gradient(135deg, #101017, #09090d);
}

.browser-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
}

.browser-nav span {
  color: var(--muted);
}

.browser-nav-links {
  display: flex;
  gap: 5px;
  margin-left: auto;
}

.browser-nav-links i {
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
}

.browser-main {
  padding: 70px 10px 60px;
}

.browser-main small {
  color: var(--accent-light);
  font-size: 8px;
  letter-spacing: .18em;
}

.browser-main h2 {
  max-width: 360px;
  margin: 15px 0 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: .92;
  letter-spacing: -.05em;
}

.browser-main h2 em {
  color: var(--accent-light);
  font-style: normal;
}

.browser-button {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
}

.browser-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 7px;
  letter-spacing: .12em;
}

.floating-card {
  position: absolute;
  min-width: 130px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15,15,22,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card-one {
  top: -27px;
  right: -25px;
}

.floating-card-two {
  bottom: -28px;
  left: -28px;
}

.floating-card span:not(.pulse-dot) {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
}

.floating-card strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #7ee2a8;
  box-shadow: 0 0 12px rgba(126,226,168,.7);
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.section-kicker,
.section-label {
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading h2,
.types-header h2,
.faq-intro h2 {
  margin: 15px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.055em;
}

.section-heading h2 span,
.types-header h2 span,
.faq-intro h2 span,
.contact-info h2 span,
.final-cta-box h2 span {
  color: var(--accent-light);
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 70px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.section-label span {
  color: var(--muted-2);
}

.intro-content h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.055em;
}

.intro-content h2 span {
  color: var(--accent-light);
}

.intro-content p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent-light);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(139,108,255,.10),
      transparent 38%
    ),
    var(--surface);
  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(139,108,255,.35);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(139,108,255,.16),
      transparent 42%
    ),
    var(--surface-2);
}

.service-number {
  color: var(--accent-light);
  font-size: 10px;
  letter-spacing: .15em;
}

.service-icon {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255,255,255,.24);
  font-size: 22px;
}

.service-card h3 {
  margin: auto 0 9px;
  max-width: 270px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.service-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
   WORK
   ========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 18px;
}

.project-card {
  display: block;
  min-width: 0;
}

.project-large {
  grid-column: span 1;
}

.project-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #0e0e14;
  transition: transform .4s ease, border-color .4s ease;
}

.project-card:hover .project-visual {
  transform: translateY(-5px);
  border-color: rgba(139,108,255,.35);
}

.project-makeup {
  background:
    radial-gradient(circle at 70% 20%, rgba(210,150,150,.2), transparent 35%),
    linear-gradient(135deg, #171217, #09090d);
}

.project-mishty {
  background:
    radial-gradient(circle at 80% 20%, rgba(139,108,255,.18), transparent 35%),
    linear-gradient(135deg, #121018, #08080c);
}

.project-richa {
  background:
    radial-gradient(circle at 25% 20%, rgba(255,190,150,.14), transparent 35%),
    linear-gradient(135deg, #17120f, #09090c);
}

.project-gaming {
  background:
    radial-gradient(circle at 70% 30%, rgba(80,120,255,.18), transparent 35%),
    linear-gradient(135deg, #0d111c, #07080d);
}

.project-mini-site {
  position: absolute;
  inset: 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-mini-site small {
  color: var(--accent-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.project-mini-site h3 {
  margin: 14px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 57px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.06em;
}

.project-mini-site em {
  color: var(--accent-light);
  font-style: normal;
}

.mini-line {
  width: 65px;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  background: rgba(7,7,10,.42);
  transition: opacity .35s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.3);
  font-size: 9px;
  letter-spacing: .08em;
}

.project-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 2px 0;
}

.project-info > div > span {
  color: var(--accent-light);
  font-size: 9px;
}

.project-info h3 {
  margin: 4px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.project-type {
  color: var(--muted-2);
  font-size: 9px;
  letter-spacing: .12em;
  text-align: right;
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */

.before-after {
  margin-top: 20px;
}

.before-after-stage {
  --split: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #08080b;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: none;
  outline: none;
}

.before-after-stage:focus-visible {
  box-shadow:
    0 0 0 3px rgba(139,108,255,.3),
    var(--shadow);
}

.comparison-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--split));
  -webkit-clip-path: inset(0 0 0 var(--split));
}

.comparison-browser {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 900px;
  overflow: hidden;
  background: #fff;
  transform-origin: top left;
}

.comparison-browser iframe {
  display: block;
  width: 1440px;
  height: 900px;
  border: 0;
}

.comparison-browser-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: rgba(8,8,12,.94);
  color: var(--muted);
  font-size: 9px;
  pointer-events: none;
}

.comparison-dots {
  display: flex;
  gap: 4px;
  margin-right: 15px;
}

.comparison-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.comparison-url {
  opacity: .7;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 20;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(8,8,12,.9);
  color: #fff;
  font-size: 19px;
  transform: translate(-50%,-50%);
  box-shadow: 0 15px 40px rgba(0,0,0,.4);
}

.comparison-label {
  position: absolute;
  top: 50px;
  z-index: 25;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,8,12,.72);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  pointer-events: none;
}

.comparison-label-before {
  left: 18px;
}

.comparison-label-after {
  right: 18px;
}

.comparison-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-list {
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  gap: 25px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-item > span {
  color: var(--accent-light);
  font-size: 10px;
  letter-spacing: .14em;
}

.process-item h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.process-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.process-item > strong {
  color: var(--muted);
  font-size: 16px;
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(139,108,255,.42);
  background:
    radial-gradient(circle at 80% 0, rgba(139,108,255,.13), transparent 40%),
    var(--surface);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 8px;
  border: 1px solid rgba(139,108,255,.3);
  border-radius: 999px;
  color: var(--accent-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.price-label {
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.price-card h3 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.price {
  margin: 12px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -.05em;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.price-card > p {
  min-height: 65px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #c5c6ce;
  font-size: 12px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

/* =========================================================
   TYPES
   ========================================================= */

.types-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.types-header h2 {
  margin-top: 15px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.type-item {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,.025);
  transition: transform .3s ease, border-color .3s ease;
}

.type-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139,108,255,.3);
}

.type-item > span {
  color: var(--accent-light);
  font-size: 9px;
}

.type-item h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.type-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-intro h2 {
  margin-top: 15px;
}

.faq-intro > p {
  max-width: 400px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.faq-question span {
  flex-shrink: 0;
  color: var(--accent-light);
  font-size: 22px;
  transition: transform .3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  transition: max-height .35s ease;
}

.faq-answer p {
  max-width: 650px;
  margin: 0 0 24px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  padding: 130px 0;
}

.final-cta-box {
  position: relative;
  overflow: hidden;
  padding: 90px 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 100%, rgba(139,108,255,.13), transparent 50%),
    #0d0d13;
  text-align: center;
}

.final-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 350px;
  height: 220px;
  border-radius: 50%;
  background: rgba(139,108,255,.11);
  filter: blur(80px);
  transform: translateX(-50%);
  pointer-events: none;
}

.final-cta-box > *:not(.final-glow) {
  position: relative;
  z-index: 2;
}

.final-cta-box h2 {
  max-width: 850px;
  margin: 18px auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}

.final-cta-box p {
  max-width: 550px;
  margin: 25px auto 0;
  color: var(--muted);
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  max-width: 600px;
  margin: 17px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(45px, 5.5vw, 72px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.055em;
}

.contact-info > p {
  max-width: 500px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.contact-details a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-size: 13px;
}

.contact-details a:hover {
  color: var(--accent-light);
}

.contact-details span {
  color: var(--muted-2);
  font-size: 8px;
  letter-spacing: .16em;
}

/* =========================================================
   FORM
   ========================================================= */

.contact-form-wrap {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

#project-form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#project-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#project-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

#project-form input,
#project-form select,
#project-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: #fff;
  padding: 13px 14px;
  transition: border-color .25s ease, background .25s ease;
}

#project-form input,
#project-form select {
  height: 48px;
}

#project-form textarea {
  min-height: 145px;
  resize: vertical;
}

#project-form input:focus,
#project-form select:focus,
#project-form textarea:focus {
  border-color: rgba(139,108,255,.6);
  background: rgba(255,255,255,.055);
}

#project-form select option {
  background: #111118;
  color: #fff;
}

.form-submit {
  margin-top: 3px;
}

.form-success {
  display: none;
  margin: 0;
  color: #7ee2a8;
  font-size: 12px;
}

.form-success.show {
  display: block;
}

.form-email-link {
  color: var(--muted);
  font-size: 11px;
}

.form-email-link:hover {
  color: var(--accent-light);
}

/* =========================================================
   FLOATING CONTACT
   ========================================================= */

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
}

.floating-contact-button {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(16,16,23,.9);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.floating-options {
  position: absolute;
  right: 0;
  bottom: 65px;
  width: 165px;
  display: grid;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13,13,19,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.floating-contact.open .floating-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-options a {
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
}

.floating-options a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 40px 0 25px;
  border-top: 1px solid var(--line-soft);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 45px;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
}

.footer-top p {
  max-width: 300px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 10px;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 3px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13,13,19,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 13px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-menu a:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-visual {
    position: relative;
    right: auto;
    width: 72%;
    margin: 75px 0 0 auto;
  }

  .hero-inner {
    display: block;
  }

  .intro-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 125px 0 75px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 88px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 20px;
    margin-top: 40px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 65px;
  }

  .hero-browser {
    transform: none;
  }

  .browser-content {
    min-height: 340px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .types-header h2,
  .faq-intro h2 {
    font-size: clamp(40px, 12vw, 65px);
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .project-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .project-type {
    text-align: left;
  }

  .comparison-browser {
    transform: scale(.5);
  }

  .comparison-label {
    top: 40px;
  }

  .comparison-handle span {
    width: 43px;
    height: 43px;
    font-size: 17px;
  }

  .process-item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .process-item > strong {
    display: none;
  }

  .types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    padding: 70px 20px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top .button {
    width: 100%;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero {
    padding-top: 115px;
  }

  .hero h1 {
    font-size: clamp(47px, 16vw, 70px);
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-meta span {
    font-size: 8px;
  }

  .hero-meta strong {
    font-size: 10px;
  }

  .browser-main {
    padding: 55px 5px 45px;
  }

  .browser-main h2 {
    font-size: 29px;
  }

  .floating-card {
    min-width: 105px;
    padding: 10px;
  }

  .floating-card-one {
    right: -8px;
  }

  .floating-card-two {
    left: -8px;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 25px;
  }

  .price {
    font-size: 38px;
  }

  .contact-info h2 {
    font-size: 43px;
  }

  .comparison-note {
    font-size: 10px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    transform: none !important;
  }
}