/* Global Styles */
:root {
    --ink: #172126;
    --muted: #5b6870;
    --soft: #eef3f1;
    --paper: #ffffff;
    --panel: #f7faf9;
    --line: #dbe5e1;
    --primary-color: #0c5f68;
    --primary-dark: #083f46;
    --accent-color: #c67a2e;
    --accent-soft: #fff0df;
    --success: #2d7d55;
    --warning: #b7791f;
    --danger: #b83232;
    --dark-color: #172126;
    --light-color: #f7faf9;
    --shadow-sm: 0 10px 30px rgba(23, 33, 38, 0.08);
    --shadow-md: 0 18px 48px rgba(23, 33, 38, 0.12);
    --radius: 8px;
    --max-copy: 680px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: 78px;
    text-rendering: optimizeLegibility;
}

main {
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
}

p {
    color: var(--muted);
}

.lead {
    color: var(--muted);
    font-size: 1.13rem;
    line-height: 1.7;
}

.section-kicker {
    color: var(--primary-color);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 1rem;
}

.section-copy {
    max-width: var(--max-copy);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--panel) !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(219, 229, 225, 0.9);
    box-shadow: 0 8px 24px rgba(23, 33, 38, 0.06);
    backdrop-filter: blur(16px);
}

.site-nav {
    padding-bottom: 0.55rem;
    padding-top: 0.55rem;
}

.navbar .container {
    min-height: 62px;
}

.navbar-brand {
    color: var(--ink) !important;
    font-weight: 800;
    gap: 0.55rem;
    max-width: min(420px, 58vw);
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--ink));
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(23, 33, 38, 0.14);
    color: white;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.72rem;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    letter-spacing: 0.05em;
    width: 44px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar .nav-link {
    color: var(--muted) !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.55rem 0.85rem !important;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary-color) !important;
}

.navbar .nav-link.active {
    color: var(--ink) !important;
}

.navbar .nav-link.active::after {
    background: var(--accent-color);
    border-radius: 999px;
    bottom: 0.24rem;
    content: "";
    height: 3px;
    left: 0.85rem;
    position: absolute;
    right: 0.85rem;
}

.nav-cta {
    margin-left: 0.55rem;
}

.nav-cta .btn {
    box-shadow: none;
    min-height: 40px;
    padding: 0.58rem 1rem;
}

.nav-cta .btn.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.navbar-toggler {
    border-color: var(--line) !important;
    border-radius: 8px;
    min-height: 44px;
    padding: 0.45rem 0.65rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(12, 95, 104, 0.18);
}

.navbar-toggler-icon {
    background-image: none;
    display: inline-flex;
    height: 22px;
    position: relative;
    width: 26px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    border-top: 3px solid var(--muted);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    left: 0;
    position: absolute;
    width: 26px;
}

.navbar-toggler-icon::before {
    top: 7px;
}

.navbar-toggler-icon::after {
    top: 17px;
}

/* Hero */
.hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.92), rgba(23, 33, 38, 0.68)),
        url("../images/home_image.bedd90063f51.webp");
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    min-height: 78vh;
    overflow: hidden;
    padding: 92px 0 76px;
    position: relative;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    inset: 0;
    opacity: 0.24;
    pointer-events: none;
    position: absolute;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    max-width: 980px;
    overflow-wrap: break-word;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 760px;
}

.hero-eyebrow {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 800;
    gap: 0.55rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    background: var(--accent-color);
    content: "";
    display: inline-block;
    height: 2px;
    width: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-proof {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.3rem;
    padding-top: 1.35rem;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-proof i {
    color: var(--accent-color);
    margin-right: 0.45rem;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.93), rgba(23, 33, 38, 0.72)),
        url("../images/cloud-security.ee8128b99b73.jpg");
    background-position: center;
    background-size: cover;
    color: white;
    padding: 96px 0 72px;
    position: relative;
}

.page-hero h1 {
    color: white;
    font-size: clamp(2.35rem, 4.6vw, 4.3rem);
    max-width: 920px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.84);
    max-width: 780px;
}

.contact-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.92), rgba(23, 33, 38, 0.7)),
        url("../images/security-assessment.485d95383c84.jpg");
    background-position: center;
    background-size: cover;
}

