/* Reset some basic browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background-color: #00bfff;
    color: #111133;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
    z-index: 1001;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Visible focus states */
:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: 3px;
}


/* Set the body background, text color, and font */
body {
    font-family: Arial, sans-serif;
    background-color: #0a0a23;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Container for centered content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
/* Header styles */
header {
    background-color: #111133;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 28px;
    color: #00bfff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00bfff;
}
/* Hero Section */
.hero {
    background-image:
        linear-gradient(rgba(10, 10, 35, 0.8), rgba(10, 10, 35, 0.8)),
        image-set(
            url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?fit=crop&w=1400&q=80&fm=avif') type('image/avif'),
            url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?fit=crop&w=1400&q=80&fm=webp') type('image/webp'),
            url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?fit=crop&w=1400&q=80') type('image/jpeg')
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #f5f5f5;
    padding: 100px 20px;
    text-align: center;
}


.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00bfff;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: #00bfff;
    color: #111133;
    padding: 12px;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-outline {
    background-color: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
}

.btn-outline:hover {
    background-color: #00bfff;
    color: #111133;
}
/* Services Section */
.services {
    background-color: #111133;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    color: #00bfff;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #1a1a3d;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    transition: transform 0.3s;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00bfff;
}

.card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00bfff;
}

.card p {
    font-size: 16px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.demo-example-page .demo-example-preview {
    margin: 24px auto 32px;
    max-width: 860px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1a1a3d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.demo-example-page .demo-example-preview img {
    display: block;
    width: 100%;
    height: auto;
    background-color: #111133;
}

.demo-example-page .demo-example-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    margin-top: 10px;
}

.demo-example-page .benefits-list {
    margin-top: 0;
}
/* Contact Section */
.contact {
    background-color: #111133;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    color: #00bfff;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
}

.contact a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}
/* Contact Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a3d;
    color: #f5f5f5;
    font-size: 16px;
}

form textarea {
    height: 150px;
    resize: vertical;
}

form button {
    width: 100%;
}


/* Footer */
footer {
    background-color: #0a0a23;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #999;
}
/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .logo {
        font-size: 22px;
        --logo-size: 56px;
        gap: 8px;
    }

    .logo-img {
        height: 56px;
    }

    nav ul {
        flex-direction: column;
        background-color: #0a0a23;
        padding: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }
}
/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#form-success {
    display: none;
    margin-top: 20px;
    color: #00ff99;
    font-weight: bold;
    animation: fadeIn 1s ease forwards;
}
.form-alert {
    margin: 0 auto 20px;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: bold;
    animation: fadeIn 1s ease forwards;
    text-align: left;
    max-width: 500px;
}

.form-alert-error {
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.6);
    background-color: rgba(255, 107, 107, 0.12);
}

.form-alert-success {
    color: #9ff3c4;
    border: 1px solid rgba(159, 243, 196, 0.55);
    background-color: rgba(46, 160, 96, 0.14);
}
.btn:active {
    transform: scale(0.97);
}
/* Contact Page Styles */
.contact-page {
    background-color: #0a0a23;
    padding: 60px 20px;
    text-align: center;
}

.contact-page h2 {
    font-size: 32px;
    color: #00bfff;
    margin-bottom: 10px;
}

.contact-page p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.quote-page .container {
    max-width: 1120px;
}

.quote-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
    text-align: left;
}

.quote-intro-copy {
    padding: 28px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(0, 191, 255, 0.14), rgba(0, 191, 255, 0.04)),
        rgba(17, 17, 51, 0.78);
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.quote-intro-card {
    padding: 24px;
    border-radius: 18px;
    background-color: rgba(17, 17, 51, 0.72);
    border: 1px solid #1a1a3d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    text-align: left;
}

.quote-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #87dcff;
    font-weight: bold;
    margin-bottom: 12px;
}

.quote-lead {
    max-width: 62ch;
}

.quote-intro-card h2 {
    font-size: 22px;
    color: #00bfff;
    margin-bottom: 12px;
}

.quote-steps {
    padding-left: 18px;
    margin: 0;
}

