:root {
  --bg: #eff4fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-dark: #081b34;
  --surface-dark-soft: rgba(8, 27, 52, 0.88);
  --text: #0f2138;
  --text-soft: #5c6d82;
  --line: rgba(17, 32, 50, 0.1);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #2a5ef8;
  --primary-strong: #173dab;
  --secondary: #1ecf9a;
  --secondary-strong: #149a75;
  --secondary-soft: rgba(30, 207, 154, 0.14);
  --accent: #ff9f43;
  --accent-strong: #ff7a00;
  --accent-soft: rgba(255, 159, 67, 0.16);
  --warm: #dbe8f6;
  --shadow: 0 24px 60px rgba(16, 41, 77, 0.14);
  --shadow-strong: 0 28px 88px rgba(8, 24, 48, 0.22);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(42, 94, 248, 0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 159, 67, 0.17), transparent 24%),
    radial-gradient(circle at bottom right, rgba(30, 207, 154, 0.2), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 44%, #e6edf6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
  z-index: -2;
}

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: -140px;
  left: -120px;
  background: rgba(42, 94, 248, 0.24);
}

.page-glow-right {
  right: -120px;
  bottom: -140px;
  background: rgba(30, 207, 154, 0.24);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 248, 252, 0.72);
  border-bottom: 1px solid rgba(17, 32, 50, 0.06);
  box-shadow: 0 10px 30px rgba(12, 33, 61, 0.04);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-with-image img {
  width: auto;
  height: 54px;
  filter: drop-shadow(0 10px 20px rgba(22, 62, 130, 0.1));
}

.brand-badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32, 83, 223, 0.95), rgba(27, 180, 138, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-badge span {
  position: absolute;
  width: 6px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  top: 10px;
  bottom: 10px;
  transform: skewY(-18deg);
}

.brand-badge span:nth-child(1) {
  left: 15px;
}

.brand-badge span:nth-child(2) {
  left: 24px;
}

.brand-badge span:nth-child(3) {
  left: 33px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  display: flex;
  flex-wrap: wrap;
  font: 800 1.7rem/1 "Sora", sans-serif;
}

.brand-copy strong span:first-child {
  color: var(--primary);
}

.brand-copy strong span:last-child {
  color: var(--secondary);
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  background: rgba(42, 94, 248, 0.08);
}

.site-nav a.is-current {
  color: var(--primary);
  background: rgba(42, 94, 248, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow:
    0 16px 30px rgba(42, 94, 248, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.9));
  box-shadow: 0 12px 22px rgba(16, 41, 77, 0.08);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  padding-top: 42px;
  padding-bottom: 56px;
  isolation: isolate;
}

.hero::before {
  display: none;
}

.hero-stage {
  position: relative;
  padding: 42px;
  border-radius: 40px;
  overflow: hidden;
  min-height: 820px;
  box-shadow: 0 34px 92px rgba(8, 24, 48, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 21, 40, 0.82) 0%, rgba(8, 21, 40, 0.64) 34%, rgba(8, 21, 40, 0.24) 68%, rgba(8, 21, 40, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 21, 40, 0.06), rgba(8, 21, 40, 0.38));
}

.hero-grid-photo {
  position: relative;
  z-index: 1;
  align-items: start;
  min-height: 620px;
}

.hero-grid-photo .hero-copy {
  padding-top: 18px;
}

.hero-grid-photo .eyebrow {
  color: #dce9ff;
}

.hero-grid-photo .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(30, 207, 154, 0.92));
}

.hero-grid-photo h1,
.hero-grid-photo .hero-points,
.hero-grid-photo .inline-contact-item strong,
.hero-grid-photo .hero-tags span {
  color: #ffffff;
}

.hero-grid-photo .lead {
  max-width: 620px;
  color: rgba(235, 243, 255, 0.84);
}

.hero-grid-photo .hero-tags span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero-grid-photo .inline-contact-item {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(8, 24, 48, 0.16);
}

.hero-grid-photo .inline-contact-item span {
  color: rgba(255, 255, 255, 0.66);
}

.hero-grid-photo .hero-points li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-grid-photo .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.hero-grid-photo .button-secondary::after {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-grid-photo .panel-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.2), rgba(30, 207, 154, 0.16));
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.hero-grid-photo .panel-topline,
.hero-grid-photo .panel-topline span,
.hero-grid-photo .panel-topline strong {
  color: #f1f6ff;
}

.hero-grid-photo .panel-note {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-grid-photo .panel-note p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.hero-stats article {
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.14), rgba(30, 207, 154, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 42px rgba(8, 24, 48, 0.14);
}

.hero-stats strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.06rem;
}

