:root {
    --container: 1080px;
    --blue: #dd3333;
    --blue-dark: #b82020;
    --accent: #1e73be;
    --text: #555;
    --muted: #777;
    --border: #ececec;
    --light: #f7f7f7;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    background: #5b5b5b;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: #111;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar {
    color: rgba(255, 255, 255, 0.85);
    background: var(--blue);
    font-size: 12px;
}

.top-bar-inner,
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar-inner {
    min-height: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.top-links {
    display: flex;
    gap: 18px;
}

.top-links a {
    color: rgba(255, 255, 255, 0.85);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 0;
}

.header-inner {
    min-height: 134px;
}

.brand-logo {
    display: block;
    width: 205px;
}

.main-nav {
    flex-wrap: wrap;
    gap: 0;
    align-self: stretch;
}

.main-nav a,
.main-nav .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 43px;
    padding: 0 13px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
}

.main-nav a:hover,
.main-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-lang img {
    margin-right: 4px;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.has-dropdown > .nav-link:after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 11px;
    display: inline-block;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 260px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    min-height: 0;
    padding: 8px 14px;
    color: #555;
    background: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
    color: #fff;
    background: var(--blue);
}

.site-header .container {
    max-width: none;
    padding: 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.brand {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container);
    min-height: 91px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-nav {
    position: sticky;
    top: 134px;
    z-index: 99;
    width: 100%;
    min-height: 43px;
    background: #424242;
}

.main-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.home-slider {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: #fff;
}

.slider-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slide {
    position: absolute;
    top: 22px;
    left: 50%;
    width: min(1120px, 70vw);
    height: 428px;
    display: flex;
    align-items: center;
    padding: 60px 48px;
    color: var(--text);
    overflow: hidden;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: 0 28px 42px rgba(0, 0, 0, 0.22);
    opacity: 0.55;
    transition:
        transform 0.7s ease,
        opacity 0.7s ease;
}

.slide.is-instant {
    transition: none;
}

#home-slide-1:checked ~ .slide-nest,
#home-slide-2:checked ~ .slide-post,
#home-slide-3:checked ~ .slide-calc {
    z-index: 2;
    opacity: 1;
    transform: translateX(-50%);
}

#home-slide-1:checked ~ .slide-post,
#home-slide-2:checked ~ .slide-calc,
#home-slide-3:checked ~ .slide-nest {
    z-index: 1;
    transform: translateX(58%);
}

#home-slide-1:checked ~ .slide-calc,
#home-slide-2:checked ~ .slide-nest,
#home-slide-3:checked ~ .slide-post {
    z-index: 1;
    transform: translateX(-158%);
}

.slide:before {
    content: none;
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    padding: 34px 38px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 42px rgba(0, 0, 0, 0.18);
}

.slide-nest {
    background-image: url("/assets/img/plasmacalc-2.png");
}

.slide-post {
    background-image: url("/assets/img/plasmapost-2.png");
}

.slide-calc {
    background-image: url("/assets/img/plasmacalc-3.png");
}

.slide p {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.slide h1,
.slide h2 {
    margin: 0 0 12px;
    color: #114069;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 400;
}

.slide span {
    display: block;
    margin-bottom: 20px;
    color: #555;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 34px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    display: none;
}

#home-slide-1:checked ~ .prev-1,
#home-slide-1:checked ~ .next-1,
#home-slide-2:checked ~ .prev-2,
#home-slide-2:checked ~ .next-2,
#home-slide-3:checked ~ .prev-3,
#home-slide-3:checked ~ .next-3 {
    display: block;
}

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

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

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid #d2d2d2;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

#home-slide-1:checked ~ .slider-dots .dot-1,
#home-slide-2:checked ~ .slider-dots .dot-2,
#home-slide-3:checked ~ .slider-dots .dot-3 {
    border-color: var(--blue);
    background: var(--blue);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 2px solid currentColor;
    color: var(--blue);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button.primary {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.slide .button.primary {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
}

.button:hover {
    color: #fff;
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.feature-strip {
    padding: 34px 0 4px;
    background: #fff;
}

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

.feature-grid article {
    padding: 0 0 24px;
    text-align: center;
}

.feature-grid h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-grid p {
    margin: 0;
    color: var(--muted);
}

.info-sections {
    padding-top: 25px;
    padding-bottom: 25px;
}

.info-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42%;
    gap: 34px;
    align-items: center;
    padding: 38px 0;
    border-top: 1px solid var(--border);
}

.info-block.reverse {
    grid-template-columns: 42% minmax(0, 1fr);
}

.info-block.reverse > div {
    order: 2;
}

.info-block h2,
.page-title h1 {
    margin: 0 0 12px;
    color: #333;
    font-size: 28px;
    line-height: 1.2;
}

.info-block p {
    margin: 0 0 18px;
}

.info-block img {
    width: 100%;
    border: 1px solid var(--border);
}

.reviews-section {
    padding: 36px 0 46px;
    background: var(--light);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 24px;
    color: #333;
    font-size: 20px;
    text-transform: uppercase;
}

.section-title:before,
.section-title:after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(0, 0, 0, 0.14);
}

