/*
Theme Name: VEYMARO
Theme URI: https://veymaro.de
Author: VEYMARO
Author URI: https://veymaro.de
Description: Premium dark SaaS Webdesign Theme – 1:1 Nachbau des Next.js Designs.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: veymaro
*/

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

:root {
  --bg: #08080a;
  --fg: #fafafa;
  --card-bg: #0e0e11;
  --border: rgba(255,255,255,0.1);
  --border-subtle: rgba(255,255,255,0.05);
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dimmed: #64748b;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-400: #60a5fa;
  --indigo-400: #818cf8;
  --emerald-400: #34d399;
  --red-500: #ef4444;
  --yellow-500: #eab308;
  --green-500: #22c55e;
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; padding: 0; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }
@keyframes float-reverse { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }
@keyframes float-rotate { 0%, 100% { transform: translateY(0) rotate(0deg) scale(1); } 50% { transform: translateY(-30px) rotate(5deg) scale(1.02); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); } 50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

.animate-ping { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-fadeUp { animation: fadeUp 0.8s ease-out forwards; }
.animate-fadeUp-delay-1 { animation: fadeUp 0.8s ease-out 0.15s forwards; opacity: 0; }
.animate-fadeUp-delay-2 { animation: fadeUp 0.8s ease-out 0.3s forwards; opacity: 0; }
.animate-fadeUp-delay-3 { animation: fadeUp 0.8s ease-out 0.45s forwards; opacity: 0; }
.animate-fadeIn { animation: fadeIn 0.5s ease-out forwards; }
.animate-scaleIn { animation: scaleIn 0.7s ease-out forwards; }
.animate-slideRight { animation: slideRight 0.8s ease-out 0.2s forwards; opacity: 0; }

/* ===== BACKGROUND EFFECTS ===== */
.vm-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background-color: var(--bg); pointer-events: none; }
.vm-bg__blobs { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.vm-bg__blob { position: absolute; border-radius: 50%; mix-blend-mode: screen; }
.vm-bg__blob--1 { top: -20%; left: -10%; width: 60vw; height: 60vw; background: rgba(255,255,255,0.1); filter: blur(130px); animation: float 15s ease-in-out infinite; }
.vm-bg__blob--2 { top: -10%; right: -10%; width: 50vw; height: 50vw; background: rgba(148,163,184,0.1); filter: blur(140px); animation: float-reverse 20s ease-in-out infinite reverse; }
.vm-bg__blob--3 { bottom: -20%; left: 10%; width: 55vw; height: 55vw; background: rgba(113,113,122,0.1); filter: blur(120px); animation: float-rotate 25s ease-in-out infinite; }
.vm-bg__blob--4 { top: 30%; right: 10%; width: 45vw; height: 45vw; background: rgba(199,210,254,0.05); filter: blur(150px); animation: float 15s ease-in-out infinite; animation-delay: -5s; }
.vm-bg__blob--5 { top: 40%; left: 30%; width: 35vw; height: 35vw; background: rgba(255,255,255,0.05); filter: blur(130px); animation: float-reverse 20s ease-in-out infinite reverse; animation-delay: -2s; }
.vm-bg__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.012) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 4rem 4rem;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 80%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 80%, transparent 100%);
}
.vm-bg__noise {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vm-bg__blur { position: absolute; inset: 0; backdrop-filter: blur(100px); -webkit-backdrop-filter: blur(100px); background: rgba(8,8,10,0.5); }
.vm-bg__gradient { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, transparent, rgba(8,8,10,0.3) 50%, rgba(8,8,10,0.95)); }

