:root {
    --color-ink: #172026;
    --color-text: #43515a;
    --color-muted: #66737b;
    --color-border: #dfe6e8;
    --color-bg: #ffffff;
    --color-soft: #f4f7f6;
    --color-panel: #eef4f2;
    --color-primary: #126f76;
    --color-primary-dark: #0b4f55;
    --color-accent: #b56a25;
    --color-night: #10181d;
    --shadow-sm: 0 10px 24px rgba(16, 24, 29, 0.08);
    --shadow-md: 0 22px 50px rgba(16, 24, 29, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    background: var(--color-bg);
    padding-top: 74px;
}

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

a:hover {
    color: var(--color-primary-dark);
}

h1,
h2,
h3 {
    color: var(--color-ink);
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    font-size: 3.35rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    border-radius: var(--radius);
    font-weight: 700;
    padding: 0.78rem 1.15rem;
}

.btn-sm {
    padding: 0.55rem 0.85rem;
}

.btn-lg {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-dark);
    --bs-btn-hover-border-color: var(--color-primary-dark);
    --bs-btn-active-bg: var(--color-primary-dark);
    --bs-btn-active-border-color: var(--color-primary-dark);
}

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

.btn-outline-light {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.78);
    --bs-btn-hover-color: var(--color-ink);
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 230, 232, 0.9);
    backdrop-filter: blur(14px);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: var(--color-ink);
    font-weight: 800;
}

.navbar-brand {
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 340px;
    object-fit: contain;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--color-ink);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0;
}

.brand-text {
    white-space: nowrap;
}

.nav-link {
    color: var(--color-text);
    font-size: 0.96rem;
    font-weight: 650;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 74px);
    overflow: hidden;
    background: var(--color-night);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-digital-consulting.png");
    background-position: center right;
    background-size: cover;
    opacity: 0.62;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 23, 0.56);
}

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

.min-vh-hero {
    min-height: calc(100vh - 74px);
    padding: 4.5rem 0;
}

.hero-section h1,
.hero-section .hero-lead {
    color: #ffffff;
}

.hero-section h1 {
    max-width: 850px;
}

.hero-lead {
    max-width: 720px;
    margin-top: 1.4rem;
    font-size: 1.18rem;
}

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

.eyebrow {
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    color: var(--color-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.breadcrumb-nav a {
    color: var(--color-primary);
}

.breadcrumb-nav span::before {
    content: "/";
    margin-right: 0.55rem;
    color: var(--color-muted);
}

.hero-section .eyebrow,
.cta-band .eyebrow,
.product-hero .eyebrow {
    color: #f0b46b;
}

.section,
.page-hero,
.product-hero {
    padding: 6.25rem 0;
}

.section-light {
    background: #ffffff;
}

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

.privacy-widget-section {
    padding-top: 3rem;
}

.privacy-widget-section .section-heading {
    margin-bottom: 1.4rem;
}

.page-hero {
    background: var(--color-soft);
    border-bottom: 1px solid var(--color-border);
}

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

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    font-size: 1.12rem;
}

.product-hero {
    background: var(--color-night);
}

.product-hero h1,
.product-hero p {
    color: #ffffff;
}

.product-hero p {
    max-width: 720px;
}

.product-preview {
    max-width: 390px;
    margin: 0 0 0 auto;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-md);
}

.product-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.product-preview figcaption {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    text-align: center;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 2.6rem;
}

.section-heading p:not(.eyebrow) {
    font-size: 1.08rem;
}

.feature-card,
.product-card,
.info-panel,
.form-panel,
.metric-card,
.highlight-panel,
.mockup-panel,
.profile-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.feature-card,
.product-card,
.info-panel,
.form-panel {
    padding: 1.55rem;
}

.feature-card h2,
.feature-card h3,
.product-card h2,
.info-panel h2,
.form-panel h2 {
    font-size: 1.24rem;
}

.feature-card p,
.product-card p {
    margin-bottom: 0;
}

