@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&family=Sora:wght@200;300;400;500;600&display=swap');
:root {
    --neon-cyan: #00e5ff;
    --neon-blue: #40c4ff;
    --vanilla-cream: #fef9f3;
    --soft-sky: #e8f4fc;
    --azure-mist: #d0ebff;
    --deep-ocean: #1a3a52;
    --slate-ink: #2d4356;
    --frost-white: #ffffff;
    --accent-coral: #ff6b9d;
    --glow-purple: #a78bfa;
    --success-mint: #34d399;
    --shadow-soft: rgba(0, 229, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(26, 58, 82, 0.08);
    --gradient-hero: linear-gradient(135deg, #e8f4fc 0%, #d0ebff 50%, #fef9f3 100%);
    --gradient-neon: linear-gradient(90deg, #00e5ff 0%, #40c4ff 50%, #a78bfa 100%);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-ink);
    background: var(--vanilla-cream);
    min-width: 280px;
    overflow-x: hidden;
}
.nzs-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
.nzs-header {
    background: var(--frost-white);
    border-bottom: 1px solid var(--azure-mist);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-soft);
}
.nzs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1320px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}
.nzs-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}
.nzs-logo-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.nzs-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nzs-nav-toggle {
    display: none;
    background: var(--gradient-neon);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--frost-white);
}
.nzs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nzs-nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate-ink);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nzs-nav-link:hover {
    background: var(--soft-sky);
    color: var(--deep-ocean);
}
.nzs-nav-link.nzs-active {
    background: var(--gradient-neon);
    color: var(--frost-white);
}
.nzs-hero {
    background: var(--gradient-hero);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
.nzs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, var(--shadow-soft) 0%, transparent 70%);
    pointer-events: none;
}
.nzs-hero-content {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.nzs-hero-text h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 20px;
    line-height: 1.2;
}
.nzs-hero-text h1 span {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nzs-hero-desc {
    font-size: 1.1rem;
    color: var(--slate-ink);
    margin-bottom: 28px;
    max-width: 520px;
}
.nzs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-neon);
    color: var(--frost-white);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-soft);
}
.nzs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
}
.nzs-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--frost-white);
    color: var(--deep-ocean);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--azure-mist);
}
.nzs-btn-secondary:hover {
    border-color: var(--neon-cyan);
    background: var(--soft-sky);
}
.nzs-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nzs-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.nzs-section {
    padding: 60px 20px;
}
.nzs-section-alt {
    background: var(--frost-white);
}
.nzs-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--deep-ocean);
    text-align: center;
    margin-bottom: 40px;
}
.nzs-section-title span {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nzs-slots-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.nzs-slot-card {
    background: var(--frost-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--azure-mist);
    transition: all 0.3s ease;
}
.nzs-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.2);
    border-color: var(--neon-cyan);
}
.nzs-slot-logo {
    width: 120px;
    height: 100px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--soft-sky);
    padding: 8px;
}
.nzs-slot-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 8px;
}
.nzs-slot-info h3 .nzs-brand-highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nzs-slot-desc {
    font-size: 0.95rem;
    color: var(--slate-ink);
    margin-bottom: 12px;
}
.nzs-slot-bonus {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-mint) 0%, var(--neon-cyan) 100%);
    color: var(--frost-white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}
