/* ============================================================
   Web Creative Values — main stylesheet
   Dark performance-marketing theme, brand blue/orange accents
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.09);
  --text: #1f2937;
  --text-muted: #6b7280;
  --blue: #3aa9e0;
  --blue-deep: #1b5faa;
  --orange: #f7941d;
  --radius: 18px;
  --shadow-soft: 0 10px 40px rgba(15, 23, 42, 0.07);
  --shadow-lift: 0 24px 60px rgba(15, 23, 42, 0.13);
  --font-head: 'Satoshi', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section { padding: 96px 0; }

/* ---------- typography helpers ---------- */
.gradient-text {
  background: linear-gradient(90deg, var(--blue) 20%, var(--orange) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(58, 169, 224, 0.35);
  background: rgba(58, 169, 224, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: #fff;
  box-shadow: 0 8px 30px rgba(58, 169, 224, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(58, 169, 224, 0.5);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover { background: #f3f6fa; transform: translateY(-3px); }

.btn-small { padding: 10px 24px; font-size: 0.85rem; background: rgba(58,169,224,0.12); color: var(--blue); border: 1px solid rgba(58,169,224,0.35); }
.btn-small:hover { background: var(--blue); color: #fff; }

.btn-block { width: 100%; }

.btn-whatsapp {
  background: #25d366;
  color: #06281a;
  font-weight: 700;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled { padding: 8px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 26px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled .header-inner { box-shadow: var(--shadow-lift); }

.logo { display: flex; align-items: center; gap: 10px; }

.logo-img { height: 48px; width: auto; display: block; }

.logo-mark { width: 42px; height: 42px; }

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #58595b;
  white-space: nowrap;
}

.logo-web { color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
}

.glow-blue {
  width: 600px; height: 600px;
  background: var(--blue-deep);
  top: -150px; right: -100px;
}

.glow-orange {
  width: 450px; height: 450px;
  background: var(--orange);
  bottom: -180px; left: -140px;
  opacity: 0.1;
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(31, 41, 55, 0.16) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner { position: relative; text-align: center; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue);
  border: 1px solid rgba(58, 169, 224, 0.35);
  background: rgba(58, 169, 224, 0.08);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 64px;
}

.stars { color: var(--orange); letter-spacing: 3px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  box-shadow: var(--shadow-soft);
}

.stat-num, .stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.stat-plus { color: var(--orange); }

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============ ABOUT ============ */
.about { background: var(--bg-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-text { color: var(--text-muted); margin-bottom: 28px; }

.about-quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.about-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-card img { width: 100%; height: 420px; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.badge-year {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}

.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 169, 224, 0.45);
  box-shadow: var(--shadow-lift);
}

.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.service-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(58, 169, 224, 0.1);
  color: var(--blue);
  margin-bottom: 22px;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============ BRANDS ============ */
.brands { background: var(--bg-soft); }
.brands .container { text-align: center; }
.brands .section-title { margin-bottom: 48px; }

.marquee {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.marquee-track img:hover { opacity: 1; transform: scale(1.06); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ EVENTS ============ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover { transform: translateY(-6px); border-color: rgba(58, 169, 224, 0.4); }

.event-img { position: relative; }

.event-img img { width: 100%; height: 220px; object-fit: cover; }

.event-date {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.event-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.event-day { font-family: var(--font-head); font-weight: 700; }

.event-body { padding: 26px; }

.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(58, 169, 224, 0.1);
  border: 1px solid rgba(58, 169, 224, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.event-body h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 6px; }

.event-venue { color: var(--text); font-size: 0.88rem; margin-bottom: 10px; }

.event-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

.events-more {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
  font-size: 0.9rem;
}

/* ============ GALLERY ============ */
.gallery { background: var(--bg-soft); }

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

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img { transform: scale(1.07); }

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  color: #fff;
}

.gallery-card figcaption p { color: #d1d5db; }

.gallery-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.gallery-card h3 { font-family: var(--font-head); font-size: 1.05rem; margin: 4px 0; }

.gallery-card figcaption p { font-size: 0.78rem; color: var(--text-muted); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-info h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; }

.contact-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 26px; }

.contact-list { list-style: none; display: grid; gap: 20px; margin-bottom: 30px; }

.contact-list li { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(58, 169, 224, 0.1);
  border: 1px solid rgba(58, 169, 224, 0.25);
}

.contact-list strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }

.contact-list a, .contact-list span { color: var(--text-muted); font-size: 0.88rem; }

.contact-list a:hover { color: var(--blue); }

.socials p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }

.social-links a {
  font-size: 0.8rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.social-links a:hover { border-color: var(--blue); color: var(--blue); }

.whatsapp-box {
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px;
  padding: 22px;
}

.whatsapp-box h4 { font-family: var(--font-head); margin-bottom: 6px; }

.whatsapp-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

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

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #f6f8fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field select option { background: var(--bg-card); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58, 169, 224, 0.15);
}

.form-field textarea { resize: vertical; }

.form-status { margin-top: 14px; font-size: 0.88rem; color: #25d366; text-align: center; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-top: 56px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 14px; max-width: 320px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }

.footer-nav a { color: var(--text-muted); font-size: 0.9rem; }

.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 30px; height: 30px; }

/* ============ REVEAL ANIMATIONS ============ */
/* `.js` is set by an inline script in <head>. Without it every animated element
   stays at its final visible state, so the page degrades gracefully. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 76px; right: 4%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--border);
    border-radius: 0 0 0 var(--radius);
    padding: 28px;
    gap: 20px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    min-width: 220px;
  }

  .main-nav.open { transform: none; }

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

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

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

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

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1rem; }
}

/* ============================================================
   ANIMATION PACK
   1 cursor + progress · 2 pinned story · 3 word reveal
   4 parallax · 5 horizontal scroll · 6 magnetic + tilt
   7 giant marquee · event card hover rotate
   ============================================================ */

/* ----- 1. scroll progress bar + custom cursor ----- */
#scrollbar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 400;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cursor-dot { width: 8px; height: 8px; background: var(--blue); }

#cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(58, 169, 224, 0.7);
  transition: width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
  display: grid; place-items: center;
  font-size: .6rem; font-weight: 600; letter-spacing: .1em; color: #0a0a0a;
}

#cursor-ring.hovered {
  width: 64px; height: 64px;
  background: rgba(58, 169, 224, 0.9);
  border-color: transparent;
}

#cursor-ring .cursor-label { opacity: 0; transition: opacity .2s; }
#cursor-ring.hovered .cursor-label { opacity: 1; }

@media (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button,
  body.cursor-on input, body.cursor-on select, body.cursor-on textarea { cursor: none; }
}
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ----- 2. pinned scroll story ----- */
.pin-wrap { height: 400vh; position: relative; background: var(--bg); }

.pin-stage {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 84px 20px 24px;      /* clears the fixed header */
  overflow: hidden;
}

.pin-title {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.05;
  will-change: transform, opacity;
}

.pin-phone {
  position: relative;            /* in flow, so the caption can never overlap it */
  height: min(62vh, 600px);
  width: auto;
  aspect-ratio: 9 / 19;
  flex-shrink: 0;
  border-radius: 38px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #1d2430, #0d1117);
  box-shadow: 0 40px 120px rgba(27, 95, 170, 0.45);
  will-change: transform, opacity;
  overflow: hidden;
}

.pin-phone::before {
  content: "";
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #000; border-radius: 12px;
}

.pin-phone .screen {
  position: absolute; inset: 8px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 10%, rgba(58, 169, 224, 0.28), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(247, 148, 29, 0.12), transparent 45%),
    #0c0f14;
  overflow: hidden;
  color: #f5f5f5;
}

/* The dashboard is laid out at a fixed design size and scaled to whatever size
   the phone ends up, so it always fills the screen exactly on any viewport. */
.screen-inner {
  width: 284px;
  height: 617px;
  display: flex; flex-direction: column;
  padding: 34px 14px 20px; gap: 14px;
  transform-origin: top left;
}

.ph-status {
  display: flex; justify-content: space-between;
  font-size: 0.62rem; color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  opacity: 0; will-change: opacity;
}

.ph-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
  opacity: 0; will-change: opacity, transform;
}

.ph-title {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700;
}

.ph-live {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 3px 8px; border-radius: 999px;
  animation: ph-pulse 2s ease-in-out infinite;
}

@keyframes ph-pulse { 50% { opacity: 0.55; } }

.ph-kpis { display: flex; gap: 10px; }

.ph-kpi {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}

.ph-kpi-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: #3aa9e0;
}

.ph-kpi-num.ph-orange { color: #f7941d; }

.ph-kpi-label {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.ph-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 66px;
  padding: 0 2px;
  margin: 8px 0 10px;
  flex-shrink: 0;
}

.ph-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #3aa9e0, #1b5faa);
  transform-origin: bottom;
  transform: scaleY(0);
  will-change: transform;
}

.ph-bar-hot { background: linear-gradient(180deg, #f7941d, #c96a00); }

.ph-rows { display: flex; flex-direction: column; gap: 9px; }

.ph-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}

.ph-row b { color: #fff; font-weight: 600; }

.ph-row span { display: flex; align-items: center; gap: 6px; }

.ph-dot {
  width: 6px; height: 6px; border-radius: 50%; display: inline-block;
}

.ph-dot-blue { background: #3aa9e0; }
.ph-dot-orange { background: #f7941d; }
.ph-dot-green { background: #4ade80; }
.ph-dot-violet { background: #a78bfa; }
.ph-dot-pink { background: #f472b6; }

.ph-row-custom {
  border: 1px dashed rgba(247, 148, 29, 0.55);
  background: rgba(247, 148, 29, 0.08);
}

.ph-row-custom b { color: #f7941d; }

/* fixed-height slot below the phone; both captions stack inside and cross-fade */
.pin-captions {
  position: relative;
  width: min(560px, 100%);
  height: 76px;
  flex-shrink: 0;
}

.pin-caption {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center; color: var(--text-muted);
  font-size: 1rem;
  opacity: 0; will-change: opacity, transform;
}

.pin-caption strong { color: var(--text); }

/* ----- 3. word-by-word reveal ----- */
.reveal-words { color: var(--text-muted); margin-bottom: 28px; }

.js .reveal-words .w {
  display: inline-block;
  opacity: 0.12;
  transform: translateY(0.35em);
  transition: opacity .5s ease, transform .5s ease;
}

.js .reveal-words .w.on { opacity: 1; transform: none; }

/* ----- 4. parallax (data-speed elements) ----- */
[data-speed] { will-change: transform; }

/* ----- 5. horizontal scroll services ----- */
.h-wrap { height: 420vh; position: relative; }

.h-stage {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.h-track { display: flex; gap: 32px; padding: 0 8vw; will-change: transform; }

.h-card {
  flex: 0 0 auto;
  width: min(400px, 78vw);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}

.service-img {
  position: relative;
  height: 230px;
  flex-shrink: 0;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), transparent 45%);
}

.h-card .card-body { padding: 24px 26px 30px; }

.h-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.h-card .card-body p { font-size: 0.9rem; color: var(--text-muted); }

.h-num {
  position: absolute; top: 14px; left: 20px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.h-card .service-tag {
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
}

/* ----- 6. magnetic button + 3D tilt cards ----- */
.gallery-cta { display: flex; justify-content: center; margin-top: 56px; }

.magnet-btn {
  width: 180px; height: 180px;
  border-radius: 50%;
  display: grid; place-items: center; align-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.15rem; line-height: 1.3;
  box-shadow: 0 16px 50px rgba(58, 169, 224, 0.4);
  will-change: transform;
  user-select: none;
}

.magnet-btn small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400; font-size: .68rem;
  opacity: .8; margin-top: 6px;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(58, 169, 224, 0.22), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.tilt-card:hover::after { opacity: 1; }

/* Without JS the scroll-driven dashboard/caption states never get set, so show
   everything in its finished state instead of leaving it invisible. */
html:not(.js) .ph-status,
html:not(.js) .ph-header,
html:not(.js) .ph-kpi,
html:not(.js) .ph-row,
html:not(.js) .pin-caption { opacity: 1; transform: none; }

html:not(.js) .ph-bar { transform: none; }

/* ----- 9 years highlight banner ----- */
.years-banner {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(58, 169, 224, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247, 148, 29, 0.08), transparent 50%),
    var(--bg);
  overflow: hidden;
}

.years-inner { position: relative; }

.years-num-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
}

.years-banner .years-num {
  font-family: var(--font-head);
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.years-plus {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--orange);
  margin-top: 0.4em;
}

.years-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 10px 0 18px;
}

.years-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.stat-featured {
  border-color: rgba(247, 148, 29, 0.45);
  background: linear-gradient(180deg, rgba(247, 148, 29, 0.07), #fff 60%);
}

/* ----- revenue models (dark band) ----- */
.pricing {
  background: #0d0f13;
  color: #f5f5f5;
}

.pricing .section-title { color: #f5f5f5; }

.pricing .section-sub { color: #9ca3af; }

.pricing-eyebrow {
  color: var(--orange);
  border-color: rgba(247, 148, 29, 0.4);
  background: rgba(247, 148, 29, 0.08);
}

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

.pricing-card {
  background: #15181d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 169, 224, 0.5);
}

.pricing-tag {
  display: inline-block;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(58, 169, 224, 0.4);
  background: rgba(58, 169, 224, 0.08);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #f5f5f5;
}

.pricing-card p { font-size: 0.88rem; color: #9ca3af; }

/* ----- 7. giant text marquee ----- */
.big-marquee { padding: 40px 0; overflow: hidden; }

.mq {
  overflow: hidden; white-space: nowrap;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.mq:last-child { border-bottom: 1px solid var(--border); }

.mq-inner {
  display: inline-block;
  will-change: transform;
  animation: mq-scroll 18s linear infinite;
}

.mq span {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  padding-right: 60px;
}

.mq .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(31, 41, 55, 0.3);
}

.mq2 .mq-inner { animation-direction: reverse; animation-duration: 22s; }

@keyframes mq-scroll { to { transform: translateX(-50%); } }

/* ----- brands marquee: reverse second row ----- */
.marquee-reverse { margin-top: 28px; }
.marquee-reverse .marquee-track { animation-direction: reverse; animation-duration: 38s; }

/* ----- event cards: slight rotate on hover (reclame style) ----- */
.event-card { transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }

.events-grid .event-card:nth-child(odd):hover {
  transform: translateY(-8px) rotate(-1.6deg);
  box-shadow: var(--shadow-lift);
}

.events-grid .event-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(1.6deg);
  box-shadow: var(--shadow-lift);
}

/* ----- reduced motion & mobile ----- */
@media (prefers-reduced-motion: reduce) {
  .mq-inner, .marquee-track { animation: none; }
  #cursor-dot, #cursor-ring { display: none; }
  body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: auto; }
  .reveal-words .w { opacity: 1; transform: none; transition: none; }
  .pin-wrap, .h-wrap { height: auto; }
  .pin-stage, .h-stage { position: static; height: auto; }
  .pin-title, .pin-phone, .pin-caption { position: static; opacity: 1 !important; transform: none !important; }
  .ph-status, .ph-header, .ph-kpi, .ph-row { opacity: 1 !important; transform: none !important; }
  .ph-bar { transform: none !important; }
  .h-track { flex-wrap: wrap; transform: none !important; }
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pin-wrap { height: 300vh; }
  .h-wrap { height: 340vh; }
  .magnet-btn { width: 150px; height: 150px; font-size: 1rem; }

  /* phone keeps its full size; the caption slot just needs more room for wrapping */
  .pin-stage { padding: 78px 16px 20px; gap: 12px; }
  .pin-phone { height: min(60vh, 490px); }   /* ~232px wide, matching the original */
  .pin-captions { height: 96px; }
  .pin-caption { font-size: 0.88rem; }
  .pin-title { font-size: clamp(2.4rem, 12vw, 4rem); }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