.section-title span {
    padding-bottom: 0;
    white-space: nowrap;
}

.reviews-title {
    margin: 0 0 24px;
    color: #333;
    font-size: 20px;
    text-transform: uppercase;
}

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

.review-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.review-image {
    display: block;
    width: 120px;
    margin: 0 0 16px;
}

.review-image img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.review-card h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 17px;
}

.review-card h3 a {
    color: #333;
}

.review-card h3 a:hover {
    color: var(--blue);
}

.review-card strong,
.review-company {
    display: block;
}

.review-company {
    color: var(--muted);
    font-size: 13px;
}

.review-page {
    padding-top: 42px;
    padding-bottom: 52px;
}

.review-full {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.review-full-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.review-full-content p:first-child {
    margin-top: 0;
}

.review-author {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.review-author strong,
.review-author span,
.review-author a {
    display: block;
}

.trial-section {
    padding: 44px 0;
    color: #fff;
    text-align: left;
    background: #333;
}

.trial-section h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
}

.trial-section p {
    max-width: 760px;
    margin: 0 0 18px;
}

.trial-section .button.primary {
    color: #fff;
    border-color: #fff;
}

.products-section {
    padding-top: 38px;
    padding-bottom: 48px;
    background: #2b2b2b;
}

.products-section.container {
    background: #2b2b2b;
}

.products-section .product-card {
    background: #2b2b2b;
}

.products-section .product-card h2,
.products-section .product-card h3,
.products-section .product-card h2 a,
.products-section .product-card h3 a {
    color: #e0e0e0;
}

.products-section .product-card-text {
    color: rgba(255, 255, 255, 0.65);
}

.products-section .product-type {
    color: rgba(255, 255, 255, 0.5);
}

.products-section .price {
    color: #fff;
}

.products-section .section-title {
    color: #fff;
}

.products-section .section-title:before,
.products-section .section-title:after {
    background: rgba(255, 255, 255, 0.2);
}

.product-carousel {
}

.product-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.product-viewport .slider-arrow {
    display: block;
    top: 50%;
    margin-top: -21px;
}

.product-viewport .slider-arrow.prev {
    left: 12px;
}

.product-viewport .slider-arrow.next {
    right: 12px;
}

.product-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.product-slide .product-card {
    flex: 0 0 200px;
}

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

@media (max-width: 900px) {
    .product-track > .product-card {
        width: 180px;
    }
}

.product-card {
    position: relative;
    background: #fff;
}

.product-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f1f1f1;
}

.product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 8px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.product-image span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.25s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
    opacity: 0.9;
}

.product-card:hover .product-image span {
    transform: translateY(0);
}

.product-card-text {
    padding: 12px 0 0;
    text-align: center;
}

