@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,700;12..96,800;12..96,900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ════════════════════════════════════════════════
   1. DESIGN SYSTEM - VARIÁVEIS & RESET
   ════════════════════════════════════════════════ */
:root {
  --bg-black: #050508;
  --bg-dark-card: rgba(255, 255, 255, 0.03);
  --text-white: #FFFFFF;
  --text-gray: #A1A1AA;
  --text-muted: rgba(255, 255, 255, 0.48);
  
  /* Neons */
  --accent-cyan: #00E5FF;
  --accent-blue: #1B7CFF;
  --accent-purple: #7000FF;
  --accent-purple-light: #9B5CFF;
  --accent-green: #22C55E;
  
  /* Glassmorphism */
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-glow: rgba(0, 229, 255, 0.28);
  --bg-island: rgba(5, 5, 8, 0.92);
  
  /* Fontes */
  --font-title: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-white);
  background-color: var(--bg-black);
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: #181824;
  border: 2px solid var(--bg-black);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ════════════════════════════════════════════════
   2. SEÇÕES & LAYOUT GLOBAIS
   ════════════════════════════════════════════════ */
.ds-section {
  width: 100%;
  padding: 140px 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.ds-container {
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ds-header-group {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 64px;
}

.ds-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 10px 32px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  white-space: nowrap;
  display: inline-block;
}

.ds-headline {
  font-family: var(--font-title);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ds-headline span {
  color: var(--accent-cyan);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.ds-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.62;
  max-width: 800px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════
   3. BOTÕES NEON & INTERAÇÕES
   ════════════════════════════════════════════════ */
.btn-primary-neon,
.btn-secondary-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary-neon {
  color: var(--text-white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary-neon:hover {
  color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.03) 100%);
  border-top-color: rgba(0, 229, 255, 0.8);
  border-left-color: rgba(0, 229, 255, 0.3);
  border-right-color: rgba(0, 229, 255, 0.2);
  border-bottom-color: rgba(0, 229, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 229, 255, 0.2), inset 0 1px 0 rgba(0, 229, 255, 0.2);
  transform: translateY(-3px);
}

.btn-secondary-neon {
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.btn-secondary-neon:hover {
  color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(112, 0, 255, 0.05) 100%);
  border-top-color: rgba(0, 229, 255, 0.45);
  border-left-color: rgba(0, 229, 255, 0.24);
  border-right-color: rgba(0, 229, 255, 0.16);
  border-bottom-color: rgba(0, 229, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38), 0 0 20px rgba(0, 229, 255, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.btn-primary-neon svg,
.btn-secondary-neon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-neon:hover svg,
.btn-secondary-neon:hover svg {
  transform: translateX(4px) scale(1.1);
}

/* ════════════════════════════════════════════════
   4. MENU FLUTUANTE (ILHA DE VIDRO)
   ════════════════════════════════════════════════ */
.ps-nav {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  font-family: var(--font-body);
}

/* Backdrop escuro */
.ps-nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 8, 0.4);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.ps-nav.is-open .ps-nav__backdrop {
  display: block;
}

/* A Ilha de Links */
.ps-nav__island {
  background: var(--bg-island);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-top: 1px solid rgba(0, 229, 255, 0.32);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 229, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  
  /* Animação de Abrir */
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.ps-nav.is-open .ps-nav__island {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Links */
.ps-nav__island a.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.ps-nav__island a.nav-link:hover {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  transform: translateX(-3px);
}

.ps-nav__island a.nav-link.is-active {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.ps-nav__island a.nav-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  opacity: 0.6;
  flex-shrink: 0;
}

.ps-nav__island a.nav-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.7;
  flex-shrink: 0;
  background: none;
  border: none;
  box-shadow: none;
  transition: opacity 0.22s ease;
}

.ps-nav__island a.nav-link:hover img {
  opacity: 1;
}

.ps-nav__island-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 8px;
}

/* Redes Sociais no Menu */
.ps-nav__island-socials {
  display: flex;
  gap: 8px;
  padding: 4px 8px 8px 8px;
}

.ps-nav__island-socials a {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.22s ease;
}

.ps-nav__island-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ps-nav__island-socials a:hover {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
}

/* Botão de Trigger */
.ps-nav__trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.ps-nav__trigger:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(0, 229, 255, 0.4);
  transform: scale(1.06);
}

/* Logo e X */
.ps-nav__trigger img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: opacity 0.25s ease, transform 0.3s ease;
  position: absolute;
}

.ps-nav__trigger-x {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.ps-nav__trigger-x::before,
.ps-nav__trigger-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.ps-nav__trigger-x::before { transform: rotate(45deg); }
.ps-nav__trigger-x::after  { transform: rotate(-45deg); }

.ps-nav.is-open .ps-nav__trigger img {
  opacity: 0;
  transform: scale(0.7);
}

.ps-nav.is-open .ps-nav__trigger-x {
  opacity: 1;
  transform: rotate(0deg);
}

/* ════════════════════════════════════════════════
   5. SEÇÃO HERO
   ════════════════════════════════════════════════ */
.ps-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-black);
  position: relative;
  overflow: hidden;
  padding: 140px 4vw;
  box-sizing: border-box;
  isolation: isolate;
}

/* Glow Estático / Aurora de Fundo */
.ps-hero__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    90deg,
    rgba(112, 0, 255, 0.14) 0%,
    rgba(0, 229, 255, 0.16) 50%,
    rgba(112, 0, 255, 0.14) 100%
  );
  mask-image: linear-gradient(to top, black 5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.ps-hero__glow::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 30%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 60%);
  filter: blur(40px);
}

