/* ============================================================
   PACTLY.NO — Design System CSS
   Premium Nordic Digital Signing Platform
   Aesthetic: Vipps + Notion + Modern Banking + Nordic Interior
   ============================================================ */


/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ------------------------------------------------------------ */

:root {

  /* --- Colors --- */
  --pactly-midnight: #111827;
  --pactly-blue:     #4F6BFF;
  --nordic-lilac:    #9B8CFF;
  --snow-white:      #FFFFFF;
  --glacier-mist:    #F4F7FB;
  --soft-border:     #E5E7EB;
  --slate-text:      #374151;
  --muted-text:      #6B7280;
  --trust-green:     #1FA971;
  --warning-amber:   #F59E0B;
  --error-red:       #EF4444;

  /* --- Gradients --- */
  --gradient-primary: linear-gradient(135deg, #4F6BFF 0%, #9B8CFF 100%);
  --gradient-bg:      linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);

  /* --- Typography --- */
  --font-family:          'Plus Jakarta Sans', sans-serif;
  --font-weight-regular:  400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;

  /* --- Spacing --- */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* --- Radii --- */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* --- Shadows --- */
  --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md:   0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 60px rgba(79, 107, 255, 0.15), 0 0 120px rgba(155, 140, 255, 0.1);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--slate-text);
  line-height: 1.6;
  background: var(--gradient-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--pactly-blue);
  text-decoration: none;
  transition: color var(--transition-base);
}


/* ------------------------------------------------------------
   3. TYPOGRAPHY CLASSES
   ------------------------------------------------------------ */

.headline-hero {
  font-size: 56px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.02em;
}

.headline-section {
  font-size: 40px;
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
}

.headline-card {
  font-size: 22px;
  line-height: 1.3;
  font-weight: var(--font-weight-semibold);
  color: var(--pactly-midnight);
}

.text-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-text);
}

.text-body-sm {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-text);
}

.text-muted {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-text);
}

.text-label {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-text);
}


/* ------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--glacier {
  background: var(--glacier-mist);
}


/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav--scrolled {
  border-bottom-color: var(--soft-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo-icon {
  height: 88px;
  width: 88px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav__wordmark {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--slate-text);
  transition: color var(--transition-base);
}

.nav__link:hover {
  color: var(--pactly-blue);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
  background: var(--pactly-blue);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 107, 255, 0.35);
  background: #3d5bef;
  color: white;
}

/* --- Mobile Menu Toggle --- */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--pactly-midnight);
  border-radius: 2px;
  transition: all var(--transition-fast);
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background: var(--pactly-blue);
  color: white;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 107, 255, 0.35);
  background: #3d5bef;
  color: white;
}

.btn--secondary {
  background: white;
  color: var(--slate-text);
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--soft-border);
}

.btn--secondary:hover {
  border-color: var(--pactly-blue);
  color: var(--pactly-blue);
}

.btn--sm {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.btn--danger {
  background: var(--error-red);
  color: white;
}


/* ------------------------------------------------------------
   7. CARDS
   ------------------------------------------------------------ */

.card {
  background: var(--snow-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--no-hover:hover {
  box-shadow: none;
  transform: none;
}


/* ------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------ */

.hero {
  padding-top: calc(72px + var(--space-4xl));
  padding-bottom: var(--space-4xl);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__headline {
  font-size: 56px;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.02em;
}

.hero__subheadline {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-text);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__trust-line {
  font-size: 14px;
  color: var(--muted-text);
  max-width: 460px;
}


/* ------------------------------------------------------------
   9. FLOATING DOCUMENT CARD (Hero Visual)
   ------------------------------------------------------------ */

.floating-card {
  position: relative;
}

.floating-card__wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.floating-card__glow {
  position: absolute;
  inset: -40px;
  background: var(--gradient-primary);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(60px);
}

.floating-card__main {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.floating-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.floating-card__icon {
  width: 44px;
  height: 44px;
  background: var(--glacier-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card__title {
  font-weight: var(--font-weight-semibold);
  color: var(--pactly-midnight);
  font-size: 16px;
}

.floating-card__meta {
  font-size: 13px;
  color: var(--muted-text);
}

.floating-card__signers {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.floating-card__signer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: var(--glacier-mist);
  border-radius: var(--radius-md);
}

.signer__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.signer__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: white;
}

.signer__name {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--pactly-midnight);
}

.signer__status {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.signer__status--signed {
  background: rgba(31, 169, 113, 0.1);
  color: var(--trust-green);
}

.signer__status--waiting {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning-amber);
}

.signer__status--invited {
  background: rgba(79, 107, 255, 0.1);
  color: var(--pactly-blue);
}

.floating-card__trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, rgba(79, 107, 255, 0.06) 0%, rgba(155, 140, 255, 0.06) 100%);
  border-radius: var(--radius-md);
}

.trust__icon {
  width: 20px;
  height: 20px;
}

.trust__text {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--pactly-blue);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}


/* ------------------------------------------------------------
   10. STEPS SECTION
   ------------------------------------------------------------ */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.step {
  text-align: center;
  padding: var(--space-lg);
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  margin: 0 auto var(--space-md);
}

.step__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  color: var(--pactly-midnight);
  margin-bottom: var(--space-sm);
}

.step__description {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
}


/* ------------------------------------------------------------
   11. USE CASES SECTION
   ------------------------------------------------------------ */

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.use-case {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.use-case__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.use-case__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.use-case__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  color: var(--pactly-midnight);
  margin-bottom: var(--space-xs);
}

.use-case__description {
  font-size: 14px;
  color: var(--muted-text);
}


/* ------------------------------------------------------------
   12. PRIVACY / TRUST SECTION
   ------------------------------------------------------------ */

.privacy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.trust-point {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.trust-point__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(79, 107, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.trust-point__icon svg {
  width: 24px;
  height: 24px;
  color: var(--pactly-blue);
}

.trust-point__title {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--pactly-midnight);
  margin-bottom: var(--space-xs);
}

.trust-point__description {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
}


/* ------------------------------------------------------------
   13. DISCLAIMER SECTION
   ------------------------------------------------------------ */

.disclaimer__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(79, 107, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.disclaimer__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
}

.disclaimer__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-text);
  margin-top: var(--space-md);
}