.feature-card-link {
    display: block;
    color: var(--color-text);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card-link:hover {
    color: var(--color-text);
    transform: translateY(-3px);
    border-color: rgba(18, 111, 118, 0.35);
    box-shadow: var(--shadow-md);
}

.card-link-label {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 800;
}

.card-kicker {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.95rem;
}

.highlight-panel {
    height: 100%;
    padding: 2.2rem;
}

.highlight-panel.alt {
    background: var(--color-panel);
}

.highlight-panel p {
    max-width: 620px;
}

.audit-mini-infographic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 520px;
    margin: 1.35rem 0 1.45rem;
}

.audit-mini-infographic span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(18, 111, 118, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-ink);
    font-weight: 760;
}

.audit-mini-infographic i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1rem;
}

.ai-summary-panel {
    background: var(--color-panel);
}

.ai-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.ai-flow span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-ink);
    font-weight: 760;
}

.ai-flow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: #ffffff;
    flex: 0 0 auto;
}

.profile-card {
    max-width: 340px;
    margin-left: auto;
    overflow: hidden;
    position: sticky;
    top: 104px;
}

.profile-card img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center top;
    background: var(--color-soft);
}

.profile-card-body {
    padding: 1.2rem;
}

.profile-card-body h2 {
    font-size: 1.15rem;
}

.social-links,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.social-links {
    margin-top: 1.2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 38px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-soft);
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 750;
}

.social-links a:hover {
    border-color: rgba(18, 111, 118, 0.35);
    color: var(--color-primary-dark);
}

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

.service-tile {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 111, 118, 0.35);
    box-shadow: var(--shadow-md);
}

.service-tile strong {
    color: var(--color-ink);
    font-size: 1.08rem;
}

.service-tile span {
    color: var(--color-muted);
}

.product-card {
    height: 100%;
}

.product-card.featured {
    border-color: rgba(18, 111, 118, 0.35);
    background: var(--color-panel);
}

.product-card a {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 800;
}

.price-card {
    position: relative;
    padding: 1.8rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.price-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1.45rem;
}

.price-icon.pec {
    background: var(--color-accent);
}

.price-card h2 {
    margin-bottom: 0.8rem;
}

.price-value {
    margin: 1.2rem 0 0.35rem;
    color: var(--color-ink);
    font-size: 2rem;
    font-weight: 850;
    line-height: 1.15;
}

.price-value span,
.price-note {
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 650;
}

.price-card .check-list {
    margin: 1.4rem 0;
}

.badge-soft {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.34rem 0.56rem;
    border-radius: var(--radius);
    background: rgba(18, 111, 118, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.check-list {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.65rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--color-primary);
}

.metric-card {
    min-height: 145px;
    padding: 1.4rem;
}

.metric-card strong {
    display: block;
    color: var(--color-ink);
    font-size: 1.18rem;
    margin-bottom: 0.6rem;
}

.web-type-card {
    padding: 1.45rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.web-type-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1.15rem;
}

.web-type-card h3 {
    margin-bottom: 0.65rem;
}

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

.web-process span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 58px;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-soft);
    color: var(--color-ink);
    font-weight: 760;
}

.web-process i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(18, 111, 118, 0.18);
    flex: 0 0 auto;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-ink);
    font-weight: 700;
}

.tag-grid.compact span {
    min-height: 40px;
}

.mockup-panel {
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.mockup-top,
.mockup-row,
.mockup-grid span {
    border-radius: var(--radius);
    background: var(--color-panel);
}

.mockup-top {
    height: 46px;
    margin-bottom: 1rem;
    background: var(--color-primary);
}

.mockup-row {
    width: 72%;
    height: 18px;
    margin-bottom: 0.75rem;
}

.mockup-row.wide {
    width: 100%;
}

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

.mockup-grid span {
    height: 96px;
}

.cta-band {
    padding: 4.8rem 0;
    background: var(--color-primary-dark);
    color: #ffffff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2,
.cta-inner p {
    color: #ffffff;
}

.cta-inner p {
    max-width: 700px;
    margin-bottom: 0;
}

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

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(18, 111, 118, 0.16);
}

.audit-checker p {
    margin-bottom: 1.2rem;
}

.audit-note,
.audit-placeholder,
.audit-result,
.audit-upsell {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.audit-note {
    margin-top: 1rem;
    padding: 1.15rem;
}

.audit-note p {
    margin: 0.35rem 0 0;
}

.audit-process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.audit-process span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(18, 111, 118, 0.16);
    border-radius: var(--radius);
    background: var(--color-soft);
    color: var(--color-ink);
    font-weight: 760;
}

.audit-process i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(18, 111, 118, 0.18);
    flex: 0 0 auto;
}