.ps-hero__bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 8, 0) 0%,
    #050508 100%
  );
  z-index: 2;
  pointer-events: none;
}

.ps-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-hero__headline {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 24px;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-hero__headline span {
  color: var(--accent-cyan);
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.44);
}

.ps-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--text-gray);
  max-width: 800px;
  line-height: 1.68;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.ps-hero__desc strong {
  color: var(--accent-cyan);
  font-weight: 700;
}

.ps-hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  flex-wrap: wrap;
}

/* Classes ativadas pelo Scroll / Loading */
.is-visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ════════════════════════════════════════════════
   6. GRID DE PORTFÓLIO
   ════════════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-cyan);
  border-right-color: rgba(0, 229, 255, 0.15);
  border-left-color: rgba(0, 229, 255, 0.15);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 229, 255, 0.10);
}

.portfolio-topbar {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.port-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.port-dot-red    { background: #FF5F56; }
.port-dot-yellow { background: #FFBD2E; }
.port-dot-green  { background: #27C93F; }

.portfolio-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #08080f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-static-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #08080f;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .portfolio-static-img {
  transform: scale(1.06);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.85) 0%, rgba(5, 5, 8, 0.35) 60%, rgba(5, 5, 8, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  z-index: 1;
  transition: background 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.45) 60%, rgba(5, 5, 8, 0.15) 100%);
}

.portfolio-fallback-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-fallback-cat {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px;
  height: 64px;
  background: rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-overlay svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-cyan);
  margin-left: 3px;
}

.portfolio-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.port-btn-container {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ════════════════════════════════════════════════
   7. SEÇÃO DE SERVIÇOS (CARDS FUTURISTAS)
   ════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.service-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.9;
  background: radial-gradient(circle at 10% 10%, rgba(0, 229, 255, 0.08), transparent 38%);
  transition: opacity 0.3s ease;
}

.service-card.purple::before {
  background: radial-gradient(circle at 10% 10%, rgba(112, 0, 255, 0.08), transparent 38%);
}

.service-card.green::before {
  background: radial-gradient(circle at 10% 10%, rgba(34, 197, 94, 0.08), transparent 38%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent-cyan);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(0, 229, 255, 0.04);
}

.service-card.purple:hover {
  border-top-color: var(--accent-purple-light);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(112, 0, 255, 0.06);
}

.service-card.green:hover {
  border-top-color: var(--accent-green);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(34, 197, 94, 0.06);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card.purple .service-icon-box { color: var(--accent-purple-light); }
.service-card.green .service-icon-box { color: var(--accent-green); }

.service-card:hover .service-icon-box {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
  transform: scale(1.05);
}

.service-card.purple:hover .service-icon-box {
  background: rgba(112, 0, 255, 0.08);
  border-color: rgba(112, 0, 255, 0.2);
}

.service-card.green:hover .service-icon-box {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  filter: drop-shadow(0 0 4px currentColor);
}

.service-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.service-description {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.6;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-white);
}

.service-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.service-card.purple .service-list li svg { color: var(--accent-purple-light); }
.service-card.green .service-list li svg { color: var(--accent-green); }

/* ════════════════════════════════════════════════
   8. FORMULÁRIO DE CONTATO (GLASSMORPHISM)
   ════════════════════════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateX(-30px);
}

.contact-info-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.contact-info-title span {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.contact-item-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item-text a,
.contact-item-text span {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-text a:hover {
  color: var(--accent-cyan);
}

/* Formulário de Vidro */
.contact-form-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateX(30px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-white);
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.02);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.08);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 12px;
}

/* ════════════════════════════════════════════════
   9. FOOTER E SUBPÁGINAS
   ════════════════════════════════════════════════ */
