:root {
  color-scheme: light;
  --ink: #102022;
  --muted: #617071;
  --paper: #f7f7f2;
  --panel: #ffffff;
  --line: rgba(16, 32, 34, 0.14);
  --green: #1e60aa;
  --green-2: #14375a;
  --coral: #fc8c03;
  --gold: #f2a51a;
  --blue: #0d8ac5;
  --shadow: 0 24px 70px rgba(16, 32, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 72px;
  padding: 0;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 247, 242, 0.94);
  box-shadow: 0 12px 36px rgba(16, 32, 34, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.header-action,
.btn,
.main-nav {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  position: relative;
  padding-left: 300px; /* Offset for 280px absolute badge + 20px gap */
  min-height: 72px;
}

.brand > span:last-child {
  display: none; /* Hide HTML text span since logomobil-alt.png is on the right of the icon */
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 auto;
  overflow: visible;
  perspective: 400px;
}

.brand-logo img {
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(6, 18, 38, 0.2));
}

.brand-logo.mini {
  --logo-size: 121px;
  position: absolute;
  left: 0;
  top: 0px;
  width: 280px;
  min-height: 120px;
  padding: 0px;
  border-radius: 16px;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow: visible;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .brand-logo.mini {
  background: none;
  border: none;
  box-shadow: none;
}

.brand-logo.mini .logo-top-container {
  width: var(--logo-size);
  height: var(--logo-size);
  position: relative;
  transform-style: preserve-3d;
  animation: logoSpin 6s linear infinite;
}

.brand-logo.mini .logo-top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  filter: drop-shadow(0 4px 8px rgba(6, 18, 38, 0.25));
}

.brand-logo.mini .logo-top.front {
  transform: rotateY(0deg);
}

.brand-logo.mini .logo-top.back {
  transform: rotateY(180deg);
}

.brand-logo.mini .logo-bottom {
  max-width: 225px;
  max-height: 50px;
  margin-left: -10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes logoSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.main-nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 650;
  margin-top: 50px;
}

.header-action {
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 750;
}

.header-action svg,
.btn svg,
.module-card svg,
.check-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 27, 0.88), rgba(7, 25, 27, 0.52) 48%, rgba(7, 25, 27, 0.18)),
    linear-gradient(0deg, rgba(7, 25, 27, 0.64), rgba(7, 25, 27, 0.1) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 156px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8.4vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  width: min(690px, 100%);
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 850;
}

.btn.primary {
  background: var(--coral);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.contact .btn.secondary,
.showcase .btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 18, 22, 0.72);
  box-shadow: 0 -16px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-strip-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
  color: #fff;
}

.hero-strip-lead,
.hero-strip-stat {
  min-height: 76px;
  display: grid;
  align-content: center;
}

.hero-strip-lead {
  padding-right: 28px;
}

.hero-strip-lead span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip-lead strong {
  margin-top: 4px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-strip-stat {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-strip-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 0.95;
}

.hero-strip-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section,
.showcase,
.contact {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.intro h2 {
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-copy > p {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.intro-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(30, 96, 170, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--green-2);
  font-size: 0.8rem;
  font-weight: 850;
}

.intro-system {
  position: relative;
  display: grid;
  gap: 14px;
}

.system-window {
  overflow: hidden;
  border: 1px solid rgba(30, 96, 170, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 96, 170, 0.94), rgba(20, 55, 90, 0.98)),
    #14375a;
  box-shadow: 0 24px 70px rgba(20, 55, 90, 0.18);
  color: #fff;
}

.window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 18, 22, 0.24);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.window-bar span:first-child {
  background: var(--coral);
}

.system-lines {
  display: grid;
  gap: 1px;
  padding: 16px;
}

.system-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.system-lines div:last-child {
  border-bottom: 0;
}

.system-lines span {
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
}

.system-lines strong {
  color: #fff;
  font-size: 0.9rem;
  text-align: right;
}

.intro-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.intro-benefits li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(16, 32, 34, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 32, 34, 0.04);
  color: var(--muted);
}

.intro-benefits li svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(252, 140, 3, 0.1);
  color: var(--green);
}

.intro-benefits li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.intro-benefits li span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
}

.intro > p,
.showcase-copy > p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  width: min(1000px, 100%);
  margin-bottom: 34px;
}

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