.hero-stats p {
  color: rgba(238, 244, 255, 0.78);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: stretch;
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  font-size: 1.1rem;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px 0 26px;
  border-radius: 999px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.button::after {
  content: "↗";
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow:
    0 20px 34px rgba(42, 94, 248, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary::after {
  background: rgba(255, 255, 255, 0.18);
}

.button-secondary {
  border: 1px solid rgba(42, 94, 248, 0.14);
  background:
    linear-gradient(135deg, rgba(42, 94, 248, 0.08), rgba(30, 207, 154, 0.08)),
    rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(16, 41, 77, 0.08);
}

.button-secondary::after {
  background: rgba(42, 94, 248, 0.08);
  color: var(--primary);
}

.button-full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span,
.audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.06), rgba(30, 207, 154, 0.06));
  border: 1px solid rgba(17, 32, 50, 0.07);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(24, 42, 74, 0.06);
}

.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.inline-contact-item {
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.08), rgba(30, 207, 154, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(19, 43, 83, 0.1);
}

.inline-contact-item span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.inline-contact-item strong {
  font-size: 1rem;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: var(--text);
  font-weight: 700;
}

.hero-points li::marker {
  color: var(--secondary);
}

.gradient-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 56%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-panel {
  position: relative;
}

.panel-shell {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.12), rgba(30, 207, 154, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.panel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(42, 94, 248, 0.24), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 159, 67, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(12, 33, 61, 0.06), transparent 42%);
  pointer-events: none;
}

.panel-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(17, 32, 50, 0.05);
  pointer-events: none;
}

.panel-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--text);
  margin-bottom: 18px;
  z-index: 1;
}

.panel-topline span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.panel-topline strong {
  font-size: 0.98rem;
}

.inspection-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(42, 94, 248, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 159, 67, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 29, 54, 0.98), rgba(10, 25, 48, 0.94));
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(7, 23, 45, 0.24);
}

.micro-label,
.note-kicker,
.column-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.micro-label {
  color: #d7e6ff;
  background: rgba(255, 255, 255, 0.08);
}

.inspection-card h2 {
  margin-top: 18px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.inspection-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.inspection-grid strong {
  display: block;
  color: #7ab6ff;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.inspection-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.panel-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 32, 50, 0.08);
}

.note-kicker {
  background: var(--secondary-soft);
  color: #08755a;
  margin-bottom: 10px;
}

.micro-label-dark {
  color: #d7e6ff;
  background: rgba(32, 83, 223, 0.1);
}

.trust-band {
  padding-bottom: 24px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(222, 238, 245, 0.46));
}

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

.trust-grid article,
.service-card,
.advantage-card,
.timeline-item,
.contact-form,
.contact-card,
.focus-card,
.visual-proof-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.06), rgba(30, 207, 154, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.trust-grid article {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-grid article::before,
.service-card::after,
.advantage-card::before,
.timeline-item::before,
.page-card::before,
.detail-card::before,
.icon-card::before,
.faq-item::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.trust-grid article::after,
.service-card::before,
.advantage-card::after,
.page-card::after,
.detail-card::after,
.icon-card::after,
.faq-item::after,
.stat-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 94, 248, 0.08), transparent 70%);
  pointer-events: none;
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 22px rgba(42, 94, 248, 0.22);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 18px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.service-card:hover,
.advantage-card:hover,
.timeline-item:hover,
.page-card:hover,
.detail-card:hover,
.icon-card:hover,
.faq-item:hover,
.stat-card:hover,
.trust-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(16, 41, 77, 0.16);
}

.service-card:nth-child(2) .service-index,
.timeline-item:nth-child(2) span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
}

.service-card:nth-child(3) .service-index,
.timeline-item:nth-child(3) span {
  background: linear-gradient(135deg, var(--primary), #6a7bff);
}

.service-card:nth-child(4) .service-index,
.timeline-item:nth-child(4) span {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.service-card:nth-child(2)::after,
.advantage-card:nth-child(2)::after,
.icon-card:nth-child(2)::after,
.stat-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(30, 207, 154, 0.12), transparent 70%);
}

.service-card:nth-child(4)::after,
.advantage-card:nth-child(4)::after,
.icon-card:nth-child(4)::after,
.stat-card:nth-child(4)::after {
  background: radial-gradient(circle, rgba(255, 159, 67, 0.14), transparent 70%);
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 159, 67, 0.2), transparent 18%),
    radial-gradient(circle at 84% 76%, rgba(30, 207, 154, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(12, 33, 61, 0.96), rgba(18, 52, 94, 0.92));
  color: #ffffff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.cta-banner h3 {
  max-width: 580px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow-light::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(27, 180, 138, 0.85));
}