.ps-footer {
  width: 100%;
  padding: 64px 4vw;
  background-color: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.ps-footer__logo {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.ps-footer__logo span {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.ps-footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.ps-footer__nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ps-footer__nav a:hover {
  color: var(--accent-cyan);
}

.ps-footer__divider {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.ps-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
}

/* Página Interna / Container de Conteúdo */
.ps-internal-hero {
  min-height: 50vh;
  padding-top: 180px;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 32px;
}

.price-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}

.price-card.featured {
  border-color: rgba(0, 229, 255, 0.25);
  border-top-color: var(--accent-cyan);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(0, 229, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.price-card.featured:hover {
  border-color: var(--accent-cyan);
  box-shadow: 
    0 28px 56px rgba(0, 0, 0, 0.65),
    0 0 36px rgba(0, 229, 255, 0.15);
}

.price-badge {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
  text-transform: uppercase;
}

.price-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

.price-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 42px;
}

.price-val-box {
  margin-bottom: 32px;
}

.price-val-prefix {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-val {
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.price-val span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-gray);
}

.price-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.price-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white);
}

.price-features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.price-card.featured .price-features-list li svg {
  color: var(--accent-cyan);
}

.price-cta-btn {
  width: 100%;
}

/* ════════════════════════════════════════════════
   10. RESPONSIVIDADE GERAL
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid,
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ds-section {
    padding: 100px 20px;
  }
  
  .ds-headline {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: 0px;
  }
  
  .ds-desc {
    font-size: 16px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-grid,
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-info {
    align-items: center;
    text-align: center;
  }
  
  .contact-form-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .ps-nav {
    bottom: 24px;
    right: 20px;
  }
  
  .ps-nav__trigger {
    width: 56px;
    height: 56px;
  }
  
  .ps-nav__island {
    position: fixed;
    bottom: 96px;
    right: 20px;
    min-width: 220px;
  }
  
  .ps-footer__nav {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ps-hero__cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-neon,
  .btn-secondary-neon {
    width: 100%;
  }
  
  .ps-nav__island {
    left: 20px;
    right: 20px;
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════
   PORTFOLIO PAGE STYLING
   ════════════════════════════════════════════════ */


.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.port-hero {
    width: 100%;
    padding: 140px 4vw 80px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.port-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 70%;
    background: linear-gradient(90deg, rgba(112,0,255,0.12) 0%, rgba(0,229,255,0.12) 50%, rgba(112,0,255,0.12) 100%);
    mask-image: linear-gradient(to top, black 5%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.port-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.port-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.port-headline {
    font-family: var(--font-title);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    opacity: 0;
    transform: translateY(30px);
}

.port-headline span { color: var(--accent-cyan); }

.port-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
}

.port-main {
    width: 100%;
    padding: 80px 4vw 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 64px;
}

.port-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
}

.port-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.06);
}

.port-topbar {
    background: rgba(255,255,255,0.03);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.p-dot { width: 11px; height: 11px; border-radius: 50%; }
.p-dot-r { background: #FF5F56; }
.p-dot-y { background: #FFBD2E; }
.p-dot-g { background: #27C93F; }

.port-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050508;
}

.port-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.port-static-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #050508;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.port-card:hover .port-static-img {
    transform: scale(1.06);
}

.port-card-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.port-card-name {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
}

.port-card-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.port-card-tag.ficticio {
    color: #71717A;
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.port-cta-wrap {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.port-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 48px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0.03) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 229, 255, 0.5);
    border-left: 1px solid rgba(0, 229, 255, 0.2);
    border-right: 1px solid rgba(0, 229, 255, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.08), inset 0 1px 0 rgba(0,229,255,0.2);
    transition: all 0.35s ease;
}

.port-cta:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 32px rgba(0,229,255,0.15), inset 0 1px 0 rgba(0,229,255,0.3);
    transform: translateY(-3px);
}

.port-cta svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; transition: transform 0.3s ease; }
.port-cta:hover svg { transform: scale(1.15); }

/* ── Footer Completo ── */
.ideal-footer {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 80px 6vw 40px 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.ideal-footer::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 80%;
    background: linear-gradient(90deg, rgba(112,0,255,0.10) 0%, rgba(0,229,255,0.10) 50%, rgba(112,0,255,0.10) 100%);
    mask-image: linear-gradient(to top, black 5%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.ideal-footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.2) 30%, rgba(112,0,255,0.2) 70%, transparent 100%);
    z-index: 2;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    width: 100%;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo-name {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #FFFFFF;
}

.footer-logo-name span {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.footer-brand-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #71717A;
    line-height: 1.7;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #71717A !important;
    transition: all 0.3s ease;
}

.footer-social-btn svg { width: 17px; height: 17px; }

.footer-social-btn:hover {
    color: var(--accent-cyan) !important;
    background: rgba(0,229,255,0.08);
    border-color: rgba(0,229,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,229,255,0.12);
}

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

.footer-col-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.footer-col a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #71717A !important;
    text-decoration: none !important;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.footer-col a:hover {
    color: var(--accent-cyan) !important;
    transform: translateX(4px);
}

.footer-col a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,229,255,0.4);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.footer-col a:hover::before { background: var(--accent-cyan); }

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #3F3F46;
}

.footer-copy span { color: #52525B; }

.footer-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #3F3F46;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsividade do portfólio no próprio grid */
@media (max-width: 1024px) {
    .port-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .port-hero { padding: 100px 20px 60px 20px; }
    .port-headline { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0; }
    .port-desc { font-size: 17px; }
    .port-main { padding: 60px 20px 100px 20px; }
    .port-grid { grid-template-columns: 1fr; gap: 20px; }
    .modal-inner { width: 95vw; }
    .port-cta { width: 100%; }
    
    .ideal-footer { padding: 64px 20px 32px 20px; }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    .footer-logo-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-logo-img {
        width: 72px;
        height: 72px;
    }
    .footer-brand-desc { max-width: 100%; }
    .footer-col {
        align-items: center;
        text-align: center;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.07);
        border-top: 1px solid rgba(255,255,255,0.12);
        border-radius: 16px;
        padding: 24px 20px;
    }
    .footer-col a {
        justify-content: center;
        font-size: 17px;
    }
    .footer-col a::before { display: none; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-col { padding: 20px 16px; }
}

/* ════════════════════════════════════════════════
   PRICING TABLE STYLING
   ════════════════════════════════════════════════ */
#ideal-pricing-table-4812,
#ideal-pricing-table-4812 * {
  box-sizing: border-box;
}

