:root {
  --navy: #0b1f3a;
  --blue: #1769ff;
  --blue-2: #6ea4ff;
  --papbil-blue: #0067d7;
  --papbil-purple: #4f36c9;
  --gold: #d8ad45;
  --green: #20a957;
  --text: #13213a;
  --muted: #5d6a7f;
  --line: #dce6f6;
  --surface: #f6f9fe;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.12);
}

* {
  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(--text);
  background: var(--white);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

.top-strip {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 9px 5vw;
  color: #edf5ff;
  background: #061a33;
  font-size: 13px;
  font-weight: 750;
}

.top-strip a,
.top-strip span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 5vw;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 230, 246, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo-img {
  display: block;
  width: 230px;
  height: 92px;
  object-fit: contain;
}

.header-site-logo {
  width: 250px;
  height: 70px;
}

.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: #253759;
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 650;
}

.nav a.active {
  color: var(--blue);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.papbil-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 88px;
  flex: 0 0 auto;
}

.papbil-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  border: 0;
  box-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--papbil-blue), var(--papbil-purple));
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.22);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.phone,
.whatsapp,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.phone {
  padding: 0 16px;
  border: 1px solid var(--line);
}

.whatsapp,
.floating-whatsapp {
  color: var(--white);
  background: var(--green);
}

.whatsapp {
  padding: 0 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
  min-height: 620px;
  padding: 76px 6vw 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 46%, rgba(86, 71, 218, 0.26), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(0, 116, 255, 0.22), transparent 24%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(115deg, #061a33 0%, #08234b 52%, #102a7a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(120deg, transparent 0 35%, rgba(111, 180, 255, 0.2) 36%, transparent 37%),
    radial-gradient(circle, rgba(111, 180, 255, 0.36) 1px, transparent 1px);
  background-size: 190px 120px, 30px 30px;
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.04;
  font-weight: 900;
}

h1 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 640px;
  color: #dbe7f8;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(31, 102, 255, 0.2);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.appointment-modal[hidden] {
  display: none;
}

.appointment-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 42, 0.66);
  backdrop-filter: blur(10px);
}

.appointment-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid rgba(220,230,246,0.92);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(6,20,42,0.32);
}

.appointment-date-time {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
}

.appointment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.appointment-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.appointment-head h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.12;
}

.appointment-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--surface);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.whatsapp-outline {
  color: #94e3ae;
  background: rgba(255,255,255,0.04);
  border-color: rgba(32,169,87,0.65);
}

.hero-note {
  display: grid;
  gap: 4px;
  max-width: 520px;
  padding: 16px 18px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: rgba(0,0,0,0.13);
}

.hero-note strong {
  color: var(--white);
  font-size: 14px;
}

.hero-note span {
  color: #dce7f6;
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  min-height: 520px;
}

.hero-slider {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 34px 84px rgba(0,0,0,0.32);
  background: #061a33;
}

.hero-slide {
  position: relative;
  grid-area: 1 / 1;
  min-height: 520px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 550ms ease, transform 900ms ease;
  background-image:
    linear-gradient(90deg, rgba(6,26,51,0.16), rgba(11,58,160,0.22) 48%, rgba(72,48,182,0.28)),
    url("./assets/process-steps-sheet.png");
  background-repeat: no-repeat;
  background-size: auto 100%, 426% auto;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-scan {
  background-image:
    linear-gradient(90deg, rgba(6,26,51,0.18), rgba(11,58,160,0.18) 48%, rgba(72,48,182,0.22)),
    url("./assets/hero-consultation-real.jpg");
  background-size: auto 100%, cover;
  background-position: center, center;
}

.slide-report {
  background-position: center, 66.5% center;
}

.slide-consult {
  background-position: center, 99% center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 48%, rgba(107, 198, 255, 0.2), transparent 20%),
    repeating-radial-gradient(circle at 82% 48%, transparent 0 18px, rgba(111, 190, 255, 0.22) 20px 22px, transparent 24px 42px),
    linear-gradient(90deg, rgba(5,14,33,0.1), rgba(7,29,60,0.42));
  pointer-events: none;
}

