/* Landing Page Styles
   Redesign 2026-06 — based on design handoff "Digicard Landing".
   Typography is centralized in tokens below; change weights/sizes in one place. */

/* ===== Self-hosted font (variable: weights 200–800, we use 400–700) ===== */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== Design tokens ===== */
:root {
  /* Typography — revamped scale (display 700, headings 600–700, buttons/nav 600) */
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-display: 700;
  --fw-heading: 700;
  --fw-subheading: 600;
  --fw-button: 600;
  --fw-body: 400;
  --fw-label: 500;
  --fw-micro: 600;
  --text-h1: 57px;
  --text-h2: 38px;
  --text-h3: 18px;
  --text-body: 17px;
  --text-small: 14.5px;
  --lh-body: 1.65;
  --ls-display: -0.02em;

  /* Colors */
  --teal: #2aa39a;
  --teal-deep: #17777e;
  --teal-dark: #1d6a78;
  --grad-btn: linear-gradient(135deg, #47b89f, #2a948c);
  --ink: #1b2433;
  --ink-soft: #3c4554;
  --body-color: #56606e;
  --muted: #7a8492;
  --muted-light: #94a0ab;
  --navy: #1a1a2e;
  --gold: #c9a226;
  --grad-gold: linear-gradient(135deg, #e3c14f, #c9a226);
  --green-ok: #1c7c46;
}

/* Reset for landing */
#landing-page {
  background: #ffffff;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Marketing pages share these styles via body class or #landing-page */
body.landing-body {
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Container */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(29, 36, 51, 0.07);
}

.landing-nav .landing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.landing-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.landing-logo-img {
  height: 36px;
  width: auto;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: var(--fw-button);
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.landing-nav-links a:hover {
  color: var(--teal-deep);
}

.nav-link-login {
  color: var(--teal) !important;
  font-weight: var(--fw-button) !important;
}

.nav-link-login:hover {
  color: var(--teal-deep) !important;
}

.btn-nav {
  background: var(--grad-btn);
  color: white !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: var(--fw-button);
  font-size: 14.5px;
  box-shadow: 0 8px 18px -6px rgba(42, 148, 140, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -6px rgba(42, 148, 140, 0.55);
}

.btn-nav:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  text-decoration: none !important;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
  margin-left: -16px;
  margin-right: -16px;
}

.lang-switch:hover {
  background: #f1f5f9;
  transform: scale(1.1);
}

/* Mobile controls container (flag + hamburger) */
.mobile-controls {
  display: none;
  align-items: center;
  gap: 4px;
}

/* Mobile language switch (next to hamburger) */
.mobile-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 22px;
  text-decoration: none !important;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-lang-switch:hover {
  background: #f1f5f9;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.2s;
}

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

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

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

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: var(--fw-label);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu .btn-nav {
  text-align: center;
  margin-top: 8px;
}

/* ===== Hero ===== */
.hero {
  padding: 138px 0 72px;
  background: linear-gradient(168deg, #f8fcfa 0%, #eef7f3 52%, #e8f2f6 100%);
  overflow: hidden;
  position: relative;
}

.hero .landing-container {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d8efe7;
  color: #14756f;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: var(--fw-subheading);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  flex: none;
}

.hero h1 {
  font-size: var(--text-h1);
  font-weight: var(--fw-display);
  line-height: 1.08;
  letter-spacing: var(--ls-display);
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--body-color);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 480px;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-btn);
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: var(--fw-button);
  text-decoration: none;
  box-shadow: 0 14px 30px -8px rgba(42, 148, 140, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -8px rgba(42, 148, 140, 0.6);
}

.btn-hero:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--teal-deep);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: var(--fw-button);
  text-decoration: none;
  border: 1.5px solid #cfe0dc;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-hero-secondary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Hero meta row: App Store badge + trust line */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.appstore-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.appstore-badge:hover {
  transform: translateY(-2px);
}

.appstore-badge img {
  height: 48px;
  width: auto;
  display: block;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: var(--fw-subheading);
  color: var(--green-ok);
}

.hero-trust svg {
  flex: none;
}

/* ===== Hero phone (3D-tilted) ===== */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-scene {
  position: relative;
  width: 440px;
  height: 660px;
  perspective: 1700px;
}

.phone-blob {
  position: absolute;
  right: -60px;
  top: 30px;
  width: 540px;
  height: 560px;
  background: linear-gradient(135deg, #c2e8de 0%, #cde4f0 100%);
  border-radius: 44% 56% 52% 48% / 46% 42% 58% 54%;
  opacity: 0.75;
  pointer-events: none;
}

.phone-floor {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 46, 56, 0.32), rgba(14, 46, 56, 0));
  filter: blur(7px);
}