#ideal-pricing-table-4812 {
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 4vw;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(0, 229, 255, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 95% 100%, rgba(112, 0, 255, 0.12) 0%, transparent 62%),
    linear-gradient(160deg, #050508 0%, #080810 44%, #0a0810 100%);
  font-family: 'Inter', sans-serif;
}

#ideal-pricing-table-4812::before,
#ideal-pricing-table-4812::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
  z-index: 2;
}

#ideal-pricing-table-4812::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.24) 30%, rgba(112, 0, 255, 0.22) 70%, transparent 100%);
}

#ideal-pricing-table-4812::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(112, 0, 255, 0.22) 30%, rgba(0, 229, 255, 0.24) 70%, transparent 100%);
}

#ideal-pricing-table-4812 .ipt4812-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

#ideal-pricing-table-4812 .ipt4812-glow-a {
  top: 6%;
  left: -240px;
  background: #00E5FF;
}

#ideal-pricing-table-4812 .ipt4812-glow-b {
  right: -240px;
  bottom: 8%;
  background: #7000FF;
}

#ideal-pricing-table-4812 .ipt4812-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 36%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 36%, black 0%, transparent 72%);
}

#ideal-pricing-table-4812 .ipt4812-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#ideal-pricing-table-4812 .ipt4812-header {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 72px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ideal-pricing-table-4812 .ipt4812-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00E5FF;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 10px 32px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

#ideal-pricing-table-4812 .ipt4812-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
}

#ideal-pricing-table-4812 .ipt4812-title span {
  display: block;
  color: #00E5FF;
  text-shadow: 0 0 34px rgba(0, 229, 255, 0.2);
}

#ideal-pricing-table-4812 .ipt4812-description {
  max-width: 850px;
  margin: 28px auto 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: #A1A1AA;
  opacity: 0;
  transform: translateY(30px);
}

#ideal-pricing-table-4812 .ipt4812-shell {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(0, 229, 255, 0.20);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(0, 229, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(46px) scale(0.985);
}

#ideal-pricing-table-4812 .ipt4812-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.11), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(112, 0, 255, 0.10), transparent 52%),
    rgba(0, 0, 0, 0.14);
}

#ideal-pricing-table-4812 .ipt4812-shell-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

#ideal-pricing-table-4812 .ipt4812-shell-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00E5FF;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.8);
}

#ideal-pricing-table-4812 .ipt4812-shell-top h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

#ideal-pricing-table-4812 .ipt4812-top-cta,
#ideal-pricing-table-4812 .ipt4812-bottom-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none !important;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 26px;
  border-radius: 12px;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.26s ease,
    color 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease,
    box-shadow 0.26s ease;
}

#ideal-pricing-table-4812 .ipt4812-top-cta:hover,
#ideal-pricing-table-4812 .ipt4812-bottom-cta:hover {
  color: #00E5FF !important;
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.44);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.22), rgba(112, 0, 255, 0.08));
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(0, 229, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

#ideal-pricing-table-4812 .ipt4812-top-cta svg,
#ideal-pricing-table-4812 .ipt4812-bottom-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.26s ease;
}

#ideal-pricing-table-4812 .ipt4812-top-cta:hover svg,
#ideal-pricing-table-4812 .ipt4812-bottom-cta:hover svg {
  transform: translateX(6px);
}

#ideal-pricing-table-4812 .ipt4812-table-wrap {
  width: 100%;
  overflow-x: auto;
}

#ideal-pricing-table-4812 .ipt4812-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: separate;
  border-spacing: 0;
}

#ideal-pricing-table-4812 .ipt4812-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(5, 5, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#ideal-pricing-table-4812 .ipt4812-table th:nth-child(1),
#ideal-pricing-table-4812 .ipt4812-table td:nth-child(1) {
  width: 27%;
}

#ideal-pricing-table-4812 .ipt4812-table th:nth-child(2),
#ideal-pricing-table-4812 .ipt4812-table td:nth-child(2) {
  width: 29%;
}

#ideal-pricing-table-4812 .ipt4812-table th:nth-child(3),
#ideal-pricing-table-4812 .ipt4812-table td:nth-child(3) {
  width: 26%;
}

#ideal-pricing-table-4812 .ipt4812-table th:nth-child(4),
#ideal-pricing-table-4812 .ipt4812-table td:nth-child(4) {
  width: 18%;
}

#ideal-pricing-table-4812 .ipt4812-table tbody tr {
  position: relative;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#ideal-pricing-table-4812 .ipt4812-table tbody tr:hover {
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.055), rgba(112, 0, 255, 0.035));
}

#ideal-pricing-table-4812 .ipt4812-table tbody td {
  padding: 28px 24px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

#ideal-pricing-table-4812 .ipt4812-table tbody tr:last-child td {
  border-bottom: none;
}

#ideal-pricing-table-4812 .ipt4812-premium-row {
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.045), rgba(112, 0, 255, 0.065));
}

#ideal-pricing-table-4812 .ipt4812-project {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