/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */

.footer {
  background: var(--pactly-midnight);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo-icon {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__wordmark {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: white;
}

.footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer__column-title {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: white;
}

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__company {
  font-size: 12px;
  color: var(--muted-text);
  margin-top: var(--space-xs);
}

.footer__markets {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__markets span {
  margin: 0 var(--space-sm);
}


/* ------------------------------------------------------------
   15. CTA BANNER
   ------------------------------------------------------------ */

.cta-banner {
  background: var(--gradient-bg);
}

.cta-banner__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--snow-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  opacity: 0.06;
  border-radius: var(--radius-xl);
  z-index: 0;
}

.cta-banner__title {
  position: relative;
  z-index: 1;
}

.cta-banner__description {
  position: relative;
  z-index: 1;
  margin-top: var(--space-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
}


/* ------------------------------------------------------------
   16. SECTION HEADER (Reusable)
   ------------------------------------------------------------ */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-header__label {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
}

.section-header__description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-text);
  margin-top: var(--space-md);
}


/* ------------------------------------------------------------
   16. SCROLL ANIMATIONS
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }


/* ------------------------------------------------------------
   18. TRUST STRIP — COMPACT NORDIC eID GRID
   ------------------------------------------------------------ */

.trust-strip {
  padding: var(--space-xl) 0 var(--space-4xl);
}

.trust-strip__title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.trust-strip__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: var(--snow-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  gap: 0;
  min-height: 156px;
}

.trust-strip__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(79, 107, 255, 0.15);
}

.trust-strip__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.trust-strip__flag {
  font-size: 18px;
  line-height: 1;
}

.trust-strip__country {
  font-size: 14px;
  font-weight: 600;
  color: var(--pactly-midnight);
}

.trust-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: var(--space-sm);
}

.trust-strip__logo img {
  max-height: 67px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Per-provider size normalization */
.trust-strip__card:nth-child(1) .trust-strip__logo img {
  max-height: 67px;
}

.trust-strip__card:nth-child(5) .trust-strip__logo img {
  max-height: 48px; /* FTN — scale down to match others */
}

.trust-strip__logo-brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
  background: var(--glacier-mist);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--soft-border);
}

.trust-strip__badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pactly-blue);
  background: rgba(79, 107, 255, 0.06);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.trust-strip__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted-text);
  margin-top: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ------------------------------------------------------------
   19. CHOOSE HOW TO START
   ------------------------------------------------------------ */

.start-options {
  padding: var(--space-4xl) 0;
}

.start-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.start-option {
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.start-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.start-option:hover::before {
  opacity: 1;
}

.start-option__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(79, 107, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.start-option__icon svg {
  width: 28px;
  height: 28px;
  color: var(--pactly-blue);
  stroke: var(--pactly-blue);
}

.start-option__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pactly-midnight);
  margin-bottom: var(--space-sm);
}

.start-option__description {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.start-option__price {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pactly-blue);
  background: rgba(79, 107, 255, 0.06);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.start-options__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted-text);
  margin-top: var(--space-xl);
  font-weight: 500;
}


/* ------------------------------------------------------------
   20a. PRICING SECTION
   ------------------------------------------------------------ */

