/* ── NOGO MEDIA – SHARED DESIGN SYSTEM ── */

:root {
  --bg: #222222;
  --surface: #222222;
  --surface-alt: #252525;
  --text: #d4d4d4;
  --muted: #707070;
  --border: rgba(255,255,255,0.10);
  --accent: #d4d4d4;
  --accent-dim: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.03);
  --text-secondary: rgba(212,212,212,0.76);
  --text-muted: rgba(212,212,212,0.70);
  --font-inter: "Inter", system-ui, -apple-system, sans-serif;
  --font-display-var: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: var(--font-inter);
  --font-display: var(--font-display-var);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.005em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

a { color: var(--accent); text-underline-offset: 2px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgb(134, 239, 172);
  outline-offset: 2px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* H1 — Subpages (default) */
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 1rem; }
/* H2 — Section headings (max 48px, NOT 56px) */
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 0.85rem; }
/* H3 — Card / sub headings */
h3 { font-size: clamp(1.125rem, 1.5vw, 1.35rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 0.65rem; }
/* H4 — Footer/nav section headings */
h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5; }

p { font-size: 1rem; line-height: 1.65; letter-spacing: -0.005em; }
p + p { margin-top: 1rem; }

.type-display-1 { font-family: var(--font-display); font-size: clamp(2.75rem, 5.5vw, 5.5rem); line-height: 0.98; letter-spacing: -0.04em; font-weight: 700; }
.type-display-2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; }
.type-display-3 { font-family: var(--font-display); font-size: clamp(1.125rem, 1.5vw, 1.35rem); line-height: 1.3; letter-spacing: -0.02em; font-weight: 600; }
.type-body { font-size: 1rem; line-height: 1.65; letter-spacing: -0.005em; font-weight: 400; }
.type-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