.section-dark {
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 34px 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(42, 94, 248, 0.18), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 159, 67, 0.14), transparent 20%),
    linear-gradient(135deg, rgba(8, 27, 52, 0.98), rgba(10, 27, 49, 0.94));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark .section-paragraph,
.section-dark p {
  color: #ffffff;
}

.section-dark .eyebrow::before {
  background: linear-gradient(90deg, rgba(122, 182, 255, 0.8), rgba(27, 180, 138, 0.9));
}

.section-paragraph {
  margin-top: 18px;
  max-width: 580px;
}

.focus-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.story-media {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(7, 23, 45, 0.28);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 21, 40, 0.04), rgba(8, 21, 40, 0.68)),
    radial-gradient(circle at top right, rgba(42, 94, 248, 0.18), transparent 22%);
}

.story-media-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.story-media-badge strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.focus-card h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

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

.focus-columns ul {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.positive {
  color: #083826;
  background: rgba(27, 180, 138, 0.2);
  margin-bottom: 14px;
}

.negative {
  color: #25456d;
  background: rgba(122, 182, 255, 0.2);
  margin-bottom: 14px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.advantage-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.advantage-card h3 {
  margin-bottom: 12px;
}

.risk-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at left center, rgba(255, 159, 67, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(12, 33, 61, 0.96), rgba(14, 42, 78, 0.92));
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.risk-band span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.risk-band strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

.split-grid.alt {
  grid-template-columns: 0.92fr 1.08fr;
}

.page-hero {
  position: relative;
  padding-top: 42px;
  padding-bottom: 34px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: calc(100% - 18px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 20%, rgba(42, 94, 248, 0.08), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(255, 159, 67, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.14));
  z-index: -1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.page-stage {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 38px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(8, 24, 48, 0.18);
}

.page-stage-media,
.page-stage-scrim {
  position: absolute;
  inset: 0;
}

.page-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-stage-scrim {
  background:
    linear-gradient(90deg, rgba(8, 21, 40, 0.82) 0%, rgba(8, 21, 40, 0.64) 36%, rgba(8, 21, 40, 0.28) 68%, rgba(8, 21, 40, 0.44) 100%),
    linear-gradient(180deg, rgba(8, 21, 40, 0.02), rgba(8, 21, 40, 0.36));
}

.page-stage .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 470px;
}

.page-stage-card {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.16), rgba(30, 207, 154, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 40px rgba(8, 24, 48, 0.18);
}

.page-stage-card .micro-label {
  background: rgba(255, 255, 255, 0.12);
}

.page-stage-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.page-stage-stats article {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.14), rgba(30, 207, 154, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.page-stage-stats strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.04rem;
}

.page-stage-stats p {
  color: rgba(238, 244, 255, 0.78);
}

.page-card,
.detail-card,
.icon-card,
.faq-item,
.stat-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(42, 94, 248, 0.06), rgba(30, 207, 154, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.content-grid {
  display: grid;
  gap: 30px;
}

.details-grid,
.mini-grid,
.faq-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.detail-card p,
.icon-card p,
.faq-item p,
.stat-card p {
  margin-top: 10px;
}

.list-tight,
.check-list {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
}

.check-list-light {
  color: rgba(255, 255, 255, 0.9);
}

.ordered-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 32, 50, 0.04);
}

.contact-list span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.contact-list a,
.contact-list strong {
  color: var(--text);
  font-weight: 800;
}

.contact-list-light li {
  background: rgba(255, 255, 255, 0.1);
}

.contact-list-light span {
  color: rgba(255, 255, 255, 0.66);
}

.contact-list-light a,
.contact-list-light strong {
  color: #ffffff;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.visual-proof-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.visual-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.visual-proof-card.before::before {
  background:
    linear-gradient(180deg, transparent 18%, rgba(17, 32, 50, 0.94) 100%),
    linear-gradient(135deg, #8290a6 0%, #29384b 70%);
}

.visual-proof-card.after::before {
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 33, 29, 0.9) 100%),
    linear-gradient(135deg, #d6f8ef 0%, #45c8a5 72%);
}

.visual-proof-card span,
.visual-proof-card p {
  position: relative;
  z-index: 1;
}

.visual-proof-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.visual-proof-card.before span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.visual-proof-card.after span {
  color: #0b4532;
  background: rgba(255, 255, 255, 0.72);
}

.visual-proof-card.before p {
  color: rgba(255, 255, 255, 0.86);
}

.visual-proof-card.after p {
  color: #062d22;
}

.proof-stack {
  display: grid;
  gap: 18px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  min-height: 240px;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 40, 0.08), rgba(8, 21, 40, 0.16));
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-large {
  min-height: 440px;
}