.module-card {
  min-height: 250px;
  padding: 32px 28px;
  border: 1.5px solid rgba(16, 32, 34, 0.08);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 32, 34, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 96, 170, 0.25);
  box-shadow: 0 20px 40px rgba(16, 32, 34, 0.08), 0 1px 3px rgba(30, 96, 170, 0.05);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card svg {
  width: 24px;
  height: 24px;
  padding: 14px;
  box-sizing: content-box;
  border-radius: 12px;
  background: rgba(30, 96, 170, 0.08);
  color: var(--green);
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.module-card:hover svg {
  background: var(--green);
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 20px rgba(30, 96, 170, 0.25);
}

.module-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--ink);
  transition: color 0.3s ease;
}

.module-card:hover h3 {
  color: var(--green);
}

.module-card p {
  margin: 10px 0 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.card-btn svg {
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  background: none !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
}

.module-card:hover .card-btn {
  opacity: 0.95;
}

.card-btn:hover {
  gap: 12px;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 34px 0 92px;
}

.showcase-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dfe7e3;
}

.showcase-media img {
  aspect-ratio: 15 / 8;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-seo {
  padding: 24px;
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.showcase-seo h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 700;
}

.showcase-seo p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.showcase-copy h2 {
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  color: var(--coral);
  margin-top: 2px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 40px 0 80px;
}

.metrics .metric-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(16, 32, 34, 0.02);
  position: relative;
  overflow: hidden;
}

.metrics .metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metrics .metric-card:nth-child(2)::before { background: var(--coral); }
.metrics .metric-card:nth-child(3)::before { background: var(--gold); }
.metrics .metric-card:nth-child(4)::before { background: #1e60aa; }
.metrics .metric-card:nth-child(5)::before { background: var(--green-2); }

.metrics .metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 32, 34, 0.08);
  border-color: rgba(16, 32, 34, 0.15);
}

.metrics .metric-card:hover::before {
  opacity: 1;
}

.metrics .metric-icon {
  width: 24px;
  height: 24px;
  color: var(--muted);
  margin-bottom: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.metrics .metric-card:hover .metric-icon {
  color: var(--blue);
  transform: translateY(-2px);
}

.metrics .metric-card:nth-child(2):hover .metric-icon { color: var(--coral); }
.metrics .metric-card:nth-child(3):hover .metric-icon { color: var(--gold); }
.metrics .metric-card:nth-child(4):hover .metric-icon { color: #1e60aa; }
.metrics .metric-card:nth-child(5):hover .metric-icon { color: var(--green-2); }

.metrics .metric-card strong {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.metrics .metric-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 0 60px;
  }
}

@media (max-width: 480px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}

.workflow {
  background: transparent;
  padding: 92px 0;
  margin: 0 auto;
  box-shadow: none;
}

.workflow .section-heading .section-kicker {
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.workflow .section-heading h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.steps article {
  padding: 36px 28px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 32, 34, 0.02);
}

.steps article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(13, 138, 197, 0.04), transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.steps article:hover::before {
  opacity: 1;
}

.steps article:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 30px 60px rgba(16, 32, 34, 0.08);
}

.steps article .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(13, 138, 197, 0.08);
  color: var(--blue);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.steps article:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.steps article .step-icon i,
.steps article .step-icon svg {
  width: 26px;
  height: 26px;
}

.steps article h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.steps article p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.steps article.extra-item {
  border: 1.5px dashed rgba(252, 140, 3, 0.6);
  background: linear-gradient(180deg, var(--panel), rgba(252, 140, 3, 0.02));
}

.steps article.extra-item::before {
  background: radial-gradient(circle at 50% 0%, rgba(252, 140, 3, 0.08), transparent 60%);
}

.steps article.extra-item:hover {
  border-color: var(--coral);
  box-shadow: 0 30px 60px rgba(252, 140, 3, 0.1);
}

.steps article.extra-item .step-icon {
  background: rgba(252, 140, 3, 0.1);
  color: var(--coral);
}

.steps article.extra-item .extra-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--coral);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(252, 140, 3, 0.2);
  z-index: 2;
}

@media (max-width: 768px) {
  .workflow {
    padding: 48px 0;
    margin: 0 auto;
  }
}

/* Pricing Section */
.pricing {
  padding: 92px 0;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 32, 34, 0.03);
}

.pricing-info {
  padding: 48px;
  border-right: 1.5px solid var(--line);
}

