:root {
  --ink: #241236;
  --muted: #6d6178;
  --surface: #ffffff;
  --panel: #f7f2ff;
  --dark: #17111f;
  --dark-2: #241236;
  --purple: #8a20ff;
  --purple-deep: #4b148c;
  --coral: #ff7a59;
  --cyan: #d8b4fe;
  --line: rgba(75, 20, 140, 0.16);
  --shadow: 0 24px 70px rgba(75, 20, 140, 0.15);
  --glow-border: linear-gradient(135deg, #7c3cff, #22d3ee 48%, #ff4d8d);
  --glow-shadow: 0 0 0 1px rgba(216, 180, 254, 0.2), 0 18px 70px rgba(138, 32, 255, 0.28);
  --glass: rgba(255, 255, 255, 0.1);
}

:root.night-mode {
  --ink: #f7f2ff;
  --muted: #cfc2dd;
  --surface: #0f0a16;
  --panel: #17111f;
  --dark: #0a0610;
  --dark-2: #0f0a16;
  --purple: #a855f7;
  --purple-deep: #6d28d9;
  --coral: #ff8a66;
  --cyan: #e9d5ff;
  --line: rgba(216, 180, 254, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --glow-border: linear-gradient(135deg, #3b82f6, #22c55e 48%, #ef4444);
  --glow-shadow: 0 0 0 1px rgba(216, 180, 254, 0.14), 0 0 36px rgba(138, 32, 255, 0.34), 0 24px 80px rgba(0, 0, 0, 0.48);
  --glass: rgba(255, 255, 255, 0.07);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  transition: background 220ms ease, color 220ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand strong,
.button,
.price-card a,
.request-form button,
.nav-links a {
  font-family: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 138%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--dark);
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(42, 46, 51, 0.92);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(30, 35, 41, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 26px 16px 24px;
  border-top: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--dark-2);
  border-color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
    min-height: 640px;
    display: grid;
    align-items: center;
    padding: 80px 0 72px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -5%;

    background:
        linear-gradient(
            135deg,
            rgba(36, 18, 54, 0.94),
            rgba(75, 20, 140, 0.84)
        ),
        url("https://www.oliverconcepts.com/images/cebu-web-designer.jpg");

    background-size: cover, 200% auto;
    background-repeat: no-repeat;
    background-position: center, 0 center;

    animation: heroPan 90s linear infinite alternate;

    /* SOFT EDGE FADE */


    z-index: -1;
}

@keyframes heroPan {
    from {
        background-position:
            center,
            left center;
    }

    to {
        background-position:
            center,
            right center;
    }
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-grid > *,
.split > *,
.contact-grid > * {
  min-width: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  overflow-wrap: break-word;
}

.hero-copy h2 {
  max-width: 620px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  overflow-wrap: break-word;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

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

.hero-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin-top: 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 32px rgba(138, 32, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-search a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(216, 180, 254, 0.14);
  background: rgba(23, 17, 31, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.button,
.price-card a,
.request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.request-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 14px 28px rgba(138, 32, 255, 0.24);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
  position: relative;
  min-height: 430px;
  padding: 32px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(rgba(23, 17, 31, 0.84), rgba(23, 17, 31, 0.84)) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
  backdrop-filter: blur(18px);
  perspective: 1000px;
  isolation: isolate;
}

.hero-panel img {
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.hero-device-stack {
  margin-bottom: 105px;
  transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  transform-origin: 50% 62%;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 520ms ease;
  will-change: transform;
  z-index: 1;
}

.hero-card,
.hero-proof {
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 520ms ease;
  will-change: transform;
  z-index: 2;
}

.hero-proof span {
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), background 520ms ease;
}

.hero-panel:hover .hero-device-stack,
.hero-panel:focus-within .hero-device-stack {
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.34));
  transform: translate3d(-18px, -14px, 42px) rotateX(3deg) rotateY(-7deg);
}

.hero-panel:hover .hero-card,
.hero-panel:focus-within .hero-card {
  box-shadow: 0 24px 80px rgba(138, 32, 255, 0.34);
  transform: translate3d(18px, -16px, 58px) rotate(1.5deg);
}

.hero-panel:hover .hero-proof,
.hero-panel:focus-within .hero-proof {
  transform: translate3d(-14px, 18px, 44px);
}

.hero-panel:hover .hero-proof span:nth-child(1),
.hero-panel:focus-within .hero-proof span:nth-child(1) {
  transform: translateX(-8px);
}

.hero-panel:hover .hero-proof span:nth-child(2),
.hero-panel:focus-within .hero-proof span:nth-child(2) {
  transform: translateX(10px);
}

.hero-panel:hover .hero-proof span:nth-child(3),
.hero-panel:focus-within .hero-proof span:nth-child(3) {
  transform: translateX(-4px);
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .hero-device-stack,
  .hero-card,
  .hero-proof,
  .hero-proof span {
    transition: none;
    will-change: auto;
  }

  .hero-panel:hover .hero-device-stack,
  .hero-panel:focus-within .hero-device-stack,
  .hero-panel:hover .hero-card,
  .hero-panel:focus-within .hero-card,
  .hero-panel:hover .hero-proof,
  .hero-panel:focus-within .hero-proof,
  .hero-panel:hover .hero-proof span,
  .hero-panel:focus-within .hero-proof span {
    transform: none;
  }
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(210px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--glow-shadow);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card strong {
  color: var(--purple);
  font-size: 3rem;
  line-height: 1;
}

.hero-proof {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.hero-proof span {
  width: max-content;
  max-width: 210px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 14px;
  color: #fff;
  background: rgba(30, 35, 41, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(138, 32, 255, 0.2);
}

.app-showcase {
  position: relative;
  padding: 58px 0 70px;
  overflow: hidden;
  background: var(--surface);
}

.app-showcase::before,
.app-showcase::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 12vw);
  content: "";
  pointer-events: none;
}

.app-showcase::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), rgba(255, 255, 255, 0));
}

.app-showcase::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), rgba(255, 255, 255, 0));
}