.quote-steps li + li {
    margin-top: 10px;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    text-align: left;
    font-weight: bold;
    color: #f5f5f5;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a3d;
    color: #f5f5f5;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #00bfff;
    color: #111133;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0099cc;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.optional {
    font-size: 12px;
    color: #9fb5ff;
    font-weight: normal;
    margin-left: 6px;
}

.helper-text {
    text-align: left;
    font-size: 14px;
    color: #c3c7f3;
    margin-top: 4px;
}

.form-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin: 12px 0 22px;
    padding: 12px;
    border-radius: 14px;
    background-color: rgba(17, 17, 51, 0.72);
    border: 1px solid #1a1a3d;
    position: sticky;
    top: 10px;
    z-index: 8;
    text-align: left;
}

.form-progress .progress-label {
    font-size: 14px;
    color: #c3c7f3;
    margin-right: 8px;
    font-weight: bold;
}

.form-progress .progress-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #1a1a3d;
    background-color: rgba(17, 17, 51, 0.6);
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.form-progress .progress-step.is-active {
    border-color: #00bfff;
    color: #00bfff;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.25);
}

.accordion {
    border: 1px solid #1a1a3d;
    border-radius: 10px;
    padding: 12px;
    background-color: rgba(17, 17, 51, 0.35);
}

.accordion summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: "+";
    font-size: 20px;
    color: #00bfff;
    margin-left: 12px;
}

.accordion[open] summary::after {
    content: "-";
}


.accordion summary .form-section-title {
    font-size: 22px;
    color: #00bfff;
    font-weight: bold;
}
.section-anchor {
    height: 1px;
}

.quote-form {
    max-width: 820px;
    gap: 18px;
    padding: 28px;
    border-radius: 22px;
    background-color: rgba(17, 17, 51, 0.64);
    border: 1px solid #1a1a3d;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.community-form {
    max-width: 820px;
    gap: 18px;
    padding: 28px;
    border-radius: 22px;
    background-color: rgba(17, 17, 51, 0.64);
    border: 1px solid #1a1a3d;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.community-panel {
    text-align: left;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #1a1a3d;
    background-color: rgba(9, 9, 33, 0.45);
}

.community-info-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 18px;
}

.community-panel h2 {
    margin-bottom: 10px;
}

.community-panel-compact p:last-child,
.community-panel-compact ul:last-child {
    margin-bottom: 0;
}

.community-key-points {
    background:
        linear-gradient(135deg, rgba(0, 191, 255, 0.12), rgba(0, 191, 255, 0.03)),
        rgba(9, 9, 33, 0.52);
    border-color: rgba(0, 191, 255, 0.18);
}

.community-checklist,
.community-mini-list {
    margin: 0;
    padding-left: 18px;
}

.community-checklist li + li,
.community-mini-list li + li {
    margin-top: 8px;
}

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

.community-form .pricing-note,
.community-form .helper-text {
    text-align: left;
}

.community-form fieldset {
    border: 1px solid #1a1a3d;
    border-radius: 16px;
    padding: 16px;
    margin: 0 0 14px;
    background-color: rgba(9, 9, 33, 0.4);
}

.community-form legend.group-label {
    font-weight: bold;
    color: #f5f5f5;
    margin: 0 0 6px;
    padding: 0 6px;
}

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

.community-form .compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.community-form .option-grid > label {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    column-gap: 10px;
    text-align: center;
    border: 1px solid #1a1a3d;
    border-radius: 10px;
    padding: 12px 14px;
    background-color: rgba(17, 17, 51, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.community-form .option-grid > label:hover,
.community-form .option-grid > label:focus-within {
    border-color: #00bfff;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.25);
    transform: translateY(-1px);
}

.community-form .option-grid input[type="checkbox"],
.community-form .option-grid input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #6f7ab8;
    border-radius: 5px;
    background-color: rgba(10, 10, 35, 0.95);
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.community-form .option-grid input[type="checkbox"]:checked,
.community-form .option-grid input[type="radio"]:checked {
    border-color: #00bfff;
    background-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.18);
}

.community-form .option-grid input[type="checkbox"]::after,
.community-form .option-grid input[type="radio"]::after {
    content: "";
    position: absolute;
    inset: 3px;
    background-color: #111133;
    opacity: 0;
    clip-path: polygon(14% 52%, 0 66%, 39% 100%, 100% 19%, 84% 4%, 36% 65%);
}

.community-form .option-grid input[type="checkbox"]:checked::after,
.community-form .option-grid input[type="radio"]:checked::after {
    opacity: 1;
}

#website-url-field {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #1a1a3d;
    background-color: rgba(9, 9, 33, 0.38);
}

