/* Shared styles for /seo/* and /no/seo/* landing pages.
   Linked from all English and Norwegian SEO pages.
*/

:root {
  --bg: #1e1c28;
  --bg2: #252333;
  --bg3: #2e2c3e;
  --orange: #FF6B2B;
  --orange-soft: rgba(255, 107, 43, 0.12);
  --orange-border: rgba(255, 107, 43, 0.35);
  --cream: #F4F0E8;
  --muted: rgba(244, 240, 232, 0.6);
  --dim: rgba(244, 240, 232, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav img {
  height: 44px;
  width: auto;
}

.top-nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.top-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.82rem !important;
}

.btn-nav:hover {
  background: #e55a1f !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 43, 0.14) 0%, transparent 70%);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #e55a1f;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--orange-border);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  background: var(--bg2);
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.stat-l {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.4rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-item i {
  color: var(--orange);
}

.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-sm {
  padding: 2rem 2rem;
}

.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.s-h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.s-h em {
  color: var(--orange);
  font-style: italic;
}

.s-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.stack-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border-color 0.2s, background 0.2s;
}

.stack-chip:hover {
  border-color: var(--orange-border);
  background: var(--orange-soft);
}

.stack-chip i {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stack-chip span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.p-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.p-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange-border);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.p-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.p-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.content-rich {
  max-width: 800px;
}

.content-rich h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin: 2.4rem 0 0.8rem;
}

.content-rich h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin: 1.8rem 0 0.6rem;
}

.content-rich p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-rich ul {
  list-style: none;
  margin: 0.8rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-rich ul li {
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.6;
}

.content-rich ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

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

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--orange-border);
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.cta-strip {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.15) 0%, rgba(255, 107, 43, 0.04) 100%);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.cta-strip p {
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.related-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.related-link i {
  color: var(--orange);
  font-size: 0.85rem;
}

.related-link:hover {
  border-color: var(--orange-border);
  background: var(--orange-soft);
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: 1060px;
  margin: 0 auto;
}

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 1.6rem 2rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--dim);
}

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

.footer-links a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.lang-toggle a {
  color: rgba(244, 240, 232, 0.7);
  text-decoration: none;
  padding: 0.32rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-toggle a.active {
  background: #FF6B2B;
  color: #fff;
}

@media (max-width: 767px) {
  .top-nav {
    padding: 0.8rem 1.2rem;
  }

  .hero {
    padding: 3.5rem 1.2rem 3rem;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3.5rem 1.2rem;
  }

  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-strip {
    padding: 2rem 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar {
    gap: 1rem;
    padding: 1rem 1.2rem;
  }
}