/* ===== GLASSMORPHISM ===== */
.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px -4px rgba(0,0,0,0.4), inset 0 1px 0 0 rgba(255,255,255,0.08);
}
.glass-button {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.15), 0 2px 8px 0 rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-button:hover { background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }
.glass-input {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.15);
  color: white; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease; outline: none; width: 100%;
}
.glass-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(0,0,0,0.5); box-shadow: 0 0 0 4px rgba(255,255,255,0.05); }
.glass-input::placeholder { color: rgba(148,163,184,0.6); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none; text-decoration: none; line-height: 1; }
.btn-primary { background: var(--blue-600); color: white; border-radius: 9999px; padding: 0.875rem 2rem; font-size: 1rem; box-shadow: 0 0 20px rgba(37,99,235,0.4); }
.btn-primary:hover { background: var(--blue-500); box-shadow: 0 0 30px rgba(37,99,235,0.6); transform: translateY(-2px); }
.btn-white { background: white; color: #0f172a; border-radius: 9999px; padding: 1rem 2rem; font-size: 1.125rem; font-weight: 600; box-shadow: 0 0 25px rgba(255,255,255,0.2); }
.btn-white:hover { background: #e2e8f0; transform: translateY(-2px); }
.btn-outline { border-radius: 9999px; padding: 1rem 2rem; font-size: 1.125rem; color: white; font-weight: 600; }
.btn-ghost { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 1rem; padding: 0.875rem 2rem; font-weight: 600; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-blue-solid { background: var(--blue-600); color: white; border-radius: 1rem; padding: 0.875rem 2rem; font-weight: 600; box-shadow: 0 0 20px rgba(37,99,235,0.4); }
.btn-blue-solid:hover { background: var(--blue-500); }
.btn-cta-white { background: white; color: var(--blue-600); border-radius: 9999px; padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 600; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.btn-cta-white:hover { background: #f1f5f9; transform: translateY(-2px); }
.btn-submit { width: 100%; height: 3.5rem; background: white; color: #0f172a; font-weight: 600; border-radius: 0.75rem; font-size: 1.125rem; box-shadow: 0 0 20px rgba(255,255,255,0.1); border: none; transition: all 0.3s ease; }
.btn-submit:hover { background: #e2e8f0; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ===== HEADER / NAVBAR ===== */
.vm-header { position: fixed; top: 0; z-index: 50; width: 100%; transition: all 0.5s ease; padding: 0.5rem 0; background: transparent; border-bottom: 1px solid transparent; }
.vm-header.scrolled { background: rgba(8,8,10,0.8); backdrop-filter: blur(48px); -webkit-backdrop-filter: blur(48px); border-bottom-color: rgba(255,255,255,0.05); box-shadow: 0 1px 3px rgba(0,0,0,0.3); padding: 0; }
.vm-header__inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.vm-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.5rem; color: white; }
.vm-logo__icon { background: var(--blue-600); padding: 0.375rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(37,99,235,0.5); transition: transform 0.3s ease; }
.vm-logo:hover .vm-logo__icon { transform: scale(1.05); }
.vm-logo__icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.vm-nav { display: none; gap: 2rem; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
.vm-nav a { transition: color 0.2s ease; }
.vm-nav a:hover { color: white; }
@media (min-width: 1024px) { .vm-nav { display: flex; } }
.vm-header__actions { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .vm-header__actions { display: flex; } }
.vm-header__actions a { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.vm-header__actions a:hover { color: white; }
.vm-mobile-toggle { display: flex; align-items: center; padding: 0.5rem; color: var(--text-secondary); background: none; border: none; border-radius: 9999px; transition: all 0.2s; }
.vm-mobile-toggle:hover { color: white; background: rgba(255,255,255,0.05); }
@media (min-width: 1024px) { .vm-mobile-toggle { display: none; } }

/* Mobile Menu */
.vm-mobile-menu { display: none; position: fixed; inset: 0; z-index: 40; background: rgba(2,6,23,0.95); backdrop-filter: blur(48px); padding: 6rem 1rem 2rem; flex-direction: column; }
.vm-mobile-menu.open { display: flex; }
.vm-mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.vm-mobile-menu nav a { font-size: 1.25rem; font-weight: 500; color: #e2e8f0; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.vm-mobile-menu__buttons { display: flex; flex-direction: column; gap: 1rem; }
.vm-mobile-menu__buttons .btn { width: 100%; padding: 1.25rem; font-size: 1.125rem; border-radius: 0.75rem; text-align: center; }

/* ===== HERO ===== */
.vm-hero { position: relative; padding: 8rem 0 5rem; z-index: 10; }
@media (min-width: 768px) { .vm-hero { padding: 12rem 0 8rem; } }
.vm-hero__inner { display: flex; flex-direction: column; align-items: center; gap: 4rem; }
@media (min-width: 1024px) { .vm-hero__inner { flex-direction: row; gap: 2rem; } }
.vm-hero__text { flex: 1; text-align: center; max-width: 48rem; margin: 0 auto; }
@media (min-width: 1024px) { .vm-hero__text { text-align: left; margin: 0; } }
.vm-hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary); font-size: 0.875rem; font-weight: 600; margin-bottom: 2rem; box-shadow: 0 0 15px rgba(255,255,255,0.05); }
.vm-hero__badge-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--blue-500); position: relative; flex-shrink: 0; }
.vm-hero__badge-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--blue-400); opacity: 0.75; animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.vm-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.vm-hero h1 .gradient-text { background: linear-gradient(to right, var(--blue-400), var(--indigo-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vm-hero__subtitle { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: var(--text-secondary); margin-bottom: 3rem; line-height: 1.7; font-weight: 300; }
.vm-hero__buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .vm-hero__buttons { flex-direction: row; } }
@media (min-width: 1024px) { .vm-hero__buttons { justify-content: flex-start; } }
.vm-hero__card { flex: 1; width: 100%; max-width: 28rem; position: relative; z-index: 20; }
@media (min-width: 1024px) { .vm-hero__card { max-width: 32rem; } }

/* ===== CODE ACCESS CARD ===== */
.vm-code-card { position: relative; z-index: 20; }
.vm-code-card__glow { position: absolute; inset: -0.5rem; background: linear-gradient(to right, rgba(37,99,235,0.1), rgba(99,102,241,0.1), rgba(37,99,235,0.1)); border-radius: 2.5rem; filter: blur(24px); opacity: 0.5; transition: opacity 1s ease; pointer-events: none; }
.vm-code-card:hover .vm-code-card__glow { opacity: 1; }
.vm-code-card__body { position: relative; max-width: 28rem; margin: 0 auto; border-radius: 2rem; overflow: hidden; padding: 2rem; }
.vm-code-card__body::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(255,255,255,0.05), rgba(255,255,255,0.01), transparent); pointer-events: none; }
.vm-code-card__header { text-align: center; padding-bottom: 1.5rem; position: relative; z-index: 10; }
.vm-code-card__icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.5s ease; }
.vm-code-card:hover .vm-code-card__icon { transform: scale(1.05); }
.vm-code-card__icon::before { content: ''; position: absolute; inset: 0; background: rgba(96,165,250,0.2); filter: blur(12px); border-radius: 50%; pointer-events: none; }
.vm-code-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--blue-400); position: relative; z-index: 10; }
.vm-code-card__title { font-size: 1.5rem; font-weight: 700; color: white; letter-spacing: -0.025em; }
.vm-code-card__desc { color: var(--text-muted); margin-top: 0.5rem; font-size: 1rem; font-weight: 300; }
.vm-code-card__form { position: relative; z-index: 10; display: flex; flex-direction: column; gap: 1.25rem; }
.vm-code-card__input { text-align: center; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.1em; height: 3.5rem; border-radius: 0.75rem; padding: 0 1rem; }
.vm-code-card__error { color: #f87171; font-size: 0.875rem; text-align: center; font-weight: 500; background: rgba(127,29,29,0.4); border: 1px solid rgba(127,29,29,0.5); padding: 0.75rem; border-radius: 0.75rem; }

/* ===== SECTIONS ===== */
.vm-section { padding: 6rem 0; position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.05); }
.vm-section--hero { border-top: none; }
.vm-section__header { text-align: center; margin-bottom: 4rem; }
.vm-section__title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: white; letter-spacing: -0.025em; margin-bottom: 1rem; }
.vm-section__subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 42rem; margin: 0 auto; font-weight: 300; }

