.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-2780e49:#8F3985;--e-global-color-ba31fa5:#A675A1;--e-global-color-c21ad19:#25283D;--e-global-color-245d4bb:#CEA2AC;--e-global-color-e33e2f0:#EFD9CE;--e-global-color-7438b32:#0E0F1A;--e-global-typography-primary-font-family:"Syne";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ============================================
   NOVA WEB — DESIGN SYSTEM
   ============================================ */
:root {
  /* Brand palette - dopasowana do logo */
  --space-indigo: #25283d;
  --grape-soda: #8f3985;
  --amethyst-smoke: #a675a1;
  --rosy-taupe: #cea2ac;
  --powder-petal: #efd9ce;

  /* Functional roles */
  --bg-dark: #0e0f1a;
  --bg-dark-2: #15172b;
  --bg-light: var(--powder-petal);
  --bg-light-2: #f9f0ea;
  --text-light: #f5eef0;
  --text-dark: var(--space-indigo);
  --text-muted-dark: #6b6577;
  --text-muted-light: #cdc4cc;

  --accent-1: var(--grape-soda);
  --accent-2: var(--amethyst-smoke);
  --accent-3: var(--rosy-taupe);

  --gradient-main: linear-gradient(135deg, var(--grape-soda) 0%, var(--amethyst-smoke) 50%, var(--rosy-taupe) 100%);
  --gradient-text: linear-gradient(120deg, var(--rosy-taupe), var(--amethyst-smoke), var(--grape-soda), var(--amethyst-smoke), var(--powder-petal));

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing / radius */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1240px;

  /* Transitions */
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===== Custom cursor: hide native on desktop ===== */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--powder-petal);
  transition: background 0.2s var(--ease-smooth), width 0.25s var(--ease-cinema), height 0.25s var(--ease-cinema);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--amethyst-smoke);
  transition: width 0.3s var(--ease-cinema), height 0.3s var(--ease-cinema), border-color 0.3s var(--ease-cinema), background 0.3s var(--ease-cinema), opacity 0.3s;
}
.cursor-dot.cursor-hover {
  width: 14px; height: 14px;
  background: var(--grape-soda);
}
.cursor-ring.cursor-hover {
  width: 64px; height: 64px;
  border-color: var(--grape-soda);
  background: rgba(143, 57, 133, 0.15);
}

#sparkCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring, #sparkCanvas { display: none; }
  * { cursor: auto !important; }
}

/* ===== Reveal animations ===== */
.reveal-fade, .reveal-up {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-fade {
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-cinema), transform 0.9s var(--ease-cinema);
}
.reveal-up {
  transform: translateY(60px) scale(0.98);
  transition: opacity 1.1s var(--ease-cinema), transform 1.1s var(--ease-cinema);
}
.reveal-fade.in-view, .reveal-up.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger children */
.hero-content .reveal-fade:nth-child(1) { transition-delay: 0.05s; }
.hero-content .reveal-fade:nth-child(2) { transition-delay: 0.15s; }
.hero-content .reveal-fade:nth-child(3) { transition-delay: 0.3s; }
.hero-content .reveal-fade:nth-child(4) { transition-delay: 0.45s; }
.hero-content .reveal-fade:nth-child(5) { transition-delay: 0.6s; }

