:root {
  --bg: #0a0e14;
  --surface: #121820;
  --text: #e5e9f0;
  --muted: #8a94a6;
  --accent: #00d4aa;
  --accent-soft: #1a3a35;
  --line: #2a3441;
  --radius: 8px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --container: 1100px;
  --shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.koko-header {
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.koko-header .koko-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
}

.koko-header .koko-brand:hover,
.koko-header .koko-brand:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.koko-main {
  padding: var(--space-6) var(--space-4);
}

.koko-section {
  margin-bottom: var(--space-8);
}

.koko-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.koko-heading {
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
  margin-bottom: var(--space-4);
}

.koko-lead {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.koko-cardtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.koko-cardtext {
  color: var(--muted);
  margin-bottom: 0;
}

.koko-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6) 0;
}

.koko-hero-text {
  flex: 1;
}

.koko-hero-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.koko-hero-illustration svg {
  max-width: 100%;
  height: auto;
}

.koko-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.koko-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow);
  min-width: 0;
}

.koko-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.koko-tag {
  background: var(--accent-soft);
  color: var(--accent);
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.koko-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--space-6) 0;
}

.koko-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-4);
}

.koko-process-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.koko-req {
  display: grid;
  gap: var(--space-4);
}

.koko-req-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.koko-contact-cards {
  display: grid;
  gap: var(--space-4);
}

.koko-contact-details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.koko-address {
  font-style: normal;
  color: var(--muted);
}

.koko-map-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.koko-map {
  width: 100%;
  min-height: 200px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}

.koko-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.koko-map-caption {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: var(--space-2);
}

.koko-fake-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.koko-form-note {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: var(--space-3);
}

.koko-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  color: var(--muted);
}

.koko-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

blockquote {
  margin: var(--space-5) 0;
  padding: var(--space-4) var(--space-5);
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}

dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

dt {
  font-weight: 600;
  color: var(--text);
}

dd {
  margin: 0;
  color: var(--muted);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 640px) {
  .koko-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .koko-hero {
    flex-direction: row;
    align-items: center;
  }

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

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

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

  dl {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 900px) {
  .koko-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .koko-contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .koko-process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .koko-req {
    grid-template-columns: repeat(3, 1fr);
  }

  .koko-main {
    padding: var(--space-8) var(--space-6);
  }
}

@media (min-width: 1200px) {
  .koko-container {
    padding: 0;
  }

  .koko-hero {
    gap: var(--space-7);
  }

  .koko-section {
    margin-bottom: var(--space-9);
  }
}

body {
  overflow-x: hidden;
}

.koko-grid > *,
.koko-contact-cards > *,
.koko-process-list > *,
.koko-req > * {
  min-width: 0;
}

h1 {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 2.5rem);
}

h2 {
  font-size: clamp(1.25rem, 4vw + 0.5rem, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 3vw + 0.5rem, 1.5rem);
}

.table-wrapper {
  overflow-x: auto;
}

table {
  min-width: 600px;
}

@media (max-width: 640px) {
  table {
    min-width: 0;
  }
}


:root {
  --bg: #0a0e14; --surface: #121820; --text: #e5e9f0;
  --muted: #8a94a6; --accent: #00d4aa; --accent-soft: #1a3a35;
  --line: #2a3441;
}
html { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--bg); color: var(--text); }
body { line-height: 1.6; }
.koko-header { }
.koko-brand { font-weight: 700; text-decoration: none; color: inherit; font-size: 1.15rem; }
.koko-nav { }
.koko-navlink { text-decoration: none; color: inherit; }
.koko-main { }
.koko-section { padding: 1.5rem 0; }
.koko-heading { font-size: clamp(1.5rem, 4vw, 2.35rem); margin: 0 0 0.6rem; line-height: 1.2; }
.koko-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); margin: 0 0 1.2rem; }
.koko-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.koko-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 0.75rem; padding: 1.15rem 1.25rem;
}
.koko-cardtitle { margin: 0 0 0.4rem; font-size: 1.05rem; }
.koko-cardtext { margin: 0; color: var(--muted); }
.koko-footer { }
.koko-contact { color: var(--muted); }
.koko-tag { }
a { color: var(--accent); }
@media (min-width: 720px) {
  .koko-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* --- repaired missing selectors --- */
.koko-ps { min-width: 0; }


/* --- guard --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; margin: 0; }
main > *, section > *, ul > li, ol > li { min-width: 0; }
svg, table, pre, blockquote, img { max-width: 100%; }
svg { height: auto; }
h1, h2, h3, h4, p, li, dt, dd, td, th, a, figcaption {
  overflow-wrap: anywhere;
}
table { display: block; overflow-x: auto; }
main header, main footer, main nav { display: none !important; }

.wp-header, .wp-footer, main {
  padding-left: max(1.25rem, env(safe-area-inset-left)) !important;
  padding-right: max(1.25rem, env(safe-area-inset-right)) !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wp-header {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem 1.25rem;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.wp-footer {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 2rem;
}
.wp-tagline {
  flex-basis: 100%;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  max-width: none !important;
}

/* --- hamburger --- */
.wp-menu { margin: 0 0 0 auto; }
.wp-menu-btn {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  color: inherit;
  background: var(--surface, #fff);
  border: 1px solid var(--line, #d4d4d4);
  border-radius: 0.5rem;
}
.wp-menu-btn::-webkit-details-marker,
.wp-menu-btn::marker { display: none; content: ""; }
.wp-menu-bars,
.wp-menu-bars::before,
.wp-menu-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  position: relative;
}
.wp-menu-bars::before,
.wp-menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.wp-menu-bars::before { top: -6px; }
.wp-menu-bars::after { top: 6px; }

@media (max-width: 719px) {
  .wp-nav-wide { display: none !important; }
  .wp-menu:not([open]) > nav { display: none !important; }
  .wp-menu[open] { flex-basis: 100%; width: 100%; margin: 0; }
  .wp-menu[open] > nav {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0.5rem 0 0.15rem !important;
  }
  .wp-menu[open] > nav > a {
    display: block !important;
    padding: 0.7rem 0.15rem !important;
  }
}

@media (min-width: 720px) {
  .wp-menu { display: none !important; }
  .wp-nav-wide {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.35rem 1.1rem;
    margin: 0 0 0 auto;
    align-items: center;
  }
}
