
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/opensans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/opensans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/opensans-600.woff2') format('woff2');
}

  :root {
    --bg-dark: #1C1C1C;
    --surface: #2D2D2D;
    --grey-secondary: #605C5B;
    --accent-rose: #C9A887;
    --accent-light: #D4B896;
    --accent-gold: #B89968;
    --text-light: #E8E8E8;
    --text-muted: #B0B0B0;
  }

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

  @page {
    size: A4;
    margin: 0;
  }

  body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  .page {
    width: 210mm;
    min-height: 297mm;
    max-height: 297mm;
    margin: 0 auto;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* Subtle geometric accent – top-right corner */
  .page::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 168, 135, 0.08);
    border-radius: 50%;
  }
  .page::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(201, 168, 135, 0.05);
    border-radius: 50%;
  }

  /* ─── HEADER ─── */

.header {
    padding: 28px 40px 16px;
    position: relative;
  }
  
  .badge {
    position: absolute;
    top: 28px;
    right: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-rose);
    border: 1px solid rgba(201, 168, 135, 0.3);
    padding: 4px 12px;
    border-radius: 3px;
  }

/* Heading reset (semantic h1/h2 tags ska behålla styling från klasser) */
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: inherit; font-size: inherit; }

  
.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 8px;
  }

  .title span {
    color: var(--accent-rose);
  }

  .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 520px;
  }

  /* ─── MAIN CONTENT ─── */
  .content {
    padding: 0 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 4px;}

  /* Challenge bar */
  .challenge-bar {
    background: var(--surface);
    border-radius: 4px;
    padding: 18px 24px;
    border-left: 3px solid var(--accent-rose);
  }

  .challenge-bar .section-label {
    margin-bottom: 10px;
  }

  .challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 32px;
  }

  .challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--text-light);
  }

  .challenge-item::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-rose);
    border-radius: 1px;
    margin-top: 5px;
    transform: rotate(45deg);
  }

  /* Section label */
  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-rose);
  }

  /* Two-column sections */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .col-card {
    background: var(--surface);
    border-radius: 4px;
    padding: 20px 22px;
    position: relative;
  }

  .col-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 4px 4px 0 0;
    opacity: 0.5;
  }

  .col-card .section-label {
    margin-bottom: 12px;
  }

  .item-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .item-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-light);
  }

  .item-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: rgba(201, 168, 135, 0.1);
    margin-top: 0px;
  }

  .item-icon svg {
    width: 12px;
    height: 12px;
  }

  /* Value section */
  .value-section {
    background: linear-gradient(135deg, rgba(201, 168, 135, 0.08), rgba(184, 153, 104, 0.04));
    border: 1px solid rgba(201, 168, 135, 0.15);
    border-radius: 4px;
    padding: 20px 24px;
  }

  .value-section .section-label {
    margin-bottom: 14px;
  }

  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }

  .value-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .value-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--accent-rose);
    line-height: 1;
    flex-shrink: 0;
    width: 22px;
  }

  .value-text {
    font-size: 11px;
    line-height: 1.5;
  }

  .value-text strong {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1px;
  }

  .value-text span {
    color: var(--text-muted);
    font-size: 10.5px;
  }

  /* CTA bar */
  .cta-bar {
    background: var(--surface);
    border-radius: 4px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(201, 168, 135, 0.12);
  }

  .cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .cta-arrow {
    color: var(--accent-rose);
    font-size: 16px;
  }

  .cta-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-light);
  }

  .cta-sub {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 1px;
  }

  .cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
  }

  /* ─── RELATED SERVICES ─── */
  .related-services {
    padding: 28px 40px 24px;
    border-top: 1px solid rgba(201, 168, 135, 0.12);
    margin-top: 24px;
  }

  .related-services .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-rose);
    margin-bottom: 14px;
  }

  .related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px 20px;
  }

  .related-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
  }

  .related-list a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .related-list a:hover,
  .related-list a:focus {
    color: var(--accent-light);
    border-bottom-color: var(--accent-rose);
  }

  /* ─── FOOTER ─── */
  .footer {
    padding: 16px 40px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .footer-tagline {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 10px;
    color: var(--grey-secondary);
  }

  .footer-contact {
    font-size: 10px;
    color: var(--text-muted);
  }

  .footer-contact a {
    color: var(--accent-light);
    text-decoration: none;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .footer-nav li {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    color: var(--text-muted);
  }

  .footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
  }

  .footer-nav a:hover,
  .footer-nav a:focus {
    color: var(--accent-light);
  }

  .footer-right {
    text-align: right;
  }

  .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--grey-secondary);
    text-transform: uppercase;
  }

  .footer-url {
    font-size: 9px;
    color: var(--grey-secondary);
    letter-spacing: 0.5px;
  }

  /* Thin bottom accent line */
  .bottom-line {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-rose), var(--accent-gold), transparent);
  }

  @media screen and (max-width: 375px) {
    .nav-inner { padding: 0 16px; height: 64px; }
    .nav-open .nav-links { top: 64px; padding: 20px 16px 24px; }
  }

  @media print {
    body { background: var(--bg-dark); }
    .page { margin: 0; box-shadow: none; }
  }

  /* ─── SITE NAV (screen only) ─── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 135, 0.1);
  }
  .nav-inner {
    max-width: 1140px; margin: 0 auto; padding: 0 40px;
    height: 72px; display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-logo img { height: 30px; width: auto; }
  .nav-tagline {
    font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 8px;
    letter-spacing: 2px; color: var(--accent-rose); text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a {
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500;
    color: var(--text-muted); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent-rose); }
  .lang-switch {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
    color: var(--text-muted); text-decoration: none; letter-spacing: 1px;
    border: 1px solid rgba(201,168,135,0.2); padding: 4px 10px; border-radius: 3px;
  }
  .lang-switch:hover { border-color: var(--accent-rose); color: var(--accent-rose); }
  .nav-cta {
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
    color: var(--bg-dark) !important;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
    padding: 10px 24px; border-radius: 4px; text-decoration: none; transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.9; }
  .nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 200; position: relative;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px; background: var(--text-light);
    margin: 5px 0; transition: all 0.3s ease;
  }
  .nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── SCREEN OPTIMIZED ─── */
  @media screen {
    body { padding-top: 72px; }
    .page {
      width: 100%; max-width: 900px;
      min-height: auto; max-height: none;
      margin: 24px auto;
      border-radius: 8px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
      border: 1px solid rgba(201, 168, 135, 0.06);
    }
.content { padding: 0 44px;
    margin-top: 4px;}
    .footer { padding: 20px 44px 28px; }
  }


  @media screen and (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: block; }
    .nav-open .nav-links {
      display: flex; flex-direction: column; position: absolute;
      top: 72px; left: 0; right: 0; background: rgba(28, 28, 28, 0.98);
      backdrop-filter: blur(12px); padding: 24px 40px 32px; gap: 0;
      border-bottom: 1px solid rgba(201,168,135,0.15);
    }
    .nav-open .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(201,168,135,0.06); }
    .nav-open .nav-links li:last-child { border-bottom: none; padding-top: 16px; }
    .nav-open .nav-links a { font-size: 15px; color: var(--text-light); }
    .nav-open .nav-links .lang-switch { display: inline-block; margin-top: 4px; }
  }
  @media screen and (max-width: 768px) {
    .nav-inner { padding: 0 24px; }
    .nav-open .nav-links { padding: 24px 24px 32px; }
    .nav-inner { padding: 0 24px; }
    .page { margin: 16px auto; border-radius: 0; }
.content { padding: 0 24px;
    margin-top: 4px;}
    .footer { padding: 16px 24px 24px; }
    .two-col { grid-template-columns: 1fr; }
    .challenge-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
  }

  @media screen and (max-width: 375px) {
    .nav-inner { padding: 0 16px; height: 64px; }
    .nav-open .nav-links { top: 64px; padding: 20px 16px 24px; }
  }

  @media print {
    .nav { display: none !important; }
    body { padding-top: 0; }
    .page {
      width: 210mm; min-height: 297mm; max-height: 297mm;
      margin: 0; border-radius: 0; box-shadow: none; border: none;
    }
  }