#ideal-pricing-table-4812 .ipt4812-number {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #00E5FF;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#ideal-pricing-table-4812 .ipt4812-project strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 8px;
}

#ideal-pricing-table-4812 .ipt4812-project em {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: #00E5FF;
  line-height: 1.35;
}

#ideal-pricing-table-4812 .ipt4812-table p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #A1A1AA;
  margin: 0;
}

#ideal-pricing-table-4812 .ipt4812-structure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#ideal-pricing-table-4812 .ipt4812-structure span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 13px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#ideal-pricing-table-4812 .ipt4812-price {
  min-width: 178px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

#ideal-pricing-table-4812 .ipt4812-price small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #71717A;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

#ideal-pricing-table-4812 .ipt4812-price strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.7px;
  color: #FFFFFF;
  white-space: nowrap;
}

#ideal-pricing-table-4812 .ipt4812-price span {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

#ideal-pricing-table-4812 .ipt4812-price-premium {
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.095), rgba(112, 0, 255, 0.08));
  border-color: rgba(0, 229, 255, 0.18);
}

#ideal-pricing-table-4812 .ipt4812-price-premium strong {
  color: #00E5FF;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.18);
}

#ideal-pricing-table-4812 .ipt4812-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 36px 34px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(0, 0, 0, 0.12);
}

#ideal-pricing-table-4812 .ipt4812-footer p {
  max-width: 840px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

#ideal-pricing-table-4812 .ipt4812-footer strong {
  color: #FFFFFF;
  font-weight: 800;
}

#ideal-pricing-table-4812 .ipt4812-bottom-cta {
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  #ideal-pricing-table-4812 .ipt4812-shell-top,
  #ideal-pricing-table-4812 .ipt4812-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  #ideal-pricing-table-4812 .ipt4812-top-cta,
  #ideal-pricing-table-4812 .ipt4812-bottom-cta {
    width: 100%;
  }
}

@media (max-width: 900px) {
  #ideal-pricing-table-4812 {
    padding: 110px 20px;
  }

  #ideal-pricing-table-4812 .ipt4812-header {
    margin-bottom: 52px;
  }

  #ideal-pricing-table-4812 .ipt4812-title {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.16;
    letter-spacing: 0;
  }

  #ideal-pricing-table-4812 .ipt4812-description {
    font-size: 16px;
    line-height: 1.65;
    margin-top: 22px;
  }

  #ideal-pricing-table-4812 .ipt4812-shell {
    border-radius: 24px;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #ideal-pricing-table-4812 .ipt4812-shell-top {
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(0, 229, 255, 0.20);
    background:
      radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.12), transparent 50%),
      radial-gradient(circle at 100% 100%, rgba(112, 0, 255, 0.10), transparent 52%),
      rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  #ideal-pricing-table-4812 .ipt4812-table-wrap {
    overflow: visible;
  }

  #ideal-pricing-table-4812 .ipt4812-table {
    min-width: 0;
    width: 100%;
    display: block;
    border-collapse: collapse;
  }

  #ideal-pricing-table-4812 .ipt4812-table thead {
    display: none;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody tr {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
      rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody tr:hover {
    background:
      linear-gradient(145deg, rgba(0, 229, 255, 0.06), rgba(112, 0, 255, 0.04)),
      rgba(255, 255, 255, 0.028);
  }

  #ideal-pricing-table-4812 .ipt4812-premium-row {
    border-color: rgba(0, 229, 255, 0.18) !important;
    background:
      linear-gradient(145deg, rgba(0, 229, 255, 0.07), rgba(112, 0, 255, 0.065)),
      rgba(255, 255, 255, 0.02) !important;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody td {
    width: 100% !important;
    display: block;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody td:last-child {
    border-bottom: none;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 1.4px;
  }

  #ideal-pricing-table-4812 .ipt4812-project {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  #ideal-pricing-table-4812 .ipt4812-project strong {
    font-size: 25px;
  }

  #ideal-pricing-table-4812 .ipt4812-price {
    width: 100%;
    min-width: 0;
  }

  #ideal-pricing-table-4812 .ipt4812-price strong {
    font-size: 38px;
  }

  #ideal-pricing-table-4812 .ipt4812-footer {
    border-radius: 22px;
    margin-top: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
}

@media (max-width: 560px) {
  #ideal-pricing-table-4812 {
    padding: 100px 18px;
  }

  #ideal-pricing-table-4812 .ipt4812-tag {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 10px 18px;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    margin-bottom: 26px;
  }

  #ideal-pricing-table-4812 .ipt4812-shell-top h3 {
    font-size: 27px;
  }

  #ideal-pricing-table-4812 .ipt4812-shell-top,
  #ideal-pricing-table-4812 .ipt4812-footer {
    padding: 22px;
    border-radius: 20px;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody tr {
    border-radius: 20px;
  }

  #ideal-pricing-table-4812 .ipt4812-table tbody td {
    padding: 18px;
  }

  #ideal-pricing-table-4812 .ipt4812-project strong {
    font-size: 23px;
  }

  #ideal-pricing-table-4812 .ipt4812-table p {
    font-size: 14px;
  }

  #ideal-pricing-table-4812 .ipt4812-price strong {
    font-size: 34px;
  }

  #ideal-pricing-table-4812 .ipt4812-top-cta,
  #ideal-pricing-table-4812 .ipt4812-bottom-cta {
    min-height: 54px;
    padding: 15px 20px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════
   SEO PAGE STYLING
   ════════════════════════════════════════════════ */
