/* ═══════════════════════════════════════════
   PIXELFORGE STUDIO — STYLES
   Theme: Premium Dark · Electric Accents
   ═══════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────── */
:root {
  --bg: #050508;
  --bg-2: #0d0d14;
  --bg-3: #13131c;
  --text: #f0f0f8;
  --text-muted: #8888aa;
  --accent: #00e5ff;
  --accent-2: #ff6b35;
  --accent-3: #7c3aed;
  --gold: #f5c518;
  --border: rgba(255, 255, 255, 0.07);
  --card-bg: rgba(255, 255, 255, 0.03);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

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

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── LOADER ─────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 2rem;
  animation: pulse 1s ease infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dots { animation: blink 1s steps(3) infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes blink { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* ─── CURSOR ─────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ─── NAVBAR ─────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
}

.logo-mark {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: -0.2px;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE MENU ─────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 6rem 2.5rem 2.5rem;
  gap: 1rem;
  transition: right var(--transition);
  border-left: 1px solid var(--border);
}

.mobile-menu.open { right: 0; }

.mm-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

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

/* ─── CONTAINER ─────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.35);
}

.btn-arrow { transition: transform var(--transition); }
.btn-primary:hover .btn-arrow { transform: translate(3px, -3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 255, 0.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

/* ─── WHATSAPP BUTTON ─────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-whatsapp:hover::before { transform: translateX(0); }

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* ─── HERO ───────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.45s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.hero-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}

.hero-services-pills span {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: color var(--transition), border-color var(--transition);
}

.hero-services-pills span:hover {
  color: var(--accent);
  border-color: rgba(0, 229, 255, 0.3);
}

@keyframes fadeUp { to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  animation: expandLine 2s ease infinite;
}

@keyframes expandLine {
  0% { width: 0; opacity: 0; }
  50% { width: 40px; opacity: 1; }
  100% { width: 40px; opacity: 0; }
}

.hero-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker 25s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-track .dot { color: var(--accent); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMONS ──────────────────────── */
section { padding: 7rem 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

.section-header { margin-bottom: 4rem; }

/* ─── REVEAL ANIMATIONS ─────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── ABOUT ─────────────────────────────── */
#about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  line-height: 1;
}

.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.about-visual {
  position: relative;
  height: 400px;
}

.av-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.av-card-1 { top: 10%; left: 0; animation-delay: 0s; }
.av-card-2 { top: 40%; right: 0; animation-delay: 1.5s; }
.av-card-3 { bottom: 10%; left: 10%; animation-delay: 3s; }
.av-icon { font-size: 1.4rem; }

.av-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbPulse 4s ease-in-out infinite;
}

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

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ─── SERVICES ────────────────────────────── */
#services { background: var(--bg); }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
  background: rgba(0, 229, 255, 0.04);
}

.sc-featured {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(124, 58, 237, 0.06));
  border-color: rgba(0, 229, 255, 0.15) !important;
}

.sc-featured:hover { border-color: var(--accent) !important; }

.sc-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sc-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sc-tags span {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.sc-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .sc-hover-line { width: 100%; }

/* ─── PROCESS ─────────────────────────────── */
#process { background: var(--bg-2); }

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
}

.process-line {
  position: absolute;
  top: 1.75rem;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-2));
  opacity: 0.25;
}

.process-step { text-align: center; padding: 0 1rem; }