.pricing {
  padding: var(--space-4xl) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.pricing__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl);
  text-align: left;
}

.pricing__card-header {
  margin-bottom: var(--space-md);
}

.pricing__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pactly-midnight);
  margin-bottom: var(--space-xs);
}

.pricing__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--pactly-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pricing__price-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-text);
}

.pricing__card-description {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  flex: 1;
}

.pricing__features li {
  font-size: 14px;
  color: var(--slate-text);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231FA971' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

.pricing__card-footer {
  margin-top: auto;
}

.pricing__examples {
  margin-top: var(--space-2xl);
  text-align: center;
}

.pricing__examples-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing__examples-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.pricing__example {
  font-size: 14px;
  color: var(--slate-text);
  background: rgba(79, 107, 255, 0.04);
  border: 1px solid var(--soft-border);
  padding: 8px 20px;
  border-radius: 100px;
}

.pricing__example strong {
  color: var(--pactly-midnight);
  font-weight: 700;
}

.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted-text);
  margin-top: var(--space-xl);
  font-weight: 500;
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------
   20. PACTLY FOR BEDRIFTER
   ------------------------------------------------------------ */

.bedrifter {
  padding: var(--space-4xl) 0;
}

.bedrifter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.bedrifter__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bedrifter__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pactly-blue);
}

.bedrifter__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--pactly-midnight);
  letter-spacing: -0.01em;
}

.bedrifter__description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-text);
  max-width: 440px;
}

.bedrifter__visual {
  background: var(--glacier-mist);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bedrifter__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.bedrifter__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--snow-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.bedrifter__feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pactly-blue);
}

.bedrifter__feature-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--pactly-midnight);
  padding-top: 8px;
}


/* ------------------------------------------------------------
   21. SIGNER EID BADGES
   ------------------------------------------------------------ */

.signer__eid {
  display: flex;
  align-items: center;
  gap: 6px;
}

.signer__eid-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-text);
  background: var(--snow-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius-pill);
  padding: 1px 8px;
  white-space: nowrap;
}

.signer__country-flag {
  font-size: 14px;
  line-height: 1;
}


/* ============================================================
   17. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {

  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .start-options__grid {
    max-width: 700px;
  }

  .bedrifter__inner {
    gap: var(--space-2xl);
  }
}


/* ============================================================
   18. RESPONSIVE — MOBILE LANDSCAPE (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {

  /* --- Typography scaling --- */
  .headline-hero {
    font-size: 36px;
  }

  .headline-section {
    font-size: 28px;
  }

  .section-header__title {
    font-size: 28px;
  }

  .disclaimer__title {
    font-size: 26px;
  }

  /* --- Layout --- */
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .nav__inner {
    padding: 0 var(--space-md);
  }

  /* --- Navigation — mobile --- */
  .nav__links {
    display: none;
  }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--soft-border);
    box-shadow: var(--shadow-md);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* --- Hero — stacked --- */
  .hero {
    padding-top: 180px !important;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust-line {
    margin: 0 auto;
  }

  /* --- Steps grid — single column --- */
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* --- Use cases — single column --- */
  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  /* --- Privacy — single column --- */
  .privacy__grid {
    grid-template-columns: 1fr;
  }

  /* --- Footer — single column --- */
  .footer__inner {
    grid-template-columns: 1fr;
  }

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

  .start-options__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .bedrifter__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bedrifter__description {
    margin-left: auto;
    margin-right: auto;
  }

  .bedrifter__title {
    font-size: 28px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .trust-strip__card {
    min-height: 140px;
    padding: var(--space-md) var(--space-sm);
  }
}


/* ============================================================
   19. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {

  .headline-hero {
    font-size: 30px;
  }

  .headline-section,
  .section-header__title {
    font-size: 24px;
  }

  .disclaimer__title {
    font-size: 22px;
  }

  .text-body,
  .section-header__description,
  .disclaimer__text {
    font-size: 16px;
  }

  .hero__subheadline {
    font-size: 16px;
  }

  .hero {
    padding-top: 200px !important;
    padding-bottom: var(--space-3xl);
  }

  .btn--primary,
  .btn--secondary {
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .floating-card__main {
    padding: var(--space-lg);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }

  .trust-strip__card {
    min-height: 130px;
    padding: var(--space-sm);
  }

  .trust-strip__logo img {
    max-height: 36px;
  }

  .trust-strip__card:nth-child(1) .trust-strip__logo img {
    max-height: 40px;
  }

  .trust-strip__card:nth-child(2) .trust-strip__logo img {
    max-height: 52px;
  }

  .trust-strip__card:nth-child(5) .trust-strip__logo img {
    max-height: 26px;
  }

  .bedrifter__title {
    font-size: 24px;
  }
}
