/* =============================================
   internetkultur.ch — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-cream:   #FDFBF3;
  --bg-plum:    #F5E6F2;
  --bg-gold:    #FBF7E0;
  --bg-light:   #F5F5F5;
  --bg-dark:    #1A1A1A;
  --text-1:     #111111;
  --text-2:     #555555;
  --text-muted: #888888;
  --accent:     #5B4FE9;
  --accent-plum:#C06DB0;
  --accent-gold:#C9B030;
  --success:    #2DB67D;
  --font:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font);
  background: var(--bg-cream);
  color: var(--text-1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section backgrounds ---- */
.section-cream { background: var(--bg-cream); }
.section-plum  { background: var(--bg-plum); }
.section-gold  { background: var(--bg-gold); }
.section-light { background: var(--bg-light); }
.section-dark  { background: var(--bg-dark); color: #fff; }

section { padding: 130px 0; }

/* ---- Typography ---- */
.overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1, h2, h3 { line-height: 1.15; font-weight: 400; letter-spacing: -0.02em; }

h1 { font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.45rem; font-weight: 500; }

em { font-style: italic; font-weight: 300; }

.section-header {
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #4840d4; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--text-1);
  color: var(--text-1);
  padding: 13px 26px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--text-1); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-1); border-bottom-color: var(--text-1); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { background: #4840d4; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 251, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: var(--nav-h);
}
.nav-scrolled {
  border-bottom-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-1);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a.active { color: var(--text-1); font-weight: 500; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: rgba(253,251,243,0.97);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  padding: 0.75rem 0;
  color: var(--text-2);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-mobile .btn-cta { margin-top: 1rem; align-self: flex-start; }

/* ---- HERO ---- */
.hero {
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 130px;
  min-height: 95vh;
  display: flex;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}
.hero-h1 {
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-h1 em {
  color: var(--accent-plum);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---- PROOF NUMBERS ---- */
.proof { padding: 80px 0; }
.proof-label { margin-bottom: 48px; display: block; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-item {
  background: var(--bg-light);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-number {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}
.proof-unit {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: -4px;
}
.proof-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 12px;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--bg-plum);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  cursor: pointer;
}
.service-card:hover { background: #eedceb; }
.service-icon {
  margin-bottom: 8px;
}
.service-tag { color: var(--accent-plum); }
.service-card h3 { font-size: 1.6rem; }
.service-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.service-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 8px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { color: #4840d4; }

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-family: 'Courier New', monospace;
}
.step-content h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }
.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
}
.process-connector::after {
  content: '→';
  color: var(--accent-plum);
  font-size: 1.4rem;
  opacity: 0.5;
}

/* ---- TECH STACK ---- */
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-text { display: flex; flex-direction: column; gap: 20px; }
.tech-text p { color: var(--text-2); font-size: 0.975rem; line-height: 1.75; }
.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tech-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(91,79,233,0.1);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Courier New', monospace;
  align-self: flex-start;
}
.tech-item p { font-size: 0.85rem; color: var(--text-2); }

/* ---- STATEMENT ---- */
.statement-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.statement-quote blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-1);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 640px;
}
.statement-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent-plum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.statement-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.statement-author span { font-size: 0.8rem; color: var(--text-muted); }
.statement-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 240px;
}
.metric {
  background: var(--bg-plum);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.metric-num {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--accent-plum);
  line-height: 1;
}
.metric-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.06em; }

/* ---- CTA SECTION ---- */
.cta-section { text-align: center; }
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-inner h2 { margin: 0; }
.cta-inner p { color: var(--text-2); font-size: 1rem; }
.cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-location { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-made { font-size: 0.8rem; }

/* =============================================
   PAGE-SPECIFIC: SEO PAGE
   ============================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 100px;
}
.page-hero .overline { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { max-width: 560px; color: var(--text-2); font-size: 1.1rem; margin-bottom: 40px; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.feature-item { display: flex; flex-direction: column; gap: 10px; }
.feature-item h3 { font-size: 1.2rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text { display: flex; flex-direction: column; gap: 20px; }
.two-col-text p { color: var(--text-2); font-size: 0.975rem; line-height: 1.75; }
.two-col-visual {
  background: rgba(91,79,233,0.06);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.stat-big { font-size: 2.4rem; font-weight: 300; letter-spacing: -0.04em; color: var(--accent); }
.stat-text { font-size: 0.875rem; color: var(--text-2); }

/* Progress bars */
.progress-list { display: flex; flex-direction: column; gap: 20px; }
.progress-item { display: flex; flex-direction: column; gap: 8px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-2); }
.progress-bar { height: 6px; background: rgba(0,0,0,0.08); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: var(--accent); transition: width 1s ease; }