.audit-placeholder,
.audit-upsell {
    padding: 1.55rem;
}

.audit-result {
    padding: 1.55rem;
}

.audit-result-head {
    position: relative;
    padding-right: 8rem;
}

.audit-score-inline {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: baseline;
    color: var(--color-ink);
}

.audit-score-inline span {
    font-size: 3.1rem;
    font-weight: 850;
    line-height: 1;
}

.audit-score-inline small {
    font-weight: 800;
    color: var(--color-muted);
}

.audit-url {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    word-break: break-word;
}

.audit-meter {
    margin-top: 1.45rem;
}

.audit-meter-track {
    position: relative;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c93d32 0%, #d89b2b 50%, #1f8a61 100%);
    box-shadow: inset 0 0 0 1px rgba(16, 24, 29, 0.08);
}

.audit-meter-pointer {
    position: absolute;
    top: 50%;
    left: clamp(0%, var(--score), 100%);
    width: 28px;
    height: 28px;
    border: 4px solid #ffffff;
    border-radius: 999px;
    background: var(--color-ink);
    box-shadow: var(--shadow-sm);
    transform: translate(-50%, -50%);
}

.audit-meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.65rem;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.audit-area-bars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.audit-area-bar {
    padding: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-soft);
}

.audit-area-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.55rem;
}

.audit-area-head strong {
    color: var(--color-ink);
}

.audit-area-head span {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.audit-area-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(102, 115, 123, 0.18);
}

.audit-area-track span {
    display: block;
    width: clamp(0%, var(--area-score), 100%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c93d32 0%, #d89b2b 55%, #1f8a61 100%);
}

.audit-upsell {
    margin-top: 1rem;
    background: var(--color-panel);
}

.audit-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.audit-focus-grid article {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.audit-focus-grid strong,
.audit-focus-grid span {
    display: block;
}

.audit-focus-grid strong {
    color: var(--color-ink);
    margin-bottom: 0.35rem;
}

.audit-focus-grid span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.contact-box {
    display: grid;
    gap: 0.25rem;
    margin-top: 1.6rem;
    padding: 1.3rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-soft);
}

.contact-box strong:not(:first-child) {
    margin-top: 1rem;
}

.not-found {
    min-height: 60vh;
}

.site-footer {
    padding: 4.5rem 0 2rem;
    background: var(--color-night);
    color: rgba(255, 255, 255, 0.74);
}

.site-footer a,
.footer-brand {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.registrar-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.registrar-badge img {
    display: block;
    width: 96px;
    height: auto;
    border-radius: 6px;
}

.registrar-badge:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: grid;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 750;
}

.footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.92rem;
}

.footer-note a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 750;
}

.footer-note a:hover {
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .navbar-collapse {
        padding: 1rem 0;
    }

    .min-vh-hero {
        min-height: 680px;
    }

    .hero-media {
        background-position: center;
    }

    .section,
    .page-hero,
    .product-hero {
        padding: 4.5rem 0;
    }

    .profile-card {
        position: static;
    }

    .product-preview {
        max-width: 360px;
        margin: 0 auto;
    }

    .cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .brand-text {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-logo {
        height: 46px;
        max-width: 270px;
    }

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

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

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

    .audit-result-head {
        padding-right: 0;
    }

    .audit-score-inline {
        position: static;
        margin-bottom: 0.9rem;
    }

    .audit-focus-grid {
        grid-template-columns: 1fr;
    }

    .audit-area-bars {
        grid-template-columns: 1fr;
    }

    .audit-process {
        grid-template-columns: 1fr;
    }

    .service-tile {
        min-height: 145px;
    }

    .highlight-panel {
        padding: 1.55rem;
    }

    .audit-mini-infographic {
        grid-template-columns: 1fr;
    }

    .ai-flow {
        grid-template-columns: 1fr;
    }

    .web-process {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .min-vh-hero {
        min-height: 620px;
        padding: 3.5rem 0;
    }

    .hero-lead,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .section,
    .page-hero,
    .product-hero {
        padding: 3.7rem 0;
    }

}