.quote-form h3 {
    font-size: 22px;
    color: #00bfff;
    text-align: left;
    margin: 10px 0 4px;
    padding: 18px 18px 8px;
    border-top: none;
    border-left: 4px solid #00bfff;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.12), rgba(0, 191, 255, 0.03));
}

.quote-form h3:first-of-type {
    margin-top: 0;
    padding-top: 18px;
}

.quote-form h4 {
    text-align: left;
    margin: 8px 0 6px;
    color: #00bfff;
}

.quote-form .pricing-note {
    text-align: left;
    margin: 6px 0 0;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
    background-color: #1f1f46;
    outline: none;
}

.quote-form fieldset {
    border: 1px solid #1a1a3d;
    border-radius: 16px;
    padding: 16px;
    margin: 0 0 14px;
    background-color: rgba(9, 9, 33, 0.4);
}

.quote-form legend.group-label {
    font-weight: bold;
    color: #f5f5f5;
    margin: 0 0 6px;
    padding: 0 6px;
}

.quote-form fieldset .option-group {
    margin-top: 6px;
}
.quote-form select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a3d;
    color: #f5f5f5;
    font-size: 16px;
}

.quote-form .option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    justify-content: flex-start;
}

.quote-form .option-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-form .option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    text-align: left;
    grid-auto-rows: 1fr;
}

#business-type-other-field,
#existing-website-details,
#page-count-other-field,
#pages-other-field,
#features-other-field,
#payments-other-field,
#domain-help-partial-field,
#email-addresses-other-field,
#marketing-email-field,
#marketing-other-field {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #1a1a3d;
    background-color: rgba(9, 9, 33, 0.38);
}