.checkup-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.93), rgba(23, 33, 38, 0.66)),
        url("../images/cyber-defense.b4ddc771b761.jpg");
    background-position: center;
    background-size: cover;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.93), rgba(23, 33, 38, 0.68)),
        url("../images/cyber-defense.b4ddc771b761.jpg");
    background-position: center;
    background-size: cover;
}

.hero-summary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    color: white;
    padding: 1.35rem;
}

.hero-summary p {
    color: rgba(255, 255, 255, 0.86);
}

.text-glow {
    text-shadow: none;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0;
    min-height: 44px;
    padding: 0.72rem 1.18rem;
}

.btn-lg {
    min-height: 50px;
    padding: 0.85rem 1.35rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(12, 95, 104, 0.22);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(12, 95, 104, 0.28);
    color: white;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-light {
    color: var(--ink);
}

/* Sections */
.section-pad {
    padding: 88px 0;
}

.section-pad-sm {
    padding: 58px 0;
}

.trust-band {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.trust-items {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-item {
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    display: flex;
    font-size: 0.92rem;
    font-weight: 800;
    justify-content: center;
    min-height: 58px;
    padding: 0.85rem;
    text-align: center;
}

/* Cards */
.card,
.service-card,
.service-highlight,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.card {
    background: var(--paper);
}

.service-card {
    background: var(--paper);
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(12, 95, 104, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    padding: 1.5rem;
}

.feature-card img,
.service-card-img,
.blog-card-img {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.feature-card h3,
.service-card h3,
.service-card h4 {
    font-size: 1.18rem;
    margin-top: 1rem;
}

.outcome-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: 1.5rem;
}

.outcome-icon {
    align-items: center;
    background: var(--soft);
    border-radius: 8px;
    color: var(--primary-color);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 46px;
}

.process-step {
    border-left: 3px solid var(--line);
    padding-left: 1.3rem;
}

.process-step + .process-step {
    margin-top: 1.75rem;
}

.process-step span {
    color: var(--accent-color);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.process-step h3 {
    font-size: 1.16rem;
    margin-bottom: 0.45rem;
}

.service-detail h3 {
    font-size: 1.22rem;
    margin-bottom: 0.8rem;
}

.deliverable-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.deliverable-list li {
    color: var(--ink);
    font-size: 0.94rem;
    margin-bottom: 0.62rem;
    padding-left: 1.25rem;
    position: relative;
}

.deliverable-list li::before {
    background: var(--accent-color);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 0.65em;
    width: 6px;
}

.inline-link {
    color: var(--primary-color);
    display: inline-flex;
    font-weight: 800;
    margin-top: 0.8rem;
    text-decoration: none;
}

.inline-link:hover,
.inline-link:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

.service-timeline {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.4rem, 3vw, 2rem);
}

.service-matrix {
    align-items: start;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.deliverable-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deliverable-grid div {
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    display: flex;
    font-weight: 800;
    gap: 0.65rem;
    min-height: 70px;
    padding: 1rem;
}

.checkup-overview {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.checkup-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    padding: clamp(1.35rem, 3vw, 2rem);
}

.checkup-panel h3 {
    font-size: 1.28rem;
    margin-bottom: 0.7rem;
}

.checkup-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.checkup-list li {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-weight: 750;
    padding: 0.78rem 0 0.78rem 1.55rem;
    position: relative;
}

.checkup-list li::before {
    color: var(--success);
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0.82rem;
}

.checkup-domain-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.checkup-domain-grid span {
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    display: flex;
    font-size: 0.9rem;
    font-weight: 800;
    min-height: 58px;
    padding: 0.85rem;
}

.checkup-report {
    background: var(--soft);
}

.checkup-cta {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(12, 95, 104, 0.97), rgba(23, 33, 38, 0.97)),
        url("../images/security-assessment.485d95383c84.jpg");
    background-position: center;
    background-size: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    color: white;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: clamp(1.6rem, 4vw, 3rem);
}

.checkup-cta h2,
.checkup-cta p {
    color: white;
}

.compact-hero {
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.checkup-form,
.checkup-question-group {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.3rem, 3vw, 2rem);
}

.checkup-consent {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.checkup-consent .form-check {
    align-items: flex-start;
    display: flex;
    gap: 0.7rem;
    margin: 0;
    padding-left: 0;
}

.checkup-consent .form-check-input {
    flex: 0 0 auto;
    margin: 0.2rem 0 0;
}

.checkup-consent .form-check-label {
    color: var(--ink);
    font-weight: 750;
    line-height: 1.5;
}

.checkup-consent p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
    margin: 0.7rem 0 0;
}

.checkup-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.checkup-progress span {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 850;
    min-width: 120px;
    padding: 0.6rem 0.85rem;
    text-align: center;
}

.checkup-progress span.active,
.checkup-progress span.complete {
    background: white;
    color: var(--ink);
}

.checkup-progress span.complete::before {
    color: var(--success);
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.4rem;
}

.checkup-questionnaire {
    display: grid;
    gap: 1.5rem;
}

.question-group-heading {
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
    padding-bottom: 0.9rem;
}

.question-group-heading h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin: 0;
}

.checkup-question {
    border: 0;
    margin: 0;
    padding: 1.2rem 0;
}

.checkup-question + .checkup-question {
    border-top: 1px solid var(--line);
}

.checkup-question legend {
    color: var(--ink);
    float: none;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.4;
    margin-bottom: 0.9rem;
}

.checkup-options {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkup-option {
    align-items: flex-start;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    gap: 0.65rem;
    min-height: 62px;
    padding: 0.85rem;
}

.checkup-option input {
    margin-top: 0.25rem;
}

.checkup-option span {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.35;
}

.checkup-document-upload {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.checkup-document-upload p {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    margin: 0.7rem 0 0;
}

.checkup-submit-bar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.checkup-score-card {
    background:
        radial-gradient(circle at top right, rgba(198, 122, 46, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-md);
    color: var(--ink);
    overflow: hidden;
    padding: clamp(1.3rem, 3vw, 2rem);
    position: relative;
}

.checkup-score-card::before {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.95;
    position: absolute;
    top: 0;
    width: 6px;
}

.checkup-score-card span,
.checkup-score-card p {
    color: var(--muted);
    font-weight: 800;
    margin: 0;
}

.checkup-score-card strong {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin: 0.35rem 0;
}

.checkup-score-ring {
    align-items: center;
    background:
        radial-gradient(circle at center, var(--paper) 0 52%, transparent 53%),
        conic-gradient(var(--success) calc(var(--score) * 1%), rgba(219, 229, 225, 0.9) 0);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(23, 33, 38, 0.06), var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 168px;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    width: 168px;
}

.checkup-score-ring strong {
    color: var(--ink);
    font-size: 3.3rem;
    line-height: 0.9;
    margin: 0;
}

.checkup-score-ring span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 850;
}

.checkup-rating-pill {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 999px;
    color: #fff !important;
    display: inline-flex;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 0.45rem 0.8rem;
    text-transform: uppercase;
}

.checkup-score-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.checkup-score-meta span {
    background: rgba(12, 95, 104, 0.09);
    border: 1px solid rgba(12, 95, 104, 0.16);
    border-radius: 999px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    padding: 0.35rem 0.55rem;
}

.checkup-summary-panel {
    background:
        linear-gradient(135deg, rgba(12, 95, 104, 0.08), rgba(198, 122, 46, 0.1)),
        var(--paper);
}

.checkup-visual-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    margin-top: 1.25rem;
}

.checkup-visual-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 95, 104, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem;
}

.checkup-visual-card i {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent-color);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    margin-bottom: 0.25rem;
    width: 34px;
}

.checkup-visual-card strong {
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1;
}

.checkup-visual-card span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.checkup-visual-card-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.checkup-visual-card-primary i,
.checkup-visual-card-primary strong,
.checkup-visual-card-primary span {
    color: #fff;
}

.checkup-visual-card-primary i {
    background: rgba(255, 255, 255, 0.16);
}

.checkup-score-list,
.checkup-risk-list {
    display: grid;
    gap: 0.9rem;
}

.checkup-score-row {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(160px, 1fr) minmax(160px, 0.9fr) 48px;
    padding: 1rem;
}

.checkup-score-row strong,
.checkup-risk h3 {
    color: var(--ink);
    display: block;
    font-size: 1rem;
    margin: 0;
}

.checkup-score-row span {
    color: var(--muted);
    display: block;
    font-size: 0.86rem;
    font-weight: 750;
}

.checkup-score-row b {
    color: var(--ink);
    font-size: 1.1rem;
    text-align: right;
}

.score-meter {
    background: var(--line);
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.score-meter span {
    background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
    border-radius: inherit;
    display: block;
    height: 100%;
}

.checkup-risk {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.checkup-risk p {
    margin: 0.55rem 0;
}

.checkup-risk span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.checkup-mini-score {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    flex-direction: column;
    margin-top: 1rem;
    min-width: 150px;
    padding: 1rem;
}

.checkup-mini-score strong {
    color: var(--ink);
    font-size: 2.2rem;
    line-height: 1;
}

.checkup-mini-score span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: 0.3rem;
}

.checkup-signal-list {
    display: grid;
    gap: 0.75rem;
}

.checkup-signal {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.94));
    border: 1px solid var(--line);
    border-left: 4px solid var(--muted);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 1rem;
}

.checkup-signal strong,
.checkup-signal span {
    display: block;
}

.checkup-signal strong {
    color: var(--ink);
    font-size: 1rem;
}

.checkup-signal span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-top: 0.25rem;
}