/* ===== Mask text effect ===== */
.mask-text {
  display: block;
  overflow: hidden;
}
.gradient-text-video {
  background: var(--gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.accent-grad {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(14, 15, 26, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(239, 217, 206, 0.08);
  transition: padding 0.4s var(--ease-cinema), background 0.4s var(--ease-cinema), backdrop-filter 0.4s;
}
.site-header.scrolled {
  padding: 12px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(143, 57, 133, 0.5));
  transition: transform 0.5s var(--ease-cinema);
}
.logo-link:hover .logo-img {
  transform: rotate(180deg) scale(1.1);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-light);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 50px;
  position: relative;
  transition: color 0.3s, background 0.3s;
}
.nav-link:not(.nav-cta):hover {
  color: var(--powder-petal);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  background: var(--gradient-main);
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  transition: transform 0.35s var(--ease-cinema), box-shadow 0.35s var(--ease-cinema);
}
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(143, 57, 133, 0.5);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--powder-petal);
  margin: 0 auto;
  transition: transform 0.3s var(--ease-cinema), opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: var(--grape-soda);
  top: -200px; left: -150px;
  animation: floatGlow 18s ease-in-out infinite;
}
.glow-2 {
  width: 500px; height: 500px;
  background: var(--amethyst-smoke);
  bottom: -150px; right: -100px;
  animation: floatGlow 22s ease-in-out infinite reverse;
}
.glow-3 {
  width: 400px; height: 400px;
  background: var(--rosy-taupe);
  top: 40%; left: 50%;
  opacity: 0.25;
  animation: floatGlow 26s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amethyst-smoke);
  margin-bottom: 18px;
}
.eyebrow.center { text-align: center; }
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-muted-light);
  max-width: 640px;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  max-width: 160px;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(239, 217, 206, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -10px; left: -2px;
  width: 5px; height: 10px;
  border-radius: 3px;
  background: var(--rosy-taupe);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -10px; opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { top: 50px; opacity: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid transparent;
  transition: color 0.4s var(--ease-cinema), border-color 0.4s var(--ease-cinema);
}
.btn-label { position: relative; z-index: 2; transition: color 0.4s var(--ease-cinema); }
.btn-fill {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.5s var(--ease-cinema);
  z-index: 1;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
}
.btn-primary .btn-fill {
  background: var(--space-indigo);
}
.btn-primary:hover .btn-fill { transform: scale(1.6); }
.btn-primary:hover .btn-label { color: var(--powder-petal); }

.btn-ghost {
  border-color: rgba(239, 217, 206, 0.3);
  color: var(--text-light);
  background: transparent;
}
.btn-ghost .btn-fill {
  background: var(--gradient-main);
}
.btn-ghost:hover .btn-fill { transform: scale(1.6); }
.btn-ghost:hover { border-color: transparent; }
.btn-ghost:hover .btn-label { color: #fff; }

.full-width { width: 100%; }
/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  background: var(--gradient-main);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--space-indigo);
  padding: 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marq-star { font-size: 1.1rem !important; opacity: 0.6; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION GENERIC
   ============================================ */
section { position: relative; padding: 130px 0; }
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 24px;
}
.section-title.center, .section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  max-width: 680px;
  margin-bottom: 70px;
}
.center { text-align: center; }
.about, .services, .portfolio, .faq { color: var(--text-light); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  background: linear-gradient(155deg, rgba(143,57,133,0.18), rgba(166,117,161,0.06));
  border: 1px solid rgba(239,217,206,0.1);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 50% 50%, rgba(166,117,161,0.25), rgba(37,40,61,0.4));
}
.about-logo-deco {
  width: 65%;
  filter: drop-shadow(0 20px 60px rgba(143,57,133,0.5));
  animation: floatLogo 8s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}
.about-badge {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: rgba(14,15,26,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239,217,206,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.badge-text { font-size: 0.85rem; color: var(--text-muted-light); }

.particle-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.deco-1 {
  width: 14px; height: 14px;
  background: var(--rosy-taupe);
  top: -20px; right: 10%;
  animation: particleFloat 6s ease-in-out infinite;
}
.deco-2 {
  width: 24px; height: 24px;
  background: var(--grape-soda);
  bottom: 10%; left: -30px;
  opacity: 0.6;
  animation: particleFloat 9s ease-in-out infinite reverse;
}
@keyframes particleFloat {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(20px, -30px); }
}

.about-text p { margin-bottom: 22px; color: var(--text-muted-light); }
.about-text p strong { color: var(--powder-petal); font-weight: 600; }
.about-points { margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-light); }
.point-icon { color: var(--rosy-taupe); }

/* ============================================
   TILT CARD (3D)
   ============================================ */
.tilt-card {
  transform-style: preserve-3d;
  will-change: auto;
}

/* ============================================
   SERVICES — BENTO GRID
   ============================================ */
.services { background: var(--bg-dark-2); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.bento-large { grid-column: span 2; }
.bento-card {
  background: linear-gradient(155deg, rgba(166,117,161,0.08), rgba(37,40,61,0.4));
  border: 1px solid rgba(239,217,206,0.08);
  border-radius: var(--radius-md);
  padding: 42px;
  transition: border-color 0.4s var(--ease-cinema), background 0.4s var(--ease-cinema);
}
.bento-card:hover {
  border-color: rgba(166,117,161,0.45);
  background: linear-gradient(155deg, rgba(143,57,133,0.18), rgba(37,40,61,0.5));
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: 22px;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block;
}
.bento-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.bento-card p { color: var(--text-muted-light); font-size: 0.95rem; }

/* ============================================
   PORTFOLIO — STICKY REVEAL STACK
   ============================================ */
.portfolio { padding-bottom: 0; }
.portfolio > .container { margin-bottom: 0; }
.sticky-stack {
  position: relative;
}
.sticky-card {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}
.sticky-card:nth-child(1) { z-index: 1; }
.sticky-card:nth-child(2) { z-index: 2; }
.sticky-card:nth-child(3) { z-index: 3; }

.sticky-card-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid rgba(239,217,206,0.08);
  padding-top: 90px;
  background: var(--bg-dark);
}
.sticky-media { position: relative; }
.media-placeholder {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239,217,206,0.1);
}
.ph-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(239,217,206,0.7);
  letter-spacing: 0.05em;
  z-index: 2;
}
.media-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.7;
}
.ph-1::before { background: linear-gradient(135deg, var(--space-indigo), var(--grape-soda)); }
.ph-2::before { background: linear-gradient(135deg, var(--grape-soda), var(--amethyst-smoke)); }
.ph-3::before { background: linear-gradient(135deg, var(--amethyst-smoke), var(--rosy-taupe)); }
.media-placeholder::after {
  content: '✦';
  position: absolute;
  font-size: 8rem;
  color: rgba(255,255,255,0.08);
  z-index: 1;
}

