/* Glanzwerk Studio — Website UI Kit styles
   Bridges design tokens (../colors_and_type.css) → site classes used by JSX. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }

.gw-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; }
.gw-section-pad { padding: var(--section-pad); position: relative; }

.gw-label { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.gw-gold { color: var(--accent); }

@keyframes gw-glow-breathe {
  0%,100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1.0; transform: translateX(-50%) scale(1.15); }
}
@keyframes gw-shimmer {
  0%,100% { opacity: 0.4; }
  50%     { opacity: 1; }
}

/* ── NAV ── */
.gw-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(5,5,5,0.85); backdrop-filter: var(--blur-nav); -webkit-backdrop-filter: var(--blur-nav); border-bottom: 1px solid var(--gw-white-05); }
.gw-nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.gw-nav-logo { display: flex; align-items: center; gap: 10px; }
.gw-nav-logo-text { font-family: var(--font-serif); font-size: 13px; letter-spacing: 0.23em; color: var(--accent); font-weight: 700; }
.gw-nav-links { display: flex; align-items: center; gap: 32px; }
.gw-nav-links a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); transition: color 0.2s; }
.gw-nav-links a:hover { color: var(--fg); }
.gw-nav-cta { border: 1px solid var(--accent-border); color: var(--accent); padding: 8px 18px; transition: 0.2s; }
.gw-nav-cta:hover { background: var(--accent); color: var(--bg) !important; }
.gw-nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.gw-nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--fg-muted); transition: 0.3s; }
.gw-nav-mobile { display: none; }
@media (max-width: 768px) {
  .gw-nav-links { display: none; }
  .gw-nav-burger { display: flex; }
}

/* ────────────────────────────────
   HERO V2 — bolder, cinematic
   ──────────────────────────────── */
.gw-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) 24px 60px;
}
.gw-hero-glow-v2 {
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 600px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(226,201,126,0.18), transparent 65%),
    radial-gradient(ellipse 30% 40% at 50% 50%, rgba(255,225,160,0.10), transparent 70%);
  pointer-events: none; z-index: 0;
  animation: gw-glow-breathe 6s ease-in-out infinite;
  filter: blur(20px);
}
.gw-hero-frame {
  position: absolute; inset: 80px 40px 40px;
  pointer-events: none; z-index: 2;
}
.gw-hero-corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--accent-border);
}
.gw-hero-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.gw-hero-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.gw-hero-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.gw-hero-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.gw-hero-inner-v2 {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.gw-hero-eyebrow-v2 {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  animation: gw-shimmer 3s ease-in-out infinite;
}
.gw-hero-eyebrow-line { width: 32px; height: 1px; background: var(--accent-border); display: inline-block; }

.gw-hero-headline-v2 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin: 0 0 96px;
  letter-spacing: -0.015em;
  padding-bottom: 0.2em;
}
.gw-hero-headline-v2 em {
  display: inline-block;
  padding-right: 0.1em;
  padding-bottom: 0.08em;
}
.gw-hero-headline-v2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #f7e9b8 0%, #e2c97e 50%, #b8954a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(226,201,126,0.3));
}
.gw-hero-sub-v2 {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.gw-hero-actions-v2 {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

.gw-hero-proof-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--accent-border);
  border: 1px solid var(--accent-border);
  max-width: 720px; margin: 0 auto;
}
.gw-hero-proof-v2 > div {
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(6px);
  padding: 22px 12px;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.gw-hero-proof-num-v2 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.gw-hero-proof-label-v2 {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
  .gw-hero-proof-v2 { grid-template-columns: repeat(2, 1fr); max-width: 360px; }
  .gw-hero-frame { inset: 70px 16px 20px; }
}

/* BUTTONS */
.gw-btn { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 36px; transition: 0.2s; cursor: pointer; border: 1px solid transparent; font-family: var(--font-sans); }
.gw-btn-primary { background: var(--accent); color: var(--bg); position: relative; }
.gw-btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(226,201,126,0.5); }
.gw-btn-ghost { border-color: var(--border-strong); color: var(--fg-muted); background: transparent; }
.gw-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--fg); }
.gw-btn-on-gold { background: var(--bg); color: var(--accent); }
.gw-btn-on-gold:hover { background: #1a1a1a; }

/* SECTIONS */
.gw-section-headline { font-family: var(--font-serif); font-size: clamp(36px, 4.5vw, 64px); font-weight: 700; text-align: center; margin: 0 0 18px; line-height: 1.1; color: var(--fg); letter-spacing: -0.01em; }
.gw-section-sub { text-align: center; color: var(--fg-muted); font-size: 16px; max-width: 520px; margin: 0 auto 64px; line-height: 1.7; }

/* ────────────────────────────────
   PAKETE V2 — premium pricing cards
   ──────────────────────────────── */
.gw-pakete-section { position: relative; }
.gw-pakete-section::before {
  content: ''; position: absolute; left: 50%; top: 30%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(226,201,126,0.07), transparent 70%);
  pointer-events: none;
}
.gw-pakete-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .gw-pakete-grid-v2 { grid-template-columns: 1fr; gap: 24px; }
}