.ps-circle {
  width: 52px;
  height: 52px;
  background: var(--bg-3);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.ps-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.ps-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── WORK ────────────────────────────────── */
#work { background: var(--bg); }

.workSwiper { padding: 1rem 1rem 4rem !important; overflow: hidden; }

.work-card-link { display: block; text-decoration: none; color: inherit; }
.work-card { padding: 0.5rem; }

.wc-image {
  height: 420px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.wc-image:hover { transform: scale(1.02); }

.wc-img-1 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.wc-img-2 { background: linear-gradient(135deg, #1a0533, #2d1065, #4c1d95); }
.wc-img-3 { background: linear-gradient(135deg, #052e16, #14532d, #16a34a); }
.wc-img-4 { background: linear-gradient(135deg, #1c0a09, #450a0a, #7f1d1d); }
.wc-img-5 { background: linear-gradient(135deg, #0a0a1a, #1a0a2e, #2d1b69); }

.wc-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wv-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wv-icon {
  font-size: 6rem;
  opacity: 0.12;
  transform: rotate(-10deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

.wc-image:hover .wv-icon { transform: rotate(-5deg) scale(1.1); opacity: 0.18; }

.wv-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  animation: orbPulse 4s ease-in-out infinite;
}

.wc-visual-1 .wv-glow { background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%); }
.wc-visual-2 .wv-glow { background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%); }
.wc-visual-3 .wv-glow { background: radial-gradient(circle, rgba(22, 163, 74, 0.18) 0%, transparent 70%); }
.wc-visual-4 .wv-glow { background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, transparent 70%); }
.wc-visual-5 .wv-glow { background: radial-gradient(circle, rgba(180, 120, 255, 0.2) 0%, transparent 70%); }

.wc-live-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  background: var(--accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.wc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  transform: translateY(60px);
  transition: transform var(--transition);
}

.wc-image:hover .wc-overlay { transform: translateY(0); }

.wc-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.wc-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.wc-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.wc-link, .wc-link-static {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition);
}

.wc-link:hover { gap: 0.6rem; }

.work-pagination { bottom: 1rem !important; }
.work-pagination .swiper-pagination-bullet { background: var(--text-muted); }
.work-pagination .swiper-pagination-bullet-active { background: var(--accent); }
.work-prev, .work-next { color: var(--accent) !important; }
.work-prev::after, .work-next::after { font-size: 1rem !important; }

/* ─── PRICING TOGGLE ─────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.ptoggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.ptoggle-btn:hover { color: #fff; }

.ptoggle-active {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(124, 58, 237, 0.15));
  color: #fff !important;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}

/* ─── PRICING ─────────────────────────────── */
#pricing { background: var(--bg-2); }

#pricingBusiness,
#pricingPortfolio,
#pricingDesign {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 4rem;
  width: 100%;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.25);
}

.pc-featured {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.07) 0%, rgba(124, 58, 237, 0.07) 100%);
  border-color: rgba(0, 229, 255, 0.3) !important;
  transform: none;
}

.pc-featured:hover { transform: translateY(-6px); }

.pc-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pc-header { margin-bottom: 1.75rem; min-height: 200px; }

.pc-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pc-badge-basic { background: rgba(255, 255, 255, 0.07); color: var(--text-muted); border: 1px solid var(--border); }
.pc-badge-standard { background: rgba(0, 229, 255, 0.1); color: var(--accent); border: 1px solid rgba(0, 229, 255, 0.25); }
.pc-badge-premium { background: rgba(124, 58, 237, 0.1); color: #a78bfa; border: 1px solid rgba(124, 58, 237, 0.25); }

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.pc-currency {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.pc-featured .pc-amount { color: var(--accent); }

/* Price range suffix for Portfolio Premium */
.pc-amount-range { display: inline-flex; align-items: baseline; gap: 0; }
.pc-range-suffix {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.pc-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pc-timeline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pc-timeline strong { color: var(--text); }
.pt-icon { font-size: 0.95rem; }

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pc-features li::before {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.8rem;
}

.pf-yes { color: var(--text); }
.pf-yes::before { content: '✓'; color: var(--accent); }
.pf-no { color: var(--text-muted); text-decoration: line-through; opacity: 0.5; }
.pf-no::before { content: '✕'; color: var(--text-muted); }

/* ─── MAINTENANCE ─── */
.maintenance-wrapper {
  margin-top: 4.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.maintenance-header { text-align: center; margin-bottom: 3.5rem; }

.maintenance-header h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.maintenance-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pay-as-you-go {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pay-go-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pay-go-item:hover {
  border-color: rgba(180, 120, 255, 0.3);
  background: rgba(180, 120, 255, 0.03);
}

.pay-go-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.pay-go-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.pay-go-price {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-left: 1rem;
}

.monthly-plan-card {
  background: linear-gradient(145deg, rgba(180, 120, 255, 0.08), rgba(0, 212, 170, 0.03));
  border: 1px solid rgba(180, 120, 255, 0.25);
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mp-badge {
  position: absolute;
  top: -14px;
  right: 3rem;
  background: linear-gradient(90deg, #b478ff, #7f39ff);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(180, 120, 255, 0.3);
}

.monthly-plan-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.mp-price-wrap { margin-bottom: 2rem; }

.mp-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -1px;
}

.mp-price span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.mp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mp-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.mp-features li strong { color: #fff; }

.mp-features li::before {
  content: '✓';
  color: #b478ff;
  font-weight: bold;
  background: rgba(180, 120, 255, 0.1);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ─── ADD-ONS ─────────────────────────────── */
.addons-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.addons-header { margin-bottom: 2rem; }

.addons-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

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

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.addon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition), background var(--transition);
}

.addon-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.03);
}

.addon-icon { font-size: 1.5rem; flex-shrink: 0; }

.addon-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.2px;
}

.addon-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.addon-content em { color: var(--accent); font-style: normal; }

.addons-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.addons-note span { font-size: 1rem; flex-shrink: 0; }

/* ─── TEAM ────────────────────────────────── */
#team { background: var(--bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.team-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-8px);
}

.tc-featured {
  border-color: rgba(0, 229, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(124, 58, 237, 0.05));
  transform: translateY(-12px);
}

.tc-featured:hover { transform: translateY(-18px); }

.tc-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
  background: var(--bg-3);
  padding: 0.75rem;
}

.tc-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.team-card:hover .tc-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.tc-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 229, 255, 0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .tc-glow { opacity: 1; }

.tc-info { padding: 1.75rem; }

.tc-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}

.tc-role {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}

.tc-info p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tc-skills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tc-skills span {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

/* ─── TESTIMONIALS ───────────────────────── */
#testimonials { background: var(--bg-2); }

.testimonialSwiper { padding-bottom: 3rem !important; }

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.testi-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testi-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.testi-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-pagination .swiper-pagination-bullet { background: var(--text-muted); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--accent); }

/* ─── CONTACT ─────────────────────────────── */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.ci-location { cursor: default; }
.ci-item:hover { color: var(--accent); }
.ci-icon { font-size: 1.1rem; width: 20px; text-align: center; }

.contact-right-wa {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 1rem;
}

.wa-option-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: border-color var(--transition), background var(--transition);
}

.wa-option-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.04);
}