/* ---- KI CONTENT PAGE ---- */
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.pipeline-step {
  background: var(--bg-gold);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: start;
  transition: background 0.2s;
}
.pipeline-step:hover { background: #f5f0d4; }
.pipeline-step-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  font-family: 'Courier New', monospace;
  padding-top: 4px;
}
.pipeline-step-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pipeline-step-content p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; max-width: 540px; }
.pipeline-step-badge {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(201,176,48,0.15);
  color: var(--accent-gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-item .overline { margin-bottom: 4px; }
.contact-item strong { font-size: 1rem; }
.contact-item a { color: var(--accent); font-size: 0.95rem; }

form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
}
input, textarea, select {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-1);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
  resize: vertical;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { min-height: 120px; }

/* ---- ÜBER PAGE ---- */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-card {
  background: var(--bg-cream);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-family: 'Courier New', monospace;
}
.value-card h3 { font-size: 1.2rem; }
.value-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

.avatar-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--bg-plum) 0%, #dcc5d9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-plum);
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 960px) {
  section { padding: 80px 0; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-connector { display: none; }
  .tech-inner { grid-template-columns: 1fr; gap: 48px; }
  .statement-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pipeline-step { grid-template-columns: 40px 1fr; }
  .pipeline-step-badge { display: none; }
  .statement-metrics { min-width: 0; grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .nav-links { display: none; }
  .nav .btn-cta { display: none; }
  .nav-burger { display: flex; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-actions { gap: 16px; }
  .statement-metrics { grid-template-columns: 1fr 1fr; }
  .tech-stack-grid { grid-template-columns: 1fr; }
}

/* ---- Inline helpers used across pages ---- */
.color-plum-accent { color: var(--accent-plum); }
.color-gold-accent { color: var(--accent-gold); }
.color-accent      { color: var(--accent); }

/* About page specifics */
.about-fact-list { display: flex; flex-direction: column; gap: 24px; }
.about-fact { display: flex; flex-direction: column; gap: 6px; }
.about-fact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-fact-value { font-size: 1.1rem; font-weight: 400; }
.about-divider { height: 1px; background: rgba(0,0,0,0.07); }

.belief-list { display: flex; flex-direction: column; gap: 20px; }
.belief-item { display: flex; gap: 16px; align-items: flex-start; }
.belief-icon {
  width: 32px; height: 32px;
  background: rgba(91,79,233,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--accent); font-weight: 600;
  flex-shrink: 0;
}
.belief-item strong { font-size: 0.9rem; display: block; margin-bottom: 4px; }
.belief-item p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; margin: 0; }

/* KI content comparison box */
.ki-compare { display: flex; flex-direction: column; gap: 24px; }

/* KI content page specifics */
.text-before {
  background: rgba(232,133,106,0.1);
  border-left: 3px solid #e8856a;
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
}
.text-after {
  background: rgba(45,182,125,0.08);
  border-left: 3px solid var(--success);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}
.text-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.transform-arrow {
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  align-items: center;
  gap: 8px;
}

/* Webdesign comparison */
.wp-compare { display: flex; flex-direction: column; gap: 20px; }
.wp-compare-row { display: flex; flex-direction: column; gap: 8px; }
.wp-compare-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 2px;
}
.progress-bad  { background: #e8856a; }
.progress-good { background: var(--success); }
.compare-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 4px 0; }

/* Form submit button full-width */
.btn-submit-full {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 16px 28px;
  font-size: 1rem;
}

.form-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.legal-link { color: var(--accent); }

/* Contact */
.contact-highlight {
  background: var(--bg-plum);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-highlight p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin: 0; }

/* ---- NETWORK SHOWCASE ---- */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.network-card {
  background: var(--bg-gold);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.network-card:hover { background: #f5f0d4; }
.network-card-placeholder { background: var(--bg-cream); }
.network-card-placeholder:hover { background: #f5f3ea; }
.network-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.network-domain {
  display: flex;
  align-items: center;
  gap: 8px;
}
.network-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.network-dot-muted {
  background: var(--text-muted);
}
.network-url {
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
}
.network-url-muted {
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  color: var(--text-muted);
}
.network-status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(45,182,125,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}
.network-status-open {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(91,79,233,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.network-card h3 { font-size: 1.4rem; }
.network-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.network-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.network-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(201,176,48,0.15);
  color: var(--accent-gold);
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.network-tag-open {
  background: rgba(91,79,233,0.07);
  color: var(--accent);
}

@media (max-width: 640px) {
  .network-grid { grid-template-columns: 1fr; }
}

/* ---- SEO AUDIT ---- */
.audit-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 700px;
}
.audit-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.audit-score {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.score-bad { background: #fde8e8; color: #c53030; }
.score-ok { background: #fef3cd; color: #975a16; }
.score-good { background: #d1fae5; color: #065f46; }
.audit-header h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.audit-header p { font-size: 0.875rem; color: var(--text-muted); }
.audit-findings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.finding {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.finding-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.finding-critical { background: #fde8e8; }
.finding-critical .finding-label { background: #c53030; color: #fff; }
.finding-warning { background: #fef3cd; }
.finding-warning .finding-label { background: #975a16; color: #fff; }
.finding-opportunity { background: #e0e7ff; }
.finding-opportunity .finding-label { background: var(--accent); color: #fff; }
.finding p { color: var(--text-1); }
.audit-keywords { margin-top: 8px; }
.audit-keywords h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; color: var(--text-2); }
.keyword-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.keyword-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg-cream);
  border-radius: 8px;
  font-size: 0.9rem;
}
.kw-term { font-weight: 500; }
.kw-kgr {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}
.kgr-good { background: #d1fae5; color: #065f46; }
.kgr-ok { background: #fef3cd; color: #975a16; }
.audit-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(91,79,233,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.audit-note p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .audit-card { padding: 24px; }
  .services-grid { grid-template-columns: 1fr !important; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .container { animation: fadeUp 0.7s ease both; }
