:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #fcfcfa;
  --text: #111216;
  --muted: #727989;
  --line: rgba(17, 18, 22, 0.06);
  --line-strong: rgba(17, 18, 22, 0.08);
  --dark: #0f1016;
  --dark-2: #161a26;
  --shadow-soft: 0 16px 40px rgba(14, 18, 34, 0.04);
  --shadow-card: 0 8px 24px rgba(13, 17, 28, 0.03);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.78s ease-out,
    transform 0.78s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#forside,
#saadan-fungerer-det,
#om-os,
#priser,
#faq,
#kontakt {
  scroll-margin-top: 132px;
}

#formular {
  scroll-margin-top: 210px;
}

body {
  margin: 0;
  min-width: 1280px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  background:
    radial-gradient(circle at 50% 22%, rgba(135, 175, 255, 0.12), transparent 25%),
    var(--bg);
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

.section-dotted {
  position: relative;
  overflow: hidden;
}

.section-dotted::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(36, 41, 55, 0.1) 1.1px, transparent 1.1px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.section-soft-glow {
  position: relative;
  overflow: hidden;
}

.section-soft-glow::before {
  content: "";
  position: absolute;
  inset: -5% 0 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(145, 185, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(168, 190, 220, 0.09), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(166, 191, 255, 0.12), transparent 27%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 245, 0.98);
  border-bottom: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 14px 36px rgba(15, 16, 22, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100px;
}

.brand {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: auto;
  margin-right: 12px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #667085;
}

.site-nav a.is-active {
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 22, 0.08);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 260px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 18, 22, 0.06);
  box-shadow: 0 24px 60px rgba(14, 18, 34, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-menu-panel a {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mobile-menu-panel a:hover {
  background: rgba(17, 18, 22, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 35px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.03em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button-dark {
  color: #fff;
  background: #121217;
}

.button-light {
  color: #16181f;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 18, 22, 0.08);
  box-shadow: 0 10px 26px rgba(15, 16, 22, 0.03);
}

.button-white {
  color: #18191f;
  background: #fefefe;
  min-width: 377px;
}

.button-wide {
  min-width: 332px;
}

.button-muted {
  color: #111216;
  background: #f1f2f7;
  border-color: rgba(17, 18, 22, 0.04);
  box-shadow: none;
}

.header-cta {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 16, 22, 0.08);
}

.button-dark:hover {
  background: #181920;
}

.button-light:hover,
.button-white:hover {
  background: #ffffff;
  border-color: rgba(17, 18, 22, 0.12);
}

.hero-actions .button-dark:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(15, 16, 22, 0.14);
}

.hero {
  padding: 72px 0 72px;
}

.hero .container,
.section .container,
.stats-bar .container,
.site-footer .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 594px;
  gap: 90px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  padding-top: 12px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #eef1f4;
  border: 1px solid rgba(17, 18, 22, 0.04);
  color: #697386;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35c78b;
}

.hero h1,
.section h2,
.cta-panel h2 {
  margin: 0;
  font-weight: 550;
  letter-spacing: -0.065em;
  color: #101115;
}

.hero h1 {
  margin-top: 42px;
  font-size: 86px;
  line-height: 0.96;
}

.hero p {
  margin: 42px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}

.media-large {
  height: 383px;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.media-small {
  height: 286px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media-large img,
.media-small img {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.media-large:hover img,
.media-small:hover img {
  transform: scale(1.06);
}

.stats-bar {
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 90, 129, 0.16), transparent 34%),
    linear-gradient(90deg, #121318 0%, #171a22 52%, #1d2230 100%);
  padding: 78px 0 88px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item strong {
  display: block;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.stat-item span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.studio-copy {
  max-width: 930px;
}

.studio-section {
  padding-bottom: 22px;
}

.section {
  padding: 148px 0 0;
}

.section-label,
.footer-label {
  margin: 0 0 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #727b8d;
}

.section h2 {
  font-size: 72px;
  line-height: 0.98;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 72px;
  padding-bottom: 8px;
}

.process-card,
.benefit-card {
  position: relative;
  padding: 48px 48px 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15, 16, 22, 0.03) 0, rgba(15, 16, 22, 0.03) 18%, transparent 18.5%),
    var(--surface-soft);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: var(--shadow-card);
}

.process-card {
  min-height: 274px;
}

.process-card-featured {
  box-shadow: 0 22px 48px rgba(14, 18, 34, 0.06);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111217;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.process-card h3,
.benefit-card h3 {
  margin: 34px 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 550;
  letter-spacing: -0.05em;
}

.process-card p,
.benefit-card p,
.section-intro,
.footer-brand p,
.footer-column p,
.footer-column a {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 74px;
}

.benefit-card {
  min-height: 246px;
  background: var(--surface-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease,
    border-color 0.22s ease;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f3f4f4;
  border: 1px solid rgba(17, 18, 22, 0.05);
  transition: background-color 0.22s ease, border-color 0.22s ease;
}

.icon-box img {
  width: 27px;
  height: 27px;
  transition: filter 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(14, 18, 34, 0.08);
}

.benefit-card:hover .icon-box {
  background: #111216;
  border-color: #111216;
}

.benefit-card:hover .icon-box img {
  filter: invert(1);
}

.target-section {
  padding-top: 144px;
  padding-bottom: 48px;
}

.target-copy {
  max-width: 920px;
}

.section-intro {
  max-width: 900px;
  margin-top: 34px;
  font-size: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 58px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 18, 22, 0.05);
  box-shadow: 0 10px 22px rgba(14, 18, 34, 0.03);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cta-section {
  padding: 34px 0 0;
}

.cta-panel {
  position: relative;
  margin-top: 22px;
  padding: 118px 32px 114px;
  border-radius: 31px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(79, 70, 141, 0.24), transparent 28%),
    linear-gradient(90deg, #111318 0%, #171a24 50%, #202532 100%);
  box-shadow: 0 20px 48px rgba(10, 12, 22, 0.08);
}

.cta-panel::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.32;
  pointer-events: none;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.5);
}

.cta-panel h2 {
  color: #fff;
  font-size: 71px;
  line-height: 0.98;
}

.cta-text {
  max-width: 860px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.cta-panel .button {
  margin-top: 52px;
}

.prices-page {
  padding-bottom: 6px;
}

.prices-hero {
  padding: 126px 0 48px;
}

.prices-hero-copy {
  max-width: 920px;
}

.prices-page h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 550;
  letter-spacing: -0.065em;
  color: #101115;
}

.prices-intro {
  margin: 32px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.pricing-top-note {
  display: inline-flex;
  align-items: center;
  margin: 30px 0 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 22, 0.08);
  color: #111216;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.prices-cards-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0 0;
}

.prices-cards-section::before,
.comparison-section::before,
.package-copy-section::before {
  content: "";
  position: absolute;
  inset: -3% 0 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(145, 185, 255, 0.18), transparent 25%),
    radial-gradient(circle at 50% 38%, rgba(168, 190, 220, 0.09), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(166, 191, 255, 0.12), transparent 24%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
}

.plans-grid,
.comparison-section .container,
.package-copy-grid {
  position: relative;
  z-index: 1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.plan-card {
  position: relative;
  min-height: 638px;
  padding: 46px 46px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.04);
}

.plan-card-featured {
  border: 3px solid #111216;
  padding-top: 58px;
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.04);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 38px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #111216;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.plan-label {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #727b8d;
}

.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.plan-price-row strong {
  font-size: 43px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.plan-price-row span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.plan-subprice {
  margin: 14px 0 0;
  color: #6c7485;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.plan-description {
  margin: 30px 0 0;
  min-height: 84px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 44px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #738097;
  font-size: 24px;
  line-height: 1;
}

.plan-card .button {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  margin-top: auto;
  font-size: 16px;
}

.comparison-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 0;
}

.comparison-heading {
  margin: 0 0 44px;
  font-size: 55px;
  line-height: 1;
  font-weight: 550;
  letter-spacing: -0.06em;
}

.comparison-table-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 26px 24px;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.comparison-table thead th {
  background: #f1f2f4;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
  text-align: left;
}

.comparison-table tbody td {
  text-align: center;
  border-top: 1px solid rgba(17, 18, 22, 0.04);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(245, 246, 248, 0.75);
}

.table-mark {
  display: inline-block;
  color: #111216;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.table-mark-off {
  color: #d7dbe4;
}

.pricing-note {
  margin: 28px 4px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.package-copy-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}

.package-copy-grid {
  display: grid;
  gap: 68px;
}

.package-copy-block {
  max-width: 850px;
}

.package-copy-block h3 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 550;
  letter-spacing: -0.045em;
}

.package-copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.04em;
}

.faq-page {
  padding-bottom: 6px;
}

.faq-hero {
  padding: 126px 0 52px;
}

.faq-hero-copy {
  max-width: 1080px;
}

.faq-page h1 {
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 550;
  letter-spacing: -0.07em;
  color: #101115;
}

.faq-intro {
  margin: 34px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0 0;
}

.faq-list {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.faq-item {
  margin: 0 0 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 16px 36px rgba(14, 18, 34, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(17, 18, 22, 0.05);
  box-shadow: 0 20px 42px rgba(14, 18, 34, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 106px;
  padding: 0 42px;
  cursor: pointer;
  list-style: none;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

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

.faq-chevron {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transition: transform 0.2s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 12px;
  height: 2px;
  background: #111216;
  border-radius: 999px;
}

.faq-chevron::before {
  left: 1px;
  transform: rotate(45deg);
}

.faq-chevron::after {
  right: 1px;
  transform: rotate(-45deg);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 42px 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -0.04em;
}

.contact-page {
  padding-bottom: 6px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 175px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 662px;
  gap: 88px;
  align-items: start;
}

.contact-copy,
.contact-form-wrap {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 640px;
  padding-top: 42px;
}

.contact-page h1 {
  margin: 0;
  font-size: 78px;
  line-height: 0.94;
  font-weight: 550;
  letter-spacing: -0.075em;
  color: #101115;
}

.contact-intro {
  margin: 34px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.contact-cards {
  display: grid;
  gap: 24px;
  margin-top: 66px;
}

.contact-info-card {
  min-height: 120px;
  padding: 34px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 16px 36px rgba(14, 18, 34, 0.04);
}

.contact-info-label {
  margin: 0 0 14px;
  color: #727b8d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.contact-info-card a,
.contact-info-card p:last-child {
  margin: 0;
  color: #111216;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.contact-form-wrap {
  margin-top: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.05);
}

.contact-form {
  padding: 50px 50px 48px;
}

.contact-success {
  margin: 22px 22px 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(53, 199, 139, 0.12);
  color: #1e6d54;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #727b8d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  background: #fff;
  color: #111216;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 24px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field input {
  height: 64px;
}

.form-field textarea {
  min-height: 160px;
  padding-top: 20px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b1b7c3;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(17, 18, 22, 0.16);
  box-shadow: 0 0 0 4px rgba(17, 18, 22, 0.03);
}

.contact-submit {
  width: 100%;
  min-width: 0;
  margin-top: 28px;
}

.contact-submit:not(:disabled) {
  cursor: pointer;
}

.contact-submit:not(:disabled):hover {
  background: #181920;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 16, 22, 0.12);
}

.contact-submit:disabled {
  cursor: not-allowed;
  background: #c7ccd6;
  color: rgba(255, 255, 255, 0.82);
  border-color: transparent;
  box-shadow: none;
  transform: none;
  opacity: 0.92;
}

.contact-submit:disabled:hover {
  background: #c7ccd6;
  box-shadow: none;
  transform: none;
}

.legal-page {
  padding-bottom: 6px;
}

.legal-hero {
  padding: 126px 0 34px;
}

.legal-hero-copy {
  max-width: 960px;
}

.legal-page h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 550;
  letter-spacing: -0.065em;
  color: #101115;
}

.legal-updated {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.legal-content-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0 0;
}

.legal-card {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  padding: 54px 56px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.05);
}

.legal-prose {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
  letter-spacing: -0.035em;
}

.legal-prose h2,
.legal-prose h3 {
  color: #101115;
  letter-spacing: -0.045em;
}

.legal-prose h2 {
  margin: 38px 0 12px;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 550;
}

.legal-prose h3 {
  margin: 20px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 550;
}

.legal-prose p,
.legal-prose ul {
  margin: 0 0 16px;
}

.legal-prose ul {
  padding-left: 24px;
}

.legal-prose li {
  margin-bottom: 8px;
}

.legal-prose a {
  color: #111216;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.about-page {
  padding-bottom: 6px;
}

.about-hero {
  padding: 126px 0 54px;
}

.about-hero-copy {
  max-width: 1040px;
}

.about-page h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 550;
  letter-spacing: -0.065em;
  color: #101115;
}

.about-intro {
  margin: 34px 0 0;
  max-width: 960px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.about-cards-section,
.about-copy-section {
  position: relative;
  overflow: hidden;
}

.about-cards-section {
  padding: 40px 0 0;
}

.about-card-grid,
.about-copy-grid {
  position: relative;
  z-index: 1;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 38px;
}

.about-card {
  min-height: 236px;
  padding: 48px 48px 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15, 16, 22, 0.03) 0, rgba(15, 16, 22, 0.03) 18%, transparent 18.5%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.04);
}

.about-card h3 {
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 550;
  letter-spacing: -0.05em;
}

.about-card p,
.about-copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -0.04em;
}

.about-copy-section {
  padding: 82px 0 0;
}

.about-copy-grid {
  display: grid;
  gap: 54px;
}

.about-copy-block {
  max-width: 980px;
}

.about-copy-block h2 {
  margin: 0 0 20px;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 550;
  letter-spacing: -0.05em;
  color: #101115;
}

.about-cta-section {
  padding: 70px 0 0;
}

.about-cta-button {
  min-height: 62px;
  padding: 0 38px;
  font-size: 16px;
}

.about-contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}