.sticky-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}
.sticky-info h3 { font-size: 2rem; margin-bottom: 18px; }
.sticky-info p { color: var(--text-muted-light); margin-bottom: 26px; max-width: 480px; }
.sticky-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.sticky-tags span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(239,217,206,0.18);
  color: var(--text-muted-light);
}
/* ============================================
   PRICING (LIGHT MODE SECTION)
   ============================================ */
.pricing {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 60px 60px 0 0;
  margin-top: 100px;
}
.pricing .eyebrow { color: var(--grape-soda); }
.pricing .section-lead { color: var(--text-muted-dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(155deg, #f7e3da 0%, #f1d4cf 100%);
  border: 1px solid rgba(143,57,133,0.1);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px -30px rgba(143,57,133,0.3);
}
.price-card .price-desc,
.price-card .price-features li {
  color: #6b4f5c;
}
.price-featured {
  background: var(--space-indigo);
  color: var(--text-light);
  transform: scale(1.03);
  box-shadow: 0 30px 80px -30px rgba(143,57,133,0.6);
}
.price-featured .price-desc,
.price-featured .price-features li { color: var(--text-muted-light); }
.price-featured h3 { color: var(--text-light); }
.price-badge {
  position: absolute;
  top: -14px; left: 36px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
}
.price-head h3 { font-size: 1.4rem; margin-bottom: 10px; }
.price-desc { color: var(--text-muted-dark); font-size: 0.92rem; margin-bottom: 28px; min-height: 50px; }
.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.price-from { font-size: 0.95rem; color: var(--text-muted-dark); }
.price-card .price-from { color: #6b4f5c; }
.price-featured .price-from { color: var(--text-muted-light); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
  font-size: 0.92rem;
}
.price-features li { color: var(--text-muted-dark); }

.pricing .btn-ghost {
  border-color: rgba(37,40,61,0.15);
  color: var(--text-dark);
}
.pricing .btn-ghost .btn-label { color: var(--text-dark); }
.pricing .btn-ghost:hover .btn-label { color: #fff; }
.price-featured .btn-ghost { border-color: rgba(239,217,206,0.25); color: var(--text-light); }
.price-featured .btn-ghost .btn-label { color: var(--text-light); }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-light); color: var(--text-dark); }
.faq .eyebrow { color: var(--grape-soda); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.faq-intro p { color: var(--text-muted-dark); margin-bottom: 32px; max-width: 440px; }
.faq .btn-ghost { border-color: rgba(37,40,61,0.15); color: var(--text-dark); }
.faq .btn-ghost .btn-label { color: var(--text-dark); }
.faq .btn-ghost:hover .btn-label { color: #fff; }

.faq-item {
  border-bottom: 1px solid rgba(37,40,61,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--grape-soda); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.4s var(--ease-cinema);
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--grape-soda);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-cinema);
}
.faq-answer p {
  padding: 0 4px 26px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  max-width: 540px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--space-indigo);
  color: var(--text-light);
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: var(--gradient-main);
  filter: blur(140px);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.contact-intro p:not(.eyebrow) { color: var(--text-muted-light); margin-bottom: 36px; max-width: 460px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s, transform 0.3s var(--ease-cinema);
  width: fit-content;
}
.contact-link:hover { color: var(--rosy-taupe); transform: translateX(6px); }
.contact-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(239,217,206,0.2);
  border-radius: 50%;
  font-size: 1rem;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(239,217,206,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; color: var(--text-muted-light); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(239,217,206,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--amethyst-smoke);
  background: rgba(255,255,255,0.08);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--space-indigo); color: var(--text-light); }
.form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 20px;
  color: var(--rosy-taupe);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark-2);
  color: var(--text-light);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(239,217,206,0.08);
}
.footer-brand p { color: var(--text-muted-light); margin-top: 18px; max-width: 320px; font-size: 0.92rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 20px; font-family: var(--font-display); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted-light); font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--rosy-taupe); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8rem;
  color: var(--text-muted-light);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-featured { transform: none; }
  .sticky-card-inner { grid-template-columns: 1fr; gap: 40px; }
  .sticky-number { font-size: 3.5rem; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 340px;
    height: 100vh;
    background: var(--bg-dark-2);
    flex-direction: column;
    padding: 100px 40px;
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .main-nav.open ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .main-nav.open .nav-link { font-size: 1.1rem; padding: 8px 0; }
  .hero-stats { gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
  section { padding: 90px 0; }
  .pricing { border-radius: 36px 36px 0 0; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .contact-form { padding: 28px; }
}
/* ============================================
   FULL WIDTH OVERRIDE — HEADER & FOOTER
   ============================================ */
.site-header,
.site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.site-footer {
  position: relative;
}
/* ============================================
   FULL WIDTH OVERRIDE — ALL SECTIONS
   ============================================ */
section,
.hero,
.about,
.services,
.portfolio,
.pricing,
.faq,
.contact,
.marquee-wrap {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box;
}/* End custom CSS */