.checkup-signal b {
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.76rem;
    padding: 0.34rem 0.55rem;
    text-transform: uppercase;
}

.checkup-signal-icon {
    align-items: center;
    background: rgba(91, 104, 112, 0.1);
    border-radius: 50%;
    color: var(--muted);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.checkup-signal-pass b,
.checkup-signal-pass .checkup-signal-icon {
    background: rgba(45, 125, 85, 0.12);
    color: var(--success);
}

.checkup-signal-warn b,
.checkup-signal-warn .checkup-signal-icon,
.checkup-signal-unknown b,
.checkup-signal-unknown .checkup-signal-icon {
    background: rgba(183, 121, 31, 0.14);
    color: var(--warning);
}

.checkup-signal-fail b,
.checkup-signal-fail .checkup-signal-icon {
    background: rgba(184, 50, 50, 0.12);
    color: var(--danger);
}

.checkup-signal-skipped b,
.checkup-signal-skipped .checkup-signal-icon {
    background: rgba(91, 104, 112, 0.12);
    color: var(--muted);
}

.checkup-signal-pass {
    border-left-color: var(--success);
}

.checkup-signal-warn,
.checkup-signal-unknown {
    border-left-color: var(--warning);
}

.checkup-signal-fail {
    border-left-color: var(--danger);
}

.checkup-disclaimer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.6;
    margin: 1.25rem 0 0;
    padding-top: 1rem;
}