small,
.section-tag,
.blog-card .blog-tag {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-links a {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.btn-primary,
.btn-secondary,
.nav-cta,
.mobile-menu .mobile-cta,
.roi-reset-btn,
.roi-cta-btn {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nogo-form label {
  font-weight: 600;
  letter-spacing: 0.01em;
}

ul, ol { padding-left: 1.3rem; }
li { font-size: 1.03rem; }
li + li { margin-top: 0.5rem; }

strong { font-weight: 600; }

/* ── LAYOUT WRAPPERS ── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.site-nav .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: rgb(134, 239, 172);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.22); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(134, 239, 172, 0); }
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--text); }

.nav-links a[aria-current="page"] {
  color: rgb(134, 239, 172);
  font-weight: 700;
}

.nav-item-has-submenu {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
}

.nav-item-has-submenu > a {
  display: inline-flex;
  align-items: center;
  transform: translateY(1px);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(20, 20, 20, 0.98);
  box-shadow: 0 18px 34px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1005;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 7px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--text);
  background: var(--accent-dim);
  outline: none;
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu,
.nav-item-has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-cta {
  background: var(--accent) !important;
  color: #111111 !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(240,240,240,0.15) !important;
  transform: translateY(-1px) !important;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(17,17,17,0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.mobile-drawer.active .mobile-overlay { opacity: 1; }

/* Mobile menu drawer */
.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: #222222;
  border-left: 1px solid var(--border);
  z-index: 1;
  padding-top: 5.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -20px 0 36px rgba(0,0,0,0.22);
}

.mobile-drawer.active .mobile-menu { transform: translateX(0); }

.mobile-menu-scroll {
  padding: 0 1.4rem 1.1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.mobile-menu-footer {
  position: sticky;
  bottom: 0;
  background: #222222;
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.4rem calc(0.9rem + env(safe-area-inset-bottom));
}

.mobile-menu .mobile-menu-item,
.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu .mobile-menu-item[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.mobile-menu-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}

.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-chevron {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mobile-accordion-toggle[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  padding-bottom: 0.2rem;
}

.mobile-submenu a {
  padding: 0.75rem 0 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--accent); padding-left: 0.4rem; }

.mobile-menu .mobile-cta {
  background: var(--accent);
  color: #111111 !important;
  text-align: center;
  padding: 1rem !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none !important;
}

.mobile-menu .mobile-cta:hover { padding-left: 0 !important; }

.mobile-contact-info {
  margin-top: 0.8rem;
  border-bottom: none !important;
}

.mobile-contact-info p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.mobile-contact-info a {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  padding: 0.3rem 0 !important;
  border-bottom: none !important;
  color: var(--accent) !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-chevron,
  .mobile-submenu,
  .mobile-overlay,
  .mobile-menu {
    transition: none;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ── CONTENT AREA ── */
.page-content {
  flex: 1;
  padding-top: 5rem; /* offset for fixed nav */
}

/* ── PAGE HERO / HEADER ── */
.page-hero {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: var(--text); }

.page-hero .breadcrumb span { opacity: 0.45; }

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  background: var(--accent-dim);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #111111;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(134, 239, 172, 0.15);
  transform: translateY(-2px);
  color: #111111;
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(240,240,240,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--accent-dim);
  color: var(--text);
  text-decoration: none;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.card h3 { margin-bottom: 0.6rem; }

/* ── SECTIONS ── */
.section-wrap {
  padding: 5rem 0;
}

section {
  border-top: 1px solid rgba(212,212,212,0.10);
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.callout-box {
  background: var(--surface-alt);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.callout-box h2, .callout-box h3 { color: var(--text); }
.callout-box p { color: var(--text-secondary); }
.callout-box .btn-primary {
  background: var(--accent);
  color: #111111;
}
.callout-box .btn-primary:hover { background: #ffffff; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.05);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
  text-decoration: none;
}

.blog-card .blog-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── ARTICLE ── */
.article-wrap {
  max-width: 720px;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: normal;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.article-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.article-body p { margin-bottom: 1.1rem; }

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.article-body a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover { opacity: 0.7; }

.article-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── REGION / SOLUTION PAGE CONTENT ── */
.content-body {
  max-width: 760px;
}

.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.content-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.content-body p { margin-bottom: 1rem; }

.content-body ul, .content-body ol {
  margin: 0.75rem 0 1.25rem;
}

.content-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-cta p { margin: 0; color: var(--text-secondary); }

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list li::before {
  content: '→';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── SOLUTION PAGE ENHANCEMENTS ── */
.hero-subheadline {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.7;
  margin-top: 0.4rem;
}

.hero-value-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.hero-value-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
}

.text-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.feature-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.feature-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  color: var(--text);
}

.flow-diagram {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.flow-diagram svg {
  width: 100%;
  height: auto;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  border-left: 1px solid var(--border);
}

.timeline-list li {
  position: relative;
  padding: 0 0 1.2rem 1.4rem;
}

.timeline-list li::before {
  content: attr(data-step);
  position: absolute;
  left: -0.65rem;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

.checklist li::before {
  content: '•';
  font-weight: 700;
}


.hero-media {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.hero-intro-grid {
  margin-top: 1.5rem;
  align-items: center;
}

.cta-tag-inverse {
  background: transparent;
  border-color: rgba(245,245,245,0.4);
  color: rgba(245,245,245,0.75);
}

.cta-form {
  margin-top: 1.2rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,245,245,0.35);
}

.nogo-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nogo-field {
  display: flex;
  flex-direction: column;
}

.nogo-form label {
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}

.nogo-form input[type="text"],
.nogo-form input[type="email"],
.nogo-form textarea {
  width: 100%;
  background: #0f0f10;
  color: #ffffff;
  border: 1px solid rgba(212,212,212,0.25);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nogo-form input::placeholder,
.nogo-form textarea::placeholder {
  color: rgba(212,212,212,0.45);
}

.nogo-form input:focus,
.nogo-form textarea:focus,
.nogo-form input:focus-visible,
.nogo-form textarea:focus-visible {
  border-color: rgba(212,212,212,0.50);
  box-shadow: 0 0 0 4px rgba(212,212,212,0.08);
  outline: none;
}

.nogo-form textarea {
  min-height: 140px;
  resize: none;
}

.nogo-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
}

@media (hover: hover) {
  .nogo-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(240,240,240,0.12);
  }
}

.nogo-form .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(240,240,240,0.08);
}


@media (max-width: 768px) {
  .nogo-form textarea {
    min-height: 120px;
  }
}
.text-block-spaced {
  margin-top: 1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.35rem;
}

.dashboard-preview {
  margin-top: 1.3rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 1.2rem;
}


.kpi-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.kpi-tile {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-alt);
  padding: 0.85rem;
}

.kpi-tile h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}

.kpi-tile p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.faq-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.inline-links {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .faq-item,
  .btn-primary,
  .btn-secondary,
  .text-link {
    transition: none !important;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { max-width: 280px; }

.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}

.footer-links-group {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeInUp 0.7s ease-out both;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-nav { padding: 1rem 2rem; }
  .site-footer { padding: 3rem 2rem 1.5rem; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links-group { gap: 2rem; }
  .footer-brand { max-width: 100%; }

  h1 { font-size: clamp(1.9rem, 7vw, 2.25rem); }
  h2 { font-size: clamp(1.25rem, 5vw, 1.7rem); }
}

@media (max-width: 640px) {
  .site-nav { padding: 0.9rem 1.2rem; }
  .site-footer { padding: 2.5rem 1.2rem 1.5rem; }

  .page-hero { padding: 3rem 0 2rem; }
  .container { width: min(1120px, 100% - 1.5rem); }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .card-grid { grid-template-columns: 1fr; }
  .blog-card { padding: 1.25rem 1.5rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-links-group { flex-direction: column; gap: 1.5rem; }
}


@media (max-width: 680px) {
  .roi-results {
    grid-template-columns: 1fr;
  }

  .roi-field-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .roi-field input[type="number"] {
    width: 100%;
  }

  .roi-reset-btn,
  .roi-cta-btn {
    width: 100%;
    text-align: center;
  }
}
/* ── PRISMODELL PAGE ── */
.lead-text {
  max-width: 760px;
  color: var(--text-secondary);
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.roi-widget-section {
  margin: 2.25rem 0 2.75rem;
}

.roi-widget-intro {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.roi-widget-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(34,34,34,0.97), rgba(20,20,28,0.95));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  padding: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.roi-widget-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.roi-inputs {
  display: grid;
  gap: 1rem;
}

.roi-field {
  display: grid;
  gap: 0.45rem;
}

.roi-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.roi-field label {
  font-weight: 600;
  font-size: 0.96rem;
}

.roi-field input[type="number"] {
  width: 110px;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  background: var(--surface-alt);
  color: var(--text);
}

.roi-field input[type="text"],
.roi-field input[type="email"],
.roi-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--surface-alt);
  color: var(--text);
}

.roi-field textarea {
  resize: vertical;
}

.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.roi-progress-wrap {
  display: grid;
  gap: 0.45rem;
}

.roi-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.roi-progress-bar {
  height: 100%;
  width: 85%;
  border-radius: inherit;
  background: linear-gradient(90deg, #66d9ff, #6d8dff);
  transition: width 0.2s ease;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.roi-result {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem;
  background: var(--surface-alt);
}

.roi-result-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.roi-result-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #86efac;
  line-height: 1.3;
}

.roi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.roi-reset-btn,
.roi-cta-btn {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.roi-reset-btn {
  background: var(--surface-alt);
  border-color: var(--border);
  color: var(--text);
}

.roi-cta-btn {
  background: var(--accent);
  color: #111111;
}

.roi-disclaimer {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-secondary);
}

.disclaimer-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-list {
  margin: 0.7rem 0 0;
}

@media (max-width: 900px) {
  .two-column-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