.about-contact-copy {
  position: relative;
  z-index: 1;
}

.about-contact-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 550;
  letter-spacing: -0.06em;
  color: #101115;
}

.about-contact-intro {
  margin: 28px 0 0;
  max-width: 920px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: -0.04em;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 46px;
}

.about-contact-card {
  min-height: 152px;
  padding: 34px 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15, 16, 22, 0.03) 0, rgba(15, 16, 22, 0.03) 18%, transparent 18.5%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 22, 0.03);
  box-shadow: 0 18px 40px rgba(14, 18, 34, 0.04);
}

.about-contact-label {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #727b8d;
}

.about-contact-card a,
.about-contact-card p:last-child {
  margin: 0;
  color: #111216;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 550;
  letter-spacing: -0.05em;
}

.about-contact-button {
  margin-top: 42px;
  min-height: 62px;
  padding: 0 38px;
  font-size: 16px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 122px;
  padding: 108px 0 120px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 86, 111, 0.15), transparent 38%),
    linear-gradient(90deg, #121318 0%, #161922 54%, #1c2230 100%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.55fr;
  gap: 72px;
}

.footer-brand h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-brand p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.55);
}

.cookie-banner {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: min(760px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 18, 22, 0.05);
  box-shadow: 0 24px 60px rgba(14, 18, 34, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  flex: 1;
}

.cookie-banner__label {
  margin: 0 0 10px;
  color: #727b8d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.cookie-banner__text {
  margin: 0;
  color: #5f6676;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__button {
  min-height: 52px;
  min-width: 126px;
  padding: 0 22px;
  font-size: 15px;
}

@media (max-width: 1320px) {
  body {
    min-width: 0;
  }

  .container {
    width: calc(100% - 48px);
  }

  .header-inner,
  .hero-grid,
  .contact-grid,
  .stats-grid,
  .process-grid,
  .benefits-grid,
  .footer-grid,
  .plans-grid,
  .about-card-grid,
  .about-contact-grid {
    gap: 24px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero-grid,
  .contact-grid,
  .process-grid,
  .benefits-grid,
  .footer-grid,
  .plans-grid,
  .about-card-grid,
  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .contact-copy,
  .target-copy,
  .prices-hero-copy,
  .package-copy-block,
  .faq-hero-copy,
  .faq-list,
  .about-hero-copy,
  .about-copy-block,
  .legal-hero-copy,
  .legal-card {
    max-width: none;
  }

  .hero h1,
  .contact-page h1,
  .prices-page h1,
  .faq-page h1,
  .legal-page h1,
  .about-page h1,
  .section h2,
  .cta-panel h2 {
    font-size: 56px;
  }

  .comparison-heading {
    font-size: 44px;
  }

  .faq-item summary {
    padding: 0 28px;
    font-size: 20px;
  }

  .faq-answer p {
    padding: 0 28px 28px;
  }

  .hero-media {
    max-width: 720px;
  }

  .contact-form {
    padding: 32px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .legal-card {
    padding: 34px 28px;
  }

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

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

.cookie-banner__button {
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.reveal-ready .reveal-on-scroll,
  html.reveal-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .media-large img,
  .media-small img,
  .benefit-card,
  .contact-submit {
    transition: none;
  }
}

  .comparison-table-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 960px;
  }
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: blur(8px);
  }

  .header-inner {
    min-height: 84px;
    gap: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .container {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 34px 0 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1,
  .prices-page h1,
  .faq-page h1,
  .about-page h1,
  .contact-page h1,
  .legal-page h1,
  .section h2,
  .cta-panel h2 {
    font-size: 44px;
    line-height: 1;
  }

  .hero p,
  .prices-intro,
  .faq-intro,
  .about-intro,
  .contact-intro,
  .section-intro,
  .cta-text {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button-wide,
  .button-white,
  .hero-actions .button,
  .about-cta-button,
  .about-contact-button {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    padding-top: 0;
  }

  .media-large {
    height: 280px;
  }

  .media-small {
    height: 220px;
  }

  .stats-bar {
    padding: 56px 0;
  }

  .stat-item strong {
    font-size: 36px;
  }

  .stat-item span {
    font-size: 15px;
  }

  .section {
    padding-top: 96px;
  }

  .process-card,
  .benefit-card,
  .plan-card,
  .about-card,
  .faq-item,
  .contact-info-card {
    border-radius: 24px;
  }

  .process-card,
  .benefit-card,
  .plan-card,
  .about-card {
    padding: 32px 28px;
    min-height: 0;
  }

  .plan-card-featured {
    padding-top: 46px;
  }

  .plan-badge {
    left: 24px;
  }

  .comparison-heading {
    font-size: 36px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px 16px;
    font-size: 15px;
  }

  .package-copy-grid,
  .about-copy-grid {
    gap: 40px;
  }

  .about-contact-copy h2 {
    font-size: 36px;
  }

  .contact-hero {
    padding: 120px 0 0;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-form-wrap {
    margin-top: 0;
  }

  .contact-form {
    padding: 26px;
  }

  .form-field input {
    height: 58px;
  }

  .cookie-banner {
    border-radius: 22px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  body {
    min-width: 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    min-height: 76px;
  }

  .mobile-menu summary {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding: 22px 0 34px;
  }

  .eyebrow-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero h1,
  .prices-page h1,
  .faq-page h1,
  .about-page h1,
  .contact-page h1,
  .legal-page h1,
  .section h2,
  .cta-panel h2 {
    font-size: 36px;
  }

  .hero h1 {
    text-align: center;
  }

  .hero p,
  .prices-intro,
  .faq-intro,
  .about-intro,
  .contact-intro,
  .section-intro,
  .cta-text,
  .legal-prose,
  .about-card p,
  .about-copy-block p,
  .package-copy-block p,
  .process-card p,
  .benefit-card p {
    font-size: 16px;
  }

  .button {
    min-height: 58px;
    font-size: 16px;
    padding: 0 22px;
  }

  .media-large {
    height: 220px;
    border-radius: 24px;
  }

  .media-row {
    gap: 14px;
  }

  .media-small {
    height: 160px;
    border-radius: 22px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-label,
  .footer-label {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .process-card h3,
  .benefit-card h3,
  .about-card h3,
  .package-copy-block h3 {
    font-size: 22px;
  }

  .comparison-heading,
  .about-contact-copy h2 {
    font-size: 32px;
  }

  .faq-item summary {
    min-height: 88px;
    padding: 0 22px;
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 24px;
    font-size: 16px;
  }

  .contact-info-card,
  .about-contact-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .about-contact-card a,
  .about-contact-card p:last-child {
    font-size: 22px;
  }

  .legal-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .legal-prose h2 {
    font-size: 24px;
  }

  .legal-prose h3 {
    font-size: 20px;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .footer-column {
    gap: 18px;
  }
}