.showcase-heading {
  margin-bottom: 28px;
}

.showcase-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.showcase-rail {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.showcase-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px max(20px, calc((100vw - 1120px) / 2)) 14px;
  animation: showcase-scroll 38s linear infinite;
}

.showcase-rail:hover .showcase-track,
.showcase-rail:focus-within .showcase-track {
  animation-play-state: paused;
}

.app-slide {
  position: relative;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 5 / 4.8;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(#fbf9ff, #fbf9ff) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-slide:hover,
.app-slide:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(216, 180, 254, 0.24), 0 0 48px rgba(138, 32, 255, 0.34);
}

.app-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 450ms ease;
}

.app-slide:hover img,
.app-slide:focus-visible img {
  transform: scale(1.04);
}

.app-slide span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 14px;
  color: #fff;
  background: rgba(30, 35, 41, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

@keyframes showcase-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% + 54px));
  }
}

.section {
  padding: 96px 0;
}

.section:nth-of-type(even) {
  background: var(--panel);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-copy p {
  font-size: 1.02rem;
}

.intro .split {
  align-items: start;
  padding-bottom: 360px;
  margin-top: 500px;
}

.workspace-sticky-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  width: 100%;
  height: calc(100vh - 128px);
  min-height: 460px;
  align-self: start;
}

.workspace-sticky-image {
  --workspace-alpha: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--workspace-alpha);
  border-radius: 18px;
  box-shadow: var(--glow-shadow);
  transform: none;
  transition: opacity 700ms ease;
}

.workspace-sticky-image.is-fixed {
  position: fixed;
  top: 96px;
  max-width: var(--workspace-fixed-width, 100%);
  z-index: 3;
}

.quote {
  grid-column: 1;
  margin-top: 500px;
  padding: 34px;
  border: 1px solid transparent;
  border-left-width: 6px;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
}

.intro .section-copy.reveal,
.intro .quote.reveal {
  transform: translateY(76px);
}

.intro .section-copy.reveal.is-visible,
.intro .quote.reveal.is-visible {
  transform: translateY(0);
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
}

.testimonials {
  position: relative;
  overflow: hidden;
  z-index: 8;
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
}

.testimonial-card::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(138, 32, 255, 0.14);
  content: "“";
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}

