:root {
  --navy: #10233c;
  --blue: #2767d8;
  --cyan: #18a8d8;
  --orange: #f2a51f;
  --green: #17a073;
  --soft: #f5f9fc;
  --line: #d8e3eb;
  --text: #132238;
  --muted: #5c6f83;
  --page-gutter: clamp(24px, 5vw, 72px);
  --content-max: 1180px;
}
* { 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: #fff; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header { position: sticky; top: 0; z-index: 50; min-height: 76px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; padding: 12px var(--page-gutter); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: min(190px, 48vw); height: auto; }
.main-nav { display: flex; justify-content: center; gap: 24px; align-items: center; font-weight: 650; color: #42556b; }
.main-nav a, .nav-group summary { text-decoration: none; }
.main-nav a:hover, .nav-group summary:hover { color: var(--blue); }
.nav-group { position: relative; }
.nav-group summary { display: flex; align-items: center; gap: 6px; color: #42556b; cursor: pointer; list-style: none; }
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-group-menu { position: absolute; top: calc(100% + 14px); left: 50%; z-index: 60; display: grid; gap: 4px; min-width: 250px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(16,35,60,.14); opacity: 0; pointer-events: none; transform: translate(-50%, 8px); transition: opacity 180ms ease, transform 180ms ease; }
.nav-group[open] .nav-group-menu, .nav-group:hover .nav-group-menu, .nav-group:focus-within .nav-group-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-group-menu a { padding: 10px 12px; border-radius: 6px; color: var(--navy); white-space: nowrap; }
.nav-group-menu a:hover { background: var(--soft); text-decoration: none; }
.header-contact { display: grid; text-align: right; font-weight: 850; line-height: 1.35; }
.header-contact a { text-decoration: none; color: var(--navy); }
.lang-switch { display: inline-flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; background: #fff; }
.lang-switch img { width: 28px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 3px; margin: 5px auto; background: var(--navy); border-radius: 99px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero, .section, .contact, .service-hero, .service-body, .site-footer .footer-main, .footer-bottom { max-width: var(--content-max); margin: 0 auto; padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
.hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(34px, 5vw, 76px); align-items: center; padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(54px, 8vw, 100px); }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: .82rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.45rem); line-height: .98; letter-spacing: 0; color: var(--navy); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.04; letter-spacing: 0; color: var(--navy); }
h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--navy); }
.hero-lead, .lead { max-width: 740px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.26rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 1px solid var(--line); border-radius: 8px; font-weight: 850; text-decoration: none; cursor: pointer; }
.button.primary { color: #fff; border-color: var(--blue); background: var(--blue); }
.button.secondary { background: #fff; color: var(--navy); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; padding: 0; margin: 0; list-style: none; color: var(--muted); }
.hero-points li::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: var(--orange); }
.hero-media { padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(16,35,60,.12); }
.hero-media img, .service-photo img, .article-card img { width: 100%; border-radius: 6px; object-fit: cover; }
.section { padding-top: clamp(54px, 8vw, 96px); padding-bottom: clamp(54px, 8vw, 96px); }
.section.alt, .service-extra { max-width: none; background: var(--soft); }
.section.alt > *, .service-extra-inner { max-width: var(--content-max); margin: 0 auto; padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.service-grid, .steps, .benefit-list, .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.faq-list article { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.service-card, .step-card, .benefit-list div, .article-card, .service-panel { min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(19,34,56,.06); overflow-wrap: break-word; }
.service-card a, .article-card a, .text-link { color: var(--navy); font-weight: 950; text-decoration: none; }
.service-card a:hover, .article-card a:hover, .text-link:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.cam-icon { width: 54px; height: 54px; margin-bottom: 22px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, rgba(0,159,227,.18), rgba(24,199,232,.28)); overflow: hidden; }
.cam-icon img { width: 32px; height: 32px; object-fit: contain; }
.cam-icon.photo-icon img { width: 100%; height: 100%; object-fit: cover; }
.benefits { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.benefit-list { grid-template-columns: 1fr; }
.benefit-list div { box-shadow: none; }
.benefit-list strong { display: block; margin-bottom: 6px; color: var(--navy); }
.benefit-list span, .service-card p, .step-card p, .article-card p { color: var(--muted); }
.service-extra-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; padding-top: clamp(54px, 8vw, 92px); padding-bottom: clamp(54px, 8vw, 92px); }
.contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; padding-top: clamp(54px, 8vw, 96px); padding-bottom: clamp(54px, 8vw, 96px); }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(16,35,60,.08); }
.form-row { display: grid; gap: 7px; margin-bottom: 16px; }
label { font-weight: 900; color: var(--navy); }
input, textarea, select { width: 100%; min-height: 46px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }
textarea { resize: vertical; }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 16px 0; color: var(--muted); font-weight: 500; }
.checkbox-row input { width: auto; min-height: auto; margin-top: 6px; }
.checkbox-row a, .cookie-banner a { color: var(--blue); font-weight: 800; text-underline-offset: 3px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp-field input { width: 1px; min-height: 1px; padding: 0; }
.g-recaptcha { margin: 14px 0 18px; min-height: 78px; }
.form-note { color: var(--muted); font-size: .92rem; }
.service-hero { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 60px; align-items: center; padding-top: clamp(48px, 8vw, 94px); padding-bottom: clamp(48px, 8vw, 86px); background: linear-gradient(180deg,#fff,var(--soft)); }
.service-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.service-body { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; padding-top: clamp(54px, 8vw, 90px); padding-bottom: clamp(54px, 8vw, 90px); }
.service-content { max-width: 880px; }
.service-content section { margin-bottom: 36px; }
.service-content p, .service-content li { color: var(--muted); }
.service-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: 36px; }
.service-panel h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.15; }
.service-panel ul { padding-left: 20px; margin: 0; color: var(--muted); }
.site-footer { background: #30363d; color: #f1f5f9; }
.footer-main { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 42px; padding-top: 62px; padding-bottom: 52px; }
.footer-column h2 { font-size: 1.15rem; color: #fff; }
.footer-column a { color: #ffb02e; text-decoration: none; }
.footer-column p, .footer-column li { color: #d2d8dd; }
.footer-service-list { padding: 0; margin: 0; list-style: none; }
.footer-bottom { display: grid; justify-items: center; gap: 14px; padding-top: 24px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; }
.footer-social { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.12); color: #ffb02e; font-weight: 950; text-decoration: none; }
.footer-social:hover { background: #fff; color: var(--navy); }
.back-to-top { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: #edf2f6; color: var(--navy); text-decoration: none; font-size: 1.4rem; }
.cookie-banner { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: grid; grid-template-columns: 1fr auto; gap: 16px; max-width: 620px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 18px 54px rgba(16,35,60,.18); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; }
.mobile-contact-bar { display: none; }
@media (max-width: 920px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 14px; }
  .brand img { width: 155px; }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav { position: absolute; top: 76px; left: var(--page-gutter); right: var(--page-gutter); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(16,35,60,.14); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px; }
  .nav-group summary { padding: 13px; }
  .nav-group-menu { position: static; min-width: 0; padding: 0 0 8px 14px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-group:not([open]) .nav-group-menu { display: none; }
  .nav-group-menu a { padding: 10px 13px; white-space: normal; }
  .header-contact { display: none; }
  .hero, .contact, .service-hero, .service-body, .benefits, .service-extra-inner { grid-template-columns: 1fr; }
  .service-grid, .steps, .article-grid, .faq-list, .footer-main { grid-template-columns: 1fr; }
  .cookie-banner { left: 14px; right: 14px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
}
@media (max-width: 420px) {
  .g-recaptcha { transform: scale(.86); transform-origin: left top; }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #101820;
    border-top: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 -10px 30px rgba(16,24,32,.18);
    transition: transform 280ms ease, opacity 280ms ease;
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    color: #101820;
    background: var(--orange);
  }

  .mobile-contact-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }
}

.home-page {
  --home-ink: #101820;
  --home-blue: #2767d8;
  --home-green: #0d8068;
  color: var(--home-ink);
}

.home-page .site-header {
  box-shadow: 0 8px 28px rgba(19,34,56,.05);
}

.home-page .hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  max-width: none;
  min-height: clamp(620px, calc(100vh - 76px), 820px);
  padding: clamp(76px, 10vw, 128px) var(--page-gutter) clamp(64px, 9vw, 108px);
  overflow: hidden;
  color: #fff;
  background: #101820;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16,24,32,.86) 0%, rgba(16,24,32,.68) 44%, rgba(16,24,32,.28) 100%),
    linear-gradient(180deg, rgba(16,24,32,.16), rgba(16,24,32,.48));
}

.home-page .hero-content {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.home-page .hero .eyebrow {
  color: #b7e34d;
}

.home-page .hero h1 {
  max-width: 820px;
  color: #fff;
  text-shadow: 0 14px 42px rgba(0,0,0,.35);
}

.home-page .hero-lead {
  max-width: 720px;
  color: rgba(255,255,255,.88);
}

.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #101820;
  box-shadow: none;
}

.home-page .hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.home-page .hero .button.primary {
  background: var(--home-blue);
  border-color: var(--home-blue);
  box-shadow: 0 16px 38px rgba(39,103,216,.28);
}

.home-page .hero .button.secondary {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
  backdrop-filter: blur(10px);
}

.home-page .hero-points {
  max-width: 860px;
  color: rgba(255,255,255,.84);
}

.home-page .hero-points li::before {
  background: var(--orange);
}

.home-page .section {
  padding-top: clamp(58px, 8vw, 108px);
  padding-bottom: clamp(58px, 8vw, 108px);
}

.home-page .section.alt,
.home-page .service-extra {
  background: #eaf2f6;
}

.home-page .section-heading {
  max-width: 720px;
}

.home-page .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.home-page .service-card,
.home-page .step-card,
.home-page .faq-list article,
.home-page .contact-card {
  box-shadow: 0 12px 30px rgba(19,34,56,.06);
}

.home-page .benefit-list {
  gap: 0;
}

.home-page .benefit-list div {
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.home-page .benefit-list div:last-child {
  border-bottom: 0;
}

.home-page .cam-icon {
  background: #2767d8;
  box-shadow: inset -8px 0 rgba(0,0,0,.13), 0 12px 22px rgba(19,34,56,.14);
}

.home-page .cam-icon.photo-icon {
  background: #fff;
  box-shadow: 0 12px 22px rgba(19,34,56,.12);
}

.home-page .contact {
  max-width: none;
  background: #f7faf9;
}

.home-page .contact > * {
  max-width: none;
}

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

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

.audience-card,
.feature-card,
.guide-card,
.note-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19,34,56,.06);
  overflow-wrap: break-word;
}

.audience-card h3,
.feature-card h3,
.guide-card h3 {
  margin-bottom: 12px;
}

.audience-card p,
.feature-card p,
.guide-card p,
.note-panel p,
.check-list li {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.section-visual {
  margin: 0 0 28px;
}

.section-visual img,
.guide-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(19,34,56,.1);
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0;
  overflow: hidden;
}

.guide-card img {
  min-height: 190px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.guide-card-body {
  padding: 0 24px 24px;
}

.article-body {
  width: min(100% - (var(--page-gutter) * 2), 920px);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px) 0 clamp(64px, 9vw, 112px);
}

.article-figure {
  margin: 0 0 38px;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 900 / 520;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(16,35,60,.14);
}

.article-header {
  margin-bottom: 34px;
}

.article-header h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 5.3vw, 4.35rem);
}

.article-summary,
.article-rule,
.article-decision,
.article-checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-summary {
  margin: 34px 0 46px;
  padding: 24px 26px;
  border-left: 5px solid var(--orange);
  background: #fffaf0;
}

.article-summary h2,
.article-rule h2,
.article-decision h3,
.article-checklist h2 {
  margin-bottom: 9px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.article-summary p,
.article-rule p,
.article-decision p,
.article-checklist p,
.article-content p,
.article-content li {
  color: var(--muted);
}

.article-summary p,
.article-rule p,
.article-decision p,
.article-checklist p {
  margin-bottom: 0;
}

.article-content > section {
  margin: 0 0 46px;
}

.article-content > section > h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.article-rules,
.article-decisions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 0;
}

.article-rule,
.article-decision,
.article-checklist {
  min-width: 0;
  padding: 22px;
  background: var(--soft);
}

.article-rule strong {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: .85rem;
}

.article-checklist {
  margin-top: 22px;
  background: #f2f8f7;
}

.article-checklist ul {
  margin-bottom: 0;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin: 50px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.reveal-item {
  opacity: 1;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

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

.service-card,
.step-card,
.audience-card,
.feature-card,
.guide-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.step-card:hover,
.audience-card:hover,
.feature-card:hover,
.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(19,34,56,.1);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(39,103,216,.22);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .home-page .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-page .hero::after {
    background: linear-gradient(90deg, rgba(16,24,32,.88), rgba(16,24,32,.58));
  }

  .audience-grid,
  .feature-grid,
  .guide-grid,
  .check-list,
  .article-rules,
  .article-decisions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-enabled .reveal-item,
  .reveal-enabled .reveal-item.is-visible,
  .service-card,
  .step-card,
  .audience-card,
  .feature-card,
  .guide-card,
  .mobile-contact-bar {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