.slide-copy {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  color: var(--white);
  background: rgba(4, 18, 38, 0.64);
  backdrop-filter: blur(12px);
}

.slide-copy strong {
  font-size: 22px;
}

.slide-copy span {
  color: #dce8fb;
  line-height: 1.5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-arrow:hover {
  background: rgba(23, 105, 255, 0.78);
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--papbil-blue);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6);
}

.mini-radar {
  width: 112px;
  height: 112px;
  clip-path: polygon(50% 0, 92% 28%, 78% 88%, 22% 88%, 8% 28%);
  background: rgba(31, 102, 255, 0.48);
  border: 2px solid var(--blue);
}

.trust-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: var(--line);
  box-shadow: 0 16px 45px rgba(11,31,58,0.1);
}

.trust-band div,
.trust-band a {
  position: relative;
  display: block;
  padding: 24px 26px;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-link {
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.trust-link:hover {
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(31,102,255,0.16);
}

.trust-link-web::after {
  content: "WEB";
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.trust-band .pdf-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: #e03131;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(224,49,49,0.2);
}

.trust-band strong {
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-band span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px 6vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.application h2,
.corporate h2,
.faq h2 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.section-heading p,
.corporate p,
.application p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid,
.report-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.report-grid article,
.price-grid article,
.lead-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(11,31,58,0.06);
}

.service-card,
.price-grid article {
  padding: 30px;
}

.service-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 152px;
  background:
    linear-gradient(90deg, rgba(31,102,255,0.12), rgba(31,102,255,0.03) 58%, transparent),
    linear-gradient(180deg, rgba(255,255,255,0.72), transparent);
  border-bottom: 1px solid rgba(31,102,255,0.1);
  pointer-events: none;
}

.service-card:nth-child(2)::before {
  background:
    linear-gradient(90deg, rgba(40,184,101,0.13), rgba(40,184,101,0.035) 58%, transparent),
    linear-gradient(180deg, rgba(255,255,255,0.72), transparent);
}

.service-card:nth-child(3)::before {
  background:
    linear-gradient(90deg, rgba(123,63,228,0.13), rgba(123,63,228,0.035) 58%, transparent),
    linear-gradient(180deg, rgba(255,255,255,0.72), transparent);
}

.service-card.service-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 42%);
  grid-template-rows: auto auto auto 1fr;
  column-gap: 18px;
  align-items: start;
  padding-right: 0;
  padding-bottom: 0;
}

.service-card.service-with-photo > :not(.service-photo) {
  grid-column: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.service-card h3,
.price-grid h3,
.report-grid h3 {
  color: var(--navy);
}

.service-card h3 {
  min-height: 2.5em;
  margin-bottom: 18px;
  line-height: 1.18;
}

.service-card p,
.price-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 9px;
  max-width: none;
  margin: 16px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: 14px;
  list-style: none;
}

.service-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-weight: 900;
}

.icon.green {
  background: #28b865;
}

.icon.purple {
  background: #7b3fe4;
}

.service-with-photo p {
  max-width: none;
}

.service-photo {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: end;
  width: 100%;
  height: 265px;
  margin-top: 26px;
  background-image: url("./assets/children-service-sheet.png");
  background-repeat: no-repeat;
  background-size: 286% auto;
  filter: drop-shadow(0 14px 18px rgba(11,31,58,0.1));
}

.photo-girl {
  background-position: 2% bottom;
}

.photo-sport {
  background-size: 304% auto;
  background-position: 50% bottom;
}

.photo-student {
  background-position: 99% bottom;
}

.premium-card,
.price-premium {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #092a52);
  border-color: rgba(217,169,58,0.6);
}

.premium-card h3,
.premium-card p,
.price-premium h3,
.price-premium p,
.price-premium strong {
  color: var(--white);
}

