:root {
  --green-950: #073e2d;
  --green-900: #075238;
  --green-800: #086744;
  --green-700: #087a55;
  --green-600: #0b9368;
  --green-500: #17aa7a;
  --green-200: #bcebd9;
  --green-100: #def6ed;
  --green-50: #f1fbf7;
  --ink: #122019;
  --ink-soft: #3c5148;
  --muted: #6c7d75;
  --line: #e2ebe6;
  --surface: #ffffff;
  --soft: #f6f9f7;
  --blue: #4c86ff;
  --purple: #8c62f7;
  --danger: #b93854;
  --warning: #8c631a;
  --shadow-sm: 0 8px 24px rgba(12, 59, 42, .08);
  --shadow-md: 0 20px 50px rgba(12, 59, 42, .11);
  --shadow-lg: 0 34px 90px rgba(6, 60, 41, .16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--green-200); color: var(--green-950); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; position: relative; }
.narrow-page { width: min(780px, 100%); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; background: var(--green-900); color: #fff; border-radius: 12px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.icon-svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(226,235,230,.8); backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px); }
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 48px; height: 48px; border-radius: 15px; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(6, 70, 46, .1); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 16px; letter-spacing: -.025em; }
.brand-copy span { margin-top: 4px; color: var(--muted); font-size: 11px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 10px 12px; color: #52645c; font-size: 13px; font-weight: 700; border-radius: 999px; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--green-800); background: var(--green-50); }
.main-nav .nav-report, .main-nav .nav-admin { margin-left: 8px; padding: 11px 17px; color: #fff; background: var(--green-800); box-shadow: 0 10px 24px rgba(8, 122, 85, .2); }
.main-nav .nav-report:hover, .main-nav .nav-admin:hover { color: #fff; background: var(--green-900); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--green-50); color: var(--green-800); place-items: center; }
.nav-toggle .menu-close { display: none; }
.nav-toggle[aria-expanded="true"] .menu-open { display: none; }
.nav-toggle[aria-expanded="true"] .menu-close { display: block; }

/* Common */
.section { padding: 96px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.narrow { max-width: 740px; }
.section-heading h2 { margin: 10px 0 9px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.section-heading.light p { opacity: .72; }
.section-kicker, .hero-kicker, .eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.section-kicker::before, .hero-kicker::before { content: ""; width: 18px; height: 2px; border-radius: 999px; background: currentColor; }
.section-kicker.light { color: #c9f5e5; }
.button, .btn { min-height: 50px; padding: 0 20px; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .btn:hover { transform: translateY(-2px); }
.button-primary, .btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-900)); box-shadow: 0 15px 30px rgba(8, 122, 85, .22); }
.button-primary:hover, .btn-primary:hover { box-shadow: 0 18px 36px rgba(8, 122, 85, .28); }
.button-soft, .btn-secondary { color: var(--green-800); background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(16, 60, 44, .06); }
.button-white { color: var(--green-900); background: #fff; box-shadow: 0 16px 32px rgba(0,0,0,.12); }
.button-danger, .btn-danger { color: #fff; background: var(--danger); }
.full-button { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-800); font-weight: 800; }
.center-action { text-align: center; margin-top: 26px; }
.glass-panel { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.84); backdrop-filter: blur(24px) saturate(150%); box-shadow: var(--shadow-md); }
.round-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--green-700); background: var(--green-100); }
.round-icon .icon-svg { width: 24px; height: 24px; }
.flash-wrap { padding-top: 16px; }
.alert { padding: 15px 17px; border-radius: 16px; font-size: 14px; }
.alert strong { display: block; margin-bottom: 3px; }
.alert ul { margin: 8px 0 0; padding-left: 20px; }
.alert.success { color: #1d6a49; background: #eaf8f1; border: 1px solid #bfe7d2; }
.alert.error { color: #893246; background: #fff0f3; border: 1px solid #efc4ce; }
.notice { display: flex; gap: 12px; padding: 16px; border-radius: 17px; font-size: 13px; }
.notice strong { display: block; }
.notice p { margin: 3px 0 0; }
.notice.neutral { color: #466057; background: #f3f8f5; border: 1px solid var(--line); }
.notice.warning { color: #6c531f; background: #fff8e7; border: 1px solid #ecd89e; }

/* Hero */
.hero-section { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfefc 100%); }
.hero-layout { min-height: 660px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 56px; padding-block: 62px 70px; }
.hero-copy-block h1 { margin: 17px 0 21px; max-width: 630px; font-size: clamp(48px, 5.7vw, 76px); line-height: .98; letter-spacing: -.062em; }
.hero-copy-block h1 em { display: block; color: var(--green-700); font-style: normal; }
.hero-copy-block > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.hero-trust-list { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; }
.hero-trust-list span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.hero-trust-list .icon-svg { width: 16px; height: 16px; color: var(--green-600); }
.hero-visual { position: relative; min-height: 520px; }
.hero-green-panel { position: absolute; inset: 12px 0 5px 86px; border-radius: 42px 0 0 42px; background: linear-gradient(145deg, #0d9b6e 0%, #08694a 70%); box-shadow: var(--shadow-lg); }
.hero-green-panel::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.23), transparent 33%), radial-gradient(circle at 85% 74%, rgba(197,255,232,.17), transparent 30%); }
.hero-green-panel::after { content: ""; position: absolute; width: 330px; height: 330px; right: -90px; bottom: -130px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.04), 0 0 0 88px rgba(255,255,255,.03); }
.hero-logo-card { position: absolute; z-index: 2; left: 22px; top: 56px; width: 70%; padding: 12px; border-radius: 24px; transform: rotate(-2deg); }
.hero-logo-card img { width: 100%; height: 104px; object-fit: cover; border-radius: 16px; }
.iphone-card { position: absolute; z-index: 4; right: 34px; bottom: -5px; width: 260px; height: 476px; padding: 10px; border-radius: 48px; background: #101713; box-shadow: 0 38px 70px rgba(4, 40, 27, .34); border: 1px solid rgba(255,255,255,.25); }
.iphone-card::before { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(255,255,255,.12); border-radius: 45px; pointer-events: none; }
.iphone-top { height: 36px; position: relative; z-index: 2; padding: 8px 12px 0; display: flex; justify-content: space-between; color: #17352a; font-size: 9px; font-weight: 800; }
.dynamic-island { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 86px; height: 24px; border-radius: 999px; background: #080b09; }
.iphone-signal { letter-spacing: -1px; font-size: 6px; margin-top: 3px; }
.iphone-body { position: absolute; inset: 10px; padding: 39px 16px 24px; border-radius: 39px; overflow: hidden; background: linear-gradient(180deg, #f6fff9 0%, #e8f7ef 100%); }
.mobile-brand { display: flex; align-items: center; gap: 8px; color: var(--green-900); font-size: 11px; font-weight: 850; }
.mobile-brand img { width: 30px; height: 30px; border-radius: 10px; object-fit: cover; }
.iphone-body h2 { margin: 20px 0 16px; font-size: 24px; line-height: 1.05; letter-spacing: -.045em; }
.mobile-action { min-height: 64px; display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 10px; padding: 11px; margin-bottom: 10px; border-radius: 18px; background: rgba(255,255,255,.9); border: 1px solid rgba(24,102,72,.08); box-shadow: 0 10px 22px rgba(14,78,54,.07); }
.mobile-action > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: var(--green-100); color: var(--green-700); }
.mobile-action strong, .mobile-action small { display: block; }
.mobile-action strong { font-size: 11px; }
.mobile-action small { color: var(--muted); font-size: 8px; margin-top: 2px; }
.mobile-action.primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.mobile-action.primary > span { background: rgba(255,255,255,.16); color: #fff; }
.mobile-action.primary small { color: rgba(255,255,255,.7); }
.mobile-safety { display: flex; gap: 10px; padding: 13px; margin-top: 16px; color: var(--green-900); background: rgba(173,233,211,.48); border-radius: 17px; }
.mobile-safety > span { flex: 0 0 auto; }
.mobile-safety strong, .mobile-safety small { display: block; }
.mobile-safety strong { font-size: 10px; }
.mobile-safety small { margin-top: 3px; color: #507266; font-size: 8px; line-height: 1.4; }
.iphone-home-indicator { position: absolute; z-index: 6; left: 50%; bottom: 16px; transform: translateX(-50%); width: 86px; height: 4px; border-radius: 99px; background: #17231e; }
.floating-case-card { position: absolute; z-index: 5; left: 42px; bottom: 44px; width: 235px; display: grid; grid-template-columns: 42px 1fr 12px; align-items: center; gap: 10px; padding: 13px; border-radius: 20px; }
.case-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: var(--green-700); background: var(--green-100); }
.floating-case-card small, .floating-case-card strong { display: block; }
.floating-case-card small { color: var(--muted); font-size: 9px; }
.floating-case-card strong { font-size: 12px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #18ad78; box-shadow: 0 0 0 5px rgba(24,173,120,.13); }

/* Privacy */
.privacy-section { background: #f7f9f8; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.privacy-card { position: relative; min-height: 250px; padding: 34px 28px; text-align: center; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.privacy-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green-500); }
.privacy-card.accent-blue::before { background: var(--blue); }
.privacy-card.accent-purple::before { background: var(--purple); }
.privacy-card .round-icon { margin: 0 auto 22px; }
.privacy-card.accent-blue .round-icon { color: var(--blue); background: #edf3ff; }
.privacy-card.accent-purple .round-icon { color: var(--purple); background: #f2edff; }
.privacy-card h3 { margin: 0 0 11px; font-size: 17px; letter-spacing: -.02em; }
.privacy-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

/* Categories */
.categories-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%); }
.category-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; pointer-events: none; }
.glow-left { width: 380px; height: 380px; left: -220px; top: 190px; background: #e3f4ec; }
.glow-right { width: 420px; height: 420px; right: -240px; bottom: 80px; background: #dfeaf4; }
.category-search { width: min(560px, 100%); height: 54px; margin: -12px auto 42px; padding: 0 18px; display: flex; align-items: center; gap: 10px; border-radius: 999px; background: #fff; border: 1px solid #dfe8e3; box-shadow: 0 10px 28px rgba(24,69,51,.08); }
.category-search .icon-svg { color: #9aa9a2; }
.category-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; }
.category-search input::placeholder { color: #9aa9a2; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { min-height: 260px; display: flex; flex-direction: column; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(18,60,44,.04); transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.category-card:hover { transform: translateY(-5px); border-color: #c8ded4; box-shadow: var(--shadow-md); }
.category-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: #0e805a; background: #e9f8f2; }
.category-icon .icon-svg { width: 25px; height: 25px; }
.category-icon.mint { color: #178c7b; background: #e7f8f5; }
.category-icon.lime { color: #65831c; background: #f2f8de; }
.category-icon.forest { color: #075238; background: #dff3e9; }
.category-icon.teal { color: #147c80; background: #e7f6f5; }
.category-icon.sage { color: #66796f; background: #edf2ef; }
.category-card h3 { margin: 20px 0 8px; font-size: 19px; letter-spacing: -.025em; }
.category-card p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.category-card a { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--green-800); font-size: 12px; font-weight: 850; }
.category-card a .icon-svg { width: 15px; height: 15px; }
.empty-state { margin-top: 20px; padding: 20px; text-align: center; color: var(--muted); background: #fff; border: 1px dashed #cbd9d2; border-radius: 18px; }

/* Process */
.process-section { padding: 88px 0 92px; color: #fff; background: linear-gradient(135deg, #086846 0%, #064931 70%); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-grid article { position: relative; min-height: 186px; padding: 20px 17px; border-radius: 19px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.11); }
.process-grid article:not(:last-child)::after { content: ""; position: absolute; top: 35px; left: 47px; width: calc(100% - 23px); border-top: 1px dashed rgba(255,255,255,.24); transform: translateX(0); }
.process-grid span { position: relative; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--green-900); background: #fff; font-size: 13px; font-weight: 900; }
.process-grid h3 { margin: 24px 0 7px; font-size: 15px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.65; }

/* About */
.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 76px; }
.about-copy h3 { margin: 0 0 13px; font-size: 28px; letter-spacing: -.035em; }
.about-copy > p { margin: 0; color: var(--muted); }
.feature-list { display: grid; gap: 20px; margin-top: 29px; }
.feature-list > div { display: flex; gap: 14px; }
.feature-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 13px; color: var(--green-700); background: var(--green-100); box-shadow: 0 8px 18px rgba(7,105,74,.1); }
.feature-icon.blue { color: var(--blue); background: #edf3ff; }
.feature-icon.purple { color: var(--purple); background: #f2edff; }
.feature-list strong { display: block; font-size: 14px; }
.feature-list p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.about-visual { position: relative; min-height: 420px; display: grid; place-items: center; }
.about-backdrop { position: absolute; width: 390px; height: 320px; right: 0; top: 40px; border-radius: 26px; background: linear-gradient(145deg, #0c8b61, #075039); transform: rotate(4deg); }
.dashboard-preview { position: relative; z-index: 2; width: min(470px, 92%); padding: 22px; border-radius: 25px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); }
.preview-header { display: grid; grid-template-columns: 40px 1fr 36px; align-items: center; gap: 10px; }
.mini-logo img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.preview-header strong, .preview-header small { display: block; }
.preview-header strong { font-size: 13px; }
.preview-header small { color: var(--muted); font-size: 9px; }
.preview-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-800); font-size: 10px; font-weight: 800; }
.preview-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.preview-stats div { padding: 13px; border-radius: 14px; background: #f5f9f7; }
.preview-stats small, .preview-stats strong { display: block; }
.preview-stats small { color: var(--muted); font-size: 8px; }
.preview-stats strong { margin-top: 3px; font-size: 21px; }
.preview-chart { height: 118px; display: flex; align-items: flex-end; gap: 9px; padding: 16px; margin-top: 12px; border-radius: 16px; background: #f8fbf9; }
.preview-chart span { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #20b381, #087a55); }
.preview-list { display: grid; gap: 8px; margin-top: 12px; }
.preview-list span { height: 9px; border-radius: 99px; background: #edf2ef; }
.preview-list span:nth-child(1) { width: 94%; }
.preview-list span:nth-child(2) { width: 77%; }
.preview-list span:nth-child(3) { width: 86%; }

/* FAQ */
.faq-home-section, .faq-page-section { background: #f7f9f8; }
.faq-list { width: 100%; display: grid; gap: 12px; }
.faq-list.compact { max-width: 820px; margin-inline: auto; }
.faq-item { border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(18,56,42,.035); overflow: hidden; }
.faq-item button { width: 100%; min-height: 62px; padding: 0 18px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: transparent; cursor: pointer; font-weight: 800; font-size: 14px; }
.faq-plus { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; color: var(--green-700); border-radius: 50%; background: var(--green-50); transition: transform .25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 18px; color: var(--muted); font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 18px; }
.faq-callout { margin-top: 30px; padding: 22px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.faq-callout > div:first-child { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--green-700); background: var(--green-100); }
.faq-callout strong { display: block; }
.faq-callout p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

/* CTA */
.report-cta-section { padding: 0 0 80px; background: #f7f9f8; }
.report-cta { padding: 38px 42px; display: flex; align-items: center; justify-content: space-between; gap: 35px; color: #fff; border-radius: 30px; background: linear-gradient(135deg, var(--green-700), var(--green-950)); overflow: hidden; }
.report-cta::after { content: ""; position: absolute; width: 320px; height: 320px; right: -150px; top: -130px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 92px rgba(255,255,255,.025); }
.report-cta > * { position: relative; z-index: 2; }
.report-cta span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; opacity: .72; font-weight: 800; }
.report-cta h2 { margin: 7px 0 7px; font-size: 31px; line-height: 1.12; letter-spacing: -.04em; }
.report-cta p { max-width: 700px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.report-cta .button { flex: 0 0 auto; }

/* Footer */
.site-footer { padding: 32px 0; color: #fff; background: #f7f9f8; }
.footer-shell { padding: 54px 52px 22px; border-radius: 34px 34px 0 0; background: linear-gradient(145deg, #086a49, #043a29); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .7fr 1.1fr; gap: 40px; }
.footer-grid section { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid h3 { margin: 0 0 7px; color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid a { color: rgba(255,255,255,.76); font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.footer-logo-row { display: flex; align-items: center; gap: 11px; }
.footer-logo-row img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; }
.footer-logo-row strong, .footer-logo-row span { display: block; }
.footer-logo-row span { color: rgba(255,255,255,.55); font-size: 10px; }
.footer-brand-column h2 { max-width: 370px; margin: 18px 0 4px; font-size: 23px; line-height: 1.15; letter-spacing: -.035em; }
.footer-brand-column > p { max-width: 420px; margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.contact-item { display: flex; gap: 9px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.5; }
.contact-item .icon-svg { margin-top: 2px; width: 15px; height: 15px; }
.contact-note { margin: 6px 0 0; padding: 11px; color: rgba(255,255,255,.65); font-size: 10px; border-radius: 12px; background: rgba(255,255,255,.07); }
.footer-bottom { margin-top: 36px; padding-top: 17px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }

/* Interior pages */
.page-hero-simple { padding: 88px 0 74px; text-align: center; background: linear-gradient(180deg, #f4fbf7, #fff); }
.page-hero-simple h1 { margin: 13px 0 14px; font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -.055em; }
.page-hero-simple p { margin: 0 auto 24px; color: var(--muted); font-size: 17px; }
.category-detail-hero { padding: 74px 0 86px; background: linear-gradient(180deg, #f3fbf7, #fff); }
.category-detail-layout { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.back-link { display: inline-block; margin-bottom: 30px; color: var(--muted); font-size: 13px; font-weight: 700; }
.category-icon.large { width: 72px; height: 72px; margin-bottom: 22px; border-radius: 22px; }
.category-icon.large .icon-svg { width: 34px; height: 34px; }
.category-detail-layout h1 { margin: 10px 0 15px; font-size: clamp(44px, 5vw, 66px); line-height: 1.02; letter-spacing: -.055em; }
.category-detail-layout > div > p { max-width: 650px; margin: 0 0 27px; color: var(--muted); font-size: 18px; }
.detail-info-card { padding: 30px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.detail-info-card h2 { margin: 0 0 18px; font-size: 22px; }
.check-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 10px; color: var(--ink-soft); font-size: 13px; }
.check-list .icon-svg { margin-top: 3px; color: var(--green-600); }
.compact-section { padding-top: 35px; }
.detail-three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.detail-three-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 22px; }
.detail-three-grid h3 { margin: 18px 0 8px; }
.detail-three-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.guide-layout { display: grid; grid-template-columns: 1fr 340px; gap: 54px; align-items: start; }
.guide-steps { display: grid; gap: 0; }
.guide-steps article { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 0 0 36px; position: relative; }
.guide-steps article:not(:last-child)::before { content: ""; position: absolute; left: 25px; top: 51px; bottom: 0; width: 1px; background: #d7e6df; }
.guide-steps article > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; color: var(--green-800); background: var(--green-100); font-weight: 900; }
.guide-steps h2 { margin: 1px 0 7px; font-size: 21px; }
.guide-steps p { margin: 0; color: var(--muted); font-size: 14px; }
.guide-sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.side-panel { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.side-panel h3 { margin: 0 0 14px; }
.side-panel ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }
.side-panel li + li { margin-top: 8px; }
.side-panel.emergency { background: #f5fbf8; }
.side-panel.emergency h3 { margin-top: 16px; }
.side-panel.emergency p { margin: 0; color: var(--muted); font-size: 13px; }
.policy-content { width: min(840px, 100%); }
.policy-content h2 { margin: 32px 0 7px; font-size: 22px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--muted); }
.policy-content .notice { margin-top: 34px; }

/* Forms */
.form-page-hero { padding: 68px 0 48px; background: linear-gradient(180deg, #effaf5, #fff); }
.form-hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.form-hero-layout h1 { max-width: 760px; margin: 12px 0 12px; font-size: clamp(40px, 5vw, 62px); line-height: 1.02; letter-spacing: -.055em; }
.form-hero-layout p { max-width: 720px; margin: 0; color: var(--muted); }
.privacy-badge-card { flex: 0 0 290px; display: flex; align-items: center; gap: 12px; padding: 17px; border: 1px solid #cfe7dc; border-radius: 19px; background: rgba(255,255,255,.76); box-shadow: var(--shadow-sm); }
.privacy-badge-card > .icon-svg { width: 25px; height: 25px; color: var(--green-700); }
.privacy-badge-card strong, .privacy-badge-card span { display: block; }
.privacy-badge-card strong { font-size: 13px; }
.privacy-badge-card span { color: var(--muted); font-size: 10px; }
.form-page-section { padding-top: 28px; background: #f8faf9; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.report-form { padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.form-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; margin-bottom: 34px; }
.form-progress button { padding: 0; border: 0; display: grid; justify-items: center; gap: 5px; color: #9ba9a2; background: transparent; font-size: 9px; cursor: pointer; }
.form-progress button > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #edf2ef; font-size: 11px; font-weight: 900; }
.form-progress button.active { color: var(--green-800); }
.form-progress button.active > span { color: #fff; background: var(--green-700); box-shadow: 0 8px 18px rgba(8,122,85,.2); }
.form-progress i { height: 1px; background: #dde7e2; }
.form-step { display: none; }
.form-step.active { display: block; animation: formFade .28s ease; }
@keyframes formFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-step-heading { margin-bottom: 24px; }
.form-step-heading > span { color: var(--green-700); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.form-step-heading h2 { margin: 6px 0 5px; font-size: 27px; letter-spacing: -.035em; }
.form-step-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.form-group { display: grid; gap: 7px; margin-bottom: 16px; }
.form-group label, label { color: #2d463c; font-size: 12px; font-weight: 800; }
.form-group label b, .consent-row b { color: var(--danger); }
input, textarea, select { width: 100%; border: 1px solid #d5e2dc; border-radius: 15px; padding: 13px 14px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(11,147,104,.1); }
textarea { resize: vertical; min-height: 150px; }
.field-help { color: var(--muted); font-size: 10px; }
.toggle-card { margin-bottom: 20px; padding: 15px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-radius: 18px; background: var(--green-50); border: 1px solid #d9eee5; }
.toggle-card strong, .toggle-card span { display: block; }
.toggle-card strong { font-size: 13px; }
.toggle-card span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.ios-switch { position: relative; flex: 0 0 auto; }
.ios-switch input { position: absolute; opacity: 0; pointer-events: none; }
.ios-switch > span { position: relative; width: 48px; height: 29px; display: block; border-radius: 999px; background: #c8d5cf; transition: background .2s; cursor: pointer; }
.ios-switch > span::after { content: ""; position: absolute; width: 23px; height: 23px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 7px rgba(0,0,0,.18); transition: transform .2s; }
.ios-switch input:checked + span { background: var(--green-600); }
.ios-switch input:checked + span::after { transform: translateX(19px); }
.soft-disabled { opacity: .48; }
.upload-zone { min-height: 160px; padding: 24px; display: grid; place-items: center; text-align: center; border: 1.5px dashed #a8c9ba; border-radius: 20px; background: #f8fcfa; cursor: pointer; }
.upload-zone .icon-svg { width: 28px; height: 28px; color: var(--green-700); }
.upload-zone strong { margin-top: 8px; color: var(--ink); }
.upload-zone span, .upload-zone small { color: var(--muted); font-size: 10px; }
.upload-zone small { margin-top: 8px; color: var(--green-700); font-weight: 750; }
.form-actions { margin-top: 26px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); }
.choice-grid { display: grid; gap: 10px; }
.risk-grid { grid-template-columns: repeat(2,1fr); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card > span { min-height: 88px; padding: 15px; display: grid; align-content: center; border: 1px solid #dbe6e1; border-radius: 17px; transition: .2s; }
.choice-card strong, .choice-card small { display: block; }
.choice-card small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.choice-card input:checked + span { border-color: var(--green-600); background: var(--green-50); box-shadow: 0 0 0 3px rgba(11,147,104,.08); }
.consent-row { margin-top: 12px; padding: 15px; display: flex; align-items: flex-start; gap: 11px; border-radius: 17px; background: #f8faf9; border: 1px solid var(--line); }
.consent-row input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green-700); }
.consent-row strong, .consent-row small { display: block; }
.consent-row small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.emergency-note { margin-top: 18px; color: #7c4a20; background: #fff6ed; border: 1px solid #f0d2b4; }
.review-card { display: flex; gap: 16px; padding: 20px; border-radius: 20px; background: var(--green-50); border: 1px solid #d7ece2; }
.review-card h3 { margin: 0 0 5px; }
.review-card p { margin: 0; color: var(--muted); font-size: 12px; }
.review-card a { margin-top: 11px; display: inline-flex; align-items: center; gap: 6px; color: var(--green-800); font-size: 11px; font-weight: 800; }
.required-consent { margin-top: 18px; }
.form-sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.sidebar-safety-card, .sidebar-help-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.sidebar-safety-card h2 { margin: 8px 0 20px; font-size: 23px; line-height: 1.12; letter-spacing: -.035em; }
.sidebar-checks { display: grid; gap: 17px; }
.sidebar-checks > div { display: flex; gap: 11px; }
.sidebar-checks > div > span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 10px; color: var(--green-800); background: var(--green-100); font-size: 11px; font-weight: 900; }
.sidebar-checks p { margin: 0; color: var(--muted); font-size: 10px; }
.sidebar-checks strong { display: block; color: var(--ink); font-size: 11px; }
.sidebar-help-card h3 { margin: 15px 0 5px; }
.sidebar-help-card p { margin: 0 0 12px; color: var(--muted); font-size: 12px; }
.sidebar-help-card a { display: inline-flex; align-items: center; gap: 6px; color: var(--green-800); font-size: 11px; font-weight: 800; }

/* Success */
.success-page { min-height: 680px; padding: 80px 0 100px; display: grid; place-items: center; text-align: center; background: linear-gradient(180deg, #eefaf4, #fff); }
.success-shell { width: min(720px, calc(100% - 40px)); padding: 44px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.success-check { width: 76px; height: 76px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--green-500), var(--green-800)); box-shadow: 0 18px 34px rgba(8,122,85,.23); }
.success-check .icon-svg { width: 36px; height: 36px; stroke-width: 2.3; }
.success-shell h1 { margin: 12px 0 10px; font-size: 42px; letter-spacing: -.05em; }
.success-shell > p { margin: 0 auto; max-width: 560px; color: var(--muted); }
.ticket-panel { margin: 28px 0 18px; padding: 22px; display: grid; grid-template-columns: 1fr 1px 1fr; align-items: center; gap: 22px; border-radius: 21px; background: #f3faf6; border: 1px dashed #a8ccb9; }
.ticket-panel i { height: 56px; background: #d6e8df; }
.ticket-panel span, .ticket-panel strong { display: block; }
.ticket-panel span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.ticket-panel strong { margin-top: 4px; font-size: 22px; letter-spacing: .04em; }
.centered-actions { justify-content: center; }

/* Tracking */
.tracking-page { padding: 84px 0 92px; background: linear-gradient(180deg, #f1faf5, #fff); }
.tracking-layout { display: grid; grid-template-columns: 1fr 470px; align-items: center; gap: 80px; }
.tracking-copy h1 { margin: 12px 0 14px; font-size: clamp(46px, 5.5vw, 70px); line-height: 1; letter-spacing: -.06em; }
.tracking-copy > p { max-width: 580px; color: var(--muted); font-size: 17px; }
.tracking-benefits { display: grid; gap: 15px; margin-top: 27px; }
.tracking-benefits > div { display: flex; gap: 12px; }
.tracking-benefits > div > .icon-svg { width: 22px; height: 22px; color: var(--green-700); }
.tracking-benefits strong { display: block; font-size: 13px; }
.tracking-benefits span { color: var(--muted); font-size: 11px; }
.tracking-card { padding: 28px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.tracking-card-head { display: flex; gap: 13px; align-items: center; margin-bottom: 22px; }
.tracking-card-head h2, .tracking-card-head p { margin: 0; }
.tracking-card-head h2 { font-size: 20px; }
.tracking-card-head p { color: var(--muted); font-size: 11px; }
.password-field { position: relative; }
.password-field input { padding-right: 74px; }
.password-field button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); padding: 7px 10px; border: 0; border-radius: 10px; color: var(--green-800); background: var(--green-50); font-size: 10px; font-weight: 800; cursor: pointer; }
.tracking-result-section { padding-top: 0; background: #fff; }
.tracking-result { padding: 32px; border: 1px solid var(--line); border-radius: 27px; box-shadow: var(--shadow-sm); }
.result-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 22px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.ticket-label { display: inline-flex; padding: 6px 9px; color: var(--green-800); border-radius: 999px; background: var(--green-50); font-size: 10px; font-weight: 850; }
.result-head h2 { margin: 10px 0 4px; font-size: 25px; }
.result-head p { margin: 0; color: var(--muted); font-size: 12px; }
.public-timeline { display: grid; margin-top: 27px; }
.public-timeline article { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding-bottom: 26px; }
.public-timeline article:not(:last-child)::before { content: ""; position: absolute; left: 18px; top: 35px; bottom: 0; width: 2px; background: #deebe4; }
.timeline-marker { position: relative; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--green-700); }
.timeline-title { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.timeline-title h3 { margin: 3px 0 5px; font-size: 15px; }
.timeline-title time { color: var(--muted); font-size: 10px; }
.public-timeline p { margin: 0; color: var(--muted); font-size: 12px; }
.status { display: inline-flex; align-items: center; justify-content: center; padding: 7px 11px; border-radius: 999px; font-size: 10px; font-weight: 850; white-space: nowrap; }
.status.blue { color:#1767a7;background:#e8f3ff}.status.amber{color:#8a6215;background:#fff5d8}.status.purple{color:#6b46a8;background:#f2eaff}.status.indigo{color:#384d9d;background:#e9edff}.status.orange{color:#9c5217;background:#fff0e4}.status.green{color:#1f784b;background:#e5f7ed}.status.gray{color:#5d6766;background:#eef1f1}

/* Login compatibility */
.auth-wrap { min-height: calc(100vh - 250px); padding: 68px 20px 90px; display: grid; place-items: center; background: linear-gradient(180deg, #effaf5, #fff); }
.auth-card { width: min(460px, 100%); padding: 30px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.auth-card .logo { width: 72px; height: 72px; border-radius: 22px; object-fit: cover; }
.auth-card h1 { margin: 18px 0 6px; letter-spacing: -.04em; }
.auth-card > p { margin: 0 0 22px; color: var(--muted); }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 86px; }
.password-wrap button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: 0; padding: 7px 10px; border-radius: 10px; color: var(--green-800); background: var(--green-50); font-size: 10px; font-weight: 800; }

/* Admin compatibility */
.admin-body { background: #f3f7f5; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 22px 16px; color: #fff; background: #083d2d; }
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 24px; }
.sidebar-brand img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; }
.sidebar-brand strong, .sidebar-brand span { display: block; }
.sidebar-brand span { color: rgba(255,255,255,.55); font-size: 10px; }
.sidebar-nav { display: grid; gap: 6px; }
.sidebar-nav a { padding: 12px 13px; border-radius: 13px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.sidebar-footer { position: absolute; left: 16px; right: 16px; bottom: 18px; }
.admin-main { min-width: 0; padding: 27px; }
.admin-top { margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-top h1 { margin: 3px 0 0; letter-spacing: -.04em; }
.admin-user { text-align: right; }
.admin-user strong, .admin-user span { display: block; }
.admin-user span { color: var(--muted); font-size: 11px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.stat span { color: var(--muted); font-size: 12px; }
.stat strong { display: block; margin-top: 3px; font-size: 30px; letter-spacing: -.04em; }
.table-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.table-head { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.table-head h2 { margin: 0; font-size: 18px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 800px; border-collapse: collapse; }
th, td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid #e8efeb; font-size: 12px; }
th { color: var(--muted); background: #fbfdfc; font-weight: 800; }
td strong { display: block; }
td small { color: var(--muted); }
.action-link { color: var(--green-800); font-weight: 850; }
.detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 20px; }
.detail-card { margin-bottom: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.detail-card h2, .detail-card h3 { margin-top: 0; }
.meta-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.meta-item { padding: 13px; border-radius: 14px; background: #f7faf8; }
.meta-item span { display: block; color: var(--muted); font-size: 10px; }
.meta-item strong { display: block; margin-top: 4px; }
.note-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.note-item:last-child { border-bottom: 0; }
.note-item p { margin: 6px 0; white-space: pre-line; }
.note-item small { color: var(--muted); }
.filter-bar { display: grid; grid-template-columns: 1fr 180px 150px; gap: 10px; }

/* Legacy helpers */
.page-hero { padding: 70px 0 50px; background: linear-gradient(180deg, #effaf5, #fff); }
.page-hero h1 { margin: 10px 0; font-size: 50px; letter-spacing: -.05em; }
.page-hero p, .muted { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.card .icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--green-800); background: var(--green-100); font-weight: 900; }
.card h3 { margin: 18px 0 7px; }
.card p { margin: 0; color: var(--muted); font-size: 13px; }

/* Responsive */
@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero-copy-block h1 { font-size: 58px; }
  .iphone-card { right: 0; }
  .hero-logo-card { left: 0; }
  .floating-case-card { left: 5px; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid article:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1.25fr .7fr .8fr; }
  .footer-contact { grid-column: 2 / 4; }
  .form-layout { grid-template-columns: 1fr 280px; }
  .tracking-layout { grid-template-columns: 1fr 420px; gap: 45px; }
  .admin-shell { grid-template-columns: 220px 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .brand-copy span { display: none; }
  .main-nav { position: absolute; top: 70px; left: 20px; right: 20px; padding: 12px; display: none; align-items: stretch; border-radius: 20px; background: rgba(255,255,255,.98); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px 14px; border-radius: 13px; }
  .main-nav .nav-report, .main-nav .nav-admin { margin: 6px 0 0; text-align: center; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy-block { text-align: center; }
  .hero-copy-block h1, .hero-copy-block > p { margin-inline: auto; }
  .hero-actions, .hero-trust-list { justify-content: center; }
  .hero-visual { width: min(620px,100%); margin-inline: auto; }
  .privacy-grid, .category-grid, .detail-three-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .about-layout, .category-detail-layout, .guide-layout, .form-layout, .tracking-layout, .detail-grid { grid-template-columns: 1fr; }
  .about-copy { text-align: center; }
  .feature-list { text-align: left; width: min(560px,100%); margin-inline: auto; margin-top: 30px; }
  .guide-sidebar, .form-sidebar { position: static; }
  .form-hero-layout { display: grid; }
  .privacy-badge-card { width: min(380px,100%); }
  .tracking-copy { text-align: center; }
  .tracking-copy > p { margin-inline: auto; }
  .tracking-benefits { width: min(430px,100%); margin-inline: auto; text-align: left; }
  .tracking-card { width: min(560px,100%); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .footer-contact { grid-column: auto; }
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .sidebar-footer { position: static; margin-top: 22px; }
  .stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .nav-shell { height: 68px; }
  .brand img { width: 43px; height: 43px; }
  .hero-layout { min-height: auto; padding: 46px 0 56px; }
  .hero-copy-block h1 { font-size: 45px; }
  .hero-copy-block > p { font-size: 15px; }
  .hero-trust-list { gap: 10px 14px; }
  .hero-visual { min-height: 470px; }
  .hero-green-panel { inset: 15px 0 0 20px; border-radius: 30px; }
  .hero-logo-card { top: 42px; left: 0; width: 82%; }
  .hero-logo-card img { height: 82px; }
  .iphone-card { width: 230px; height: 430px; right: 10px; }
  .floating-case-card { left: 0; bottom: 32px; width: 205px; }
  .privacy-grid, .category-grid, .detail-three-grid, .process-grid, .card-grid { grid-template-columns: 1fr; }
  .privacy-card { min-height: auto; }
  .process-grid article { min-height: 160px; }
  .about-visual { min-height: 350px; }
  .about-backdrop { width: 90%; height: 270px; }
  .dashboard-preview { width: 95%; }
  .report-cta { padding: 30px 24px; display: grid; }
  .footer-shell { padding: 42px 25px 20px; border-radius: 28px 28px 0 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .page-hero-simple { padding: 65px 0 55px; }
  .page-hero-simple h1 { font-size: 42px; }
  .category-detail-layout h1 { font-size: 44px; }
  .form-hero-layout h1 { font-size: 42px; }
  .report-form { padding: 20px 16px; }
  .form-progress button small { display: none; }
  .form-grid.two, .risk-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .form-actions .button { flex: 1; padding-inline: 14px; }
  .ticket-panel { grid-template-columns: 1fr; }
  .ticket-panel i { width: 100%; height: 1px; }
  .success-shell { padding: 30px 20px; }
  .success-shell h1 { font-size: 34px; }
  .result-head, .timeline-title { display: grid; }
  .faq-callout { grid-template-columns: 44px 1fr; }
  .faq-callout .button { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 18px 14px; }
  .admin-top { align-items: flex-start; }
  .filter-bar { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
}

/* Rekap pelaporan admin */
.report-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-bottom: 20px; }
.report-stat { min-width: 0; padding: 19px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, #fff, #f8fcfa); box-shadow: 0 9px 24px rgba(13, 64, 46, .04); }
.report-stat span, .report-stat small { display: block; }
.report-stat span { color: var(--muted); font-size: 11px; font-weight: 750; }
.report-stat strong { display: block; margin: 4px 0 5px; color: var(--green-900); font-size: 29px; letter-spacing: -.04em; }
.report-stat small { overflow: hidden; color: #799087; font-size: 9.5px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.report-card { overflow: visible; }
.report-card-head { padding: 21px 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-bottom: 1px solid var(--line); }
.report-card-head h2 { margin: 4px 0 5px; font-size: 20px; letter-spacing: -.025em; }
.report-card-head p { max-width: 680px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.report-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; flex-wrap: wrap; }
.btn-excel { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #fff; background: linear-gradient(135deg, #0b8d5c, #05623f); box-shadow: 0 13px 27px rgba(8, 122, 85, .2); }
.btn-excel:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 16px 32px rgba(8, 122, 85, .27); }
.btn-excel .icon-svg { width: 16px; height: 16px; }
.admin-only-note { max-width: 210px; color: var(--muted); font-size: 10px; line-height: 1.45; text-align: right; }
.report-filter { padding: 17px 22px 19px; border-bottom: 1px solid var(--line); background: #fbfdfc; }
.report-filter-grid { display: grid; grid-template-columns: minmax(210px, 1.25fr) repeat(2, minmax(130px, .7fr)) minmax(185px, 1fr) repeat(2, minmax(135px, .72fr)) auto; gap: 10px; align-items: end; }
.filter-field { min-width: 0; display: grid; gap: 6px; }
.filter-field > span { color: #667a72; font-size: 9px; font-weight: 850; letter-spacing: .025em; text-transform: uppercase; }
.filter-field input, .filter-field select { width: 100%; min-width: 0; height: 42px; padding: 0 12px; border: 1px solid #d9e6df; border-radius: 12px; color: var(--text); background: #fff; font-size: 11px; outline: none; }
.filter-field input:focus, .filter-field select:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(8, 122, 85, .09); }
.report-filter-button { min-height: 42px; white-space: nowrap; }
.report-status-strip { padding: 12px 20px; display: flex; align-items: center; gap: 8px; overflow-x: auto; border-bottom: 1px solid var(--line); background: #fff; }
.report-status-strip > span { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid #e1ebe6; border-radius: 999px; color: #587067; background: #fbfdfc; font-size: 9.5px; font-weight: 700; }
.report-status-strip strong { min-width: 20px; padding: 2px 6px; border-radius: 999px; color: var(--green-900); background: var(--green-50); text-align: center; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #8b9693; }
.status-dot.blue { background: #3e8fe0; }.status-dot.amber { background: #d6a431; }.status-dot.purple { background: #8d63c7; }.status-dot.indigo { background: #6176c8; }.status-dot.orange { background: #df8641; }.status-dot.green { background: #42a46d; }.status-dot.gray { background: #8b9693; }
.report-table { min-width: 1080px; }
.report-table th { padding-top: 13px; padding-bottom: 13px; white-space: nowrap; }
.report-table td { vertical-align: middle; }
.privacy-label, .risk-label { display: inline-flex; align-items: center; padding: 6px 9px; border-radius: 999px; font-size: 9px; font-weight: 850; white-space: nowrap; }
.privacy-label { color: #475a54; background: #edf2ef; }
.risk-rendah { color: #21724a; background: #e7f7ed; }.risk-sedang { color: #896315; background: #fff4d4; }.risk-tinggi { color: #a34f1f; background: #fff0e6; }.risk-darurat { color: #9e2929; background: #fee8e8; }
.empty-table { padding: 42px 20px; color: var(--muted); text-align: center; }
.report-security-note { margin-top: 15px; padding: 15px 17px; display: flex; align-items: flex-start; gap: 11px; border: 1px solid #dce8e2; border-radius: 16px; color: #52675f; background: #f9fcfa; }
.report-security-note .icon-svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--green-700); }
.report-security-note strong, .report-security-note span { display: block; }
.report-security-note strong { margin-bottom: 2px; color: var(--green-900); font-size: 11px; }
.report-security-note span { font-size: 10px; line-height: 1.55; }

@media (max-width: 1280px) {
  .report-filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-search, .filter-category { grid-column: span 2; }
  .report-filter-button { min-height: 42px; }
}

@media (max-width: 960px) {
  .report-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-card-head { align-items: flex-start; flex-direction: column; }
  .report-actions { justify-content: flex-start; }
  .admin-only-note { text-align: left; }
}

@media (max-width: 620px) {
  .report-summary { grid-template-columns: 1fr; }
  .report-filter-grid { grid-template-columns: 1fr; }
  .filter-search, .filter-category { grid-column: auto; }
  .report-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .report-actions .btn { width: 100%; }
  .report-card-head, .report-filter { padding-left: 16px; padding-right: 16px; }
}

/* Homepage profile, structure, gallery, education, and documents */
.intro-section { position: relative; overflow: hidden; background: #fff; }
.intro-section::before { content: ""; position: absolute; width: 440px; height: 440px; left: -260px; top: 80px; border-radius: 50%; background: #e7f7ef; filter: blur(16px); opacity: .72; }
.intro-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .86fr); align-items: center; gap: 76px; }
.intro-copy { position: relative; z-index: 1; }
.intro-copy h2 { margin: 12px 0 22px; max-width: 760px; font-size: clamp(38px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.052em; }
.intro-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.82; }
.intro-copy > p + p { margin-top: 15px; }
.regulation-link { max-width: 590px; margin-top: 27px; padding: 15px 17px; display: grid; grid-template-columns: 46px 1fr 22px; align-items: center; gap: 13px; border: 1px solid #dce9e2; border-radius: 18px; background: #fbfefc; box-shadow: 0 11px 28px rgba(11, 83, 57, .06); transition: .2s ease; }
.regulation-link:hover { transform: translateY(-2px); border-color: #bfdccd; box-shadow: var(--shadow-sm); }
.regulation-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--green-800); background: var(--green-100); }
.regulation-icon .icon-svg { width: 23px; height: 23px; }
.regulation-link small, .regulation-link strong { display: block; }
.regulation-link small { color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.regulation-link strong { margin-top: 2px; font-size: 13px; }
.regulation-link > .icon-svg { color: var(--green-700); }
.purpose-panel { position: relative; padding: 28px; color: #fff; border-radius: 34px; background: linear-gradient(150deg, #0b8f63, #064a34 72%); box-shadow: var(--shadow-lg); overflow: hidden; }
.purpose-panel::before { content: ""; position: absolute; width: 270px; height: 270px; right: -120px; top: -120px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,.04), 0 0 0 74px rgba(255,255,255,.025); }
.purpose-panel > * { position: relative; z-index: 1; }
.purpose-head { margin-bottom: 18px; }
.purpose-head span, .purpose-head strong { display: block; }
.purpose-head span { color: #c8f1e2; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.purpose-head strong { margin-top: 5px; font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.purpose-card { padding: 18px; display: grid; grid-template-columns: 45px 1fr; gap: 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; background: rgba(255,255,255,.085); backdrop-filter: blur(10px); }
.purpose-card + .purpose-card { margin-top: 11px; }
.purpose-number { width: 45px; height: 45px; display: grid; place-items: center; color: var(--green-900); border-radius: 14px; background: #fff; font-size: 11px; font-weight: 900; }
.purpose-card h3 { margin: 1px 0 5px; font-size: 14px; }
.purpose-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.62; }

.structure-section { background: linear-gradient(180deg, #f4faf7, #fff); overflow: hidden; }
.structure-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: 70px; }
.structure-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.structure-accent { position: absolute; inset: 42px 28px 24px 0; border-radius: 36px; background: linear-gradient(145deg, #0c8e63, #06503a); transform: rotate(-2deg); box-shadow: var(--shadow-lg); }
.media-button { position: relative; padding: 0; display: block; color: inherit; background: transparent; border: 0; cursor: zoom-in; }
.structure-image-card { z-index: 2; width: calc(100% - 40px); margin-left: 40px; padding: 12px; border-radius: 28px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-lg); transform: rotate(1deg); overflow: hidden; }
.structure-image-card img { width: 100%; max-height: 570px; object-fit: contain; border-radius: 18px; background: #fff; }
.media-zoom { position: absolute; right: 21px; bottom: 21px; padding: 9px 12px; display: inline-flex; align-items: center; gap: 7px; color: #fff; border-radius: 999px; background: rgba(5, 61, 43, .86); backdrop-filter: blur(10px); font-size: 10px; font-weight: 800; box-shadow: 0 9px 22px rgba(0,0,0,.18); }
.media-zoom .icon-svg { width: 14px; height: 14px; }
.structure-copy h2 { margin: 12px 0 17px; font-size: clamp(37px, 4.3vw, 54px); line-height: 1.05; letter-spacing: -.05em; }
.structure-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.structure-points { display: grid; gap: 16px; margin-top: 27px; }
.structure-points > div { display: flex; gap: 13px; }
.structure-points > div > span { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; color: var(--green-800); border-radius: 14px; background: var(--green-100); }
.structure-points strong { display: block; font-size: 13px; }
.structure-points p { margin: 3px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.structure-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 11px; }

.gallery-section { color: #fff; background: linear-gradient(145deg, #073e2d, #052d22); overflow: hidden; }
.gallery-section .section-heading { margin-bottom: 34px; }
.gallery-section .section-heading h2 { color: #fff; }
.gallery-section .section-heading p { color: rgba(255,255,255,.63); }
.gallery-section .section-kicker { color: #9ee2c7; }
.gallery-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
.gallery-counter { margin-bottom: 36px; display: flex; align-items: center; gap: 12px; }
.gallery-counter strong { font-size: 42px; line-height: 1; letter-spacing: -.05em; }
.gallery-counter span { color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .09em; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .72fr .72fr; grid-template-rows: 238px 238px; gap: 14px; }
.gallery-item { position: relative; min-width: 0; padding: 0; color: #fff; border: 0; border-radius: 22px; background: #0b5840; overflow: hidden; cursor: zoom-in; text-align: left; }
.gallery-item.gallery-featured { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,24,17,.86)); }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.04); }
.gallery-item > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 17px; }
.gallery-item small, .gallery-item strong { display: block; }
.gallery-item small { margin-bottom: 4px; color: rgba(255,255,255,.66); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.gallery-item strong { font-size: 12px; line-height: 1.28; }
.gallery-featured > span { left: 25px; bottom: 23px; }
.gallery-featured strong { font-size: 20px; }

.education-section { background: #f3faf6; }
.education-layout { display: grid; grid-template-columns: minmax(330px, .78fr) minmax(0, 1.15fr); align-items: center; gap: 78px; }
.education-poster { width: min(480px, 100%); margin-inline: auto; padding: 12px; border-radius: 29px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: rotate(-1.2deg); overflow: hidden; }
.education-poster::before { content: ""; position: absolute; z-index: -1; inset: 26px -24px -22px 25px; border-radius: 27px; background: linear-gradient(145deg, #0c9266, #07543b); transform: rotate(3deg); }
.education-poster img { width: 100%; border-radius: 19px; }
.education-copy h2 { margin: 12px 0 17px; font-size: clamp(38px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -.052em; }
.education-copy > p { margin: 0; max-width: 680px; color: var(--muted); font-size: 15px; line-height: 1.78; }
.education-tags { margin: 25px 0 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.education-tags span { padding: 9px 12px; color: var(--green-800); border: 1px solid #cee3d8; border-radius: 999px; background: #fff; font-size: 10px; font-weight: 800; }

.documents-section { background: #fff; }
.documents-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.document-card { position: relative; min-height: 305px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fff, #fbfdfc); box-shadow: 0 10px 28px rgba(12, 59, 42, .045); overflow: hidden; transition: .22s ease; }
.document-card:hover { transform: translateY(-4px); border-color: #c7ddd2; box-shadow: var(--shadow-md); }
.featured-document { color: #fff; border-color: transparent; background: linear-gradient(145deg, #0b8b61, #064a34); }
.featured-document::after { content: ""; position: absolute; width: 230px; height: 230px; right: -95px; top: -105px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.02); }
.document-card > * { position: relative; z-index: 1; }
.document-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--green-800); border-radius: 16px; background: var(--green-100); }
.featured-document .document-icon { color: var(--green-900); background: #fff; }
.document-icon .icon-svg { width: 25px; height: 25px; }
.document-type { margin-top: 20px; color: var(--green-700); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.featured-document .document-type { color: #bcebd9; }
.document-card h3 { margin: 7px 0 9px; max-width: 570px; font-size: 20px; line-height: 1.24; letter-spacing: -.025em; }
.document-card p { margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.featured-document p { color: rgba(255,255,255,.66); }
.document-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.document-actions a { min-height: 41px; padding: 0 13px; display: inline-flex; align-items: center; gap: 7px; color: var(--green-800); border-radius: 999px; background: var(--green-50); font-size: 10px; font-weight: 850; }
.document-actions a:last-child:not(:first-child) { width: 41px; padding: 0; justify-content: center; }
.document-actions .icon-svg { width: 14px; height: 14px; }
.featured-document .document-actions a { color: var(--green-950); background: #fff; }
.document-note { margin-top: 18px; padding: 16px 18px; display: flex; gap: 11px; color: #587067; border: 1px solid var(--line); border-radius: 17px; background: #f8fbf9; }
.document-note .icon-svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--green-700); }
.document-note p { margin: 0; font-size: 10px; line-height: 1.6; }

.media-dialog { width: min(1100px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 12px; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.36); overflow: auto; }
.media-dialog::backdrop { background: rgba(2, 18, 13, .78); backdrop-filter: blur(7px); }
.media-dialog figure { margin: 0; }
.media-dialog img { width: 100%; max-height: calc(100vh - 110px); object-fit: contain; border-radius: 16px; background: #f4f7f5; }
.media-dialog figcaption { padding: 12px 8px 4px; color: var(--muted); text-align: center; font-size: 11px; }
.media-dialog-close { position: fixed; z-index: 3; top: 25px; right: 25px; width: 43px; height: 43px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(5, 55, 40, .9); cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,.2); }

@media (max-width: 1220px) and (min-width: 861px) {
  .brand-copy span { display: none; }
  .main-nav { gap: 1px; }
  .main-nav a { padding: 9px 8px; font-size: 11px; }
  .main-nav .nav-report, .main-nav .nav-admin { padding-inline: 13px; }
}

@media (max-width: 1040px) {
  .intro-layout, .structure-layout { gap: 42px; }
  .intro-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, .86fr); }
  .purpose-panel { padding: 23px; }
  .structure-visual { min-height: 530px; }
  .structure-image-card img { max-height: 500px; }
  .education-layout { gap: 45px; }
  .gallery-grid { grid-template-rows: 210px 210px; }
}

@media (max-width: 860px) {
  .intro-layout, .structure-layout, .education-layout { grid-template-columns: 1fr; }
  .intro-copy, .structure-copy, .education-copy { text-align: center; }
  .intro-copy h2, .intro-copy > p, .structure-copy > p, .education-copy > p { margin-inline: auto; }
  .regulation-link { margin-inline: auto; text-align: left; }
  .purpose-panel { width: min(620px, 100%); margin-inline: auto; text-align: left; }
  .structure-visual { width: min(700px, 100%); margin-inline: auto; order: 2; }
  .structure-copy { order: 1; }
  .structure-points { width: min(620px, 100%); margin-inline: auto; margin-top: 28px; text-align: left; }
  .structure-actions, .education-tags { justify-content: center; }
  .education-poster { order: 2; }
  .education-copy { order: 1; }
  .gallery-heading-row { align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 330px 220px 220px; }
  .gallery-item.gallery-featured { grid-column: 1 / 3; grid-row: auto; }
  .documents-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .intro-layout { gap: 40px; }
  .intro-copy h2, .structure-copy h2, .education-copy h2 { font-size: 38px; }
  .intro-copy > p, .structure-copy > p, .education-copy > p { font-size: 14px; }
  .regulation-link { grid-template-columns: 42px 1fr 18px; padding: 13px; }
  .regulation-icon { width: 42px; height: 42px; }
  .purpose-panel { padding: 19px; border-radius: 27px; }
  .purpose-card { grid-template-columns: 40px 1fr; padding: 15px; }
  .purpose-number { width: 40px; height: 40px; }
  .structure-visual { min-height: 410px; }
  .structure-accent { inset: 28px 8px 18px 0; border-radius: 26px; }
  .structure-image-card { width: calc(100% - 18px); margin-left: 18px; padding: 8px; border-radius: 21px; }
  .structure-image-card img { max-height: 390px; border-radius: 14px; }
  .structure-actions { display: grid; }
  .gallery-heading-row { display: block; }
  .gallery-counter { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item, .gallery-item.gallery-featured { grid-column: auto; grid-row: auto; height: 240px; }
  .gallery-item.gallery-featured { height: 310px; }
  .documents-grid { grid-template-columns: 1fr; }
  .document-card { min-height: 285px; }
  .education-poster { width: min(420px, 94%); }
  .media-dialog { width: calc(100% - 16px); padding: 7px; border-radius: 18px; }
  .media-dialog-close { top: 14px; right: 14px; }
}