.wa-option-icon { font-size: 2rem; flex-shrink: 0; margin-top: 0.1rem; }

.wa-option-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.2px;
}

.wa-option-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wa-note {
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex; 
  gap: 0.6rem;
  align-items: flex-start;
}


/* ─── FOOTER ─────────────────────────────── */
#footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-location {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ─── TABLET LANDSCAPE / SMALL DESKTOP (≤1100px) ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  #pricingBusiness, #pricingPortfolio, #pricingDesign { grid-template-columns: 1fr !important; gap: 2rem; }
  .pc-featured { transform: none; }
  .pc-featured:hover { transform: translateY(-6px); }
  .pc-popular-tag { top: 1rem; right: 1rem; left: auto; transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

/* ─── TABLET PORTRAIT (≤900px) ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-featured { transform: none; }
  .tc-featured:hover { transform: translateY(-8px); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .addons-grid { grid-template-columns: 1fr; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .maintenance-wrapper { padding: 3rem 1.5rem; }
  .monthly-plan-card { padding: 2.5rem 1.5rem; }
  .mp-badge { right: 1.5rem; }
  .pc-header { min-height: unset; }
}

/* ─── MOBILE LANDSCAPE / LARGE MOBILE (≤768px) ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }

  section { padding: 5rem 0; }

  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); letter-spacing: -2px; }
  .hero-services-pills span { font-size: 0.72rem; }
  .hero-scroll-hint { display: none; }
  .hero-content { padding: 6rem 1.5rem 4rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Pricing toggle — full width stack */
  .pricing-toggle-wrap {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    border-radius: 50px;
  }
  .ptoggle-btn {
    flex: 1;
    text-align: center;
    white-space: normal;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Maintenance */
  .pay-go-item { flex-direction: row; }
  .maintenance-header h3 { font-size: 1.75rem; }

  /* Work slider cards */
  .wc-image { height: 340px; }

  /* Contact grid gap */
  .contact-grid { gap: 2rem; }
}

/* ─── MOBILE PORTRAIT (≤480px) ─── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-content { padding: 6rem 1.25rem 3rem; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); letter-spacing: -1.5px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { width: 100%; justify-content: center; }

  section { padding: 4rem 0; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

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

  /* Team — remove the featured offset on small screens */
  .tc-featured { transform: none; }
  .tc-featured:hover { transform: translateY(-8px); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .about-stats { gap: 1.5rem; }

  /* Pricing */
  .pc-amount { font-size: 2.4rem; }
  .pc-header { min-height: unset; }
  .pc-popular-tag { font-size: 0.6rem; padding: 0.25rem 0.75rem; }

  /* Pricing toggle — stack vertically on very small screens */
  .pricing-toggle-wrap {
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
  }
  .ptoggle-btn { width: 100%; font-size: 0.85rem; text-align: center; }
  .ptoggle-active { border-radius: 12px; }

  /* Maintenance */
  .pay-go-item { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .pay-go-price { margin-left: 0; }
  .maintenance-wrapper { padding: 2.5rem 1.25rem; }
  .monthly-plan-card { padding: 2rem 1.25rem; }
  .mp-badge { right: 1.25rem; font-size: 0.68rem; }
  .mp-price { font-size: 2.4rem; }

  /* WhatsApp buttons */
  .btn-whatsapp { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
  .wa-option-card { flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
  .wa-option-icon { font-size: 1.5rem; margin-top: 0; }

  /* Work slider */
  .wc-image { height: 280px; }
  .wc-overlay h3 { font-size: 1.25rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.25rem; }

  /* Hide custom cursor on touch */
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ─── VERY SMALL SCREENS (≤360px) ─── */
@media (max-width: 360px) {
  .hero-title { font-size: clamp(2rem, 13vw, 3rem); letter-spacing: -1px; }
  .hero-badge { font-size: 0.68rem; letter-spacing: 1.5px; }
  .hero-services-pills span { font-size: 0.65rem; padding: 0.25rem 0.65rem; }
  .btn-whatsapp { font-size: 0.82rem; padding: 0.85rem 1.25rem; }
  .btn-whatsapp svg { width: 18px; height: 18px; }
  .mm-link { font-size: 1.5rem; }
  .nav-logo { font-size: 1.1rem; }
}
/* ═══════════════════════════════════════════
   ADDITIONS — v2 (Bug fixes + Design tab)
   ═══════════════════════════════════════════ */

/* ─── BUG FIX: Pause hero CSS animations
   until loader dismisses (JS unpauses them) ─ */
.hero-badge,
.hero-title .line,
.hero-sub,
.hero-cta,
.hero-services-pills {
  animation-play-state: paused;
}

/* ─── CONCEPT PROJECT BADGE (portfolio) ─── */
.wc-concept-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Ensure hidden pricing grids stay hidden until JS activates them */
#pricingPortfolio,
#pricingDesign {
  display: none;
}

/* ─── POSTER CUSTOM CTA ──────────────────── */
.poster-custom-cta {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(124,58,237,0.05));
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  transition: border-color var(--transition);
}

.poster-custom-cta:hover {
  border-color: rgba(0,229,255,0.3);
}

.pcc-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.pcc-icon {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pcc-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.35rem;
}

.pcc-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 520px;
}

/* ─── 3-BUTTON TOGGLE RESPONSIVE ─────────── */
@media (max-width: 900px) {
  .pricing-toggle-wrap {
    flex-wrap: wrap;
    max-width: 480px;
    border-radius: 16px;
    padding: 6px;
  }
  .ptoggle-btn {
    flex: 1 1 auto;
    min-width: 110px;
    white-space: normal;
    text-align: center;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .poster-custom-cta {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .poster-custom-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .pricing-toggle-wrap {
    flex-direction: column;
    border-radius: 14px;
    max-width: 100%;
  }
  .ptoggle-btn {
    width: 100%;
    min-width: unset;
  }
  .ptoggle-active {
    border-radius: 10px;
  }
}