.pricing-info h2 {
  margin-bottom: 16px;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.pricing-features li i,
.pricing-features li svg {
  color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-action {
  padding: 48px;
  background: rgba(13, 138, 197, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-box {
  margin-bottom: 32px;
}

.price-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 12px 0;
  color: var(--ink);
}

.price-amount .currency {
  font-size: 2rem;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
}

.price-amount .number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
}

.price-amount .period {
  font-size: 1.25rem;
  color: var(--muted);
  margin-left: 4px;
  font-weight: 600;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.pricing-action .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-card {
    grid-template-columns: 1fr;
  }
  
  .pricing-info {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1.5px solid var(--line);
  }
  
  .pricing-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .pricing-action {
    padding: 32px 24px;
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 80px;
  padding: clamp(30px, 6vw, 58px);
  border-radius: 8px;
  background: var(--green-2);
  color: #fff;
}

.contact p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 66px;
  }

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .metrics,
  .steps,
  .intro,
  .showcase,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-strip {
    padding: 14px 0;
  }

  .hero-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-strip-lead {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 10px;
  }

  .hero-strip-stat {
    min-height: 64px;
    padding: 0 12px;
  }

  .module-card {
    min-height: auto;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0;
  }

  .header-inner {
    width: min(1180px, calc(100% - 28px));
    padding: 10px 0;
  }

  .header-action span {
    display: none;
  }

  .header-action {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .brand span:last-child {
    font-size: 0.96rem;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 116px 0 300px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
  }

  .brand {
    padding-left: 160px; /* Offset for 142px absolute badge + 18px gap */
    min-height: 66px;
  }

  .brand-logo.mini {
    --logo-size: 60px;
    width: 142px;
    min-height: 76px;
    top: 5px;
    padding: 8px;
    border-radius: 12px;
    flex-direction: row;
    gap: 0;
  }

  .brand-logo.mini .logo-bottom {
    max-width: 58px;
    max-height: 20px;
    margin-left: -6px;
  }

  .hero-strip-inner {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip-lead {
    padding-bottom: 10px;
    margin-bottom: 4px;
  }

  .hero-strip-lead strong {
    font-size: 0.96rem;
  }

  .hero-strip-stat {
    min-height: 62px;
    padding: 10px 8px;
  }

  .hero-strip-stat:nth-child(2),
  .hero-strip-stat:nth-child(4) {
    border-left: 0;
  }

  .hero-strip-stat strong {
    font-size: 1.45rem;
  }

  .hero-strip-stat span {
    margin-top: 5px;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  /* Removed old module-card svg margin-bottom override */

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

/* ==========================================================================
   Subpage / Module Detail Styles
   ========================================================================== */
.detail-hero {
  padding: 140px 0 50px;
  background: linear-gradient(rgba(16, 32, 34, 0.35), rgba(16, 32, 34, 0.5)), url('../img/qubedigital-platform.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.detail-container {
  width: min(1000px, calc(100% - 36px));
  margin: 0 auto;
}

.detail-hero .detail-container {
  background: rgba(255, 255, 255, 0.90);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(16, 32, 34, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.94rem;
}

.back-link:hover {
  opacity: 0.8;
}

.detail-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
}

.detail-hero p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 800px;
  margin: 0;
}

.detail-content {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.detail-body h2 {
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 24px;
}

.detail-body p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
}

.feature-list li svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li strong {
  color: var(--ink);
}

.detail-sidebar {
  background: var(--panel);
  border: 1px solid rgba(16, 32, 34, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(16, 32, 34, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(16, 32, 34, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 96, 170, 0.2);
}

.sidebar-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(30, 96, 170, 0.6);
  animation: pulse-sidebar-dot 2s infinite;
}

@keyframes pulse-sidebar-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 14px rgba(30, 96, 170, 0.9);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.tech-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-spec li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--line);
  padding: 10px 6px;
  font-size: 0.94rem;
  transition: all 0.25s ease;
  border-radius: 8px;
}

.tech-spec li:hover {
  background: rgba(30, 96, 170, 0.04);
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: transparent;
}

.tech-spec li span:first-child {
  color: var(--muted);
  font-weight: 500;
}

.tech-spec li span:last-child {
  color: var(--ink);
  font-weight: 700;
  background: rgba(16, 32, 34, 0.04);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.tech-spec li:hover span:last-child {
  background: var(--green);
  color: #fff;
}