.rating {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 999px;
  color: #facc15;
  background: rgba(23, 17, 31, 0.84);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 26px rgba(250, 204, 21, 0.16);
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  font-weight: 900;
  box-shadow: 0 0 28px rgba(138, 32, 255, 0.34);
}

.testimonial-card figcaption strong,
.testimonial-card figcaption small {
  display: block;
}

.testimonial-card figcaption small {
  color: var(--muted);
}

.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.web-design {
  position: relative;
  z-index: 999;
  overflow: hidden;
  background-color: #fff;
}

.device-card {
  display: grid;
  place-items: center;
}

.youtube-scroll-player {
  --video-scale: 1;
  --video-blur: 0px;
  width: min(560px, 100%);
  padding: 12px 12px 16px;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(#17111f, #17111f) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
  filter: blur(var(--video-blur));
  transform: scale(var(--video-scale));
  transform-origin: center;
  transition: transform 140ms linear, filter 140ms linear;
  will-change: transform, filter;
}

.youtube-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.youtube-player-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-player-meta {
  display: grid;
  gap: 8px;
  padding: 14px 4px 0;
}

.youtube-player-meta span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.youtube-player-meta span:nth-child(1) {
  width: 82%;
}

.youtube-player-meta span:nth-child(2) {
  width: 58%;
}

.youtube-player-meta span:nth-child(3) {
  width: 36%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-featured-image {
  --parallax-y: 0px;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: 18px;
  box-shadow: var(--glow-shadow);
  background: rgba(23, 17, 31, 0.18);
}

.services-featured-image img {
  width: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.08);
  transition: transform 120ms linear;
  will-change: transform;
}

.service-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.price-card,
.process-card,
.request-form {
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-card span {
  color: var(--purple);
  font-weight: 900;
}

.service-card h3,
.process-card h3 {
  margin: 18px 0 0;
  line-height: 1.2;
}

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

.price-card {
  padding: 30px;
}

.price-card.reveal {
  --card-x: 0px;
  --card-y: 64px;
  --card-rotate: 0deg;
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(var(--card-rotate));
  transition: opacity 1.8s ease, transform 2.2s cubic-bezier(0.18, 0.9, 0.2, 1);
  transition-delay: 0s;
}

.price-card.reveal.is-visible {
  transition-delay: 1s;
  transform: translate3d(0, 0, 0) rotate(0);
}

.price-card.featured {
  color: #fff;
  background:
    linear-gradient(var(--dark), var(--dark)) padding-box,
    var(--glow-border) border-box;
}

.price-card h3 {
  margin: 6px 0;
  font-size: 2rem;
}

.price-card strong {
  display: block;
  margin-top: 14px;
  color: var(--purple);
}

.price-card.featured strong {
  color: var(--cyan);
}

.price-card a {
  margin-top: 24px;
  color: #fff;
  background: var(--coral);
}

.process {
  background:
    linear-gradient(180deg, rgba(247, 246, 251, 0.94), rgba(255, 255, 255, 1));
}

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

.process-card {
  min-height: 240px;
  padding: 26px;
}

.process-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  font-weight: 900;
  box-shadow: 0 0 24px rgba(138, 32, 255, 0.32);
}

.process-card p {
  margin-top: 14px;
}

.trust-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(var(--dark), var(--dark)) padding-box,
    var(--glow-border) border-box;
  box-shadow: var(--glow-shadow);
}

.trust-panel p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust-panel a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  font-weight: 800;
}

.contact {
  color: #b9b9b9;
  background:#4b148c !important;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  color: #fff;
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.request-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-form input,
.request-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}

.faq .section-heading {
  position: relative;
  margin-bottom: 42px;
  padding-bottom: 26px;
}

.faq .section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(280px, 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), rgba(138, 32, 255, 0));
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(75, 20, 140, 0.08);
  overflow: hidden;
}

.faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  font-weight: 900;
  transition: transform 240ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 320ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
}

:root.night-mode .site-header {
  background: rgba(15, 10, 22, 0.94);
}

:root.night-mode .site-header.is-scrolled,
:root.night-mode .nav-links {
  background: rgba(10, 6, 16, 0.98);
}