.process-section,
.reports,
.pricing {
  background: var(--surface);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.process > div {
  position: relative;
  display: grid;
  grid-template-rows: 132px 48px 1fr;
  align-items: start;
  row-gap: 14px;
  padding: 28px 18px;
}

.process-image {
  display: block;
  width: min(220px, 90%);
  height: 132px;
  margin: 0 auto;
  border: 1px solid rgba(31,102,255,0.2);
  border-radius: 10px;
  background-image: url("./assets/process-steps-sheet.png");
  background-repeat: no-repeat;
  background-size: 420% auto;
  box-shadow: 0 18px 38px rgba(11,31,58,0.1);
}

.process-apply {
  background-position: 2% 50%;
}

.process-scan {
  background-position: 33.5% 50%;
}

.process-report {
  background-position: 66.5% 50%;
}

.process-consult {
  background-position: 99% 50%;
}

.process strong,
.process span {
  display: block;
}

.process > div > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  line-height: 1.25;
}

.process .process-description {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.report-card {
  position: relative;
  display: grid;
  grid-template-rows: 70px 1fr;
  min-height: 260px;
  overflow: hidden;
  padding: 26px 24px 28px;
}

.report-card h3 {
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1.12;
}

.report-panel {
  min-height: 150px;
  align-self: stretch;
}

.temperament-panel {
  display: grid;
  align-content: center;
  gap: 18px;
}

.report-bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 118px;
  align-items: center;
  gap: 18px;
}

.report-bar-row strong {
  color: var(--navy);
  font-size: 13px;
  white-space: nowrap;
}