.phone-tilt {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 420px;
  transform: translateX(-53%) rotateY(-17deg) rotateX(4deg) rotate(1.5deg) scale(0.73);
  transform-origin: top center;
}

/* Phone bezel (dark titanium) */
.dc-phone {
  border-radius: 62px;
  padding: 9px;
  background: linear-gradient(155deg, #434b66 0%, #171b2b 45%, #2a3047 100%);
  box-shadow: 0 60px 110px -35px rgba(14, 44, 54, 0.5), 0 24px 48px -24px rgba(14, 44, 54, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 -1px 1px rgba(0, 0, 0, 0.4);
}

.dc-phone-screen {
  width: 402px;
  height: 874px;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #19191b 0%, #0e0e10 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 0 26px;
  box-sizing: border-box;
}

.dc-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 37px;
  border-radius: 24px;
  background: #000;
  z-index: 50;
}

.dc-statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 21px 24px 19px;
  z-index: 10;
}

.dc-statusbar .dc-time {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: var(--fw-subheading);
  color: #fff;
  padding-top: 1.5px;
}

.dc-statusbar .dc-status-icons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.dc-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 139px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 60;
  pointer-events: none;
}

/* Card content on the phone */
.dc-card-avatar {
  display: flex;
  justify-content: center;
  padding-top: 68px;
}

.dc-card-avatar img {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 16px 44px rgba(0, 0, 0, 0.65);
  object-fit: cover;
  display: block;
}

.dc-card-id {
  text-align: center;
  margin-top: 14px;
}

.dc-card-name {
  font-size: 24px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.3px;
  color: #ffffff;
  line-height: 1.15;
}

.dc-card-title {
  font-size: 15px;
  font-weight: var(--fw-subheading);
  color: #dfae45;
  margin-top: 4px;
}

.dc-card-company {
  font-size: 13.5px;
  font-weight: var(--fw-label);
  color: #98989f;
  margin-top: 3px;
}

.dc-card-tagline {
  font-size: 13.5px;
  font-weight: var(--fw-body);
  color: #b7b7be;
  margin-top: 12px;
}

.dc-card-rows {
  margin-top: 14px;
}

.dc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dc-row:last-child {
  border-bottom: none;
}

.dc-row-icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: #242428;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8e8ea;
  font-size: 15px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.5px;
}

.dc-row-label {
  font-size: 10px;
  font-weight: var(--fw-micro);
  letter-spacing: 1.2px;
  color: #8b8b93;
}

.dc-row-value {
  font-size: 15px;
  font-weight: var(--fw-subheading);
  color: #e2b14c;
  margin-top: 1px;
  white-space: nowrap;
}

.dc-card-btn {
  height: 50px;
  flex: none;
  margin-top: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8bd55, #d6a53c);
  box-shadow: 0 12px 28px -10px rgba(214, 165, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: var(--fw-subheading);
}

.dc-card-section {
  font-size: 14.5px;
  font-weight: var(--fw-subheading);
  color: #ffffff;
  margin-top: 18px;
}

.dc-card-spacer {
  flex: 1;
}

.dc-card-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 36px;
}