:root.night-mode .app-showcase::before {
  background: linear-gradient(90deg, var(--surface), rgba(15, 10, 22, 0));
}

:root.night-mode .app-showcase::after {
  background: linear-gradient(270deg, var(--surface), rgba(15, 10, 22, 0));
}

:root.night-mode .quote,
:root.night-mode .service-card,
:root.night-mode .price-card,
:root.night-mode .process-card,
:root.night-mode .request-form,
:root.night-mode .hero-card,
:root.night-mode .testimonial-card {
  background:
    linear-gradient(#17111f, #17111f) padding-box,
    var(--glow-border) border-box;
  border-color: var(--line);
  color: var(--ink);
}

:root.night-mode .quote p,
:root.night-mode .service-card h3,
:root.night-mode .price-card h3,
:root.night-mode .process-card h3,
:root.night-mode .request-form label span,
:root.night-mode .hero-card,
:root.night-mode .testimonial-card blockquote p {
  color: var(--ink);
}

:root.night-mode .testimonial-card::before {
  color: rgba(216, 180, 254, 0.12);
}

:root.night-mode .app-slide {
  background:
    linear-gradient(#17111f, #17111f) padding-box,
    var(--glow-border) border-box;
}

:root.night-mode .process {
  background:
    linear-gradient(180deg, rgba(23, 17, 31, 0.96), rgba(15, 10, 22, 1));
}

:root.night-mode .request-form input,
:root.night-mode .request-form select {
  color: var(--ink);
  background: #0f0a16;
  border-color: var(--line);
}

:root.night-mode .request-form input::placeholder {
  color: rgba(247, 242, 255, 0.56);
}

.footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark-2);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer a {
  display: block;
  margin-top: 8px;
}

.chat-button,
.to-top {
  position: fixed;
  right: 18px;
  z-index: 30;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  box-shadow: var(--shadow);
}

.chat-button {
  bottom: 74px;
}

.to-top {
  bottom: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

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

  .workspace-sticky-media {
    position: static;
    height: auto;
    min-height: 0;
  }

  .workspace-sticky-image {
    height: auto;
  }

  .youtube-scroll-player {
    filter: none;
    transform: none;
    will-change: auto;
  }

  .services-featured-image img {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 8px 16px 20px;
    background: var(--dark-2);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 8px;
    border-top: 0;
    border-left: 2px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-left-color: var(--purple);
  }

  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 320px;
  }

  .workspace-sticky-media,
  .quote {
    grid-column: auto;
    grid-row: auto;
  }

  .intro .split {
    padding-bottom: 0;
    margin-top: 0;
  }

  .workspace-sticky-media {
    position: static;
    height: auto;
    min-height: 0;
  }

  .quote {
    margin-top: 20px;
  }

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

  .showcase-track {
    animation-duration: 32s;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 40px), 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .hero-copy h2 {
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 320px;
    font-size: 0.96rem;
  }

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

  .hero-search a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .section {
    padding: 68px 0;
  }

  .app-showcase {
    padding: 46px 0 56px;
  }

  .showcase-heading h2 {
    max-width: 320px;
    font-size: 1.58rem;
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  .app-showcase::before,
  .app-showcase::after {
    width: 38px;
  }

  .app-slide {
    width: 230px;
  }

  .section h2 {
    font-size: 2rem;
  }

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

  .testimonials .container {
    width: 100%;
  }

  .testimonials .section-heading {
    width: min(calc(100% - 40px), 1120px);
    margin-right: auto;
    margin-left: auto;
  }

  .testimonials-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 20px 18px;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    min-width: min(82vw, 330px);
    min-height: 360px;
    scroll-snap-align: start;
  }

  .hero-panel,
  .quote,
  .service-card,
  .price-card,
  .request-form {
    padding: 22px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .hero-proof {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-proof span {
    width: 100%;
    max-width: none;
  }

  .hero-device-stack {
    margin-bottom: 0;
  }

  .trust-panel {
    display: grid;
    padding: 22px;
  }

  .trust-panel a {
    width: 100%;
  }

  .youtube-scroll-player {
    width: 100%;
  }

  .chat-button,
  .to-top {
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  .chat-button {
    display: none;
  }
}
