/* POSTWERK — high-rock-808.css */
:root {
  --bg: #000000;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --white: #ffffff;
  --accent: #2DB84B;
  --grey: #888888;
  --border: rgba(255,255,255,0.2);
  --font: 'Arial', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── SPLASH ─────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#splash.hidden { opacity: 0; pointer-events: none; }
.splash-logo svg text { fill: var(--white); }
.splash-bar {
  width: 180px;
  height: 2px;
  background: var(--border);
  margin-top: 20px;
  overflow: hidden;
}
.splash-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ─── NAV ────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-social { display: flex; align-items: center; gap: 18px; }
.nav-social a { font-size: 16px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.nav-social a:hover { color: var(--accent); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--white); color: var(--bg); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  padding: 20px 30px 30px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.8);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../photo/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-content.visible { opacity: 1; transform: translateX(0); }
.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 28px;
}
.hero-h1 span { color: var(--accent); }
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-solid {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: opacity 0.2s;
}
.btn-solid:hover { opacity: 0.85; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── SECTIONS ───────────────────────────────── */
section { padding: 90px 0; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
}
.section-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ─── SERVICES ───────────────────────────────── */
#services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg3);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent);
  background: #1f1f1f;
}
.service-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 22px;
}
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.service-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── ABOUT ──────────────────────────────────── */
#about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  height: 520px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--accent);
  z-index: -1;
  opacity: 0.4;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.about-list { margin: 28px 0 36px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.about-list li i { color: var(--accent); margin-top: 3px; }

/* ─── PROCESS ────────────────────────────────── */
#process { background: var(--bg2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 16px;
}
.process-step {
  padding: 44px 32px;
  background: var(--bg3);
  position: relative;
}
.step-num {
  font-size: 56px;
  font-weight: 700;
  color: rgba(45,184,75,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── RESULTS ────────────────────────────────── */
#results {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.results-bg {
  position: absolute;
  inset: 0;
  background-image: url('../photo/results-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.result-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.result-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── PORTFOLIO ──────────────────────────────── */
#portfolio { background: var(--bg2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 4/3;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.7;
}
.portfolio-card:hover img { transform: scale(1.05); opacity: 0.5; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}
.portfolio-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.portfolio-tag { font-size: 12px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }

/* ─── PRICING ────────────────────────────────── */
#pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}
.pricing-card {
  background: var(--bg3);
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: #141f16;
  position: relative;
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.pricing-name { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.pricing-price {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span { font-size: 20px; font-weight: 300; vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--grey); margin-bottom: 32px; }
.pricing-features { margin-bottom: 36px; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i { color: var(--accent); font-size: 12px; }
.pricing-card .btn-ghost { width: 100%; text-align: center; }
.pricing-card.featured .btn-ghost {
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-card.featured .btn-ghost:hover { opacity: 0.85; background: var(--accent); }

/* ─── TESTIMONIALS ───────────────────────────── */
#testimonials { background: var(--bg2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--bg3);
  padding: 38px 32px;
}
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.testi-role { font-size: 12px; color: var(--accent); margin-top: 4px; }

/* ─── CTA ────────────────────────────────────── */
#cta {
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../photo/cta-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
#cta .section-inner { position: relative; z-index: 1; }
#cta .section-title { max-width: 700px; margin: 0 auto 20px; }
#cta .section-lead { margin: 0 auto 40px; }
#cta .hero-btns { justify-content: center; }

/* ─── CONTACT FORM ───────────────────────────── */
#contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
}
.contact-item i { color: var(--accent); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.form-checkbox a { color: var(--accent); text-decoration: underline; }
.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { opacity: 0.85; }

/* ─── FOOTER ─────────────────────────────────── */
#main-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 18px 0 24px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ─── COOKIES ────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 1px solid var(--border);
  padding: 22px 40px;
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
}
.btn-cookie-accept:hover { opacity: 0.85; }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  padding: 140px 0 70px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 600px; }

/* ─── INNER CONTENT ──────────────────────────── */
.content-section { padding: 80px 0; background: var(--bg); }
.content-section .inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.content-section h2 { font-size: 26px; font-weight: 700; margin: 40px 0 16px; }
.content-section h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: rgba(255,255,255,0.9); }
.content-section p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 18px; }
.content-section ul { margin: 16px 0 24px 20px; }
.content-section ul li { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.content-section a { color: var(--accent); text-decoration: underline; }

/* ─── SEND.PHP STYLES ────────────────────────── */
.send-result {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.send-result i { font-size: 52px; color: var(--accent); margin-bottom: 24px; }
.send-result h2 { font-size: 32px; margin-bottom: 14px; }
.send-result p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid,
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-social, .nav-cta { display: none; }
  .burger { display: flex; }
  .services-grid,
  .pricing-grid,
  .testi-grid,
  .process-steps,
  .results-grid,
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 28px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .nav-inner { padding: 0 20px; }
  .section-inner, .footer-inner { padding: 0 20px; }
}