.quote-form .option-grid > label,
.quote-form .option-grid > .feature-item {
    border: 1px solid #1a1a3d;
    border-radius: 6px;
    padding: 10px 12px;
    background-color: rgba(17, 17, 51, 0.6);
    min-height: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quote-form .option-grid > label {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    column-gap: 10px;
    line-height: 1.35;
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

.quote-form .option-grid > label input,
.quote-form .option-grid > .feature-item input {
    margin-top: 0;
    justify-self: start;
    align-self: center;
}

.quote-form .option-grid input[type="checkbox"],
.quote-form .option-grid input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #6f7ab8;
    border-radius: 5px;
    background-color: rgba(10, 10, 35, 0.95);
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form .option-grid input[type="checkbox"]:checked,
.quote-form .option-grid input[type="radio"]:checked {
    border-color: #00bfff;
    background-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.18);
}

.quote-form .option-grid input[type="checkbox"]::after,
.quote-form .option-grid input[type="radio"]::after {
    content: "";
    position: absolute;
    inset: 3px;
    background-color: #111133;
    opacity: 0;
    clip-path: polygon(14% 52%, 0 66%, 39% 100%, 100% 19%, 84% 4%, 36% 65%);
}

.quote-form .option-grid input[type="checkbox"]:checked::after,
.quote-form .option-grid input[type="radio"]:checked::after {
    opacity: 1;
}

.quote-form .option-grid > .feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-form .option-grid > label:hover,
.quote-form .option-grid > .feature-item:hover,
.quote-form .option-grid > label:focus-within,
.quote-form .option-grid > .feature-item:focus-within {
    border-color: #00bfff;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.25);
    transform: translateY(-1px);
}

.quote-form .feature-label {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.quote-form .feature-followup {
    padding-top: 8px;
    border-top: 1px solid #1a1a3d;
    background-color: transparent;
}

.quote-form .feature-followup .group-label {
    margin-bottom: 6px;
}

.conditional-block {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #1a1a3d;
    border-radius: 8px;
    background-color: rgba(17, 17, 51, 0.4);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    margin-top: 8px;
    text-align: left;
}

.form-actions .btn {
    width: 100%;
}

.form-actions .btn.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.summary-section {
    margin: 20px 0;
    padding: 18px;
    border-radius: 10px;
    background-color: #1a1a3d;
}

.summary-section h3 {
    color: #00bfff;
    margin-bottom: 10px;
}

.summary-section p {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .quote-intro {
        grid-template-columns: 1fr;
    }

    .quote-form .option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .quote-form {
        padding: 18px;
    }

    .community-form {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .form-progress {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .form-actions {
        position: sticky;
        bottom: 12px;
        padding: 12px;
        background-color: rgba(10, 10, 35, 0.95);
        border: 1px solid #1a1a3d;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        z-index: 5;
    }

    .form-actions .pricing-note {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .quote-form .option-grid {
        grid-template-columns: 1fr;
    }

    .community-form .option-grid {
        grid-template-columns: 1fr;
    }

    .community-info-grid {
        grid-template-columns: 1fr;
    }

    .quote-intro-copy,
    .quote-intro-card {
        padding: 20px;
    }
}
/* Thank You Page Styles */
.thank-you {
    background-color: #0a0a23;
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
}

.thank-you h2 {
    font-size: 36px;
    color: #00bfff;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 20px;
    color: #f5f5f5;
    margin-bottom: 30px;
}

.thank-you .btn {
    background-color: #00bfff;
    color: #111133;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thank-you .btn:hover {
    background-color: #0099cc;
}
.thank-you {
    animation: fadeIn 1s ease forwards;
}
/* Services, About, Community Section Styles */
.services, .about, .community {
    background-color: #0a0a23;
    padding: 80px 20px;
    min-height: 80vh;
    text-align: center;
}

.services h2, .about h2, .community h2 {
    font-size: 36px;
    color: #00bfff;
    margin-bottom: 20px;
}

.services p, .about p, .community p {
    font-size: 18px;
    color: #f5f5f5;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.service-list li {
    background-color: #1a1a3d;
    margin: 10px auto;
    padding: 15px 20px;
    max-width: 600px;
    border-radius: 8px;
    font-size: 18px;
    color: #f5f5f5;
    transition: background-color 0.3s;
}

.service-list li:hover {
    background-color: #00bfff;
    color: #111133;
}

.community .btn {
    background-color: #00bfff;
    color: #111133;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.community .btn:hover {
    background-color: #0099cc;
}
.service-list .icon {
    margin-right: 10px;
    font-size: 22px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    max-width: 800px;
    text-align: left;
}

.benefits-list li {
    background-color: #1a1a3d;
    margin: 10px 0;
    padding: 12px 16px;
    border-radius: 8px;
}

.map-embed {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1a1a3d;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.15);
}

.map-embed iframe {
    display: block;
    border: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #111133;
    color: #f5f5f5;
    border: 1px solid #1a1a3d;
    border-radius: 12px;
    padding: 16px 18px;
    z-index: 1002;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.cookie-content {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    max-width: 720px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-link {
    color: #00bfff;
    font-weight: bold;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-settings-link {
    background: none;
    border: none;
    color: #00bfff;
    font: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.cookie-settings-link:hover {
    color: #9be7ff;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-content {
        align-items: flex-start;
    }
}
/* Fade-In on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #00bfff;
    color: #111133;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0099cc;
}

/* Pricing Page */
.pricing {
    background-color: #0a0a23;
    padding: 80px 20px;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    color: #00bfff;
    margin-bottom: 20px;
}

.pricing .section-title {
    font-size: 30px;
    color: #00bfff;
    margin: 40px 0 20px;
}

.pricing p {
    font-size: 18px;
    color: #f5f5f5;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing .price {
    font-size: 24px;
    color: #00bfff;
    font-weight: bold;
    margin: 10px 0 15px;
}

.pricing .service-cards {
    margin-top: 20px;
}

.pricing .card ul {
    text-align: left;
    padding-left: 20px;
    margin: 0 0 10px;
}

.pricing .card li {
    margin-bottom: 8px;
}

.pricing .cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 10px;
}

.pricing-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
    padding-left: 20px;
}

.pricing-note {
    font-size: 14px;
    color: #b8b8b8;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .pricing .card.mobile-order-1 { order: 1; }
    .pricing .card.mobile-order-2 { order: 2; }
    .pricing .card.mobile-order-3 { order: 3; }
}
/* End Pricing Page */

/* Shared header and content updates */
.main-nav {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    --logo-size: 88px;
    font-size: 28px;
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.logo-img {
    height: var(--logo-size);
    width: auto;
    display: block;
}

.logo-text {
    display: inline-block;
    font-size: calc(var(--logo-size) * 0.45);
    line-height: 1;
    margin-top: 0;
    position: relative;
    top: -6px;
    white-space: nowrap;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0;
}

.main-nav a {
    color: #f5f5f5;
    font-weight: bold;
    text-decoration: none;
}

.main-nav a:hover {
    color: #00bfff;
}

.main-nav a.active {
    color: #00bfff;
    border-bottom: 2px solid #00bfff;
    padding-bottom: 2px;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(0, 191, 255, 0.4);
    background-color: rgba(17, 17, 51, 0.9);
    color: #f5f5f5;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.nav-toggle:hover {
    border-color: #00bfff;
    color: #00bfff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00bfff;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
    text-align: left;
}

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

.hero-kicker,
.home-section-label,
.hero-card-label,
.home-quick-kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #87dcff;
    font-weight: bold;
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    max-width: 640px;
}

.hero-points li {
    padding: 12px 14px;
    border-radius: 12px;
    background-color: rgba(17, 17, 51, 0.68);
    border: 1px solid rgba(0, 191, 255, 0.15);
}

.hero-card {
    padding: 24px;
    border-radius: 18px;
    background-color: rgba(17, 17, 51, 0.78);
    border: 1px solid rgba(0, 191, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    text-align: left;
}

.hero-card h2 {
    margin: 10px 0 14px;
    font-size: 28px;
    color: #f5f5f5;
}

.hero-card-steps {
    padding-left: 20px;
    margin: 0;
}

.hero-card-steps li + li {
    margin-top: 10px;
}

.hero-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.services h1,
.about h1,
.community h1,
.pricing h1,
.contact-page h1,
.thank-you h1 {
    font-size: 36px;
    color: #00bfff;
    margin-bottom: 20px;
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 10px;
}

.hero .cta-row,
.home-final-shell .cta-row,
.hero-card-actions {
    justify-content: flex-start;
}

.home-quick-links,
.home-trust,
.home-final-cta {
    background-color: #0a0a23;
    padding: 70px 20px;
}

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

.home-section-heading h2 {
    color: #00bfff;
    font-size: 34px;
    margin-top: 10px;
}

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

.home-quick-card,
.home-trust-card,
.home-final-shell {
    padding: 26px;
    border-radius: 20px;
    background-color: rgba(17, 17, 51, 0.64);
    border: 1px solid #1a1a3d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.home-quick-card {
    text-align: left;
}

.home-quick-card h3,
.home-trust-card h3 {
    color: #00bfff;
    margin: 10px 0 12px;
    font-size: 24px;
}

.home-quick-card .btn {
    margin-top: 16px;
}

.home-about .benefits-list {
    margin-top: 28px;
}

.home-trust-card p,
.home-quick-card p,
.hero-card p,
.home-final-shell p {
    margin-bottom: 0;
}

.home-final-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-final-shell h2 {
    color: #00bfff;
    font-size: 32px;
    margin-top: 10px;
}

.service-steps {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    padding-left: 20px;
}

.service-steps li {
    margin-bottom: 10px;
}

.faq-list {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}

.faq-list dt {
    font-weight: bold;
    color: #00bfff;
    margin-top: 16px;
}

.faq-list dd {
    margin: 6px 0 0;
    color: #f5f5f5;
}

.card h3 a {
    color: inherit;
    text-decoration: none;
}

.card h3 a:hover {
    text-decoration: underline;
}

.demo-link {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.demo-link:hover {
    text-decoration: underline;
}

footer a {
    color: #00bfff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.nfc-card-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(0, 191, 255, 0.14), transparent 35%),
        linear-gradient(180deg, #111133 0%, #0a0a23 55%, #070718 100%);
}

.nfc-card-page {
    padding: 24px 0 40px;
}

.nfc-card-container {
    width: min(100%, 560px);
    padding: 0 16px;
}

.nfc-card-shell {
    display: grid;
    gap: 16px;
}

.nfc-card-brand,
.nfc-card-panel {
    padding: 22px;
    border-radius: 24px;
    background-color: rgba(17, 17, 51, 0.78);
    border: 1px solid rgba(0, 191, 255, 0.16);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.nfc-card-brand {
    padding-top: 26px;
}

.nfc-card-logo-wrap {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.18), rgba(0, 191, 255, 0.05));
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.nfc-card-logo {
    display: block;
    width: 72px;
    height: 72px;
}

.nfc-card-kicker,
.nfc-card-section-label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #87dcff;
    font-weight: bold;
}

.nfc-card-brand h1,
.nfc-card-panel h2 {
    color: #00bfff;
}

.nfc-card-brand h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.12;
    margin: 10px 0 14px;
}

.nfc-card-lead,
.nfc-card-panel p {
    font-size: 1rem;
    color: #edf0ff;
}

.nfc-card-section-heading h2,
.nfc-card-panel h2 {
    margin: 8px 0 0;
    font-size: 1.55rem;
}

.nfc-link-grid,
.nfc-social-grid,
.nfc-demo-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.nfc-link-card,
.nfc-demo-card,
.nfc-social-link {
    text-decoration: none;
    color: #f5f5f5;
    border-radius: 18px;
    border: 1px solid #1a1a3d;
    background-color: rgba(9, 9, 33, 0.62);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nfc-link-card {
    min-height: 76px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.nfc-link-card.is-primary {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 191, 255, 0.06));
    border-color: rgba(0, 191, 255, 0.35);
}

.nfc-link-card-email {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 10px;
}

.nfc-link-card-email .nfc-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 0.95rem;
}

.nfc-link-card:hover,
.nfc-link-card:focus-visible,
.nfc-demo-card:hover,
.nfc-demo-card:focus-visible,
.nfc-social-link:hover,
.nfc-social-link:focus-visible {
    transform: translateY(-1px);
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.16);
}

.nfc-link-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background-color: rgba(0, 191, 255, 0.14);
    color: #87dcff;
    font-size: 1.2rem;
    font-weight: bold;
}

.nfc-link-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.nfc-link-copy strong,
.nfc-demo-card strong {
    font-size: 1rem;
}

.nfc-link-copy span,
.nfc-demo-card span {
    color: #d8dcff;
    font-size: 0.95rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.nfc-email-line {
    font-size: 0.66rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    letter-spacing: -0.02em;
}

.nfc-demo-card {
    display: grid;
    gap: 6px;
    padding: 16px;
}

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

.nfc-social-link {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 14px 16px;
    font-weight: bold;
}

.nfc-social-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

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

.nfc-card-footer {
    padding: 0 16px 28px;
    text-align: center;
    color: #c3c7f3;
}

@media (min-width: 700px) {
    .nfc-card-page {
        padding: 40px 0 56px;
    }

    .nfc-card-container {
        width: min(100%, 960px);
    }

    .nfc-card-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
    }

    .nfc-card-brand,
    .nfc-card-panel:first-of-type {
        grid-column: 1 / -1;
    }

    .nfc-social-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-shell,
    .home-final-shell,
    .home-quick-grid,
    .home-trust-grid,
    .demo-example-page .demo-example-grid {
        grid-template-columns: 1fr;
    }

    .home-final-shell {
        display: grid;
    }

    .main-nav {
        align-items: center;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(320px, calc(100vw - 32px));
        flex-direction: column;
        gap: 0;
        padding: 12px;
        background-color: rgba(10, 10, 35, 0.98);
        border: 1px solid #1a1a3d;
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
        z-index: 20;
    }

    .main-nav.is-open ul {
        display: flex;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul a {
        display: block;
        width: 100%;
        padding: 12px 10px;
        border-radius: 10px;
    }

    .main-nav ul a.active {
        border-bottom: none;
        background-color: rgba(0, 191, 255, 0.12);
        padding-bottom: 12px;
    }

    .main-nav ul a:hover {
        background-color: rgba(0, 191, 255, 0.08);
    }
}

@media (max-width: 600px) {
    .hero-card,
    .home-quick-card,
    .home-trust-card,
    .home-final-shell {
        padding: 20px;
    }

    .hero-card-actions,
    .hero .cta-row,
    .home-final-shell .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-card-actions .btn,
    .hero .cta-row .btn,
    .home-final-shell .cta-row .btn {
        width: 100%;
        text-align: center;
    }

    .nfc-card-brand,
    .nfc-card-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .nfc-social-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-hero,
.blog-post-hero,
.blog-post-listing,
.blog-article-shell,
.blog-related-section,
.blog-cta-section,
.blog-categories-section,
.blog-final-cta {
    background-color: #0a0a23;
}

.blog-hero-card p,
.blog-post-card p,
.blog-sidebar-card p {
    max-width: none;
}

.blog-category-grid,
.blog-related-grid {
    align-items: stretch;
}

.blog-category-card,
.blog-related-card,
.blog-post-card {
    height: 100%;
}

.blog-category-card.is-current {
    border-color: rgba(0, 191, 255, 0.42);
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.15), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.blog-post-grid {
    align-items: stretch;
}

.blog-post-card {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blog-post-card .demo-link {
    margin-top: auto;
    padding-top: 18px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: #c3c7f3;
}

.blog-post-category {
    color: #87dcff;
    font-weight: bold;
}

.blog-post-separator {
    color: #6f7ab8;
}

.blog-post-hero-shell {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.85fr);
}

.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    font-size: 14px;
    color: #c3c7f3;
}

.blog-breadcrumbs a {
    color: #87dcff;
    text-decoration: none;
}

.blog-breadcrumbs a:hover {
    text-decoration: underline;
}

.blog-post-hero-copy {
    max-width: 760px;
}

.blog-post-summary {
    max-width: 38ch;
    font-size: 22px;
    line-height: 1.65;
    color: #e9f7ff;
}

.blog-post-hero-meta {
    margin: 0;
    gap: 10px;
}

.blog-post-meta-pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 191, 255, 0.18);
    background-color: rgba(17, 17, 51, 0.72);
    color: #87dcff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: bold;
}

.blog-tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
}

.blog-tag-list li {
    padding: 8px 12px;
    border-radius: 999px;
    background-color: rgba(17, 17, 51, 0.72);
    border: 1px solid rgba(0, 191, 255, 0.16);
    font-size: 14px;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.blog-article,
.blog-sidebar-card {
    padding: 30px;
    border-radius: 20px;
    background-color: rgba(17, 17, 51, 0.64);
    border: 1px solid #1a1a3d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.blog-article {
    text-align: left;
}

.blog-article-inner {
    max-width: 700px;
}

.blog-article-inner > :first-child {
    margin-top: 0;
}

.blog-article-header p:last-child {
    margin-bottom: 0;
}

.blog-article-header {
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.12);
}

.blog-article h2,
.blog-sidebar-card h2 {
    color: #00bfff;
    font-size: 30px;
    margin: 34px 0 14px;
}

.blog-article h2:first-of-type {
    margin-top: 0;
}

.blog-article h3 {
    color: #00bfff;
    font-size: 24px;
    margin: 26px 0 12px;
}

.blog-article p + h2,
.blog-article ul + h2,
.blog-article ol + h2,
.blog-article blockquote + h2,
.blog-article pre + h2 {
    margin-top: 42px;
}

.blog-article p,
.blog-article li,
.blog-sidebar-card li,
.blog-sidebar-card p {
    font-size: 18px;
    color: #f5f5f5;
}

.blog-article p,
.blog-article ul,
.blog-article ol,
.blog-article blockquote,
.blog-article pre {
    margin-bottom: 20px;
}

.blog-article p {
    line-height: 1.82;
    color: #edf0ff;
}

.blog-article ul,
.blog-article ol {
    padding: 2px 0 2px 24px;
}

.blog-article li + li {
    margin-top: 12px;
}

.blog-article a,
.blog-sidebar-links a {
    color: #00bfff;
    font-weight: bold;
    text-decoration: none;
}

.blog-article a:hover,
.blog-sidebar-links a:hover {
    text-decoration: underline;
}

.blog-article blockquote {
    margin-left: 0;
    padding: 20px 22px;
    border-left: 4px solid #00bfff;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.14), rgba(0, 191, 255, 0.04));
    box-shadow: inset 0 0 0 1px rgba(0, 191, 255, 0.08);
}

.blog-article blockquote p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.7;
    color: #f5faff;
}

