/* =============================================
   Marketing Geek – www.marketing-geek.ch
   Design: Bold Orange / Coral / Dark
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --primary:    #0d0a08;
  --secondary:  #161210;
  --card-bg:    #1a1512;
  --accent:     #f97316;
  --accent2:    #fb923c;
  --pink:       #ec4899;
  --light:      #fafaf9;
  --muted:      #78716c;
  --border:     #2a2118;
  --border2:    #3a2f24;
  --white:      #ffffff;
  --font-head:  'Outfit', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body:  'Outfit', sans-serif;
  --radius:     14px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: #e7e5e4;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: #fff;
  padding: 8px 16px; z-index: 9999;
  font-family: var(--font-head);
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,10,8,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.45rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex; gap: 4px; align-items: center;
}
nav ul li { position: relative; }
nav ul li a {
  display: block; padding: 8px 13px;
  font-size: 0.875rem; font-weight: 600;
  color: #d6d3d1; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav ul li a:hover,
nav ul li a.active { background: var(--border2); color: var(--white); }

/* Dropdown */
nav ul li ul {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 0;
  background: var(--secondary);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  min-width: 230px; flex-direction: column;
  gap: 0; padding: 8px;
  box-shadow: var(--shadow);
}
nav ul li:hover > ul { display: flex; }
nav ul li ul li a {
  font-size: 0.85rem; padding: 9px 13px; color: #a8a29e;
}
nav ul li ul li a:hover { background: var(--border2); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0a08 0%, #1a0f06 50%, #0d0a08 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 45%, rgba(249,115,22,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(236,72,153,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.6) 75%, transparent);
}
.hero-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%; opacity: 0.08;
}
.hero-content {
  position: relative; max-width: 1280px;
  margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; width: 100%;
}
.hero-text { animation: fadeUp .8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px; padding: 6px 18px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent2); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white); letter-spacing: -1.5px;
  margin-bottom: 20px;
}
h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: #a8a29e;
  max-width: 500px; margin-bottom: 36px;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; cursor: pointer;
  transition: all var(--transition); border: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 24px rgba(249,115,22,0.4);
}
.btn-primary:hover {
  background: #ea6c0c; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.55);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  background: var(--border2); color: var(--white);
  transform: translateY(-2px);
}

/* Hero visual grid */
.hero-visual {
  animation: fadeUp .8s .2s ease both;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-stat {
  background: rgba(26,21,18,0.85);
  border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.hero-stat .num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--accent); display: block;
}
.hero-stat .label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ─── SECTIONS ─── */
section { padding: 96px 28px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; letter-spacing: -0.75px;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem; color: #a8a29e;
  max-width: 600px; margin-bottom: 48px;
}

/* ─── INFO ─── */
.info-section { background: var(--secondary); }
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.info-image { border-radius: 18px; overflow: hidden; position: relative; }
.info-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.info-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), transparent);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.6);
  border-color: var(--accent);
}
.service-card img {
  width: 100%; height: 200px; object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: filter var(--transition);
}
.service-card:hover img { filter: brightness(1) saturate(1.1); }
.service-card-body { padding: 24px; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: #a8a29e; margin-bottom: 16px; }
.service-card .card-link {
  font-size: 0.875rem; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .card-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: linear-gradient(135deg, #160f08, #0d0a08);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { border-radius: 18px; overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--primary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: rgba(249,115,22,0.15); font-weight: 400;
}
.testimonial-card p {
  font-size: 0.95rem; color: #a8a29e; line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-card .author { font-weight: 800; color: var(--white); font-size: 0.9rem; }

/* ─── CONTACT ─── */
.contact-section { background: var(--secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: #a8a29e; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--primary);
  border: 1px solid var(--border2);
  border-radius: 10px; padding: 13px 16px;
  color: var(--white); font-family: var(--font-body);
  font-size: 0.9rem; transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.honeypot { display: none !important; }

.contact-info h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 800; color: var(--white); margin-bottom: 20px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 0.9rem; color: #a8a29e;
}
.contact-detail .icon {
  width: 38px; height: 38px;
  background: rgba(249,115,22,0.12);
  border-radius: 9px; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent); font-size: 1rem;
}
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--border2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #a8a29e; font-size: 1rem; transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 88px 28px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: #a8a29e; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 20px;
  justify-content: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border2); }

/* ─── CONTENT BLOCKS ─── */
.content-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 80px;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img {
  width: 100%; border-radius: 18px;
  aspect-ratio: 4/3; object-fit: cover;
}
.content-block .text h2 { margin-bottom: 16px; }
.content-block .text p { color: #a8a29e; margin-bottom: 20px; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  padding: 36px 44px; margin: 56px 0;
  font-family: var(--font-serif);
  font-style: italic; font-size: 1.25rem; color: #e7e5e4;
  line-height: 1.6;
}
.quote-block cite {
  display: block; margin-top: 20px;
  font-style: normal; font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 800; color: var(--accent);
}

/* ─── PRICE TABLE ─── */
.price-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: 14px; border: 1px solid var(--border2); }
table { width: 100%; border-collapse: collapse; }
thead { background: rgba(249,115,22,0.12); }
th {
  padding: 14px 20px; text-align: left;
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 800; color: var(--accent); letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border2);
}
td {
  padding: 14px 20px; font-size: 0.9rem; color: #d6d3d1;
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(249,115,22,0.04); }

/* ─── PROSE ─── */
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose p { color: #a8a29e; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: #a8a29e; margin-bottom: 8px; }
.prose strong { color: var(--white); }
.prose a { color: var(--accent); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 16px; padding: 32px 36px; margin: 32px 0;
}
.highlight-box h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 800; color: var(--white); margin-bottom: 8px;
}
.highlight-box p { color: #a8a29e; margin-bottom: 20px; }

/* ─── FOOTER ─── */
footer {
  background: #080603;
  border-top: 1px solid var(--border); padding: 52px 28px 28px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); max-width: 300px; line-height: 1.65; }
footer h4 {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 800;
  color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; gap: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.fade-in { animation: fadeUp .6s ease both; }

/* ─── FORM SUCCESS ─── */
.form-success {
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.3);
  border-radius: 10px; padding: 20px; color: var(--accent2);
  display: none; margin-top: 16px; font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .info-grid, .about-grid, .contact-grid,
  .content-block { grid-template-columns: 1fr; gap: 36px; }
  .content-block.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--secondary); border-bottom: 1px solid var(--border);
    padding: 16px; gap: 4px; z-index: 99;
  }
  nav ul.open { display: flex; }
  nav ul li ul {
    position: static; box-shadow: none; border: none;
    background: rgba(0,0,0,0.2); margin-top: 4px;
  }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
}