.gw-paket-v2 {
  position: relative;
  padding: 48px 32px 36px;
  background: linear-gradient(180deg, #0c0c0a 0%, #060605 100%);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: 0.3s;
}
.gw-paket-v2::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226,201,126,0.45), transparent);
}
.gw-paket-v2:hover { border-color: var(--accent-border); }

.gw-paket-name-v2 {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 36px;
}

.gw-paket-price-block {
  display: flex; align-items: flex-start;
  justify-content: center;
  padding: 0 12px 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.gw-paket-price-block::after {
  content: '✦';
  position: absolute; bottom: -9px; left: 0;
  background: #060605; padding: 0 10px 0 0;
  color: var(--accent); font-size: 12px;
}
.gw-paket-currency-v2 {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 400;
  color: var(--fg-muted);
  margin-top: 18px; margin-right: 6px;
}
.gw-paket-price-v2 {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 600;
  line-height: 1; letter-spacing: 0;
  background: linear-gradient(180deg, #fff 0%, #c8c4b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: lining-nums;
  padding: 0 0.18em 0.05em 0;
  display: inline-block;
}
.gw-paket-note-v2 {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 28px;
}
.gw-paket-list-v2 {
  display: flex; flex-direction: column; gap: 14px;
  font-size: 14px; color: rgba(255,255,255,0.75);
  flex: 1; margin: 0 0 32px;
}
.gw-paket-list-v2 li {
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5;
}
.gw-paket-list-v2 li::before {
  content: '✦';
  color: var(--accent);
  font-size: 9px;
  margin-top: 6px;
  flex-shrink: 0;
}
.gw-paket-cta { width: 100%; text-align: center; }

/* FEATURED — the wow card */
.gw-paket-v2.is-featured {
  background:
    radial-gradient(ellipse 280px 120px at 50% 0%, rgba(226,201,126,0.55), transparent 70%),
    linear-gradient(180deg, #1a1610 0%, #0d0c08 100%);
  border-color: var(--accent-border);
  box-shadow:
    0 0 0 1px rgba(226,201,126,0.15),
    0 30px 80px -20px rgba(0,0,0,0.9),
    0 0 100px -20px rgba(226,201,126,0.4);
  z-index: 3;
  margin: -24px -8px;
  padding: 64px 36px 44px;
}
.gw-paket-v2.is-featured::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.gw-paket-v2.is-featured .gw-paket-name-v2 {
  text-shadow: 0 0 24px rgba(226,201,126,0.4);
}
.gw-paket-v2.is-featured .gw-paket-price-v2 {
  font-size: 72px;
  letter-spacing: 0;
  background: linear-gradient(180deg, #f7e9b8 0%, #e2c97e 55%, #b8954a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(226,201,126,0.3));
}
.gw-paket-v2.is-featured .gw-paket-currency-v2 { color: var(--accent); }
.gw-paket-v2.is-featured .gw-paket-price-block::after { background: #14110a; }
.gw-paket-v2.is-featured .gw-paket-list-v2 { color: rgba(255,255,255,0.85); }

.gw-paket-badge-v2 {
  position: absolute; top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 8px 18px;
  white-space: nowrap;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 0 24px rgba(226,201,126,0.35);
}
.gw-paket-badge-v2 span { font-size: 8px; opacity: 0.7; }

/* ────────────────────────────────
   USP V2 — numbered grid w/ SVG icons
   ──────────────────────────────── */
.gw-usp-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .gw-usp-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gw-usp-grid-v2 { grid-template-columns: 1fr; } }

.gw-usp-v2 {
  position: relative;
  background: linear-gradient(180deg, #0a0a08 0%, #060605 100%);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column;
  transition: 0.3s;
  min-height: 240px;
}
.gw-usp-v2:hover {
  background: linear-gradient(180deg, #14110a 0%, #0a0a08 100%);
}
.gw-usp-v2:hover::before {
  opacity: 1;
}
.gw-usp-v2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
  opacity: 0; transition: 0.3s;
}
.gw-usp-v2-num {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-serif);
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.gw-usp-v2-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(226,201,126,0.3));
  margin-bottom: 22px;
}
.gw-usp-v2-icon svg { width: 100%; height: 100%; }
.gw-usp-v2-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  color: var(--fg);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.gw-usp-v2-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PORTFOLIO ── (kept simple, original look) ── */
.gw-portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.gw-portfolio-card { transition: transform 0.3s; }
.gw-portfolio-card:hover { transform: translateY(-4px); }
.gw-browser-frame { border: 1px solid var(--border); overflow: hidden; background: var(--bg-elevated); }
.gw-browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #111; border-bottom: 1px solid var(--gw-white-05); }
.gw-browser-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.gw-browser-preview { height: 200px; position: relative; overflow: hidden; }
.gw-portfolio-meta { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px 0; }
.gw-portfolio-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); opacity: 0.7; }
.gw-portfolio-name { font-size: 14px; color: var(--fg-muted); font-weight: 500; }

/* ── PROZESS ── */
.gw-prozess-timeline { position: relative; display: flex; align-items: flex-start; justify-content: center; margin-top: 56px; }
.gw-prozess-timeline::before { content: ''; position: absolute; top: 23px; left: 16.5%; right: 16.5%; height: 1px; background: linear-gradient(to right, rgba(226,201,126,0.08), rgba(226,201,126,0.45) 25%, rgba(226,201,126,0.45) 75%, rgba(226,201,126,0.08)); z-index: 0; }
.gw-prozess-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 32px; }
.gw-prozess-dot { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--accent-border); background: var(--bg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; transition: 0.3s; }
.gw-prozess-step:hover .gw-prozess-dot { border-color: var(--accent); box-shadow: 0 0 14px rgba(226,201,126,0.25); }
.gw-prozess-dot span { font-family: var(--font-serif); font-size: 14px; color: var(--accent); font-weight: 600; }
.gw-prozess-content { max-width: 260px; }
.gw-prozess-title { font-size: 16px; font-weight: 600; color: var(--fg); margin: 0 0 10px; }
.gw-prozess-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin: 0; }
@media (max-width: 700px) {
  .gw-prozess-timeline { flex-direction: column; align-items: center; gap: 40px; }
  .gw-prozess-timeline::before { top: 0; bottom: 0; left: 50%; right: auto; width: 1px; height: auto; transform: translateX(-50%); }
  .gw-prozess-step { padding: 0; }
}

