/* ═══════════════════════════════════════════════
   SuncoastOps v2 — Brutalist/Editorial Stylesheet
   ═══════════════════════════════════════════════ */

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--accent-hover);
}

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.95;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.label {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.label--accent {
    color: var(--accent);
}

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-pad) 0;
}

.rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* --- Buttons --- */
.btn-bracket {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s ease;
}

.btn-bracket::before { content: '['; }
.btn-bracket::after { content: ']'; }

.btn-bracket:hover {
    color: var(--accent-hover);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0;
    border: none;
    background: var(--accent);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #000;
}

/* --- Arrow Link --- */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.arrow-link:hover {
    color: var(--accent);
}

.arrow-link .arrow {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.arrow-link:hover .arrow {
    transform: translate(2px, -2px);
}

/* --- Circle Arrow Button --- */
.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.circle-arrow:hover {
    background: var(--accent);
    color: #000;
}

.circle-arrow--lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* --- Header / Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-accent {
    color: var(--accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links li a:hover,
.nav-links li.active a {
    color: var(--text-primary);
}

.header-cta {
    font-size: 0.75rem;
    padding: 8px 16px;
}

/* --- Hero --- */
.hero {
    padding: calc(72px + 56px) 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-logo {
    width: 100%;
    max-width: min(620px, 82vw);
    height: auto;
}

.hero-text-layout {
    width: 100%;
    text-align: left;
    margin-top: clamp(1rem, 2vw, 2rem);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.85;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title-indent {
    margin-left: clamp(2rem, 10vw, 10rem);
}

.hero-intro {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.hero-intro p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* --- Services Overview --- */
.services-overview {
    padding: var(--section-pad) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.services-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.service-col {
    position: relative;
}

.service-col-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.service-col h3 {
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-col p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Feature Rows (Why Section, used across pages) --- */
.feature-rows {
    padding: var(--section-pad) 0;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
    transition: background 0.2s ease;
}

.feature-row:first-child {
    border-top: 1px solid var(--border);
}

.feature-row:hover {
    background: var(--bg-surface);
}

.feature-row-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    min-width: 200px;
    flex-shrink: 0;
}

.feature-row-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    flex: 1;
    line-height: 1.5;
}

.feature-row-arrow {
    font-size: 1.125rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.feature-row:hover .feature-row-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

/* --- Social Proof Strip --- */
.social-proof {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.social-proof-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.criss-cross-marquees {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-wrapper {
    position: absolute;
    width: 120vw;
    left: -10vw;
}

.rotate-left {
    transform: rotate(-3deg);
    z-index: 2;
}

.rotate-right {
    transform: rotate(3deg);
    z-index: 1;
}

.marquee-orange {
    background-color: var(--accent);
    color: #0A0A0A;
    padding: 1rem 0;
    border: none;
}

.marquee-orange .marquee-item {
    color: #0A0A0A;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.marquee-item .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #0A0A0A;
    border-radius: 50%;
    margin: 0 2rem;
    vertical-align: middle;
}

/* --- Large CTA --- */
.large-cta {
    padding: var(--section-pad) 0;
    text-align: center;
}

.large-cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.large-cta p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.circle-arrow--solid {
    background-color: var(--accent);
    color: #0A0A0A;
    border: none;
    font-size: 2rem;
    width: 64px;
    height: 64px;
}
.circle-arrow--solid:hover {
    background-color: var(--accent-hover);
    color: #0A0A0A;
}

/* --- Results / Editorial Section --- */
.results-section {
    padding: 0 0 var(--section-pad);
    text-align: center;
    position: relative;
}

.results-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.results-word {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    text-transform: uppercase;
    line-height: 1;
}

.results-word--accent {
    color: var(--accent);
    display: block;
    margin-top: -1rem;
}

.wireframe-graphic {
    width: clamp(150px, 20vw, 250px);
    height: auto;
    opacity: 0.6;
}

.wireframe-graphic svg {
    width: 100%;
    height: 100%;
}

/* --- List Rows (Case studies, blog, reusable) --- */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.list-header-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.list-row:first-child {
    border-top: 1px solid var(--border);
}

.list-row:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.list-row-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.list-row-meta {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list-row-arrow {
    font-size: 1.125rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.list-row:hover .list-row-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

.list-row-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.list-row-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

/* --- Page Templates: Common --- */
.page-hero {
    padding: calc(72px + 80px) 0 40px;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

/* --- Services Page --- */
.service-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.service-block:first-child {
    border-top: 1px solid var(--border);
}

.service-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.service-block h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    flex-shrink: 0;
}

.service-block p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
}

.service-includes {
    margin-top: 1.5rem;
}

.service-includes h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-includes ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-includes li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    background: var(--accent);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item summary {
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item .faq-answer {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.7;
}

/* --- Industries Page --- */
.industry-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    gap: 3rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.industry-row:first-child {
    border-top: 1px solid var(--border);
}

.industry-row:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.industry-row h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    flex-shrink: 0;
    min-width: 200px;
}

.industry-row p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    flex: 1;
    line-height: 1.6;
}

.industry-row .arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
    align-self: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.industry-row:hover .arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

/* --- Case Studies Page --- */
.case-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}

.case-row:first-child {
    border-top: 1px solid var(--border);
}

.case-row-info {
    flex: 1;
}

.case-row-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.case-row-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.case-row-stats {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

.case-stat {
    text-align: right;
}

.case-stat-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
}

.case-stat-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Contact Page --- */
.contact-hero {
    padding: calc(72px + 80px) 0 40px;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0 var(--section-pad);
}

.contact-info h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-detail p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease;
}

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

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* --- Blog / Resources (list-based) --- */
.post-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.post-row:first-child {
    border-top: 1px solid var(--border);
}

.post-row:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.post-row-date {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 100px;
    flex-shrink: 0;
}

.post-row-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex: 1;
    padding: 0 2rem;
}

.post-row-arrow {
    font-size: 1.125rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.post-row:hover .post-row-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}

/* --- Single Article (Editorial) --- */
.article-header {
    padding: calc(72px + 80px) 0 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.article-meta {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-muted);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: var(--section-pad);
}

.article-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
    font-size: 1rem;
    line-height: 1.8;
}

.article-content ol li {
    list-style: decimal;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-primary);
}

.article-content pre {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.article-content code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.article-content p code {
    background: var(--bg-elevated);
    padding: 2px 6px;
}

.article-cta {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.article-cta p {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin: 0;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: calc(72px + 1.5rem) 0 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* --- Generic Page Content --- */
.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: var(--section-pad);
}

.page-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* --- Large CTA Block (reusable) --- */
.cta-block {
    text-align: center;
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border);
}

.cta-block h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.cta-block p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo-col .logo-text {
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-legal {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- Scrolling Marquee --- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 2rem;
    white-space: nowrap;
}

.marquee-item .separator {
    color: var(--accent);
    margin-left: 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-cols { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .feature-row { flex-wrap: wrap; gap: 0.5rem; }
    .feature-row-label { min-width: auto; }
    .case-row { flex-wrap: wrap; }
    .case-row-stats { width: 100%; justify-content: flex-start; margin-top: 0.5rem; }
    .case-stat { text-align: left; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: calc(72px + 24px) 0 40px; }
    .hero-logo-container { margin-bottom: 2rem; }
    .hero-logo { max-width: min(520px, 92vw); }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); line-height: 0.9; }
    .hero-title-indent { margin-left: 0; }
    .hero-intro { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-intro p { max-width: 100%; }

    .services-cols { grid-template-columns: 1fr; }

    .feature-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .feature-row-label { min-width: auto; }

    .social-proof-heading { font-size: clamp(1.5rem, 6vw, 3rem); margin-bottom: 2rem; }
    .criss-cross-marquees { height: 100px; }

    .large-cta-title { font-size: clamp(2.5rem, 10vw, 4rem); }

    .results-layout { flex-direction: column; gap: 1.5rem; }

    .industry-row { flex-direction: column; gap: 0.75rem; }
    .industry-row h3 { min-width: auto; }

    .service-block-header { flex-direction: column; gap: 1rem; }
    .service-includes ul { grid-template-columns: 1fr; }

    .contact-hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .contact-grid { grid-template-columns: 1fr; }

    .post-row { flex-wrap: wrap; gap: 0.25rem; }
    .post-row-title { padding: 0; flex-basis: 100%; order: -1; }
    .post-row-date { min-width: auto; }

    .article-cta { flex-direction: column; text-align: center; }

    .list-row-left { flex-direction: column; gap: 0.25rem; }

    .footer-inner { flex-direction: column; gap: 1.5rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: clamp(2.5rem, 14vw, 4rem); }
    .circle-arrow--lg { width: 56px; height: 56px; font-size: 1.5rem; }
}

/* --- Subtle Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .feature-row,
    .list-row,
    .post-row,
    .industry-row {
        transition: background 0.15s ease;
    }

    .circle-arrow {
        transition: all 0.2s ease;
    }
}