.nzs-slot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nzs-slot-feature {
    font-size: 0.8rem;
    color: var(--deep-ocean);
    background: var(--soft-sky);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.nzs-slot-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 140px;
}
.nzs-content-block {
    max-width: 900px;
    margin: 0 auto;
}
.nzs-content-block h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--deep-ocean);
    margin: 40px 0 20px;
}
.nzs-content-block h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-ocean);
    margin: 32px 0 16px;
}
.nzs-content-block p {
    margin-bottom: 16px;
    text-align: justify;
}
.nzs-content-block ul, .nzs-content-block ol {
    margin: 16px 0 16px 24px;
}
.nzs-content-block li {
    margin-bottom: 8px;
}
.nzs-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.nzs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--frost-white);
    min-width: 400px;
}
.nzs-table th {
    background: var(--gradient-neon);
    color: var(--frost-white);
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    padding: 14px 16px;
    text-align: left;
}
.nzs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--azure-mist);
}
.nzs-table tr:hover td {
    background: var(--soft-sky);
}
.nzs-faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.nzs-faq-item {
    background: var(--frost-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.nzs-faq-q {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--deep-ocean);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.nzs-faq-q:hover {
    background: var(--soft-sky);
}
.nzs-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--neon-cyan);
    font-weight: 300;
}
.nzs-faq-item.nzs-open .nzs-faq-q::after {
    content: '−';
}
.nzs-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.nzs-faq-item.nzs-open .nzs-faq-a {
    padding: 0 24px 20px;
    max-height: 500px;
}
.nzs-chart-container {
    background: var(--frost-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
    box-shadow: var(--shadow-card);
}
.nzs-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nzs-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nzs-bar-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate-ink);
    min-width: 120px;
}
.nzs-bar-track {
    flex: 1;
    height: 28px;
    background: var(--soft-sky);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}
.nzs-bar-fill {
    height: 100%;
    background: var(--gradient-neon);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 0.6s ease;
}
.nzs-bar-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--frost-white);
}
.nzs-related {
    background: var(--soft-sky);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
}
.nzs-related h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 20px;
}
.nzs-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.nzs-related-link {
    display: block;
    background: var(--frost-white);
    color: var(--deep-ocean);
    font-weight: 400;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.nzs-related-link:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 4px 16px var(--shadow-soft);
}
.nzs-author-box {
    background: var(--frost-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-card);
    margin: 40px 0;
}
.nzs-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
}
.nzs-author-info h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 8px;
}
.nzs-author-info p {
    font-size: 0.95rem;
    color: var(--slate-ink);
    margin-bottom: 12px;
}
.nzs-author-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
}
.nzs-author-link:hover {
    text-decoration: underline;
}
.nzs-footer {
    background: var(--deep-ocean);
    color: var(--frost-white);
    padding: 60px 20px 30px;
}
.nzs-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.nzs-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.nzs-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.nzs-footer-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
}
.nzs-footer-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-cyan);
}
.nzs-footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.nzs-footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}
.nzs-footer-links {
    list-style: none;
}
.nzs-footer-links li {
    margin-bottom: 10px;
}
.nzs-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.nzs-footer-links a:hover {
    color: var(--neon-cyan);
}
.nzs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}
.nzs-footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.nzs-footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.nzs-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.nzs-scroll-top.nzs-visible {
    opacity: 1;
    visibility: visible;
}
.nzs-scroll-top:hover {
    transform: translateY(-4px);
}
.nzs-scroll-top svg {
    width: 24px;
    height: 24px;
    fill: var(--frost-white);
}
.nzs-about-form {
    background: var(--frost-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
    box-shadow: var(--shadow-card);
}
.nzs-form-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 24px;
}
.nzs-form-group {
    margin-bottom: 20px;
}
.nzs-form-label {
    display: block;
    font-weight: 400;
    color: var(--slate-ink);
    margin-bottom: 8px;
}
.nzs-form-input, .nzs-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--azure-mist);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--slate-ink);
    background: var(--vanilla-cream);
    transition: border-color 0.3s ease;
}
.nzs-form-input:focus, .nzs-form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
}
.nzs-form-textarea {
    min-height: 140px;
    resize: vertical;
}
.nzs-form-submit {
    background: var(--gradient-neon);
    color: var(--frost-white);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}
.nzs-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-soft);
}
.nzs-author-profile {
    text-align: center;
    padding: 40px 0;
}
.nzs-author-big-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--neon-cyan);
    margin-bottom: 24px;
    box-shadow: 0 8px 30px var(--shadow-soft);
}
.nzs-author-name {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-ocean);
    margin-bottom: 8px;
}
.nzs-author-title {
    font-size: 1.1rem;
    color: var(--neon-blue);
    margin-bottom: 24px;
}
.nzs-contact-info {
    background: var(--soft-sky);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
    display: inline-block;
}
.nzs-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--slate-ink);
}
.nzs-contact-item:last-child {
    margin-bottom: 0;
}
.nzs-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--neon-cyan);
}
.nzs-404-container {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nzs-404-code {
    font-family: 'Sora', sans-serif;
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 200;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.nzs-404-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-ocean);
    margin-bottom: 16px;
}
.nzs-404-text {
    color: var(--slate-ink);
    margin-bottom: 32px;
    max-width: 400px;
}
@media (max-width: 900px) {
    .nzs-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nzs-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .nzs-slot-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nzs-slot-logo {
        margin: 0 auto;
    }
    .nzs-slot-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nzs-author-box {
        flex-direction: column;
        text-align: center;
    }
}
.nzs-contact-info {
    background: var(--soft-sky);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}