.ai-panel {
    background:
        linear-gradient(135deg, rgba(12, 95, 104, 0.96), rgba(23, 33, 38, 0.96)),
        url("../images/cloud-security.ee8128b99b73.jpg");
    background-position: center;
    background-size: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    color: white;
    padding: clamp(1.6rem, 4vw, 3rem);
}

.ai-panel h2,
.ai-panel p {
    color: white;
}

.framework-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.framework-list span,
.badge-soft {
    background: var(--accent-soft);
    border: 1px solid rgba(198, 122, 46, 0.26);
    border-radius: 999px;
    color: #7a4616;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 0.42rem 0.72rem;
}

.cta-band {
    background: var(--ink);
    color: white;
}

.cta-band h2,
.cta-band p {
    color: white;
}

/* Lists */
.list-unstyled li {
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.fa-check-circle {
    color: var(--success);
}

/* Forms */
.contact-form {
    background: var(--paper);
    padding: 2rem;
}

.contact-message-stack {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-message {
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
}

.contact-message-success {
    border-left-color: var(--success);
}

.contact-message-error,
.contact-message-danger {
    border-left-color: #b54708;
}

.contact-message-icon {
    align-items: center;
    background: var(--soft);
    border-radius: 999px;
    color: var(--primary-color);
    display: inline-flex;
    flex: 0 0 auto;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.contact-message-success .contact-message-icon {
    color: var(--success);
}

.contact-message-error .contact-message-icon,
.contact-message-danger .contact-message-icon {
    color: #b54708;
}

.contact-message strong {
    color: var(--ink);
    display: block;
    margin-bottom: 0.15rem;
}

.contact-message p {
    margin-bottom: 0;
}

.form-heading {
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
}

.form-heading h2 {
    font-size: 1.65rem;
    margin-bottom: 0.45rem;
}

.form-label {
    color: var(--ink);
    font-weight: 800;
}

.form-control,
.form-select {
    border-color: var(--line);
    border-radius: 6px;
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.18rem rgba(12, 95, 104, 0.16);
}

.optional-label {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.captcha-wrap {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.contact-aside {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 102px;
}

.next-step,
.contact-info-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.next-step {
    display: grid;
    gap: 1rem;
    grid-template-columns: 48px 1fr;
}

.next-step span {
    align-items: center;
    background: var(--primary-color);
    border-radius: 8px;
    color: white;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.next-step h3,
.contact-info-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.contact-info-panel a {
    color: var(--primary-color);
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.contact-info-panel a:hover,
.contact-info-panel a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* About Page */
.about-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-tile {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: 1.25rem;
}

.proof-tile span {
    color: var(--accent-color);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.proof-tile h3 {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
}

.principle-list {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.principle-item {
    border-left: 3px solid var(--line);
    padding-left: 1.25rem;
}

.principle-item + .principle-item {
    margin-top: 1.45rem;
}

.principle-item span {
    color: var(--primary-color);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.principle-item p {
    margin-bottom: 0;
}

.expertise-band {
    align-items: start;
    background: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    color: white;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.expertise-band h2,
.expertise-band p {
    color: white;
}

.expertise-band .section-kicker {
    color: #ffd7ad;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.expertise-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 800;
    padding: 0.45rem 0.72rem;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    font-size: 1.06rem;
    line-height: 1.8;
}

.service-highlight {
    background: var(--paper) !important;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-highlight:hover {
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-4px);
}

.mission-statement {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    box-shadow: var(--shadow-md);
}

.mission-statement h3,
.mission-statement p {
    color: white;
}

/* Images */
.img-fluid {
    max-width: 100%;
}

.rounded {
    border-radius: var(--radius) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

/* Footer */
.footer {
    background: var(--ink) !important;
    padding: 64px 0 28px;
}

.footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer .btn-light {
    color: var(--ink) !important;
}

.footer .btn-light:hover,
.footer .btn-light:focus {
    color: var(--ink) !important;
}

.footer-main {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr) minmax(240px, 0.8fr);
}

.footer-brand {
    max-width: 520px;
}

.footer-brand-link {
    align-items: center;
    color: white !important;
    display: inline-flex;
    font-size: 1.12rem;
    font-weight: 850;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo.brand-mark {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: none;
    height: 54px;
    width: 54px;
}

.footer h5,
.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.86) !important;
}

.footer h5 {
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer p {
    max-width: 620px;
}

.footer-links {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
    color: white;
}

.footer-contact li {
    align-items: flex-start;
    display: flex;
    gap: 0.65rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.2rem;
}

.footer-badges span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.36rem 0.62rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.35rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Approach Section */
.approach-icon {
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 80px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
/* ── Insights / Blog ──────────────────────────────────────────── */

.blog-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 38, 0.94), rgba(23, 33, 38, 0.72)),
        url("../images/compliance.91bfc151e1e4.jpg");
    background-position: center;
    background-size: cover;
}

/* Category pill tags */
.cat-tag {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary-color);
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.26rem 0.62rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

a.cat-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

/* Featured insight (first post on page 1) */
.featured-insight {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: inherit;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-insight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.featured-insight-img {
    aspect-ratio: 21 / 8;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.featured-insight-body {
    padding: 2rem 2.25rem;
}

.featured-label {
    background: var(--accent-color);
    border-radius: 4px;
    color: white;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding: 0.2rem 0.55rem;
    text-transform: uppercase;
}

.featured-insight-body h2 {
    color: var(--ink);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.22;
    margin-bottom: 0.75rem;
}

.featured-insight-body .lead {
    color: var(--muted);
}

/* Standard insight grid card */
.insight-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.insight-card-img {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.insight-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem 1.35rem;
}

.insight-card-body h3 {
    color: var(--ink);
}

.insight-card-body p {
    color: var(--muted);
    font-size: 0.92rem;
}

.insight-card-footer {
    border-top: 1px solid var(--line);
    padding: 0.85rem 1.35rem;
}

/* Article meta line */
.article-meta {
    align-items: center;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    gap: 1rem;
}

.article-meta i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

/* Article header band */
.article-header {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}

/* Article body typography */
.article-body {
    color: var(--ink);
    font-size: 1.0625rem;
    line-height: 1.82;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5 {
    color: var(--ink);
    margin-bottom: 0.75rem;
    margin-top: 2.25rem;
}

.article-body p {
    color: var(--ink);
    margin-bottom: 1.35rem;
}

.article-body ul,
.article-body ol {
    color: var(--ink);
    margin-bottom: 1.35rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    border-left: 3px solid var(--primary-color);
    color: var(--muted);
    font-size: 1.08rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 0.75rem 1.35rem;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body pre {
    background: var(--soft);
    border-radius: var(--radius);
    font-size: 0.9rem;
    overflow-x: auto;
    padding: 1.1rem 1.35rem;
}

.article-body code {
    background: var(--soft);
    border-radius: 3px;
    font-size: 0.9rem;
    padding: 0.1rem 0.35rem;
}

.article-body pre code {
    background: none;
    padding: 0;
}

.article-body img {
    border-radius: var(--radius);
    height: auto;
    margin: 1.5rem 0;
    max-width: 100%;
}

/* Author bio block */
.author-bio {
    background: var(--panel);
    border: 1px solid var(--line);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
}

.author-bio-name {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 750;
    margin-bottom: 0.2rem;
}

.author-bio-title {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.author-bio p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* End-of-post CTA */
.post-cta {
    background: var(--ink);
    border-radius: var(--radius);
    color: white;
    padding: 2.5rem 2.25rem;
    text-align: center;
}

.post-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.post-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ── End Insights / Blog ──────────────────────────────────────── */

/* ── Legal pages (privacy, terms) ─────────────────────────────── */

/* Flat hero: the photo treatment used elsewhere is too heavy for a
   long-form legal document that people are here to read, not be sold to. */
.legal-hero {
    background: linear-gradient(120deg, var(--dark-color), var(--primary-dark));
    padding: 92px 0 64px;
}

.legal-meta {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    margin-top: 1.5rem;
    text-transform: uppercase;
}

.legal-toc {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    position: sticky;
    top: 96px;
}

.legal-toc h2 {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    margin-bottom: 1rem;
    margin-top: 0;
    text-transform: uppercase;
}

.legal-toc ul {
    margin-bottom: 0;
}

.legal-toc li + li {
    margin-top: 0.6rem;
}

.legal-toc a {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.45;
    text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Anchored headings must clear the fixed navbar when jumped to. */
.legal-body h2,
.legal-body h3 {
    scroll-margin-top: 96px;
}

.legal-body h2 {
    border-top: 1px solid var(--line);
    font-size: 1.6rem;
    padding-top: 2rem;
}

.legal-body h2:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.legal-body h3 {
    font-size: 1.13rem;
    margin-top: 1.75rem;
}

@media (max-width: 991.98px) {
    .legal-toc {
        position: static;
    }
}

/* ── End Legal pages ──────────────────────────────────────────── */

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 76px 0 64px;
    }

    .page-hero {
        padding: 72px 0 58px;
    }

    .section-pad {
        padding: 68px 0;
    }

    .trust-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .navbar-collapse {
        border-top: 1px solid var(--line);
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .navbar .nav-link {
        padding: 0.72rem 0 !important;
    }

    .navbar .nav-link.active::after {
        bottom: 0.42rem;
        left: 0;
        right: auto;
        width: 42px;
    }

    .nav-cta {
        margin: 0.75rem 0 0;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .service-matrix {
        grid-template-columns: 1fr;
    }

    .expertise-band {
        grid-template-columns: 1fr;
    }

    .checkup-overview,
    .checkup-cta {
        grid-template-columns: 1fr;
    }

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

    .checkup-score-row b {
        text-align: left;
    }

    .checkup-cta .btn {
        justify-self: start;
    }

    .contact-aside {
        position: static;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar-brand {
        font-size: 1.02rem;
    }

    .navbar-brand img {
        max-height: 34px;
    }

    .navbar-brand span {
        display: inline-block;
        font-size: 0.9rem;
        line-height: 1.1;
        max-width: 220px;
        white-space: normal;
    }

    .hero {
        padding: 62px 0 52px;
    }

    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .hero h1 {
        font-size: 2.15rem;
        line-height: 1.12;
    }

    .page-hero h1 {
        font-size: 2.05rem;
        line-height: 1.13;
    }

    .hero .lead {
        font-size: 1.02rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-proof {
        flex-direction: column;
        gap: 0.65rem;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .section-pad,
    .about-section,
    .contact-section {
        padding: 52px 0;
    }

    .feature-card,
    .outcome-card,
    .contact-form {
        padding: 1.25rem;
    }

    .deliverable-grid {
        grid-template-columns: 1fr;
    }

    .checkup-domain-grid {
        grid-template-columns: 1fr;
    }

    .checkup-options {
        grid-template-columns: 1fr;
    }

    .checkup-submit-bar {
        align-items: stretch;
        flex-direction: column-reverse;
    }

.checkup-submit-bar .btn {
    width: 100%;
}

    .checkup-cta .btn {
        width: 100%;
    }

    .about-proof-grid {
        grid-template-columns: 1fr;
    }

    .next-step {
        grid-template-columns: 40px 1fr;
    }

    .next-step span {
        height: 38px;
        width: 38px;
    }

    .footer {
        padding-top: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-bottom {
        display: block;
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
}

/* Skip-to-content link: visually hidden until focused via keyboard. */
.skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    z-index: 2000;
    padding: 10px 16px;
    background: var(--color-primary, #1f4d46);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: top 0.2s ease-in-out;
}

.skip-link:focus {
    top: 8px;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Respect users who prefer reduced motion: disable non-essential animation. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        animation: none;
    }
}

@media (max-width: 575.98px) {
    .checkup-score-ring {
        height: 138px;
        width: 138px;
    }

    .checkup-score-ring strong {
        font-size: 2.65rem;
    }

    .checkup-visual-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkup-signal {
        align-items: start;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .checkup-signal b {
        grid-column: 2;
        justify-self: start;
    }

    .checkup-signal-icon {
        height: 32px;
        width: 32px;
    }
}

/* Sitewide email subscription */
.newsletter-nav-link {
    background: transparent;
    border: 0;
    font: inherit;
}

.footer-modal-link {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    padding: 0;
    text-align: left;
}

.footer-modal-link:hover,
.footer-modal-link:focus {
    color: #fff;
}

.newsletter-modal .modal-dialog {
    max-width: 620px;
}

.newsletter-modal .modal-content {
    background:
        radial-gradient(circle at top right, rgba(31, 184, 205, 0.18), transparent 38%),
        #f8fbfc;
    border: 1px solid rgba(13, 56, 74, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(7, 29, 39, 0.28);
    color: var(--dark-color);
    overflow: hidden;
}

.newsletter-modal .modal-header,
.newsletter-modal .modal-body {
    padding: 1.7rem 1.9rem;
}

.newsletter-modal .modal-title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    line-height: 1.08;
    margin-top: 0.35rem;
    max-width: 500px;
}

.newsletter-modal .btn-close {
    align-self: flex-start;
    margin-left: 1rem;
}

.newsletter-consent {
    background: #fff;
    border: 1px solid rgba(13, 56, 74, 0.14);
    border-radius: 14px;
    padding: 1rem 1rem 1rem 2.7rem;
}

.newsletter-consent .form-check-input {
    margin-left: -1.65rem;
    margin-top: 0.25rem;
}

.newsletter-consent .form-check-label {
    color: #263d47;
    font-size: 0.94rem;
    line-height: 1.5;
}

.newsletter-privacy-note {
    color: #5b6f78;
    font-size: 0.82rem;
    line-height: 1.45;
}

.newsletter-honeypot {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.newsletter-form-status {
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
}

.newsletter-form-status-success,
.newsletter-form-status-error {
    padding: 0.8rem 0.95rem;
}

.newsletter-form-status-success {
    background: #e7f8ef;
    color: #155c38;
}

.newsletter-form-status-error {
    background: #fff0f0;
    color: #8f2525;
}

.newsletter-status-hero {
    min-height: 72vh;
    padding-top: 180px;
}

.newsletter-preferences-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    margin-top: 2rem;
    padding: 1.5rem;
}

@media (max-width: 575.98px) {
    .newsletter-modal .modal-header,
    .newsletter-modal .modal-body {
        padding: 1.25rem;
    }
}