.seo-hero {
    width: 100%;
    min-height: 90vh;
    padding: 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.seo-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 70%;
    background: linear-gradient(90deg, rgba(112,0,255,0.12) 0%, rgba(0,229,255,0.12) 50%, rgba(112,0,255,0.12) 100%);
    mask-image: linear-gradient(to top, black 5%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.seo-glow-tl {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.seo-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.seo-headline {
    font-family: var(--font-title);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
}

.seo-headline span { color: var(--accent-cyan); }

.seo-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    max-width: 780px;
    line-height: 1.7;
    margin: 0 0 64px 0;
    opacity: 0;
    transform: translateY(20px);
}

.seo-desc strong {
    color: #FFFFFF;
    font-weight: 600;
}

.btn-seo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-seo:hover {
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0,229,255,0.10) 0%, rgba(0,229,255,0.03) 100%);
    border-top-color: rgba(0, 229, 255, 0.7);
    border-left-color: rgba(0, 229, 255, 0.7);
    border-right-color: rgba(0, 229, 255, 0.7);
    border-bottom-color: rgba(0, 229, 255, 0.7);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(0,229,255,0.15);
    transform: translateY(-3px);
}

.btn-seo svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-seo:hover svg { transform: translateX(6px) scale(1.1); }

.seo-cards-section {
    width: 100%;
    padding: 80px 4vw 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-cards-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.seo-highlight-block {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 100%, rgba(112, 0, 255, 0.09) 0%, transparent 60%),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 64px 72px;
    display: flex;
    align-items: center;
    gap: 72px;
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(40px);
}

.seo-highlight-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(112,0,255,0.10));
    border: 1px solid rgba(0,229,255,0.2);
    box-shadow: 0 0 40px rgba(0,229,255,0.10), 0 0 80px rgba(112,0,255,0.06), inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-highlight-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(0,229,255,0.4));
}

.seo-highlight-content { flex: 1; }

.seo-highlight-title {
    font-family: var(--font-title);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.seo-highlight-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.7;
}

.seo-highlight-text strong { color: #FFFFFF; font-weight: 600; }

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

.seo-card {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(40px);
}

.seo-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(0,229,255,0.06), inset 0 1px 0 rgba(0,229,255,0.08);
}

.seo-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-card-icon svg {
    width: 24px; height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seo-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.seo-card p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.7;
}

.seo-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 64px 40px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(30px);
}

.seo-cta-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.seo-cta-title span { color: var(--accent-cyan); }

.seo-cta-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: #A1A1AA;
    line-height: 1.6;
    max-width: 560px;
}

.btn-seo-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0.03) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 229, 255, 0.5);
    border-left: 1px solid rgba(0, 229, 255, 0.2);
    border-right: 1px solid rgba(0, 229, 255, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.08), inset 0 1px 0 rgba(0,229,255,0.2);
    transition: all 0.35s ease;
}

.btn-seo-wpp:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 32px rgba(0,229,255,0.15), inset 0 1px 0 rgba(0,229,255,0.3);
    transform: translateY(-3px);
}

.btn-seo-wpp svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; transition: transform 0.3s ease; }
.btn-seo-wpp:hover svg { transform: scale(1.15); }

@media (max-width: 1024px) {
    .seo-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-highlight-block { flex-direction: column; gap: 24px; text-align: center; padding: 40px 32px; }
}