.nzs-contact-item {
    padding: 8px 0;
    font-size: 1rem;
}
.nzs-contact-item strong {
    color: var(--deep-ocean);
    font-weight: 500;
}
.nzs-contact-form-section {
    background: var(--frost-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
    box-shadow: var(--shadow-card);
}
.nzs-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.nzs-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nzs-form-label {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-ocean);
}
.nzs-form-input,
.nzs-form-select,
.nzs-form-textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    padding: 14px 18px;
    border: 2px solid var(--azure-mist);
    border-radius: var(--radius-sm);
    background: var(--vanilla-cream);
    color: var(--slate-ink);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nzs-form-input:focus,
.nzs-form-select:focus,
.nzs-form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 4px var(--shadow-soft);
}
.nzs-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.nzs-btn-submit {
    align-self: flex-start;
    margin-top: 8px;
}
.nzs-author-avatar-large {
    border-radius: 50%;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 8px 32px var(--shadow-soft);
}
.nzs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}
.nzs-stat-card {
    background: var(--frost-white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}
.nzs-stat-card:hover {
    transform: translateY(-4px);
}
.nzs-stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nzs-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-ink);
    margin-top: 8px;
}
.nzs-error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nzs-error-content {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}
.nzs-error-code {
    font-family: 'Sora', sans-serif;
    font-size: 8rem;
    font-weight: 600;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.nzs-error-message {
    font-size: 1.1rem;
    color: var(--slate-ink);
    margin: 24px 0;
}
.nzs-error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.nzs-error-suggestions {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}
.nzs-hero-compact {
    padding: 60px 20px 40px;
}
.nzs-hero-compact .nzs-hero-content {
    gap: 40px;
}
@media (max-width: 900px) {
    .nzs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nzs-error-code {
        font-size: 6rem;
    }
}
@media (max-width: 600px) {
    .nzs-nav-toggle {
        display: block;
    }
    .nzs-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--frost-white);
        padding: 16px 0;
    }
    .nzs-nav.nzs-nav-open {
        display: flex;
    }
    .nzs-nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .nzs-hero {
        padding: 40px 16px;
    }
    .nzs-section {
        padding: 40px 16px;
    }
    .nzs-slot-card {
        padding: 20px 16px;
    }
    .nzs-slot-logo {
        width: 100px;
        height: 80px;
    }
    .nzs-bar-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .nzs-bar-label {
        min-width: auto;
    }
    .nzs-bar-track {
        width: 100%;
    }
    .nzs-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nzs-footer-brand {
        justify-content: center;
    }
    .nzs-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .nzs-contact-form-section {
        padding: 24px 16px;
    }
    .nzs-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .nzs-stat-card {
        padding: 16px;
    }
    .nzs-stat-number {
        font-size: 1.8rem;
    }
    .nzs-error-code {
        font-size: 4rem;
    }
    .nzs-hero-compact {
        padding: 40px 16px 30px;
    }
}
@media (max-width: 350px) {
    html {
        font-size: 14px;
    }
    .nzs-header-inner {
        padding: 10px 12px;
    }
    .nzs-logo-img {
        width: 60px;
        height: 60px;
    }
    .nzs-logo-text {
        font-size: 1.1rem;
    }
    .nzs-btn-primary, .nzs-btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .nzs-slot-card {
        padding: 16px 12px;
    }
    .nzs-content-block {
        padding: 0 4px;
    }
    .nzs-about-form {
        padding: 20px 16px;
    }
    .nzs-related {
        padding: 20px 16px;
    }
}