.blog-article pre {
    overflow-x: auto;
    padding: 18px 20px;
    border-radius: 14px;
    background-color: #08081c;
    border: 1px solid #1a1a3d;
    box-shadow: inset 0 0 0 1px rgba(135, 220, 255, 0.04);
}

.blog-article code {
    font-family: "Courier New", monospace;
    font-size: 15px;
    color: #87dcff;
}

.blog-article p code,
.blog-article li code {
    padding: 2px 6px;
    border-radius: 6px;
    background-color: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.12);
}

.workflow-diagram {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.workflow-diagram div {
    padding: 16px;
    border-radius: 14px;
    background-color: rgba(17, 17, 51, 0.78);
    border: 1px solid rgba(0, 191, 255, 0.18);
    text-align: center;
    font-weight: bold;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.blog-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.blog-sidebar-links li + li {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #1a1a3d;
}

.blog-sidebar-links p {
    margin: 8px 0 0;
    font-size: 16px;
    color: #c3c7f3;
}

.blog-related-meta {
    margin-bottom: 12px;
}

.admin-page {
    min-height: 70vh;
}

.admin-shell {
    max-width: 1100px;
}

.admin-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background-color: rgba(17, 17, 51, 0.72);
    border: 1px solid #1a1a3d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    text-align: left;
}

.admin-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-inline-form {
    margin: 0;
    max-width: none;
}

.admin-form {
    max-width: none;
    text-align: left;
}

.admin-form select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a3d;
    color: #f5f5f5;
    font-size: 16px;
}