@media (max-width: 768px) {
    .seo-hero { padding: 100px 20px; min-height: 80vh; }
    .seo-headline { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0; }
    .seo-desc { font-size: 17px; margin-bottom: 48px; }
    .seo-cards-section { padding: 80px 20px 100px 20px; }
    .seo-grid { grid-template-columns: 1fr; }
    .seo-highlight-icon { width: 80px; height: 80px; }
    .seo-highlight-icon svg { width: 36px; height: 36px; }
    .seo-cta-block { padding: 40px 24px; }
    .btn-seo, .btn-seo-wpp { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════
   GOOGLE ADS PAGE STYLING
   ════════════════════════════════════════════════ */
.ads-hero {
    width: 100%;
    min-height: 90vh;
    padding: 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.ads-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 70%;
    background: linear-gradient(90deg, rgba(112,0,255,0.12) 0%, rgba(0,229,255,0.12) 50%, rgba(112,0,255,0.12) 100%);
    mask-image: linear-gradient(to top, black 5%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.ads-glow-tr {
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(112, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ads-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ads-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.ads-headline {
    font-family: var(--font-title);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
}

.ads-headline span { color: var(--accent-cyan); }

.ads-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    max-width: 780px;
    line-height: 1.7;
    margin: 0 0 64px 0;
    opacity: 0;
    transform: translateY(20px);
}

.ads-desc strong { color: #FFFFFF; font-weight: 600; }

.btn-ads {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-ads:hover {
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0,229,255,0.10) 0%, rgba(0,229,255,0.03) 100%);
    border-top-color: rgba(0, 229, 255, 0.7);
    border-left-color: rgba(0, 229, 255, 0.7);
    border-right-color: rgba(0, 229, 255, 0.7);
    border-bottom-color: rgba(0, 229, 255, 0.7);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(0,229,255,0.15);
    transform: translateY(-3px);
}

.btn-ads svg { width: 20px; height: 20px; stroke: currentColor; fill: none; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn-ads:hover svg { transform: translateX(6px) scale(1.1); }

.ads-cards-section {
    width: 100%;
    padding: 80px 4vw 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ads-cards-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.ads-highlight-block {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(112, 0, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 100%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 64px 72px;
    display: flex;
    align-items: center;
    gap: 72px;
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(40px);
}

.ads-highlight-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(112,0,255,0.15), rgba(0,229,255,0.10));
    border: 1px solid rgba(0,229,255,0.2);
    box-shadow: 0 0 40px rgba(112,0,255,0.12), 0 0 80px rgba(0,229,255,0.06), inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ads-highlight-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(0,229,255,0.4));
}

.ads-highlight-content { flex: 1; }

.ads-highlight-title {
    font-family: var(--font-title);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ads-highlight-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.7;
}

.ads-highlight-text strong { color: #FFFFFF; font-weight: 600; }

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

.ads-card {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(40px);
}

.ads-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(0,229,255,0.06), inset 0 1px 0 rgba(0,229,255,0.08);
}

.ads-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ads-card-icon svg {
    width: 24px; height: 24px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ads-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.ads-card p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.7;
}

.ads-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 64px 40px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(112, 0, 255, 0.07) 0%, transparent 60%),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(30px);
}

.ads-cta-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.ads-cta-title span { color: var(--accent-cyan); }

.ads-cta-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: #A1A1AA;
    line-height: 1.6;
    max-width: 560px;
}

.btn-ads-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0.03) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 229, 255, 0.5);
    border-left: 1px solid rgba(0, 229, 255, 0.2);
    border-right: 1px solid rgba(0, 229, 255, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.08), inset 0 1px 0 rgba(0,229,255,0.2);
    transition: all 0.35s ease;
}

.btn-ads-wpp:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 32px rgba(0,229,255,0.15), inset 0 1px 0 rgba(0,229,255,0.3);
    transform: translateY(-3px);
}

.btn-ads-wpp svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; transition: transform 0.3s ease; }
.btn-ads-wpp:hover svg { transform: scale(1.15); }

@media (max-width: 1024px) {
    .ads-grid { grid-template-columns: repeat(2, 1fr); }
    .ads-highlight-block { flex-direction: column; gap: 24px; text-align: center; padding: 40px 32px; }
}

@media (max-width: 768px) {
    .ads-hero { padding: 100px 20px; min-height: 80vh; }
    .ads-headline { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0; }
    .ads-desc { font-size: 17px; margin-bottom: 48px; }
    .ads-cards-section { padding: 80px 20px 100px 20px; }
    .ads-grid { grid-template-columns: 1fr; }
    .ads-highlight-block { padding: 40px 24px; }
    .btn-ads, .btn-ads-wpp { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════
   SITES CREATION PAGE STYLING
   ════════════════════════════════════════════════ */
.sites-hero {
    width: 100%;
    min-height: 90vh;
    padding: 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.sites-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 70%;
    background: linear-gradient(90deg, rgba(112,0,255,0.12) 0%, rgba(0,229,255,0.12) 50%, rgba(112,0,255,0.12) 100%);
    mask-image: linear-gradient(to top, black 5%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 5%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.sites-glow-tl {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sites-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sites-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
}

.sites-headline {
    font-family: var(--font-title);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 24px 0;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
}

.sites-headline span { color: var(--accent-cyan); }

.sites-desc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    max-width: 780px;
    line-height: 1.7;
    margin: 0 0 64px 0;
    opacity: 0;
    transform: translateY(20px);
}

.btn-sites {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 40px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.btn-sites:hover {
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0,229,255,0.10) 0%, rgba(0,229,255,0.03) 100%);
    border-top-color: rgba(0, 229, 255, 0.7);
    border-left-color: rgba(0, 229, 255, 0.7);
    border-right-color: rgba(0, 229, 255, 0.7);
    border-bottom-color: rgba(0, 229, 255, 0.7);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(0,229,255,0.15);
    transform: translateY(-3px);
}

.btn-sites svg { width: 20px; height: 20px; stroke: currentColor; fill: none; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn-sites:hover svg { transform: translateX(6px) scale(1.1); }

/* ── Process Section ── */
.ideal-usvc-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.usvc-glow-tl {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.usvc-glow-br {
    position: absolute;
    bottom: 0; right: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(112, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.usvc-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usvc-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 64px;
}

.ds-tagline-usvc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
}

.ds-headline-usvc {
    font-family: var(--font-title);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.ds-headline-usvc span {
    display: block;
    color: var(--accent-cyan);
}

.ds-desc-usvc {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.6;
    max-width: 850px;
    margin: 0;
}

.usvc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.usvc-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px 24px 250px 250px;
    padding: 64px 48px 80px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    box-sizing: border-box;
}

.usvc-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-10px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(0, 229, 255, 0.06),
        inset 0 1px 0 rgba(0, 229, 255, 0.08);
}

.usvc-icon-svg {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.2));
    transition: all 0.4s ease;
}

.usvc-card:hover .usvc-icon-svg {
    filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.6));
    transform: scale(1.12) rotate(5deg);
}