/* ===== SERVICES GRID ===== */
.vm-services { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vm-services { grid-template-columns: repeat(3, 1fr); } }
.vm-service-card { padding: 2.5rem; border-radius: 2.5rem; transition: all 0.5s ease; }
.vm-service-card:hover { transform: translateY(-8px); }
.vm-service-card__icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--text-secondary); transition: all 0.3s ease; }
.vm-service-card:hover .vm-service-card__icon { transform: scale(1.1); }
.vm-service-card:hover .vm-service-card__icon--blue { background: rgba(59,130,246,0.2); color: var(--blue-400); }
.vm-service-card:hover .vm-service-card__icon--indigo { background: rgba(99,102,241,0.2); color: var(--indigo-400); }
.vm-service-card:hover .vm-service-card__icon--emerald { background: rgba(52,211,153,0.2); color: var(--emerald-400); }
.vm-service-card__icon svg { width: 1.75rem; height: 1.75rem; }
.vm-service-card h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.vm-service-card p { color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ===== PORTFOLIO / MOCKUP ===== */
.vm-portfolio__inner { display: flex; flex-direction: column; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .vm-portfolio__inner { flex-direction: row; } }
.vm-portfolio__text { flex: 1; }
.vm-portfolio__text h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.vm-portfolio__text > p { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 2rem; line-height: 1.7; font-weight: 300; }
.vm-portfolio__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.vm-portfolio__list li { display: flex; align-items: center; color: var(--text-secondary); font-weight: 300; }
.vm-portfolio__list li svg { width: 1.25rem; height: 1.25rem; color: var(--blue-500); margin-right: 0.75rem; flex-shrink: 0; }
.vm-portfolio__mockup { flex: 1; width: 100%; position: relative; }
.vm-mockup { position: relative; border-radius: 1rem; background: rgba(10,10,12,0.8); backdrop-filter: blur(48px); -webkit-backdrop-filter: blur(48px); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); overflow: hidden; transform: rotate(1deg); transition: transform 0.5s ease; }
.vm-mockup:hover { transform: rotate(0deg); }
.vm-mockup__bar { height: 2rem; background: rgba(18,18,22,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem; }
.vm-mockup__dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.vm-mockup__dot--red { background: var(--red-500); }
.vm-mockup__dot--yellow { background: var(--yellow-500); }
.vm-mockup__dot--green { background: var(--green-500); }
.vm-mockup__url { margin: 0 auto; background: #1a1a20; border-radius: 0.375rem; padding: 0 0.75rem; font-size: 0.625rem; color: var(--text-muted); display: flex; align-items: center; font-family: monospace; border: 1px solid rgba(255,255,255,0.05); }
.vm-mockup__url svg { width: 0.625rem; height: 0.625rem; margin-right: 0.375rem; color: var(--blue-400); }
.vm-mockup__content { aspect-ratio: 4/3; background: linear-gradient(to bottom right, #0f172a, var(--bg)); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; }
.vm-mockup__line { border-radius: 0.25rem; border: 1px solid rgba(255,255,255,0.05); }
.vm-mockup__line--1 { width: 75%; height: 2rem; background: rgba(255,255,255,0.05); }
.vm-mockup__line--2 { width: 100%; height: 8rem; background: rgba(255,255,255,0.05); display: flex; padding: 1rem; gap: 1rem; }
.vm-mockup__thumb { width: 6rem; height: 6rem; background: rgba(255,255,255,0.05); border-radius: 0.25rem; border: 1px solid rgba(255,255,255,0.05); }
.vm-mockup__lines { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.vm-mockup__lines span { display: block; height: 1rem; border-radius: 0.25rem; }
.vm-mockup__lines span:nth-child(1) { width: 50%; background: rgba(255,255,255,0.1); }
.vm-mockup__lines span:nth-child(2) { width: 100%; background: rgba(255,255,255,0.05); }
.vm-mockup__lines span:nth-child(3) { width: 80%; background: rgba(255,255,255,0.05); }
.vm-mockup__bubble { position: absolute; top: 50%; right: 25%; background: var(--blue-600); color: white; font-size: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 0.5rem; z-index: 20; animation: bounce 1s infinite; }
.vm-mockup__bubble svg { width: 0.75rem; height: 0.75rem; }

/* ===== PRICING ===== */
.vm-pricing { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .vm-pricing { grid-template-columns: repeat(2, 1fr); } }
.vm-price-card { padding: 2.5rem; border-radius: 3rem; position: relative; transition: all 0.5s ease; display: flex; flex-direction: column; }
.vm-price-card:hover { transform: translateY(-8px); box-shadow: 0 0 40px rgba(37,99,235,0.12); }
.vm-price-card h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.vm-price-card__price { font-size: 2.25rem; font-weight: 800; margin-bottom: 1.5rem; }
.vm-price-card__price--white { color: white; }
.vm-price-card .btn { margin-top: auto; }

/* ===== TESTIMONIALS ===== */
.vm-testimonials { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vm-testimonials { grid-template-columns: repeat(3, 1fr); } }
.vm-testimonial { padding: 2rem; border-radius: 1.5rem; }
.vm-testimonial__stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.vm-testimonial__stars svg { width: 1.25rem; height: 1.25rem; fill: var(--blue-500); color: var(--blue-500); }
.vm-testimonial__text { color: var(--text-secondary); margin-bottom: 2rem; font-style: italic; font-weight: 300; line-height: 1.7; }
.vm-testimonial__author { display: flex; align-items: center; gap: 1rem; }
.vm-testimonial__avatar { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; }
.vm-testimonial__name { font-weight: 700; color: white; }
.vm-testimonial__role { font-size: 0.875rem; color: var(--text-dimmed); font-weight: 300; }

/* ===== CTA ===== */
.vm-cta { background: linear-gradient(to bottom right, var(--blue-600), #4338ca); border-radius: 3rem; padding: 3rem; text-align: center; position: relative; overflow: hidden; box-shadow: 0 0 50px rgba(37,99,235,0.2); }
@media (min-width: 768px) { .vm-cta { padding: 5rem; } }
.vm-cta__glow-1 { position: absolute; top: 0; right: 0; width: 40rem; height: 40rem; background: rgba(255,255,255,0.1); border-radius: 50%; filter: blur(100px); pointer-events: none; transform: translate(50%, -50%); }
.vm-cta__glow-2 { position: absolute; bottom: 0; left: 0; width: 30rem; height: 30rem; background: rgba(129,140,248,0.2); border-radius: 50%; filter: blur(80px); pointer-events: none; transform: translate(-50%, 50%); }
.vm-cta__content { position: relative; z-index: 10; }
.vm-cta h2 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; color: white; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.vm-cta p { font-size: 1.25rem; color: #dbeafe; margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.7; }

/* ===== FOOTER ===== */
.vm-footer { background: rgba(2,6,23,0.8); backdrop-filter: blur(48px); -webkit-backdrop-filter: blur(48px); border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); padding: 5rem 0; position: relative; overflow: hidden; }
.vm-footer__glow-1 { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 100%; max-width: 56rem; aspect-ratio: 1; background: rgba(30,58,138,0.2); border-radius: 50%; filter: blur(120px); mix-blend-mode: screen; opacity: 0.3; pointer-events: none; }
.vm-footer__glow-2 { position: absolute; bottom: -30%; right: -10%; width: 50%; aspect-ratio: 1; background: rgba(49,46,129,0.2); border-radius: 50%; filter: blur(120px); mix-blend-mode: screen; opacity: 0.2; pointer-events: none; }
.vm-footer__grid { display: grid; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 10; }
@media (min-width: 768px) { .vm-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; } }
.vm-footer__brand p { max-width: 28rem; font-size: 1.125rem; line-height: 1.7; font-weight: 300; color: var(--text-muted); margin-top: 1.5rem; }
.vm-footer__brand .vm-footer__email { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.875rem; transition: color 0.2s; }
.vm-footer__brand .vm-footer__email:hover { color: white; }
.vm-footer__brand .vm-footer__email svg { width: 1rem; height: 1rem; }
.vm-footer h3 { font-weight: 600; color: white; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.vm-footer nav { display: flex; flex-direction: column; gap: 1rem; }
.vm-footer nav a { transition: color 0.2s; }
.vm-footer nav a:hover { color: white; }
.vm-footer nav button { background: none; border: none; color: var(--text-muted); font-size: inherit; padding: 0; text-align: left; transition: color 0.2s; cursor: pointer; }
.vm-footer nav button:hover { color: white; }
.vm-footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-top: 2rem; font-size: 0.875rem; color: var(--text-dimmed); position: relative; z-index: 10; }
@media (min-width: 768px) { .vm-footer__bottom { flex-direction: row; justify-content: space-between; } }
.vm-footer__bottom-links { display: flex; gap: 1.5rem; }
.vm-footer__bottom-links a { transition: color 0.2s; }
.vm-footer__bottom-links a:hover { color: white; }

/* ===== COOKIE MODAL ===== */
.vm-cookie-overlay { display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center; padding: 1rem; background: rgba(2,6,23,0.8); backdrop-filter: blur(4px); }
.vm-cookie-overlay.open { display: flex; }
.vm-cookie-modal { background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.5); width: 100%; max-width: 32rem; overflow: hidden; display: flex; flex-direction: column; max-height: 90vh; }
.vm-cookie-modal__header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.vm-cookie-modal__header h2 { font-size: 1.25rem; font-weight: 700; color: white; }
.vm-cookie-modal__close { background: none; border: none; color: var(--text-muted); transition: color 0.2s; padding: 0; }
.vm-cookie-modal__close:hover { color: white; }
.vm-cookie-modal__close svg { width: 1.25rem; height: 1.25rem; }
.vm-cookie-modal__body { padding: 1.5rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.vm-cookie-modal__body > p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }
.vm-cookie-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1rem; border-radius: 0.75rem; display: flex; align-items: flex-start; gap: 1rem; transition: background 0.2s; cursor: pointer; }
.vm-cookie-item:hover { background: rgba(255,255,255,0.1); }
.vm-cookie-item--locked { cursor: default; }
.vm-cookie-item__check { width: 1.25rem; height: 1.25rem; border-radius: 0.25rem; border: 1px solid #475569; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; transition: all 0.2s; }
.vm-cookie-item__check.checked { background: var(--blue-600); border-color: var(--blue-600); }
.vm-cookie-item__check--locked { background: rgba(59,130,246,0.2); border-color: rgba(59,130,246,0.5); }
.vm-cookie-item__check svg { width: 0.875rem; height: 0.875rem; color: white; }
.vm-cookie-item h3 { font-weight: 600; color: white; font-size: 0.875rem; margin-bottom: 0.25rem; }
.vm-cookie-item p { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; }
.vm-cookie-modal__footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(15,23,42,0.5); display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .vm-cookie-modal__footer { flex-direction: row; } }
.vm-cookie-modal__footer .btn { flex: 1; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; text-align: center; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== WP SPECIFIC ===== */
.wp-block-image img { border-radius: 0.5rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content h2 { font-size: 1.75rem; font-weight: 700; color: white; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.375rem; font-weight: 600; color: white; margin: 1.5rem 0 0.75rem; }
.entry-content a { color: var(--blue-400); text-decoration: underline; }
.entry-content a:hover { color: white; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; list-style: disc; color: var(--text-secondary); }