.photo-frame-small {
  min-height: 180px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline-item {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.contact-section {
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
}

.contact-card > div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(17, 32, 50, 0.03);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.contact-card strong {
  font-size: 1.05rem;
}

.contact-form {
  padding: 28px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  font-weight: 800;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 32, 50, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.96));
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(32, 83, 223, 0.45);
  box-shadow: 0 0 0 4px rgba(32, 83, 223, 0.11);
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--primary);
}

.site-footer {
  padding: 20px 0 36px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 94, 248, 0.22), rgba(30, 207, 154, 0.22), transparent);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(17, 32, 50, 0.08);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 420px;
}

.footer-brand img {
  width: auto;
  height: 54px;
}

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

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.mobile-quickbar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  gap: 12px;
  z-index: 30;
}

.mobile-quickbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  flex: 1 1 0;
  padding: 0 16px;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow:
    0 18px 28px rgba(16, 41, 77, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-quickbar-link.is-secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, var(--secondary), var(--secondary-strong));
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 32, 50, 0.08);
}

.footer-row p {
  font-size: 0.92rem;
}

.deck-body {
  background: linear-gradient(180deg, #eef5fb 0%, #dde8f2 100%);
}

.deck-body .reveal {
  opacity: 1;
  transform: none;
}

.deck {
  width: min(1180px, calc(100vw - 40px));
  margin: 40px auto 80px;
  display: grid;
  gap: 26px;
}

.deck-page {
  padding: 44px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-strong);
}

.deck-cover {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(27, 180, 138, 0.18), transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(255, 159, 67, 0.14), transparent 18%),
    radial-gradient(circle at left top, rgba(32, 83, 223, 0.2), transparent 26%),
    rgba(255, 255, 255, 0.92);
}

.deck-logo {
  width: min(420px, 100%);
  margin-bottom: 26px;
}

.deck-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.deck-grid article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(17, 32, 50, 0.04);
}

.deck-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.deck-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.deck-kpis span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17, 32, 50, 0.06);
  font-weight: 800;
}

.print-note {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .split-grid.alt,
  .contact-grid,
  .page-hero-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .service-grid,
  .advantage-grid,
  .timeline,
  .details-grid,
  .mini-grid,
  .faq-grid,
  .stats-grid,
  .deck-grid,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .visual-proof {
    grid-template-columns: 1fr;
  }

  .page-stage .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    padding: 18px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.95));
    border: 1px solid rgba(17, 32, 50, 0.08);
    box-shadow: 0 24px 44px rgba(10, 28, 54, 0.14);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .mobile-quickbar {
    display: flex;
  }

  .trust-grid,
  .focus-columns,
  .visual-proof,
  .contact-card,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .page-stage {
    min-height: auto;
    padding: 28px;
    border-radius: 32px;
  }

  .page-stage .page-hero-grid {
    gap: 18px;
  }

  .page-stage-stats {
    grid-template-columns: 1fr;
  }

  .page-stage-scrim {
    background:
      linear-gradient(180deg, rgba(8, 21, 40, 0.84) 0%, rgba(8, 21, 40, 0.6) 42%, rgba(8, 21, 40, 0.72) 100%),
      linear-gradient(180deg, rgba(8, 21, 40, 0.06), rgba(8, 21, 40, 0.42));
  }

  .story-media {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 0.97;
  }

  h2 {
    font-size: 1.9rem;
  }

  .header-row {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 1.42rem;
  }

  .brand-copy small {
    letter-spacing: 0.08em;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 28px;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .button,
  .hero-tags span,
  .audience-list span,
  .inline-contact-item {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .hero-stage {
    padding: 24px;
    border-radius: 28px;
  }

  .page-stage {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .hero-grid-photo {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .page-stage-card,
  .page-stage-stats article {
    padding: 18px;
    border-radius: 22px;
  }

  .service-grid,
  .advantage-grid,
  .timeline,
  .form-row-split,
  .details-grid,
  .mini-grid,
  .faq-grid,
  .stats-grid,
  .deck-grid {
    grid-template-columns: 1fr;
  }

  .panel-shell,
  .inspection-card,
  .contact-form,
  .focus-card,
  .service-card,
  .advantage-card,
  .timeline-item,
  .trust-grid article,
  .contact-card,
  .visual-proof-card,
  .page-card,
  .detail-card,
  .icon-card,
  .faq-item,
  .stat-card,
  .deck-page,
  .story-media,
  .photo-frame {
    border-radius: 24px;
  }

  .brand-with-image img {
    height: 44px;
  }

  .inline-contact,
  .deck {
    gap: 16px;
  }

  .deck-page {
    padding: 28px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .deck {
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .deck-page {
    box-shadow: none;
    border: none;
    min-height: 100vh;
    page-break-after: always;
  }
}
