/* =========================================================
   IRQ Internet Service — Design System
   1:1 aus Restaurant-mockup.css übernommene Tokens & Bausteine
   (schmale "Page"-Spalte mit Rahmen, Georgia-Serife, gedämpftes
   Gold, 6px/10px-Radien, keine Schatten) — erweitert um die
   zusätzlichen Bausteine, die eine mehrseitige Business-Site
   braucht (Dropdown-Nav, Preiskarten, Tabellen, Rechtstexte).
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f7f3ec;
  --cream-dark: #ede8df;
  --ink: #1e1b16;
  --ink-soft: #4a4438;
  --ink-muted: #8a8070;
  --gold: #b8944a;
  --gold-light: #d4b06a;
  --border: rgba(30,27,22,0.12);
  --border-med: rgba(30,27,22,0.22);
  --radius: 6px;
  --radius-lg: 10px;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--cream-dark);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--ink);
  line-height: 1.2;
}
h1 { font-size: 42px; margin-bottom: 16px; }
h2 { font-size: 28px; margin-bottom: 16px; }
h3 { font-size: 19px; margin-bottom: 8px; }
p { margin-bottom: 1em; color: var(--ink-soft); }

.sans { font-family: var(--sans); }

/* ── PAGE WRAP ── */
.page {
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  min-height: 100vh;
}

.container { padding: 0; }

/* ── SECTION ── */
.section { padding: 56px 32px; }
.section--alt { background: var(--cream-dark); }
.section-head { max-width: 620px; margin: 0 0 32px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow, .section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { opacity: 0.82; }
.btn-outline, .btn-outline-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-med);
}
.btn-outline:hover, .btn-outline-light:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* ── NAV ── */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 60px;
  background: rgba(247,243,236,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  gap: 16px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); font-size: 15px; }
.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-item > a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 12px;
  display: inline-block;
  border-radius: var(--radius);
}
.nav-item > a:hover, .nav-item.active > a { color: var(--ink); background: var(--cream-dark); }
.subnav {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.15s ease;
}
.nav-item.has-sub:hover .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 10px;
  border-radius: var(--radius);
}
.subnav a:hover { background: var(--cream-dark); color: var(--ink); }
.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.82; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 8px 16px 16px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open .nav-item > a { padding: 12px 8px; }
  .nav-links.open .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-left: 10px;
    border: none;
    padding: 0 0 8px;
  }
  .nav-links.open .nav-item.sub-open .subnav { display: flex; }
}

/* ── HERO ── */
.hero { padding: 72px 32px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 16px; }
.hero-lead {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-meta span::after { content: ""; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-muted); margin-left: 8px; vertical-align: middle; }
.hero-meta span:last-child::after { display: none; }
.hero-media {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
}

/* ── PAGE HERO (Unterseiten) ── */
.page-hero { padding: 48px 32px 40px; border-bottom: 0.5px solid var(--border); }
.breadcrumb { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--ink); }
.page-hero h1 { font-size: 34px; }
.page-hero p { font-family: var(--sans); font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 60ch; }

/* ── GRID / CARDS ── */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .price-card, .ref-card, .form-card {
  background: var(--cream-dark);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  transition: border-color 0.15s;
}
.card:hover { border-color: var(--border-med); }
.card p { font-family: var(--sans); font-size: 13.5px; }
.card .icon-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 0.5px solid var(--border-med);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ── PRICE CARDS ── */
.price-card { display: flex; flex-direction: column; padding: 26px 24px 22px; }
.price-card.featured { border-color: var(--gold); }
.price-card .kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .price { font-family: var(--serif); font-size: 26px; color: var(--ink); margin: 4px 0 4px; }
.price-card .price small { font-family: var(--sans); font-size: 13px; color: var(--ink-muted); font-weight: normal; }
.price-card .badge { display: none; } /* Restaurant-Mockup kennt keine Badge-Pille */
.price-card ul { margin: 16px 0 22px; flex-grow: 1; }
.price-card ul li {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-top: 0.5px solid var(--border);
}
.price-card ul li:first-child { border-top: none; }