.admin-post-form {
    padding: 28px;
    border-radius: 20px;
    background-color: rgba(17, 17, 51, 0.72);
    border: 1px solid #1a1a3d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.admin-post-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.admin-post-card {
    width: 100%;
    text-align: left;
}

.admin-post-actions {
    align-items: center;
}

.admin-delete-btn {
    border-color: rgba(255, 99, 132, 0.45);
    color: #ffd7e1;
}

.admin-delete-btn:hover {
    background-color: rgba(255, 99, 132, 0.12);
    border-color: rgba(255, 99, 132, 0.6);
}

.admin-post-card h2 {
    font-size: 24px;
    color: #00bfff;
    margin-bottom: 12px;
}

.admin-post-card h2 a {
    color: inherit;
    text-decoration: none;
}

.admin-post-card h2 a:hover {
    text-decoration: underline;
}

.admin-post-slug {
    font-size: 14px;
    color: #c3c7f3;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .blog-post-hero-shell,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .workflow-diagram {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-post-card {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .blog-article,
    .blog-sidebar-card {
        padding: 20px;
    }

    .admin-header {
        flex-direction: column;
    }

    .admin-post-form,
    .admin-card {
        padding: 20px;
    }

    .blog-post-summary {
        font-size: 19px;
    }

    .blog-article p,
    .blog-article li {
        font-size: 17px;
    }

    .blog-article blockquote p {
        font-size: 18px;
    }

    .workflow-diagram {
        grid-template-columns: 1fr;
    }

    .blog-tag-list {
        gap: 8px;
    }
}