.report-bar {
  display: block;
  width: var(--value);
  height: 11px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.report-bar.blue {
  background: linear-gradient(90deg, #2368ff, #4e8bff);
}

.report-bar.green {
  background: linear-gradient(90deg, #1faa58, #36c873);
}

.report-bar.gold {
  background: linear-gradient(90deg, #d5a332, #edc556);
}

.learning-panel {
  position: relative;
  display: grid;
  grid-template-columns: 56px 96px 60px;
  grid-template-rows: 22px 96px 22px;
  grid-template-areas:
    ". top ."
    "left diamond right"
    ". bottom .";
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 5px 8px;
  width: 100%;
  max-width: 232px;
  margin: 0 auto;
}

.axis-label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.axis-label.top {
  grid-area: top;
}

.axis-label.right {
  grid-area: right;
  text-align: left;
}

.axis-label.bottom {
  grid-area: bottom;
}

.axis-label.left {
  grid-area: left;
  text-align: right;
}

.diamond-shape {
  grid-area: diamond;
  width: 96px;
  height: 96px;
  overflow: visible;
  filter: drop-shadow(0 12px 20px rgba(17,167,223,0.12));
}

.diamond-shape polygon {
  fill: rgba(17,167,223,0.04);
  stroke: #11a7df;
  stroke-width: 6;
  stroke-linejoin: round;
}

.communication-panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 22px;
}

.pie-chart {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(#2368ff 0 38%, #d6a539 38% 66%, #25a95a 66% 100%);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.86), 0 0 0 1px var(--line), 0 16px 30px rgba(11,31,58,0.08);
}

.communication-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  list-style: none;
}

.environment-panel {
  display: grid;
  align-content: center;
  justify-content: center;
}

.environment-panel strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.environment-donut-wrap {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.environment-donut {
  display: block;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: conic-gradient(#35a4ef 0 70%, #44c779 70% 100%);
  box-shadow: inset 0 0 0 27px var(--white), 0 0 0 1px var(--line), 0 16px 30px rgba(11,31,58,0.08);
}

.environment-legend {
  display: grid;
  gap: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.environment-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.environment-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-blue {
  background: #35a4ef;
}

.legend-green {
  background: #44c779;
}

.corporate ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.corporate,
.application {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 36px;
}

.corporate {
  margin: 72px 6vw;
  padding: 46px;
  border: 1px solid rgba(31,102,255,0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31,102,255,0.08), rgba(255,255,255,0.95));
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.audience-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid rgba(31,102,255,0.22);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255,255,255,0.74);
  font-weight: 850;
}

.price-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.price-premium span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-grid article.price-premium {
  color: var(--white);
  background: linear-gradient(145deg, #071a33 0%, #0b2b55 62%, #123f78 100%);
  border-color: rgba(216,173,69,0.72);
}

.price-grid article.price-premium h3,
.price-grid article.price-premium p,
.price-grid article.price-premium strong {
  color: var(--white);
}

.price-grid article.price-premium p {
  color: rgba(255,255,255,0.86);
}

.price-grid article.price-premium strong {
  text-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.application {
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

.toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border-radius: 8px;
  background: var(--surface);
}

.toggle button {
  height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.toggle button.active {
  color: var(--white);
  background: var(--blue);
}

label,
legend {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-size: 14px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

fieldset input,
.consent input {
  width: auto;
  margin-top: 2px;
}

.hidden {
  display: none;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-panel.hidden {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.faq {
  display: block;
}

.faq h2 {
  text-align: center;
}

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

.faq-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

details p {
  padding: 0 20px 18px;
}

.faq-document-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-document-link:hover {
  color: var(--navy);
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1fr;
  gap: 36px;
  padding: 54px 6vw;
  color: #d8e5ff;
  background: var(--navy);
}

.footer h3,
.footer strong {
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
}

.footer p {
  color: #afbdd2;
  line-height: 1.7;
}

.footer .footer-papbil-link {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--white);
}

.footer p a {
  display: inline;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .footer-instagram-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  width: min(100%, 230px);
  margin: 14px 0 0;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer .footer-instagram-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer .footer-instagram-card:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

.footer-instagram-icon {
  width: 34px;
  height: 34px;
  padding: 6px;
  color: var(--white);
  border-radius: 9px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer .footer-instagram-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
}

.footer-instagram-copy strong,
.footer-instagram-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-instagram-copy strong {
  font-size: 13px;
}

.footer-instagram-copy small {
  color: #afbdd2;
  font-size: 11px;
}

.footer-instagram-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  opacity: 0.72;
}

.footer-brand {
  width: max-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(32,169,87,0.28);
  font-size: 14px;
  font-weight: 900;
}

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

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

  .hero-visual {
    min-height: 500px;
  }

  .hero-slider,
  .hero-slide {
    min-height: 500px;
  }

  .service-grid,
  .report-grid,
  .price-grid,
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate,
  .application,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    padding: 8px 18px;
    font-size: 12px;
  }

  .top-strip span {
    display: none;
  }

  .site-header {
    align-items: flex-start;
    gap: 8px;
    padding: 14px 18px;
  }

  .site-header > .brand {
    max-width: 56vw;
  }

  .site-header .header-site-logo {
    width: min(210px, 55vw);
    height: 76px;
  }
  .header-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .papbil-brand-link {
    width: 70px;
    height: 66px;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .appointment-date-time {
    grid-template-columns: 1fr;
  }

  .phone,
  .whatsapp {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    padding: 42px 20px 30px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-points,
  .service-grid,
  .report-grid,
  .price-grid,
  .trust-band,
  .process,
  .faq-columns,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .service-card.service-with-photo {
    grid-template-columns: 1fr;
    padding-right: 30px;
    padding-bottom: 0;
  }

  .service-card.service-with-photo > :not(.service-photo),
  .service-photo {
    grid-column: 1;
  }

  .service-photo {
    grid-row: auto;
    width: min(260px, 100%);
    height: 230px;
    margin: 8px auto 0;
    background-size: 292% auto;
  }

  .photo-sport {
    background-size: 306% auto;
  }

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

  .hero-slider,
  .hero-slide {
    min-height: 340px;
  }

  .hero-slide {
    background-size: auto 100%, 430% auto;
  }

  .slide-scan {
    background-size: auto 100%, cover;
    background-position: center, center;
  }

  .slide-copy {
    left: 18px;
    right: 18px;
    bottom: 52px;
    max-width: none;
    padding: 14px 16px;
  }

  .slide-copy strong {
    font-size: 18px;
  }

  .slide-copy span {
    font-size: 13px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .process-image {
    width: min(290px, 100%);
    height: 168px;
  }

  .process > div {
    grid-template-rows: 168px auto 1fr;
    min-height: 322px;
  }

  .report-card {
    min-height: 280px;
  }

  .environment-donut-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .section {
    padding: 54px 20px;
  }

  .corporate {
    margin: 42px 20px;
    padding: 28px;
  }
}