.product-type {
    margin: 0 0 4px;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
    margin: 0 0 4px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.price {
    color: #111;
    font-weight: 700;
    font-size: 15px;
}

.stars {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 1px;
}

.page-title {
    padding: 24px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.breadcrumbs {
    margin: 0 0 6px;
    color: rgba(102, 102, 102, 0.75);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-main {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 36px;
}

.product-gallery .main-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    cursor: zoom-in;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.product-thumbs button {
    padding: 4px;
    border: 1px solid var(--border);
    background: #fff;
}

.product-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 52px;
    background: rgba(0, 0, 0, 0.86);
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.product-summary h1 {
    margin: 0 0 8px;
    color: #333;
    font-size: 30px;
    line-height: 1.2;
}

.product-price {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 400;
    color: var(--muted);
}

.price-label {
    font-weight: 700;
    color: #555;
}

.product-meta {
    margin-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.product-meta span {
    display: block;
    padding: 6px 0;
    border-top: 1px dotted #ddd;
}

.product-tabs {
    padding-top: 30px;
    padding-bottom: 48px;
    border-top: 1px solid var(--border);
}

.tabs-header {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 0;
    color: #333;
    border-top: 3px solid var(--blue);
    font-weight: 700;
    text-transform: uppercase;
}

.trial-note {
    padding: 14px 18px;
    background: #f9f9f9;
    border-left: 3px solid var(--blue);
}

.feature-list {
    padding-left: 22px;
}

.feature-list li {
    margin-bottom: 8px;
}

.download-list {
    margin: 22px 0 28px;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: #f9f9f9;
    color: #114069;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    transition:
        background 0.15s,
        border-color 0.15s;
}

.download-link + .download-link {
    margin-top: 8px;
}

.download-link:hover {
    background: #fff;
    border-color: var(--accent);
}

.download-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon img {
    display: block;
    max-width: 32px;
    max-height: 32px;
}

.section-image-wrap {
    margin: 16px 0;
}

.section-image {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
    cursor: pointer;
}

.section-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 14px 0;
}

.section-gallery-item img {
    width: 100%;
    display: block;
    cursor: pointer;
}

.section-gallery--gap {
    gap: 6px;
}

@media (max-width: 900px) {
    .section-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

.table-title {
    margin: 26px 0 12px;
    color: #114069;
    font-size: 20px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 22px;
}

.option-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-size: 14px;
}

.option-table th,
.option-table td {
    padding: 9px 12px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.option-table th {
    color: #fff;
    background: #555;
    text-align: left;
}

.option-table tr:nth-child(even) td {
    background: #f7f7f7;
}

.option-table td:not(:first-child) {
    width: 150px;
    text-align: center;
}

.check-cell {
    color: #2f8a34;
    font-size: 19px;
    font-weight: 700;
}

.video-grid {
    display: block;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
    background: #111;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.faq-list,
.contact-grid,
.section.narrow {
    max-width: var(--container);
    margin: 0 auto;
    padding: 38px 15px 48px;
}

.faq-list article,
.contact-card,
.note,
.faq-item {
    padding: 20px;
    border: 1px solid var(--border);
    background: #fff;
}

.faq-item {
    margin-bottom: 14px;
}

.faq-item h4 {
    margin: -20px -20px 14px -20px;
    padding: 14px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
    color: #333;
    font-size: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 14px;
    color: #333;
    font-weight: 700;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    outline: none;
}

.page-licensing .license-form {
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #5b5b5b;
    font-size: 14px;
}

.page-licensing .license-form label {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.page-licensing .license-form input[type="email"],
.page-licensing .license-form input[type="text"] {
    display: block;
    width: 100%;
    height: 42px;
    margin: 8px 0 0;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    box-shadow: none;
    color: #5b5b5b;
    font: inherit;
    line-height: 30px;
}

.page-licensing .license-form input[type="file"] {
    display: block;
    width: 100%;
    height: 42px;
    margin: 8px 0 0;
    padding: 0 12px 0 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    color: #5b5b5b;
    font: inherit;
    line-height: 40px;
}

.page-licensing .license-form input[type="file"]::file-selector-button {
    height: 40px;
    margin: 0 12px 0 0;
    padding: 0 14px;
    border: 0;
    border-right: 1px solid #ddd;
    background: #f5f5f5;
    color: #5b5b5b;
    font: inherit;
    cursor: pointer;
}

.page-licensing .license-form input[type="file"]::file-selector-button:hover {
    background: #e9e9e9;
}

.page-licensing .license-panel {
    width: 100%;
    margin: 0 0 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
}

.page-licensing .license-panel-heading {
    min-height: 44px;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.page-licensing .license-panel-body {
    padding: 15px 15px 0;
}

.page-licensing .license-panel-body p {
    margin: 0 0 20px;
    padding: 10px 14px;
    border-left: 4px solid #cf2e2e;
    background: #fff5f5;
    color: #c62828;
    font-size: 14px;
    line-height: 1.4;
}

.page-licensing .license-panel .license-form label,
.page-licensing .license-panel label {
    margin-bottom: 20px;
}

.page-licensing .license-form input:focus {
    border-color: #aaa;
    outline: none;
}

.page-licensing .license-form .button.primary {
    display: inline-block;
    min-height: 43px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f2f2f2;
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
}

.page-licensing .license-form .button.primary:hover,
.page-licensing .license-form .button.primary:focus {
    border-color: #ccc;
    background: #e6e6e6;
    color: #5b5b5b;
}

.page-licensing .form-note {
    margin: 0 0 20px;
    min-height: 148px;
    padding: 20px 38px 24px;
    background: #cf2e2e;
    color: #eee;
    font-size: 16px;
    line-height: 1.6;
}

.page-licensing .form-note em {
    font-style: normal;
}

.page-licensing .form-note::first-letter {
    float: left;
    margin: 5px 13px 0 0;
    padding: 0;
    color: #eee;
    font-size: 86px;
    font-weight: 100;
    line-height: 68px;
}

.page-licensing .reactivation-warning {
    max-width: calc(100% - 62px);
    margin: 0 auto 24.96px;
    padding: 12px 16px;
    border-left: 4px solid #cf2e2e;
    background: #fff5f5;
    color: #c62828;
    font-size: 19.2px;
    font-style: italic;
    line-height: 30.72px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.contact-band {
    padding: 38px 0 48px;
    background: #333;
    color: rgba(255, 255, 255, 0.72);
}

.contact-band .contact-layout {
    color: inherit;
}

.contact-band .contact-col h2,
.contact-band .contact-col h3 {
    color: #fff;
}

.contact-band .contact-col p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-band .contact-form label,
.contact-band .captcha-label {
    color: rgba(255, 255, 255, 0.86);
}

.contact-band .contact-form input,
.contact-band .contact-form textarea,
.contact-band .captcha-wrap input {
    border-color: rgba(255, 255, 255, 0.18);
    background: #fff;
    color: #333;
}

.contact-band .contact-form input:focus,
.contact-band .contact-form textarea:focus,
.contact-band .captcha-wrap input:focus {
    border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-col h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.contact-col h3 {
    margin: 20px 0 10px;
    color: #333;
    font-size: 17px;
}

.contact-col h3:first-child {
    margin-top: 0;
}

.captcha-row {
    margin-bottom: 14px;
}

.captcha-label {
    display: block;
    color: #333;
    font-weight: 700;
    font-size: 14px;
}

.captcha-label input {
    display: inline-block;
    width: auto;
    margin-left: 8px;
    margin-top: 0;
}

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.captcha-img {
    border: 1px solid #ddd;
    height: 50px;
    cursor: pointer;
}

.form-success {
    padding: 14px 18px;
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
    color: #1b5e20;
    font-weight: 700;
}

.contact-col p.form-success {
    color: #1b5e20;
    background: #e8f5e9;
}

.form-error {
    padding: 14px 18px;
    background: #ffebee;
    border-left: 3px solid var(--blue);
    color: #c62828;
    margin-bottom: 14px;
}

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    overflow: hidden;
    background: #5f6265;
    color: #fff;
    text-align: center;
}

.about-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/about-bg.jpg") center/cover no-repeat;
    filter: grayscale(55%) contrast(68%) brightness(55%);
}

.about-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 30, 34, 0.68);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 40px 20px;
}

.about-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 42px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-map {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-map-overlay {
    position: absolute;
    right: 40px;
    bottom: 30px;
    max-width: 380px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.contact-map-overlay h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 16px;
}

.contact-map-overlay p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 560px) {
    .contact-map {
        height: 300px;
    }
    .contact-map-overlay {
        right: 15px;
        bottom: 15px;
        left: 15px;
        max-width: none;
        padding: 16px;
    }
}

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

.contact-card {
    display: grid;
    color: #333;
}

.license-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
}

.license-overlay.is-open {
    display: flex;
}

.license-overlay-panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 24px 22px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.license-overlay-panel h3 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #333;
}

.license-overlay-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.license-overlay-close:hover {
    color: #333;
}

.license-overlay-panel .form-note {
    margin: 10px 0 16px;
    padding: 10px 14px;
    background: #fff3e0;
    border-left: 3px solid #ff9800;
    color: #795548;
    font-size: 13px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.65);
    background: #3d3d3d;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 28px;
}

.footer-title {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-col a:hover {
    color: #fff;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 13px;
    background: #333;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.footer-bottom-inner a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-inner a:hover {
    color: #fff;
}

.footer-bottom-inner strong {
    color: #fff;
}

code {
    padding: 2px 5px;
    background: #f1f1f1;
}

@media (max-width: 900px) {
    .top-bar-inner,
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .main-nav a,
    .main-nav .nav-link {
        min-height: 34px;
        padding: 0 12px 0 0;
    }

    .home-slider,
    .feature-grid,
    .reviews-grid,
    .review-full,
    .product-grid,
    .product-main,
    .contact-grid,
    .info-block,
    .info-block.reverse {
        grid-template-columns: 1fr;
    }

    .info-block.reverse > div {
        order: initial;
    }
}

@media (max-width: 560px) {
    .top-bar-tagline {
        display: none;
    }

    .top-bar-inner {
        flex-direction: row;
        justify-content: flex-end;
    }

    .home-slider {
        height: 410px;
    }

    .slide {
        top: 20px;
        width: 86vw;
        height: 320px;
        padding: 28px 20px;
    }

    #home-slide-1:checked ~ .slide-post,
    #home-slide-2:checked ~ .slide-calc,
    #home-slide-3:checked ~ .slide-nest {
        transform: translateX(52%);
    }

    #home-slide-1:checked ~ .slide-calc,
    #home-slide-2:checked ~ .slide-nest,
    #home-slide-3:checked ~ .slide-post {
        transform: translateX(-152%);
    }

    .slide h1,
    .slide h2 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .slide p {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .slide span {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .slide .button {
        font-size: 9px;
        min-height: 26px;
        padding: 0 10px;
    }

    .slide-content {
        padding: 12px;
    }

    .brand-logo {
        width: 180px;
    }
}