/* ── KONTAKT ── */
.gw-kontakt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 768px) { .gw-kontakt-inner { grid-template-columns: 1fr; gap: 48px; } }
.gw-kontakt-form { display: flex; flex-direction: column; gap: 20px; }
.gw-form-group { display: flex; flex-direction: column; gap: 8px; }
.gw-form-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); }
.gw-form-input { background: var(--bg-elevated); border: 1px solid var(--border); color: var(--fg); font-family: var(--font-sans); font-size: 14px; padding: 14px 16px; outline: none; transition: border-color 0.2s; width: 100%; }
.gw-form-input:focus { border-color: var(--accent-border); }
.gw-form-input::placeholder { color: rgba(255,255,255,0.2); }
.gw-chip-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
@media (max-width: 480px) { .gw-chip-group { grid-template-columns: 1fr; } }
.gw-chip { padding: 10px 12px; border: 1px solid rgba(226,201,126,0.2); font-size: 13px; color: rgba(255,255,255,0.55); cursor: pointer; transition: all 0.15s; letter-spacing: 0.5px; background: transparent; user-select: none; text-align: center; }
.gw-chip:hover { border-color: rgba(226,201,126,0.45); color: rgba(255,255,255,0.8); }
.gw-chip.active { border-color: var(--accent); color: var(--accent); background: rgba(226,201,126,0.06); }

/* FOOTER */
.gw-footer { border-top: 1px solid var(--gw-white-05); padding: 28px 0; }
.gw-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