/* ── REFERENZEN / REVIEWS ── */
.ref-card { padding: 20px 22px; }
.ref-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.ref-card .quote {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
}
.ref-card .who { display: flex; align-items: center; gap: 8px; }
.ref-card .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-med);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.ref-card .who strong { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); display: block; }
.ref-card .who .role { font-family: var(--sans); font-size: 11px; color: var(--ink-muted); }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: left; }
.stat .num { font-family: var(--serif); font-size: 34px; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.stat .label { font-family: var(--sans); font-size: 11.5px; color: var(--ink-muted); }

/* ── INLINE CTA ── */
.cta-banner {
  margin-top: 28px;
  padding: 18px 22px;
  border: 0.5px solid var(--border-med);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: 17px; margin-bottom: 2px; }
.cta-banner p { font-family: var(--sans); font-size: 13px; color: var(--ink-muted); margin: 0; }
.cta-banner .btn { flex-shrink: 0; }

/* ── FORMS ── */
.form-card { padding: 26px 24px 22px; }
.form-card h3 { font-size: 17px; margin-bottom: 4px; }
.form-card > p { font-family: var(--sans); font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }
.form-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.form-row label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}
.form-row input, .form-row textarea, .form-row select {
  font-size: 14px;
  font-family: var(--sans);
  border-radius: var(--radius);
  border: 0.5px solid var(--border-med);
  padding: 9px 12px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--gold); }
.form-row textarea { min-height: 72px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; }
.form-note { font-family: var(--sans); font-size: 11px; color: var(--ink-muted); margin-top: 10px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 8px; font-family: var(--sans); font-size: 12px; color: var(--ink-soft); }
.form-checkbox input { width: auto; margin-top: 3px; }

.contact-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-info-card { background: transparent; border: none; padding: 0; }
.contact-info-card h3 { font-size: 17px; }
.contact-info-card > p { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.contact-link:hover { border-color: var(--border-med); }
.contact-link span:first-child { font-size: 18px; color: var(--gold); flex-shrink: 0; }
.contact-link strong { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); display: block; }
.contact-link .sub { font-family: var(--sans); font-size: 11px; color: var(--ink-muted); display: block; margin-top: 1px; }

/* ── TABLE (Domainpreise, IRQ) ── */
.price-table { width: 100%; border-collapse: collapse; font-family: var(--sans); }
.price-table th, .price-table td { padding: 10px 4px; text-align: left; border-bottom: 0.5px solid var(--border); font-size: 13.5px; }
.price-table th { font-weight: 600; color: var(--ink-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child, .price-table th:last-child { text-align: right; color: var(--gold); font-weight: 500; }
.price-table th:last-child { color: var(--ink-muted); }

/* ── PROSE (Rechtstexte) ── */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2em; font-size: 20px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); line-height: 1.75; }
.prose a { text-decoration: underline; color: var(--ink); }
.prose a:hover { color: var(--gold); }
.prose code { font-family: monospace; background: var(--cream-dark); padding: 1px 5px; border-radius: 4px; font-size: 13px; }

/* ── FOOTER ── */
.footer {
  padding: 20px 32px;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-left { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); }
.footer-links a:hover { color: var(--ink-soft); }
.footer-credit {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  padding: 12px 32px;
  border-top: 0.5px solid var(--border);
}
.footer-credit a { color: var(--ink-muted); text-decoration: none; }
.footer-credit a:hover { color: var(--gold); }

/* ── UTIL ── */
.text-center { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; padding: 40px 22px; }
  .hero-media { order: -1; }
  .page-hero { padding: 36px 22px 32px; }
  .section { padding: 40px 22px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-columns { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .footer { padding: 18px 22px; flex-direction: column; align-items: flex-start; }
  .footer-credit { padding: 12px 22px; }
  .page-hero h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
}
