/* refactored with chatGPT - 07/02/2025 16:00 UK */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
/*    background: black;*/
    color: black;
}

/* LOGO CONTAINER */
.logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: black;
}

.logo {
    height: 70px;
}

/* NAVIGATION MENU */
nav {
    display: flex;
    justify-content: center;
    background: black;
    padding: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

nav ul li {
    flex: 1;
    text-align: center;
}

nav ul li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.1s ease;
}

/* Button Colors */
.nav-home { background: #4caf50; } /* Green */
.nav-active { background: #f7c200; } /* Yellow (Active Page) */
.nav-about { background: #1976d2; } /* Blue */
.nav-contact { background: #ff5722; } /* Orange */

/* Hover State */
nav ul li a:hover {
    filter: brightness(90%); /* Slight darkening effect */
    transform: scale(1.05); /* Slight grow effect */
}

/* Pressed (Active/Selected) State */
.pressed {
    background: #51524E !important; /* Darker background for pressed look */
    color: white !important;
    box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.4); /* Inset shadow to simulate press */
    transform: scale(0.97); /* Slight press-down effect */
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.search-container input {
    padding: 5px;
}

.search-container button {
    background: green;
    color: white;
    border: none;
    padding: 5px 10px;
}

/* TITLE BAR */
.title-bar {
    background: #f7c200;
    padding: 20px;
    text-align: center;
}

/* GRID LAYOUT */
.grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 10px;
        padding:15px;
        background-color: white;
    }
    .card {
        padding: 20px;
        color: white;
        border-radius: 8px;
    }
    .green { background: #4caf50; }
    .blue { background: #1976d2; }
    .orange { background: #ff5722; }
    .light-green { background: #8bc34a; }
    .dark-blue { background: #3f51b5; }
    .purple { background: #9c27b0; }
    .teal { background: #009688; }
    .red { background: #d32f2f; }
    .yellow { background: #BCBC00; }

    ul {
        list-style-type: none;
        padding: 0;
    }
    ul li {
        margin: 5px 0;
    }
    ul li a {
        color: white;
        text-decoration: underline;
    }

/* FOOTER */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto;
/*    text-align: justify;*/
}

footer a {
    color: white;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.social-icons img {
    width: 35px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    .search-container {
        flex-direction: column;
    }
}


/*  THIS IS THE STYLING FOR THE PRODUCTS TABLES */

    /* Parent container for flexbox layout */
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        max-width: 1200px;
        margin: auto;
        background-color: white;
    }

    /* Table container (left) */
    .geojson-table-container {
        flex: 1;
        min-width: 300px;
        max-width: 48%; /* Limit width */
        padding-left:15px;
    }

    /* SVG container (right) */
    .svg-container {
        flex: 1;
        min-width: 300px;
        max-width: 48%; /* Limit width */
        text-align: center;
    }

    /* Table styling */
    .geojson-table {
        width: 100%;
        border-collapse: collapse;
    }

    .geojson-table th, .geojson-table td {
        border: 1px solid #ddd;
        padding: 5px;
        text-align: left;
    }

    .geojson-table th {
        background-color: #f4f4f4;
        font-weight: bold;
        width: 40%;
    }

    .geojson-table td {
        width: 60%;
    }

    /* SVG image */
    .geojson-svg {
        width: 90%;
/*        max-width: 400px;*/
        height: auto;
        border:1px solid black;
        margin-left:15px;
/*        margin-right:15px;*/
    }

  /* File Details Section */
    .file-details {
        margin-top: 20px;
        padding: 15px;
        border: 1px solid #ddd;
        background-color: #f9f9f9;
        border-radius: 5px;
    }

    .file-details h3 {
        margin-bottom: 10px;
    }

    .file-details p {
        margin: 5px 0;
    }

    /* Price & Buttons Section */
    .purchase-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }

    .price {
        font-size: 1.5em;
        font-weight: bold;
        color: #333;
    }

    .button-group {
        display: flex;
        gap: 10px;
    }

    .button {
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        font-size: 1em;
    }

    .download-btn {
        background-color: #1976d2;
        color: white;
    }

    .buy-btn {
        background-color: #ff5722;
        color: white;
    }

    /* Responsive design for smaller screens */
    @media screen and (max-width: 768px) {
        .container {
            flex-direction: column;
            align-items: center;
        }

        .geojson-table-container, .svg-container {
            max-width: 100%;
            text-align: center;
        }
    }
    .compatibility-box {
    max-width: 1200px;
    margin: 7px auto;
    padding: 6px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    }

    .compatibility-box h3 {
        color: #333;
        margin-bottom: 4px;
        margin-bottom: 4px;
    }

    .compatibility-box p {
        color: #555;
        font-size: 16px;
        margin-top:0px;
    }

/* ****************************************
 * GALLERY
 * **************************************** */
body.catalogue-page {
  --navy: #061523;
  --navy-2: #0b2035;
  --green: #20b45b;
  --green-dark: #128443;
  --blue: #1f7bd1;
  --orange: #ff572b;
  --purple: #8644c5;
  --teal: #009688;
  --red: #d82f2f;
  --gold: #d8a900;
  --text: #102033;
  --muted: #667085;
  --border: #e1e7ee;
  --surface: #ffffff;
  --background: #f7fafc;
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
}

.catalogue-page * { box-sizing: border-box; }

html.catalogue-document { scroll-behavior: smooth; }

body.catalogue-page {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
}

.catalogue-page button, .catalogue-page input, .catalogue-page select { font: inherit; }
.catalogue-page button, .catalogue-page a { -webkit-tap-highlight-color: transparent; }
.catalogue-page button { color: inherit; }
.catalogue-page [hidden] { display: none !important; }

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.catalogue-container {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 56px));
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
}

.brand img { width: 146px; height: auto; }
.brand span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.header-meta {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}
.header-meta strong { color: #b7f5cf; }

.catalogue-hero {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 84% 20%, rgba(32, 180, 91, .16), transparent 30%),
    linear-gradient(135deg, #04101d 0%, var(--navy) 58%, var(--navy-2) 100%);
  color: #fff;
}

.catalogue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 1px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  align-items: center;
  gap: 70px;
  min-height: 430px;
  padding-block: 64px 70px;
}

.hero-copy { max-width: 740px; }

.eyebrow {
  margin: 0 0 9px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalogue-hero .eyebrow { color: #8eeab1; }

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  line-height: 1.6;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: min(690px, 100%);
  min-height: 60px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .23);
}

.search-box:focus-within { border-color: var(--green); }
.search-box > svg {
  flex: 0 0 auto;
  width: 23px;
  margin-left: 18px;
  fill: none;
  stroke: #5a6c7e;
  stroke-linecap: round;
  stroke-width: 2;
}

.search-box input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 52px 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.search-box input::placeholder { color: #7a8794; }

.clear-search {
  position: absolute;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: #eef3f6;
  cursor: pointer;
}

.clear-search svg { fill: none; stroke: #45586a; stroke-linecap: round; stroke-width: 2; }

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 80;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 18px 46px rgba(2, 15, 27, .28);
}

.suggestion {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.suggestion:hover, .suggestion.is-active { background: #edf9f2; }
.suggestion-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e8f7ef;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}
.suggestion strong, .suggestion small { display: block; }
.suggestion strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.suggestion small { color: var(--muted); font-size: 12px; }
.suggestion-kind { color: #7b8997; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}
.quick-searches button {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  cursor: pointer;
}
.quick-searches button:hover { border-color: var(--green); background: rgba(32, 180, 91, .15); }

.catalogue-summary {
  display: grid;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.catalogue-summary div { padding: 19px 24px; }
.catalogue-summary div + div { border-top: 1px solid rgba(255, 255, 255, .12); }
.catalogue-summary strong, .catalogue-summary span { display: block; }
.catalogue-summary strong { color: #b7f5cf; font-size: 28px; line-height: 1.05; }
.catalogue-summary span { margin-top: 5px; color: rgba(255, 255, 255, .72); font-size: 13px; }

.catalogue-body { padding-block: 64px 80px; }

.section-heading, .results-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 23px;
}
.section-heading-spaced { margin-top: 64px; }
.section-heading h2, .results-heading-row h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.section-heading p:last-child, .results-heading-row p:last-child {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--muted);
}

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

.category-card {
  --accent: var(--blue);
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 15px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease;
}
.category-card:hover { border-color: color-mix(in srgb, var(--accent), #fff 48%); transform: translateY(-2px); }
.category-card[data-tone="green"] { --accent: var(--green); }
.category-card[data-tone="orange"] { --accent: var(--orange); }
.category-card[data-tone="purple"] { --accent: var(--purple); }
.category-card[data-tone="teal"] { --accent: var(--teal); }
.category-card[data-tone="red"] { --accent: var(--red); }
.category-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent), #fff 87%);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}
.category-copy strong, .category-copy small { display: block; }
.category-copy strong { font-size: 16px; line-height: 1.25; }
.category-copy small { margin-top: 6px; color: var(--muted); font-size: 12px; }
.category-arrow { color: var(--accent); font-size: 23px; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.collection-card {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.collection-card:hover { border-color: #8fbea3; }
.collection-card .collection-label { color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.collection-card strong { margin: 8px 0 15px; font-size: 16px; line-height: 1.25; }
.collection-card small { margin-top: auto; color: var(--muted); }
.collection-card small b { color: var(--text); }

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

.map-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}
.map-card:hover { border-color: #a9bac7; transform: translateY(-2px); }
.map-preview-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #d9edf2;
  cursor: zoom-in;
}
.map-preview-button img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.map-preview-button span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(6, 21, 35, .88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transition: opacity .18s ease;
}
.map-preview-button:hover span, .map-preview-button:focus-visible span { opacity: 1; }
.map-card-body { display: grid; gap: 8px; padding: 17px 18px 18px; }
.map-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 11px; font-weight: 700; }
.map-card-category { overflow: hidden; color: var(--green-dark); text-overflow: ellipsis; white-space: nowrap; }
.map-card h3 { margin: 0; font-size: 17px; line-height: 1.28; }
.map-card code { overflow: hidden; color: #617487; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.map-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; color: var(--muted); font-size: 12px; }
.map-card-footer button, .map-card-footer a { padding: 0; border: 0; background: none; color: var(--blue); font-size: 12px; font-weight: 800; text-decoration: none; cursor: pointer; }

.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.primary-button { border: 1px solid var(--green); background: var(--green); color: #fff; }
.secondary-button { border: 1px solid #cbd5df; background: #fff; color: var(--text); }

.breadcrumbs { display: flex; justify-content: flex-start; padding: 0; background: transparent; align-items: center; gap: 10px; margin-bottom: 30px; color: var(--muted); font-size: 13px; }
.breadcrumbs button { padding: 0; border: 0; background: none; color: var(--green-dark); font-weight: 800; cursor: pointer; }

.catalogue-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.catalogue-controls label { color: #495b6c; font-size: 12px; font-weight: 800; }
.catalogue-controls select {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 0 12px;
  border: 1px solid #c9d3dc;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; min-height: 0; margin: 0 0 18px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #b9ddc7;
  border-radius: 999px;
  background: #edf9f2;
  color: #156b3a;
  font-size: 12px;
  font-weight: 700;
}
.filter-chip button { padding: 0; border: 0; background: none; color: inherit; font-weight: 900; cursor: pointer; }

.collection-navigation {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 13px;
  background: #edf4f8;
}
.collection-navigation h3 { margin: 0 0 13px; font-size: 16px; }
.collection-navigation div { display: flex; flex-wrap: wrap; gap: 8px; }
.collection-navigation button { padding: 8px 11px; border: 1px solid #cad9e4; border-radius: 8px; background: #fff; color: #29465e; font-size: 12px; font-weight: 700; cursor: pointer; }
.collection-navigation button:hover { border-color: var(--green); color: var(--green-dark); }

.empty-results { padding: 70px 20px; border: 1px dashed #c8d4dd; border-radius: 13px; background: #fff; text-align: center; }
.empty-results > span { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 17px; border-radius: 50%; background: #eaf2f6; color: #49647a; font-size: 22px; font-weight: 900; }
.empty-results h3 { margin: 0; font-size: 22px; }
.empty-results p { margin: 7px 0 20px; color: var(--muted); }

.pagination { display: flex; padding: 0; background: transparent; align-items: center; justify-content: center; gap: 7px; margin-top: 34px; }
.pagination button, .pagination span { display: grid; min-width: 40px; height: 40px; place-items: center; border: 1px solid #ccd6de; border-radius: 8px; background: #fff; color: #30485c; }
.pagination button { cursor: pointer; }
.pagination button[aria-current="page"] { border-color: var(--green); background: var(--green); color: #fff; font-weight: 800; }
.pagination button:disabled { opacity: .45; cursor: default; }

.preview-dialog {
  width: min(1080px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}
.preview-dialog::backdrop { background: rgba(3, 14, 24, .78); backdrop-filter: blur(3px); }
.preview-dialog[open] { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(290px, .8fr); }
.preview-dialog.is-zoomed { width: min(1500px, calc(100% - 24px)); }
.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #d8e0e7;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.dialog-close svg { fill: none; stroke: #233d52; stroke-linecap: round; stroke-width: 2; }
.dialog-image { display: grid; place-items: center; min-width: 0; min-height: 420px; overflow: auto; padding: 24px; background: #dceff3; }
.dialog-image img { display: block; max-width: 100%; max-height: calc(100vh - 90px); border-radius: 10px; }
.preview-dialog.is-zoomed .dialog-image { place-items: start; }
.preview-dialog.is-zoomed .dialog-image img { width: 1200px; max-width: none; max-height: none; }
.dialog-details { align-self: center; padding: 54px 30px 34px; }
.dialog-details h2 { margin: 0; font-size: 28px; line-height: 1.15; }
.dialog-details > p:not(.eyebrow) { margin: 10px 0 22px; color: var(--muted); }
.dialog-details dl { display: grid; gap: 0; margin: 0; border-top: 1px solid var(--border); }
.dialog-details dl div { padding: 13px 0; border-bottom: 1px solid var(--border); }
.dialog-details dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.dialog-details dd { margin: 4px 0 0; }
.dialog-details code { overflow-wrap: anywhere; color: #2c5d82; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }

.dialog-data-sample {
  grid-column: 1 / -1;
  padding: 25px 28px 30px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.dialog-data-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.dialog-data-heading h3 { margin: 0; font-size: 21px; }
.dialog-data-heading p:last-child { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.dialog-data-status {
  padding: 22px;
  border: 1px dashed #c8d4dd;
  border-radius: 9px;
  background: #f7fafc;
  color: var(--muted);
  text-align: center;
}
.data-sample-table-wrap {
  max-width: 100%;
  max-height: 360px;
  overflow: auto;
  border: 1px solid #ccd7df;
  border-radius: 9px;
  background: #fff;
}
.data-sample-table-wrap table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #25384a;
  font-size: 12px;
}
.data-sample-table-wrap th,
.data-sample-table-wrap td {
  max-width: 320px;
  padding: 9px 11px;
  overflow: hidden;
  border-right: 1px solid #e1e7ec;
  border-bottom: 1px solid #e1e7ec;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-sample-table-wrap th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--navy-2);
  color: #fff;
  font-size: 11px;
  letter-spacing: .02em;
}
.data-sample-table-wrap tbody tr:nth-child(even) td { background: #f5f8fa; }
.data-sample-table-wrap tr > :last-child { border-right: 0; }
.data-sample-table-wrap tbody tr:last-child td { border-bottom: 0; }

.sample-detail-page { background: var(--background); }
.sample-detail-main {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  padding: 46px 0 70px;
}
.sample-detail-main > nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: 13px; }
.sample-detail-main > nav a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
.sample-detail-main > h1 { max-width: 820px; margin: 0; font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -.04em; }
.sample-detail-main > p:not(.eyebrow) { max-width: 820px; color: var(--muted); font-size: 17px; }
.sample-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  gap: 24px;
  margin-top: 34px;
}
.sample-detail-layout figure, .sample-detail-layout aside {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
}
.sample-detail-layout figure img { display: block; width: 100%; height: auto; }
.sample-detail-layout figcaption { padding: 10px 15px; color: var(--muted); font-size: 12px; }
.sample-detail-layout aside { padding: 24px; }
.sample-detail-layout aside h2 { margin: 0 0 12px; font-size: 22px; }
.sample-detail-layout dl { margin: 0 0 22px; }
.sample-detail-layout dl div { padding: 11px 0; border-bottom: 1px solid var(--border); }
.sample-detail-layout dt { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.sample-detail-layout dd { margin: 3px 0 0; overflow-wrap: anywhere; }
.sample-detail-table-section { margin-top: 44px; }
.sample-detail-table-section h2 { margin: 0; font-size: 30px; }
.sample-detail-table-section > p:last-of-type { margin: 8px 0 17px; color: var(--muted); }

.catalogue-footer {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px max(28px, calc((100% - 1124px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}
.catalogue-footer div { display: flex; align-items: center; gap: 22px; }
.catalogue-footer img { width: 140px; }
.catalogue-footer p { margin: 0; }

.catalogue-page button:focus-visible, .catalogue-page a:focus-visible, .catalogue-page input:focus-visible, .catalogue-page select:focus-visible { outline: 3px solid rgba(32, 180, 91, .38); outline-offset: 2px; }

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 34px; }
  .catalogue-summary { grid-template-columns: repeat(3, 1fr); }
  .catalogue-summary div + div { border-top: 0; border-left: 1px solid rgba(255, 255, 255, .12); }
  .category-grid, .map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .catalogue-container, .site-header-inner { width: min(100% - 30px, 1180px); }
  .site-header-inner { min-height: 66px; }
  .brand img { width: 126px; }
  .brand span, .header-meta { display: none; }
  .hero-layout { min-height: 0; padding-block: 48px 54px; }
  .hero-copy h1 { font-size: 39px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .catalogue-summary { grid-template-columns: 1fr; }
  .catalogue-summary div + div { border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
  .catalogue-body { padding-block: 48px 64px; }
  .section-heading, .results-heading-row { align-items: flex-start; flex-direction: column; }
  .section-heading-spaced { margin-top: 50px; }
  .category-grid, .collection-grid, .map-grid, .catalogue-controls { grid-template-columns: 1fr; }
  .preview-dialog[open] { display: block; overflow-y: auto; }
  .dialog-image { min-height: 240px; padding: 15px; }
  .dialog-image img { max-height: none; }
  .dialog-details { padding: 28px 20px 24px; }
  .dialog-data-sample { padding: 22px 20px 25px; }
  .dialog-data-heading { align-items: flex-start; flex-direction: column; }
  .sample-detail-main { width: min(100% - 30px, 1180px); }
  .sample-detail-layout { grid-template-columns: 1fr; }
  .catalogue-footer, .catalogue-footer div { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .catalogue-page *, .catalogue-page *::before, .catalogue-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ****************************************
 * HOMEPAGE LANDING PAGE
 * **************************************** */
.home-page {
    --navy: #061523;
    --navy-2: #0b2035;
    --green: #20b45b;
    --blue: #1f7bd1;
    --orange: #ff572b;
    --purple: #8644c5;
    --teal: #009688;
    --red: #d82f2f;
    --yellow: #f4c400;
    --text: #102033;
    --muted: #667085;
    --border: #e6e9ef;
    --background: #f7fafc;
    background: #fbfcfd;
    color: var(--text);
    font-family: Arial, sans-serif;
}

.home-page * {
    box-sizing: border-box;
}

.home-page a {
    color: inherit;
}

.home-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ****************************************
 * HEADER
 * **************************************** */
.home-page .home-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #061523;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .home-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 28px;
}

.home-page .home-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-page .home-logo-link .logo {
    width: 146px;
    height: auto;
}

.home-page .home-nav {
    flex: 1;
    background: transparent;
    display: flex;
    justify-content: center;
}

.home-page .home-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page .home-nav ul li {
    flex: 0 0 auto;
    margin: 0;
    text-align: left;
}

.home-page .home-nav ul li a {
    display: inline-flex;
    padding: 0;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.home-page .home-nav ul li a:hover {
    color: #b7f5cf !important;
    filter: none;
    transform: none;
}

.home-page .home-nav .pressed {
    color: #b7f5cf !important;
}

.home-page .home-search {
    position: relative;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0;
}

.home-page .home-search input {
    width: 150px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.home-page .home-search input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.home-page .home-search button {
    min-height: 38px;
    padding: 9px 18px;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.home-page .nav-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    overflow-y: auto;
    width: 360px;
    max-width: calc(100vw - 36px);
    max-height: 360px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(2, 15, 27, 0.28);
}

.home-page .nav-search-suggestions a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 11px;
    border-radius: 8px;
    color: var(--text);
    text-align: left;
    text-decoration: none;
}

.home-page .nav-search-suggestions a:hover,
.home-page .nav-search-suggestions a.is-active {
    background: #edf9f2;
    color: var(--text);
}

.home-page .nav-search-suggestions strong,
.home-page .nav-search-suggestions small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-page .nav-search-suggestions strong {
    font-size: 14px;
}

.home-page .nav-search-suggestions small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.home-page .nav-search-category {
    overflow: hidden;
    max-width: 105px;
    color: #7b8997;
    font-size: 10px;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ****************************************
 * HERO
 * **************************************** */
.home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #04101d 0%, var(--navy) 58%, #0b2035 100%);
    color: #ffffff;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, transparent 0%, #000000 35%, #000000 100%);
}

.home-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
    align-items: center;
    gap: 42px;
    max-width: 1180px;
    min-height: 560px;
    margin: 0 auto;
    padding: 78px 28px 86px;
}

.home-hero-content {
    max-width: 560px;
}

.home-pill {
    display: inline-flex;
    margin: 0 0 24px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(32, 180, 91, 0.14);
    color: #d9ffe7;
    font-size: 14px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(32, 180, 91, 0.22);
}

.home-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.home-hero h1 span {
    color: var(--green);
}

.home-hero-subtitle {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.55;
}

.home-benefits {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.home-benefits li {
    position: relative;
    margin: 0;
    padding-left: 34px;
    color: #ffffff;
    font-size: 16px;
}

.home-benefits li::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(32, 180, 91, 0.16);
    border: 1px solid var(--green);
}

.home-benefits li::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 7px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(42deg);
}

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

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.home-button-primary {
    background: var(--green);
    color: #ffffff !important;
    box-shadow: none;
}

.home-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.78);
    color: #ffffff !important;
    background: transparent;
}

.home-button-outline {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--text) !important;
}

.home-hero-map {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
}

.home-hero-map img {
    position: relative;
    width: 100%;
    height: 420px;
    object-fit: contain;
    opacity: 0.58;
    filter: saturate(1.08) contrast(1.02);
    mix-blend-mode: screen;
}

.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    background: var(--green);
    box-shadow: none;
    transform: rotate(-45deg);
}

.map-pin::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.map-pin-one {
    top: 28%;
    left: 30%;
}

.map-pin-two {
    top: 44%;
    left: 53%;
}

.map-pin-three {
    top: 60%;
    left: 42%;
}

.map-pin-four {
    top: 36%;
    right: 17%;
}

/* ****************************************
 * SHARED SECTIONS
 * **************************************** */
.home-section {
    padding: 74px 0;
    background: #ffffff;
}

.home-section-tools {
    background: #f6faf8;
}

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

.home-eyebrow {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.home-section-heading p:not(.home-eyebrow) {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.home-centered-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* ****************************************
 * CATEGORY CARDS
 * **************************************** */
.home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-category-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 17px 22px 17px 17px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text) !important;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-category-card:hover {
    border-color: rgba(32, 180, 91, 0.45);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.category-green {
    background: #2fb65d;
}

.category-blue {
    background: var(--blue);
}

.category-orange {
    background: var(--orange);
}

.category-light-green {
    background: #45ad61;
}

.category-purple {
    background: var(--purple);
}

.category-red {
    background: var(--red);
}

.category-teal {
    background: var(--teal);
}

.category-red-orange {
    background: #e43b2f;
}

.category-copy {
    display: grid;
    gap: 6px;
}

.category-copy strong {
    color: var(--text);
    font-size: 17px;
    line-height: 1.25;
}

.category-copy small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
}

.category-arrow {
    color: #476175;
    font-size: 20px;
    font-weight: 700;
}

/* ****************************************
 * CONVERSION TOOLS
 * **************************************** */
.home-tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-tool-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    min-height: 220px;
    padding: 32px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text) !important;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(32, 180, 91, 0.28);
    border-radius: 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.home-tool-card strong {
    font-size: 17px;
}

.home-tool-card small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* ****************************************
 * BLOG CARDS
 * **************************************** */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-blog-card img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: var(--navy-2);
}

.home-blog-body {
    padding: 18px;
}

.home-blog-body time {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #d9f8e6;
    color: #136d37;
    font-size: 12px;
    font-weight: 900;
}

.home-blog-body h3 {
    margin: 0;
    color: var(--text);
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.home-blog-body p {
    margin: 12px 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.home-blog-body a {
    color: #088d44 !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
}

/* ****************************************
 * LATEST MAPS
 * **************************************** */
.home-latest-section {
    padding: 88px 0;
    background: #f1f8f4;
}

.home-latest-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 34px;
}

.home-latest-heading > div {
    max-width: 720px;
}

.home-latest-heading h2,
.home-process-intro h2,
.home-review-copy h2,
.home-compatibility-heading h2,
.home-faq-intro h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.home-latest-heading > div > p:last-child,
.home-process-intro > p,
.home-review-copy > p,
.home-faq-intro > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.home-latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 22px;
}

.home-latest-feature {
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    overflow: hidden;
    min-height: 360px;
    border-radius: 22px;
    background: var(--navy-2);
    color: #ffffff;
}

.home-latest-art {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 32px;
    background: radial-gradient(circle at 75% 18%, rgba(32, 180, 91, 0.48), transparent 32%), linear-gradient(150deg, #0d6240 0%, #12334a 72%);
}

.home-latest-art::before,
.home-latest-art::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.home-latest-art::before {
    top: -54px;
    right: -70px;
    width: 240px;
    height: 240px;
}

.home-latest-art::after {
    top: 38px;
    right: -34px;
    width: 150px;
    height: 150px;
}

.home-latest-art span,
.home-latest-art strong,
.home-latest-art small,
.home-latest-art code {
    position: relative;
    z-index: 1;
}

.home-latest-art span {
    margin-bottom: auto;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-latest-art strong {
    font-size: clamp(52px, 7vw, 78px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.home-latest-art small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.home-latest-art code {
    max-width: 100%;
    margin-top: 24px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-latest-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.home-latest-copy .home-eyebrow {
    color: #8eeab1;
}

.home-latest-copy h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.home-latest-copy > p:not(.home-eyebrow) {
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.6;
}

.home-latest-copy a {
    color: #8eeab1 !important;
    font-weight: 900;
    text-decoration: none;
}

.home-latest-list {
    display: grid;
    gap: 14px;
}

.home-latest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 170px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    color: var(--text) !important;
    text-decoration: none !important;
}

.home-latest-row div {
    display: grid;
    gap: 9px;
}

.home-latest-row span {
    color: #168a48;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-latest-row strong {
    font-size: 21px;
    line-height: 1.2;
}

.home-latest-row small {
    color: var(--muted);
    font-size: 13px;
}

.home-latest-row b {
    color: var(--green);
    font-size: 24px;
}

/* ****************************************
 * HOW IT WORKS
 * **************************************** */
.home-process-section {
    padding: 96px 0;
    background: #ffffff;
}

.home-process-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 84px;
    align-items: start;
}

.home-process-intro {
    position: sticky;
    top: 150px;
}

.home-process-intro > p {
    margin: 20px 0 28px;
}

.home-process-list {
    border-top: 1px solid var(--border);
}

.home-process-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.home-process-number {
    color: rgba(32, 180, 91, 0.24);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.home-process-step div > p {
    margin: 0 0 7px;
    color: #168a48;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-process-step h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.home-process-step div > span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.55;
}

.home-process-step > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dff7e9;
    color: #0d8e44 !important;
    font-size: 20px;
    text-decoration: none !important;
}

/* ****************************************
 * DATASET REVIEW SPLIT
 * **************************************** */
.home-review-section {
    padding: 96px 0;
    background: #edf7f1;
}

.home-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 76px;
    align-items: center;
}

.home-review-visual {
    position: relative;
    min-height: 590px;
}

.home-review-map {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    padding: 48px;
    border-radius: 26px;
    background: var(--navy-2);
}

.home-review-map img {
    width: 100%;
    max-height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.28));
}

.home-review-map > span {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-review-data {
    position: absolute;
    right: -22px;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: min(360px, 80%);
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.home-review-data span {
    flex-basis: 100%;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.home-review-data code {
    padding: 7px 9px;
    border-radius: 7px;
    background: #eef8f2;
    color: #14763c;
    font-size: 11px;
}

.home-review-copy > p {
    margin: 22px 0 26px;
}

.home-review-list {
    margin: 0 0 30px;
    padding: 0;
    border-top: 1px solid rgba(16, 32, 51, 0.12);
    list-style: none;
}

.home-review-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(16, 32, 51, 0.12);
}

.home-review-list li > span {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.home-review-list strong {
    display: block;
    color: var(--text);
    font-size: 16px;
}

.home-review-list p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* ****************************************
 * COMPATIBILITY BAND
 * **************************************** */
.home-compatibility-section {
    padding: 92px 0;
    background: #071827;
    color: #ffffff;
}

.home-compatibility-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.home-compatibility-heading .home-eyebrow {
    color: #8eeab1;
}

.home-compatibility-heading h2 {
    color: #ffffff;
}

.home-compatibility-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.home-compatibility-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-compatibility-strip article {
    min-width: 0;
    padding: 30px 28px;
}

.home-compatibility-strip article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-compatibility-strip span {
    display: block;
    margin-bottom: 28px;
    color: #8eeab1;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.home-compatibility-strip strong {
    display: block;
    font-size: 19px;
    line-height: 1.25;
}

.home-compatibility-strip p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.5;
}

/* ****************************************
 * FAQ ACCORDION
 * **************************************** */
.home-faq-section {
    padding: 96px 0;
    background: #ffffff;
}

.home-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 84px;
    align-items: start;
}

.home-faq-intro {
    position: sticky;
    top: 150px;
}

.home-faq-intro > p {
    margin: 22px 0 28px;
}

.home-faq-list {
    border-top: 1px solid var(--border);
}

.home-faq-list details {
    border-bottom: 1px solid var(--border);
}

.home-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #dff7e9;
    color: #0d8e44;
    font-size: 20px;
    transition: transform 0.18s ease;
}

.home-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.home-faq-list details p {
    max-width: 690px;
    margin: -4px 54px 24px 0;
    color: var(--muted);
    line-height: 1.6;
}

/* ****************************************
 * PRODUCT PAGE
 * **************************************** */
.product-page .product-hero .home-hero-inner {
    grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
    min-height: 560px;
    padding-top: 64px;
    padding-bottom: 68px;
}

.product-page .product-hero .home-hero-content {
    max-width: 680px;
}

.product-page .product-hero h1 {
    font-size: clamp(36px, 4.7vw, 58px);
}

.product-page .product-hero-preview {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-height: 440px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.product-page .product-hero-preview img {
    display: block;
    width: 100%;
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.22));
}

.product-image-enlarge {
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 8px;
    background: #ffffff;
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
}

.product-image-enlarge:hover,
.product-image-enlarge:focus-visible {
    background: var(--green);
    color: #ffffff;
}

.product-image-dialog {
    position: fixed;
    width: min(1180px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    padding: 24px;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.product-image-dialog::backdrop {
    background: rgba(3, 14, 24, 0.84);
    backdrop-filter: blur(3px);
}

.product-image-dialog form {
    position: absolute;
    top: 12px;
    right: 12px;
}

.product-image-dialog button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.product-image-dialog img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
}

.product-page .product-content {
    padding: 64px 0;
    background: #ffffff;
}

.product-page .container {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    background: transparent;
}

.product-page .geojson-table-container,
.product-page .file-details,
.product-page .compatibility-box {
    min-width: 0;
    max-width: none;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.product-page .geojson-table-container {
    padding-left: 24px;
}

.product-page .geojson-table-container h2,
.product-page .file-details h2,
.product-page .compatibility-box h3 {
    margin: 0 0 14px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.product-page .geojson-table-container p,
.product-page .file-details p,
.product-page .compatibility-box p {
    color: var(--muted);
    line-height: 1.55;
}

.product-page .geojson-table {
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.product-page .geojson-table th,
.product-page .geojson-table td {
    border: 0;
    border-bottom: 1px solid var(--border);
    padding: 10px 12px;
    color: var(--text);
}

.product-page .geojson-table thead th {
    background: var(--navy);
    color: #ffffff;
}

.product-page .geojson-table tbody tr:last-child th,
.product-page .geojson-table tbody tr:last-child td {
    border-bottom: 0;
}

.product-page .file-details {
    margin: 0;
    padding: 28px;
    background: #f7fafc;
}

.product-page .file-details .home-eyebrow {
    color: var(--green-dark);
}

.product-page .file-details ul {
    display: grid;
    gap: 0;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.product-page .file-details li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    overflow-wrap: anywhere;
}

.product-page .file-details li strong {
    flex: 0 0 auto;
}

.product-page .purchase-section {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.product-page .price {
    color: var(--text);
    font-size: 30px;
    font-weight: 900;
}

.product-page .button-group {
    flex-wrap: wrap;
}

.product-page .button {
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.product-page .download-btn {
    background: var(--blue);
}

.product-page .buy-btn {
    background: var(--green);
}

.product-page .compatibility-box {
    grid-column: 1 / -1;
    margin: 0;
    text-align: left;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.product-page .product-catalog-section {
    background: #f6faf8;
}

.product-page .product-catalog-section .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    background: transparent;
}

.product-page .product-catalog-section .card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff !important;
    color: var(--text);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.product-page .product-catalog-section .card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.product-page .product-catalog-section .card p,
.product-page .product-catalog-section .card li {
    color: var(--muted);
    line-height: 1.5;
}

.product-page .product-catalog-section .card a {
    color: #088d44 !important;
    font-weight: 800;
    text-decoration: none;
}

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

.related-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.related-product-image {
    display: grid;
    place-items: center;
    min-height: 170px;
    padding: 15px;
    border-bottom: 1px solid var(--border);
    background: #edf4f1;
}

.related-product-image img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.035);
}

.related-product-copy {
    padding: 20px;
}

.related-product-copy .home-eyebrow {
    margin-bottom: 8px;
}

.related-product-copy h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.related-product-copy h3 a {
    color: var(--text);
    text-decoration: none;
}

.related-product-copy > p:not(.home-eyebrow) {
    min-height: 64px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.related-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    font-weight: 800;
}

.related-product-meta a {
    color: var(--green-dark);
    text-decoration: none;
}

.related-product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

/* ****************************************
 * TRUST CTA
 * **************************************** */
.home-trust-cta {
    padding: 10px 0 56px;
    background: #ffffff;
}

.home-trust-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px 38px;
    border-radius: 16px;
    background: var(--navy-2);
    color: #ffffff;
    box-shadow: none;
}

.home-trust-panel p {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.home-trust-panel span {
    display: block;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
}

/* ****************************************
 * FOOTER
 * **************************************** */
.home-footer {
    background: #04101d;
    color: #ffffff;
    padding: 46px 0 24px;
    text-align: left;
}

.home-footer-inner {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 1.05fr;
    gap: 42px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.home-footer .logo {
    width: 146px;
    height: auto;
}

.home-footer p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.home-footer a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.home-footer h3 {
    margin: 0 0 16px;
    font-size: 16px;
}

.home-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-footer ul li {
    margin: 0;
}

.home-footer ul li a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
}

.home-footer .social-icons {
    justify-content: flex-start;
    gap: 14px;
    padding: 10px 0 0;
}

.home-footer .social-icons img {
    width: 24px;
    height: 24px;
}

.newsletter-placeholder {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-placeholder input {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
}

.newsletter-placeholder button {
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-placeholder button:hover,
.newsletter-placeholder button:focus-visible {
    background: #138843;
}

.newsletter-message {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 800;
}

.home-footer .newsletter-success {
    color: #8cf0b2;
}

.home-footer .newsletter-error {
    color: #ffb4b4;
}

.home-footer-bottom {
    max-width: 1180px;
    margin: 36px auto 0;
    padding: 20px 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.home-footer-bottom .footer-text {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    text-align: left;
}

/* ****************************************
 * RESPONSIVE
 * **************************************** */
@media (max-width: 1040px) {
    .home-page .home-header-inner {
        flex-wrap: wrap;
        gap: 18px;
    }

    .home-page .home-nav {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .home-page .home-nav ul {
        justify-content: flex-start;
        gap: 16px 22px;
    }

    .home-page .home-search {
        margin-left: auto;
    }

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

    .home-hero-map {
        min-height: 260px;
    }

    .home-hero-map img {
        height: 310px;
    }

    .home-tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-latest-layout,
    .home-process-layout,
    .home-review-layout,
    .home-faq-layout,
    .home-compatibility-heading {
        grid-template-columns: 1fr;
    }

    .home-latest-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-process-layout,
    .home-review-layout,
    .home-faq-layout,
    .home-compatibility-heading {
        gap: 46px;
    }

    .home-process-intro,
    .home-faq-intro {
        position: static;
    }

    .home-review-visual {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .home-compatibility-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-compatibility-strip article:nth-child(3) {
        border-left: 0;
    }

    .home-compatibility-strip article:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .home-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-page .container,
    .product-page .product-hero .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .product-page .product-catalog-section .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-container {
        padding: 0 18px;
    }

    .home-page .home-header-inner {
        padding: 16px 18px;
    }

    .home-page .home-logo-link .logo {
        width: 124px;
    }

    .home-page .home-search {
        width: 100%;
        margin-left: 0;
    }

    .home-page .home-search input {
        flex: 1;
        width: auto;
    }

    .home-page .home-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 12px 18px;
    }

    .home-hero-inner {
        padding: 56px 18px 62px;
    }

    .home-hero-subtitle {
        font-size: 17px;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-hero-map {
        display: none;
    }

    .home-section {
        padding: 54px 0;
    }

    .home-latest-section,
    .home-process-section,
    .home-review-section,
    .home-compatibility-section,
    .home-faq-section {
        padding: 64px 0;
    }

    .home-latest-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-latest-feature,
    .home-latest-list,
    .home-compatibility-strip {
        grid-template-columns: 1fr;
    }

    .home-latest-art {
        min-height: 300px;
    }

    .home-latest-copy {
        padding: 30px;
    }

    .home-latest-row {
        min-height: auto;
    }

    .home-process-step {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;
    }

    .home-process-number {
        font-size: 38px;
    }

    .home-process-step > a {
        grid-column: 2;
    }

    .home-review-visual {
        min-height: 500px;
    }

    .home-review-map {
        min-height: 450px;
        padding: 28px;
    }

    .home-review-data {
        right: 0;
    }

    .home-compatibility-strip article + article,
    .home-compatibility-strip article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .home-compatibility-strip span {
        margin-bottom: 14px;
    }

    .home-faq-list summary {
        font-size: 16px;
    }

    .home-category-grid,
    .home-tool-grid,
    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-category-card {
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 14px;
        padding: 15px;
    }

    .category-icon {
        width: 54px;
        height: 54px;
        border-radius: 11px;
        font-size: 13px;
    }

    .home-trust-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 22px;
    }

    .home-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 18px;
    }

    .newsletter-placeholder {
        flex-direction: column;
    }

    .home-footer-bottom {
        padding: 20px 18px 0;
    }

    .product-page .container {
        padding: 0 18px;
    }

    .product-page .product-hero-preview {
        min-height: 240px;
        padding: 22px;
    }

    .product-page .product-catalog-section .grid {
        grid-template-columns: 1fr;
    }

    .related-product-grid {
        grid-template-columns: 1fr;
    }

    .related-product-copy > p:not(.home-eyebrow) {
        min-height: 0;
    }

    .related-product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-page .purchase-section,
    .product-page .button-group,
    .product-page .button-group a,
    .product-page .button-group form,
    .product-page .button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .home-page .home-nav ul {
        grid-template-columns: 1fr;
    }

    .home-category-card {
        grid-template-columns: 1fr auto;
    }

    .category-icon {
        grid-column: 1 / -1;
    }
}

/* ****************************************
 * INFORMATION PAGES
 * **************************************** */
.information-page .information-hero .home-hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
    min-height: 500px;
}

.information-page .information-hero .home-hero-content {
    max-width: 720px;
}

.information-page .information-hero h1 {
    max-width: 700px;
}

.information-hero-card {
    position: relative;
    z-index: 1;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.information-hero-card > p {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.information-hero-card > span {
    display: block;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.6;
}

.information-hero-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.information-hero-card li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.information-hero-card li::before {
    content: "\2713";
    position: absolute;
    top: 0;
    left: 0;
    color: #6ee7a0;
    font-weight: 900;
}

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

.information-stat-grid div {
    padding: 20px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
}

.information-stat-grid strong,
.information-stat-grid span {
    display: block;
}

.information-stat-grid strong {
    margin-bottom: 7px;
    color: #6ee7a0;
    font-size: 28px;
}

.information-stat-grid span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.45;
}

.information-main {
    background: #ffffff;
}

.information-section {
    padding: 78px 0;
}

.information-section-muted {
    background: var(--background);
}

.information-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.information-heading h2 {
    margin: 8px 0 14px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.information-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ****************************************
 * ABOUT PAGE
 * **************************************** */
.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-value-grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
}

.about-value-grid article > span {
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.about-value-grid h3 {
    margin: 16px 0 10px;
    color: var(--text);
    font-size: 21px;
}

.about-value-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

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

.about-person-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
}

.about-person-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
}

.about-person-card > div {
    padding: 28px;
}

.about-person-card h3 {
    margin: 7px 0 10px;
    color: var(--text);
    font-size: 26px;
}

.about-person-card > div > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.information-cta-section {
    padding-top: 56px;
}

/* ****************************************
 * CONTACT PAGE
 * **************************************** */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    align-items: start;
    gap: 28px;
}

.contact-side-column {
    display: grid;
    gap: 28px;
}

.contact-form-card,
.contact-details-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
}

.contact-form-card h3,
.contact-details-card h3 {
    margin: 7px 0 14px;
    color: var(--text);
    font-size: 26px;
}

.contact-form-card > p:not(.home-eyebrow) {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.contact-form-card form {
    display: grid;
    gap: 10px;
}

.contact-form-card label {
    margin-top: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d5dbe4;
    border-radius: 9px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(31, 123, 209, 0.12);
}

.contact-recaptcha {
    max-width: 100%;
    margin: 8px 0;
    overflow: hidden;
}

.contact-submit {
    width: 100%;
    margin-top: 6px;
    border: 0;
    cursor: pointer;
}

.contact-details-card {
    background: var(--navy-2);
    color: #ffffff;
}

.contact-details-card .home-eyebrow {
    color: #6ee7a0;
}

.contact-details-card h3 {
    color: #ffffff;
}

.contact-details-card dl {
    display: grid;
    gap: 20px;
    margin: 24px 0 0;
}

.contact-details-card dl div {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details-card dt {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-details-card dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.contact-details-card a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

/* ****************************************
 * INFORMATION PAGE RESPONSIVE RULES
 * **************************************** */
@media (max-width: 920px) {
    .information-page .information-hero .home-hero-inner,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .information-hero-card {
        max-width: 680px;
    }
}

@media (max-width: 720px) {
    .information-section {
        padding: 56px 0;
    }

    .about-value-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .information-hero-card,
    .contact-form-card,
    .contact-details-card {
        padding: 24px;
    }
}

@media (max-width: 420px) {
    .information-stat-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-details-card {
        padding: 20px;
    }

    .contact-recaptcha .g-recaptcha {
        width: 122%;
        margin-bottom: -14px;
        transform: scale(0.82);
        transform-origin: left top;
    }
}

/* ****************************************
 * CONVERTER PAGE
 * **************************************** */
.converter-page {
    min-height: 100vh;
    background: #f7fafc;
}

/* ****************************************
 * HERO AND FORM
 * **************************************** */
.converter-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 82px;
    background: linear-gradient(135deg, #04101d 0%, #061523 60%, #0b2035 100%);
    color: #ffffff;
}

.converter-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.5px);
    background-size: 24px 24px;
}

.converter-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    align-items: center;
    gap: 72px;
}

.converter-intro {
    max-width: 620px;
}

.converter-intro h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.converter-intro > p:not(.home-pill) {
    max-width: 580px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.55;
}

.converter-format-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.converter-format-row span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
}

.converter-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: #ffffff;
    color: #102033;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.converter-card-heading {
    margin-bottom: 24px;
}

.converter-card-heading p {
    margin: 0 0 7px;
    color: #16894a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.converter-card-heading h2 {
    margin: 0;
    color: #102033;
    font-size: 28px;
    letter-spacing: -0.035em;
}

.converter-field {
    margin-bottom: 20px;
}

.converter-field > label:first-child {
    display: block;
    margin-bottom: 8px;
    color: #24364a;
    font-size: 14px;
    font-weight: 800;
}

.converter-upload {
    display: grid;
    gap: 7px;
    padding: 22px;
    border: 2px dashed #aebdca;
    border-radius: 12px;
    background: #f7fafc;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.converter-upload:hover,
.converter-upload:focus-within {
    border-color: #20b45b;
    background: #f1fbf5;
}

.converter-upload strong {
    color: #0b2035;
    font-size: 16px;
}

.converter-upload span {
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
}

.converter-upload small {
    color: #8290a0;
    font-size: 12px;
}

#gisFiles {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.converter-field select {
    width: 100%;
    min-height: 48px;
    padding: 11px 42px 11px 13px;
    border: 1px solid #cbd5df;
    border-radius: 9px;
    background: #ffffff;
    color: #102033;
    font: inherit;
    cursor: pointer;
}

.converter-field select:focus,
.converter-upload:has(+ #gisFiles:focus) {
    border-color: #20b45b;
    outline: 3px solid rgba(32, 180, 91, 0.15);
}

.converter-button {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    border: 0;
    border-radius: 9px;
    background: #20b45b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.converter-button:hover {
    background: #179b4d;
}

.converter-button:disabled {
    background: #94a3b0;
    cursor: wait;
}

.converter-status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.converter-status.is-working,
.converter-status.is-success {
    display: block;
    background: #e9f9ef;
    color: #116b36;
}

.converter-status.is-error {
    display: block;
    background: #fff0ee;
    color: #a72c20;
}

/* ****************************************
 * DETAILS
 * **************************************** */
.converter-details {
    padding: 76px 0;
    background: #ffffff;
}

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

.converter-step-grid article {
    padding: 26px;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    background: #ffffff;
}

.converter-step-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dff7e8;
    color: #14733a;
    font-weight: 900;
}

.converter-step-grid h3 {
    margin: 18px 0 8px;
    color: #102033;
    font-size: 19px;
}

.converter-step-grid p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.converter-note {
    margin-top: 26px;
    padding: 22px 24px;
    border-left: 4px solid #20b45b;
    border-radius: 8px;
    background: #f6faf8;
}

.converter-note h3 {
    margin: 0 0 7px;
    color: #102033;
    font-size: 17px;
}

.converter-note p {
    margin: 0;
    color: #59687a;
    font-size: 14px;
    line-height: 1.55;
}

.converter-note code {
    color: #174b31;
}

/* ****************************************
 * RESPONSIVE LAYOUT
 * **************************************** */
@media (max-width: 980px) {
    .converter-hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .converter-intro {
        max-width: 760px;
    }
}

@media (max-width: 720px) {
    .converter-hero {
        padding: 52px 0 60px;
    }

    .converter-hero-inner {
        padding: 0 20px;
    }

    .converter-intro h1 {
        font-size: 42px;
    }

    .converter-card {
        padding: 24px 20px;
    }

    .converter-details {
        padding: 58px 0;
    }

    .converter-step-grid {
        grid-template-columns: 1fr;
    }
}