.usvc-card h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.usvc-card p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ── Features Section ── */
.ideal-cases-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 140px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cases-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cases-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 64px;
}

.ds-tagline-cases {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 32px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: inline-block;
}

.ds-headline-cases {
    font-family: var(--font-title);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.ds-headline-cases span {
    display: block;
    color: var(--accent-cyan);
}

.ds-desc-cases {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #A1A1AA;
    line-height: 1.6;
    max-width: 850px;
    margin: 0;
}

.cases-split-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
}

.cases-stack {
    flex: 0 0 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.stack-card {
    width: 100%;
    padding: 32px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-50px);
    transform-origin: left center;
}

.card-color-1 { background: linear-gradient(135deg, #4ADE80, #22C55E); color: #000000; }
.card-color-2 { background: linear-gradient(135deg, #FACC15, #EAB308); color: #000000; }
.card-color-3 { background: linear-gradient(135deg, #FB923C, #F97316); color: #000000; }
.card-color-4 { background: linear-gradient(135deg, #C084FC, #A855F7); color: #FFFFFF; }

.stack-card:nth-child(1) { z-index: 4; transform: rotate(-2deg); }
.stack-card:nth-child(2) { z-index: 3; transform: rotate(1deg); margin-top: -24px; margin-left: 10px; }
.stack-card:nth-child(3) { z-index: 2; transform: rotate(-1.5deg); margin-top: -24px; margin-left: 4px; }
.stack-card:nth-child(4) { z-index: 1; transform: rotate(1.2deg); margin-top: -24px; margin-left: 12px; }

.stack-card.is-active {
    transform: translateX(40px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow:
        -20px 20px 50px rgba(0, 0, 0, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.3);
}

.card-number {
    font-family: var(--font-title);
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: inherit;
}

.card-content h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: inherit;
    letter-spacing: -0.3px;
}

.card-content p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: inherit;
    opacity: 0.9;
}

.cases-display-window {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95);
}

.window-topbar {
    padding: 24px 32px 0 32px;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.window-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.85);
    z-index: 1;
    pointer-events: none;
    border-radius: 24px;
}

.cases-manifesto {
    padding: 24px 40px 32px 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.manifesto-block {
    position: absolute;
    width: 85%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manifesto-block.is-visible {
    position: relative;
    visibility: visible;
    opacity: 1;
}

.manifesto-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.manifesto-title {
    font-family: var(--font-title);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0 0 18px 0;
}

.manifesto-text {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.3vw, 17px) !important;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.7 !important;
    margin: 0;
}

.m-highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* ── Responsividade Sites ── */
@media (max-width: 1150px) {
    .cases-split-layout { flex-direction: column; gap: 60px; }
    .cases-stack { flex: 0 0 auto; width: 100%; max-width: 600px; }
    .cases-display-window { width: 100%; aspect-ratio: 16 / 10; min-height: 350px; }
}

@media (max-width: 1024px) {
    .usvc-grid { grid-template-columns: repeat(2, 1fr); }
    .usvc-card { padding: 48px 32px 64px 32px; }
}

@media (max-width: 768px) {
    .sites-hero { padding: 100px 20px; min-height: 80vh; }
    .sites-headline { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0; }
    .sites-desc { font-size: 17px; }
    .ideal-usvc-section { padding: 100px 20px; }
    .ds-headline-usvc { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0px; }
    .ds-desc-usvc { font-size: 18px; }
    .usvc-grid { grid-template-columns: 1fr; gap: 40px; }
    .usvc-card { border-radius: 20px 20px 180px 180px; padding: 48px 32px 64px 32px; }
    .usvc-card h3 { font-size: 24px; }
    .usvc-icon-svg { width: 56px; height: 56px; }
    
    .ideal-cases-section { padding: 100px 20px; }
    .ds-headline-cases { font-size: clamp(32px, 8vw, 44px); letter-spacing: 0px; }
    .ds-desc-cases { font-size: 18px; }
    .cases-stack { max-width: 420px; padding-right: 20px; }
    .stack-card { padding: 20px 24px; }
    .card-number { font-size: 48px; }
    .stack-card.is-active { transform: translateX(12px) rotate(0deg) scale(1.02) !important; }
    .cases-display-window { aspect-ratio: auto; min-height: 240px; }
    .manifesto-block { width: 95%; }
    .cases-manifesto { padding: 20px 16px 24px 16px; text-align: left; }
    .manifesto-text { font-size: 15px !important; }
    .manifesto-title { font-size: 18px; }
    .btn-sites { width: 100%; justify-content: center; }
}

/* Ajustes responsivos finos para os cards do portfólio no celular */
@media (max-width: 576px) {
  .portfolio-card-overlay {
    padding: 16px;
  }
  .portfolio-fallback-title {
    font-size: 18px !important;
  }
  .portfolio-fallback-cat {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
  .port-card-info {
    padding: 12px 16px !important;
  }
  .port-card-name {
    font-size: 15px !important;
  }
  .port-card-tag {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }
}