.dc-card-qr-box {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dc-card-qr-box img {
  width: 82px;
  height: 82px;
  display: block;
}

.dc-card-qr-caption {
  font-size: 11px;
  font-weight: var(--fw-label);
  color: #8b8b93;
  margin-top: 9px;
}

/* ===== Section header (shared) ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-size: var(--text-h2);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #1d2433;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-header p {
  font-size: 17px;
  color: #5b6472;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 88px 0;
  background: linear-gradient(180deg, #eef5fd 0%, #e2eefa 100%);
}

.testimonials .section-header {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 32px -12px rgba(30, 60, 90, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -16px rgba(30, 60, 90, 0.18);
}

.testimonial-stars {
  color: #f6b51e;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 15px;
  color: #404a58;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3a9ea7, #1d6a78);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-heading);
  font-size: 17px;
  flex: none;
}

.testimonial-author strong {
  display: block;
  color: #1b2230;
  font-size: 15px;
  font-weight: var(--fw-heading);
}

.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--fw-label);
}

.testimonials-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #25415f;
  border: 1px solid #d3e0ee;
  border-radius: 12px;
  font-weight: var(--fw-button);
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 16px -8px rgba(30, 60, 90, 0.15);
  transition: transform 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ===== Features ===== */
.features {
  padding: 96px 0;
  background: #fbfcfc;
  scroll-margin-top: 74px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #eef1f3;
  box-shadow: 0 4px 14px -8px rgba(25, 60, 70, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(25, 60, 70, 0.16);
}

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(71, 184, 159, 0.16), rgba(29, 106, 120, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: var(--text-h3);
  font-weight: var(--fw-subheading);
  color: #1b2230;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: var(--text-small);
  color: #5b6472;
  line-height: 1.65;
}

/* ===== How it Works ===== */
.how-it-works {
  padding: 96px 0;
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 17%;
  right: 17%;
  border-top: 2px dashed #c8ded9;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #47b89f, #2a8f8a);
  box-shadow: 0 12px 26px -8px rgba(42, 148, 140, 0.55);
  color: white;
  font-size: 24px;
  font-weight: var(--fw-heading);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: var(--text-h3);
  font-weight: var(--fw-subheading);
  color: #1b2230;
  margin-bottom: 8px;
}

.step p {
  font-size: var(--text-small);
  color: #5b6472;
  line-height: 1.6;
  max-width: 230px;
}

/* ===== Pricing ===== */
.pricing {
  padding: 96px 0 110px;
  background: linear-gradient(180deg, #fbfcfc, #f2f8f6);
  scroll-margin-top: 74px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #e4f7eb;
  border: 1px solid #bfe8cd;
  color: var(--green-ok);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: var(--fw-subheading);
  font-size: 14px;
  margin-top: 20px;
}

.trial-icon {
  display: inline-flex;
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.pricing-grid-three {
  grid-template-columns: 1fr 1.06fr 1.06fr;
  max-width: 1180px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 28px -16px rgba(25, 60, 70, 0.12);
  margin-top: 18px;
}

.pricing-featured {
  background: linear-gradient(165deg, #36a39e 0%, #2a8094 55%, #266583 100%);
  border: none;
  border-radius: 24px;
  padding: 42px 34px 38px;
  box-shadow: 0 34px 70px -22px rgba(38, 101, 131, 0.55);
  color: #ffffff;
  margin-top: 0;
}

.pricing-featured .pricing-header h3,
.pricing-featured .pricing-price,
.pricing-featured .pricing-price span,
.pricing-featured .pricing-features li {
  color: white;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #15202b;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: var(--fw-subheading);
  box-shadow: 0 8px 18px -6px rgba(10, 25, 35, 0.5);
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: var(--fw-heading);
  color: #1b2230;
  margin-bottom: 10px;
}

.pricing-featured .pricing-header h3 {
  font-size: 22px;
}

.pricing-price {
  font-size: 46px;
  font-weight: var(--fw-heading);
  letter-spacing: -1.5px;
  color: #1b2230;
  margin-bottom: 4px;
}

.pricing-featured .pricing-price {
  font-size: 50px;
}

/* Engelska sidans belopp ligger i en egen span (valutaväxlaren skriver om
   den) — den ska ärva den stora prisstilen, inte suffix-stilen nedan. */
.pricing-price .pricing-amount {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* Suffix-regeln (.pricing-price span) slår annars beloppet med högre
   specificitet — sätt kortens beloppsfärger uttryckligen */
.pricing-featured .pricing-price .pricing-amount {
  color: #ffffff;
}

.pricing-business .pricing-price .pricing-amount {
  color: var(--gold);
}

.pricing-price span {
  font-size: 15px;
  font-weight: var(--fw-subheading);
  letter-spacing: 0;
  color: var(--muted);
}

.pricing-featured .pricing-price span {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-monthly {
  font-size: 13.5px;
  font-weight: var(--fw-label);
  color: var(--muted-light);
  margin-bottom: 18px;
}

.pricing-featured .pricing-monthly {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-description {
  font-size: var(--text-small);
  color: #5b6472;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing-featured .pricing-description {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-note {
  font-size: 13.5px;
  color: #8a93a0;
  margin-bottom: 22px;
  line-height: 1.6;
  font-style: italic;
}

.pricing-featured .pricing-note {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features {
  list-style: none;
  margin-bottom: 18px;
  text-align: left;
}

.pricing-features li {
  padding: 11px 0;
  border-top: 1px solid #eef1f3;
  font-size: var(--text-small);
  font-weight: var(--fw-label);
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li:last-child {
  border-bottom: 1px solid #eef1f3;
}

.li-check {
  color: var(--teal);
  font-weight: var(--fw-heading);
  flex: none;
}

.pricing-featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-featured .li-check {
  color: #ffffff;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
  height: 50px;
  background: transparent;
  color: var(--teal-deep);
  border-radius: 13px;
  font-size: 15px;
  font-weight: var(--fw-button);
  text-decoration: none;
  transition: background 0.15s ease;
  border: 1.5px solid var(--teal);
}

.btn-pricing:hover {
  background: rgba(42, 163, 154, 0.07);
}

.btn-pricing:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-pricing-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: white;
  color: var(--teal-dark);
  border-radius: 13px;
  font-size: 15.5px;
  font-weight: var(--fw-heading);
  text-decoration: none;
  /* Mjuk, centrerad skugga — den gamla 12px-offseten skapade en mörk halo
     under knappen som fick den att se ocentrerad ut mot mörk kortbakgrund */
  box-shadow: 0 4px 18px -6px rgba(10, 30, 40, 0.35);
  margin-top: 24px;
  transition: transform 0.15s ease;
}

.btn-pricing-featured:hover {
  transform: translateY(-2px);
}

.btn-pricing-featured:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Business Pro Styling */
.pricing-business {
  background: #fffdf6;
  border: 2px solid #d9b53a;
  box-shadow: 0 14px 34px -18px rgba(160, 125, 20, 0.3);
}

.pricing-badge-business {
  background: var(--grad-gold);
  color: #2b2408;
  box-shadow: none;
  font-weight: var(--fw-heading);
}

.pricing-business .pricing-header h3 {
  color: #1b2230;
}

.pricing-business .pricing-price {
  color: var(--gold);
}

.pricing-business .pricing-price span {
  color: var(--muted);
}

.pricing-business .pricing-features li {
  border-color: #f0e8cf;
}

.pricing-business .pricing-features li.feature-highlight {
  color: #a9851a;
  font-weight: var(--fw-heading);
}

.pricing-business .pricing-features li.feature-highlight .li-check {
  color: var(--gold);
}

.pricing-addon {
  font-size: 13.5px;
  color: #6b5d22;
  margin-bottom: 18px;
  line-height: 1.55;
  padding: 14px 18px;
  background: #faf3dc;
  border-radius: 12px;
  text-align: left;
}

.btn-pricing-business {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
  height: 50px;
  background: var(--grad-gold);
  color: #2b2408;
  border-radius: 13px;
  font-size: 15px;
  font-weight: var(--fw-heading);
  text-decoration: none;
  box-shadow: 0 12px 26px -10px rgba(160, 125, 20, 0.45);
  transition: transform 0.15s ease;
}

.btn-pricing-business:hover {
  transform: translateY(-2px);
}

.btn-pricing-business:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Responsive pricing grid */
@media (max-width: 992px) {
  .pricing-grid-three {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card {
    margin-top: 18px;
  }
}

/* ===== Social Proof (client logos) ===== */
.social-proof {
  padding: 88px 0;
  background: #ffffff;
}

.social-proof .section-header {
  max-width: 520px;
}

.social-proof .section-header h2 {
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.25;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.logo-strip img {
  height: auto;
  max-height: 56px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.logo-strip img:hover {
  opacity: 1;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(120deg, #2fa195 0%, #27758b 55%, #1d4e6b 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: 42px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.033em;
  color: white;
  margin-bottom: 16px;
  text-wrap: balance;
}

.final-cta p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.final-cta .btn-hero {
  background: white;
  color: #1d4e6b;
  border-radius: 13px;
  padding: 16px 36px;
  font-weight: var(--fw-heading);
  box-shadow: 0 16px 36px -12px rgba(8, 30, 42, 0.45);
}

.final-cta .btn-hero:hover {
  box-shadow: 0 20px 42px -12px rgba(8, 30, 42, 0.5);
}

/* ===== Footer ===== */
.landing-footer {
  background: var(--navy);
  padding: 64px 0 0;
  scroll-margin-top: 74px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  color: white;
  max-width: 420px;
}

.footer-logo {
  color: white;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--fw-body);
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--fw-button);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.footer-badge #celink210,
.funnel-certification-badge #celink211 {
  font-size: 0;
  line-height: 0;
  min-width: 80px;
  min-height: 80px;
}

.footer-badge #celink210 img,
.funnel-certification-badge #celink211 img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.footer-badge-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
  max-width: 360px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-align: center;
}

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

.footer-column h4 {
  color: white;
  font-size: 14px;
  font-weight: var(--fw-subheading);
  margin-bottom: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 46px;
  }

  .phone-scene {
    width: 380px;
  }
}

@media (max-width: 992px) {
  .hero .landing-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-scene {
    width: 340px;
    height: 520px;
  }

  .phone-blob {
    right: -40px;
    width: 420px;
    height: 440px;
  }

  .phone-tilt {
    transform: translateX(-53%) rotateY(-17deg) rotateX(4deg) rotate(1.5deg) scale(0.56);
  }

  .phone-floor {
    width: 250px;
    bottom: 8px;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }

  .mobile-controls {
    display: flex;
  }

  .hero {
    padding: 110px 0 56px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: 14px;
  }

  .phone-scene {
    width: 290px;
    height: 440px;
  }

  .phone-blob {
    width: 340px;
    height: 360px;
    right: -30px;
    top: 20px;
  }

  .phone-tilt {
    transform: translateX(-53%) rotateY(-17deg) rotateX(4deg) rotate(1.5deg) scale(0.47);
  }

  .phone-floor {
    width: 200px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .social-proof .section-header h2 {
    font-size: 26px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

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

  .footer-badge-text {
    max-width: 100%;
  }

  .footer-links {
    gap: 16px;
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    max-width: 100%;
    padding: 0 20px;
  }

  .logo-strip img {
    max-height: 44px;
    max-width: 120px;
  }
}

/* ===== Subpages (Om oss, Kontakt — design handoff "subpages") ===== */
.subpage-hero {
  background: linear-gradient(120deg, #2fa195 0%, #27758b 55%, #1d4e6b 100%);
  padding: 154px 32px 88px; /* 74px fixed nav + 80px design padding */
  text-align: center;
}

.subpage-hero h1 {
  font-size: 46px;
  font-weight: var(--fw-display);
  letter-spacing: -0.033em;
  color: #ffffff;
  margin: 0;
}

.subpage-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 16px auto 0;
  max-width: 530px;
}

/* FAQ accordion (native details/summary) */
.faq-accordion {
  max-width: 760px;
  margin: 40px auto 0;
  background: #ffffff;
  border: 1px solid #eef1f3;
  border-radius: 20px;
  padding: 24px 28px 8px;
  box-shadow: 0 6px 20px -12px rgba(25, 60, 70, 0.1);
}

.faq-cat-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: var(--fw-heading);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 18px;
}

.faq-cat-label:first-child {
  margin-top: 0;
}

.faq-accordion details {
  border-bottom: 1px solid #eef1f3;
}

.faq-accordion details:last-child {
  border-bottom: none;
}

.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: var(--fw-heading);
  color: #1b2230;
  list-style: none;
  transition: color 0.15s ease;
}

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

.faq-accordion summary:hover {
  color: var(--teal-deep);
}

.faq-accordion .faq-plus {
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex: none;
  transition: transform 0.2s ease;
}

.faq-accordion details[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-accordion details > p,
.faq-accordion .faq-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #56606e;
  margin: 0;
  padding: 0 32px 17px 0;
}

/* Answers wrapped in .faq-body may contain block HTML (<p>, <strong>, <a>) */
.faq-accordion .faq-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #56606e;
}

/* ===== Subpage content blocks (Om oss / About + CMS pages) =====
   Shared by the CMS template (page.html) and the standalone English about
   page. Markup: <main class="page-main"><div class="page-content"> … with
   .page-hero / .about-section / .features-grid / .feature-item / .cta-section
   / .faq-list. */
.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 84px 24px 72px; /* 74px fixed nav + spacing */
  min-height: calc(100vh - 200px);
}

.page-content h1 {
  font-size: 32px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #1b2230;
}

.page-content h2 {
  font-size: 27px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.7px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1b2230;
}

.page-content h3 {
  font-size: 18px;
  font-weight: var(--fw-subheading);
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1b2230;
}

.page-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #56606e;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #56606e;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--teal);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Full-bleed teal hero band */
.page-content .page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -84px;
  margin-bottom: 56px;
  background: linear-gradient(120deg, #2fa195 0%, #27758b 55%, #1d4e6b 100%);
  padding: 154px 32px 88px;
  text-align: center;
}

.page-content .page-hero h1 {
  font-size: 46px;
  letter-spacing: -0.033em;
  color: #ffffff;
  margin: 0;
  /* CMS content may ship its own gradient-text effect on this h1 — neutralize
     it so the title renders solid white on the band */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ffffff;
}

.page-content .page-hero .hero-subtitle,
.page-content .page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 16px auto 0;
  max-width: 530px;
}

.page-content .about-section {
  margin-bottom: 48px;
}

.page-content .about-section h2 {
  margin-top: 0;
}

/* Benefit cards (2×2) */
.page-content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.page-content .feature-item {
  background: #fbfcfc;
  border: 1px solid #eef1f3;
  border-radius: 18px;
  padding: 26px 28px 26px 96px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-content .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -14px rgba(25, 60, 70, 0.15);
}

/* Teal icon tile per card (refresh / leaf / sparkle / QR — matches content order) */
.page-content .feature-item::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 26px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background-color: rgba(71, 184, 159, 0.13);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.page-content .feature-item:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M20 12a8 8 0 1 1-2.34-5.66' stroke='%2317777e' stroke-width='2' stroke-linecap='round'/%3e%3cpath d='M20 3.5V8h-4.5' stroke='%2317777e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

.page-content .feature-item:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M20 4c-8.5 0-14 4.5-14 11a5 5 0 0 0 9.7 1.7C18.5 14 20 9 20 4z' stroke='%2317777e' stroke-width='2' stroke-linejoin='round'/%3e%3cpath d='M5.5 20.5C8 14.5 12 10 17.5 6.5' stroke='%2317777e' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
}

.page-content .feature-item:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M12 3l2.3 6.7L21 12l-6.7 2.3L12 21l-2.3-6.7L3 12l6.7-2.3L12 3z' stroke='%2317777e' stroke-width='2' stroke-linejoin='round'/%3e%3c/svg%3e");
}

.page-content .feature-item:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3crect x='3' y='3' width='7' height='7' rx='1.5' stroke='%2317777e' stroke-width='2'/%3e%3crect x='14' y='3' width='7' height='7' rx='1.5' stroke='%2317777e' stroke-width='2'/%3e%3crect x='3' y='14' width='7' height='7' rx='1.5' stroke='%2317777e' stroke-width='2'/%3e%3crect x='14' y='14' width='3' height='3' fill='%2317777e'/%3e%3crect x='18' y='18' width='3' height='3' fill='%2317777e'/%3e%3c/svg%3e");
}

.page-content .feature-item h3 {
  font-size: 17px;
  font-weight: var(--fw-heading);
  color: #17777e;
  margin: 0;
}

.page-content .feature-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5b6472;
  margin: 7px 0 0;
}

/* Check-row cards (För företag och individer) */
.page-content .about-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-content .about-section ul li {
  background: #ffffff;
  border: 1px solid #eef1f3;
  border-radius: 14px;
  padding: 16px 20px 16px 50px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: #56606e;
  margin-bottom: 0;
}

.page-content .about-section ul li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 19px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M4 12.5l5 5L20 6.5' stroke='%232aa39a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-content .about-section ul li strong {
  color: #1b2230;
  font-weight: var(--fw-heading);
}

/* Green CTA panel */
.page-content .cta-section {
  background: linear-gradient(135deg, #e7f6ee 0%, #ddf0ea 100%);
  border-radius: 26px;
  padding: 56px 48px;
  text-align: center;
  margin: 64px 0 56px;
}

.page-content .cta-section h2 {
  font-size: 30px;
  margin: 0;
}

.page-content .cta-section p {
  font-size: 16px;
  color: #4a5a56;
  margin: 14px auto 0;
  max-width: 480px;
}

.page-content .cta-section .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--grad-btn);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: var(--fw-button);
  text-decoration: none;
  box-shadow: 0 12px 26px -8px rgba(42, 148, 140, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-content .cta-section .cta-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(42, 148, 140, 0.6);
}

/* FAQ accordion (CMS markup: .faq-item with .open toggle) */
.page-content .faq-section h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: -1px;
}

.page-content .faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  background: #ffffff;
  border: 1px solid #eef1f3;
  border-radius: 20px;
  padding: 8px 28px;
  box-shadow: 0 6px 20px -12px rgba(25, 60, 70, 0.1);
}

.page-content .faq-item {
  border-bottom: 1px solid #eef1f3;
}

.page-content .faq-item:last-child {
  border-bottom: none;
}

.page-content .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: var(--fw-heading);
  font-family: inherit;
  color: #1b2230;
  text-align: left;
  transition: color 0.15s ease;
}

.page-content .faq-question:hover {
  color: #17777e;
}

.page-content .faq-icon {
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex: none;
  transition: transform 0.2s ease;
}

.page-content .faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.page-content .faq-answer {
  display: none;
  padding: 0 32px 17px 0;
}

.page-content .faq-item.open .faq-answer {
  display: block;
}

.page-content .faq-answer p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #56606e;
  margin: 0;
}

@media (max-width: 768px) {
  .page-content .page-hero {
    padding: 128px 20px 64px;
  }

  .page-content .page-hero h1 {
    font-size: 34px;
  }

  .page-content .features-grid {
    grid-template-columns: 1fr;
  }

  .page-content .cta-section {
    padding: 40px 24px;
  }
}
