/* ========================================
   BRAVURI MEDIA HOUSE — DESIGN SYSTEM
   ======================================== */

/* ----------------------------------------
   @FONT-FACE — Local fallbacks
   ---------------------------------------- */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DM_Sans/static/DMSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Old Standard TT';
    src: url('../fonts/Old_Standard_TT/OldStandardTT-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Old Standard TT';
    src: url('../fonts/Old_Standard_TT/OldStandardTT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Old Standard TT';
    src: url('../fonts/Old_Standard_TT/OldStandardTT-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ----------------------------------------
   CSS RESET & VARIABLES
   ---------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-paper: #F0EBE1;
    --color-black: #1A1A1A;
    --color-red: #E8462A;
    --color-muted: #666666;
    --color-border: #C8C3B9;
    --color-white: #FFFFFF;
    --font-heading: 'Old Standard TT', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-black);
    background-color: var(--color-paper);
    overflow-x: hidden;
}

/* ----------------------------------------
   TYPOGRAPHY
   ---------------------------------------- */
h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(48px, 5vw, 72px);
    letter-spacing: -1px;
    line-height: 1.05;
    color: var(--color-black);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 48px);
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--color-black);
}

h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    color: var(--color-black);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
}

h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

p {
    color: var(--color-muted);
    max-width: 65ch;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

a:hover {
    color: var(--color-red);
}

/* ----------------------------------------
   LAYOUT
   ---------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

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

/* ----------------------------------------
   SECTION LABELS & HEADERS
   ---------------------------------------- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--color-red);
}

.section-header p {
    margin: 0 auto;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: currentColor;
    border: 1px solid currentColor;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-paper);
    color: var(--color-black);
}

.btn-dark:hover {
    transform: translateY(-2px);
    color: var(--color-black);
}

.btn-on-red {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-on-red:hover {
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 14px;
}

.mag-wrap {
    padding: 28px;
    margin: -28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    display: inline-block;
    will-change: transform;
    pointer-events: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-red);
    font-weight: 500;
}

.text-link:hover {
    gap: 12px;
    color: var(--color-red);
}

.text-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(240, 235, 225, 0.92);
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(240, 235, 225, 0.97);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-left {
    flex: 1;
    justify-content: flex-start;
}

.nav-right {
    flex: 1;
    justify-content: flex-end;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-primary,
.logo:hover .logo-secondary {
    color: var(--color-red);
}

.logo-primary {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.02em;
    line-height: 1.1;
    transition: var(--transition);
}

.logo-secondary {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: 0.15em;
    margin-top: 2px;
    transition: var(--transition);
}

.nav-left a,
.nav-right a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-black);
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--color-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
}

/* ----------------------------------------
   HERO SECTIONS
   ---------------------------------------- */
.page-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-paper);
}

.hero-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--color-red);
}

.hero-text p {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 40px;
    max-width: none;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ----------------------------------------
   STATS BAR — background: black
   ---------------------------------------- */
.stats-bar {
    background-color: var(--color-black);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 32px;
    border-left: 1px solid rgba(240, 235, 225, 0.15);
}

.stat-item:first-child {
    border-left: 3px solid var(--color-red);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-paper);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-paper);
    opacity: 0.5;
}

/* ----------------------------------------
   THE SHIFT / DARK SECTION — background: black
   ---------------------------------------- */
#the-shift {
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

#the-shift .section-label {
    color: var(--color-paper);
}

#the-shift .section-header h2 {
    color: var(--color-paper);
}

#the-shift .section-header h2 span {
    color: var(--color-red);
}

/* ----------------------------------------
   PROBLEM / FEATURE CARDS — grid dividers
   ---------------------------------------- */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.problem-card {
    padding: 40px 32px;
    background: transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--color-border);
}

.problem-card:last-child {
    border-right: none;
}

.problem-number {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-red);
}

.problem-card h4 {
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 15px;
    margin: 0;
}

/* ----------------------------------------
   COMPARISON / SHIFT — background: black
   ---------------------------------------- */
.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-column {
    padding: 48px 40px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.comparison-column--old {
    border-right: 1px solid rgba(240, 235, 225, 0.15);
}

.comparison-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding: 6px 14px;
    border-radius: 0;
}

.comparison-label--old {
    color: rgba(240, 235, 225, 0.5);
    background: rgba(240, 235, 225, 0.06);
}

.comparison-label--new {
    color: var(--color-red);
    background: rgba(232, 70, 42, 0.12);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.comparison-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-column--old .comparison-list li {
    color: rgba(240, 235, 225, 0.45);
}

.comparison-column--bravuri .comparison-list li {
    color: var(--color-paper);
}

/* ----------------------------------------
   CASE STUDY CARDS
   ---------------------------------------- */
.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.case-study-content h2 {
    margin-bottom: 32px;
}

.case-study-content h2 span {
    color: var(--color-red);
}

.case-study-content p {
    font-size: 17px;
    margin-bottom: 24px;
}

.case-tilt-wrap {
    perspective: 1000px;
    transition: filter 0.4s;
    display: flex;
}

.case-card {
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-black);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.case-card:hover {
    border-color: var(--color-red);
    transform: translateY(-4px);
    color: var(--color-black);
}

.case-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(232, 70, 42, 0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.case-tilt-wrap:hover .tilt-shine {
    opacity: 1;
}

.case-card > *:not(.tilt-shine) {
    position: relative;
    z-index: 1;
}

.case-card-industry {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-red);
    margin-bottom: 16px;
}

.case-card h3 {
    margin-bottom: 12px;
    line-height: 1.3;
}

.case-card p {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.case-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.case-card-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 4px 12px;
    border-radius: 0;
}

.case-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--color-muted);
}

.case-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-card-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-muted);
    fill: none;
    stroke-width: 2;
}

.case-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.case-card:hover .case-card-arrow {
    border-color: var(--color-red);
    background-color: var(--color-red);
}

.case-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-black);
    fill: none;
    stroke-width: 2;
}

.case-card:hover .case-card-arrow svg {
    stroke: var(--color-white);
}

/* ----------------------------------------
   MID-PAGE CTA — background: red
   ---------------------------------------- */
.mid-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-red);
}

.mid-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.mid-cta-inner p {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    max-width: none;
    font-family: var(--font-heading);
}

.mid-cta-inner p span {
    color: var(--color-white);
    font-style: italic;
}

.mid-cta .btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.mid-cta .btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ----------------------------------------
   TIER / PRICING CARDS — background: paper
   ---------------------------------------- */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
    border: 1px solid var(--color-border);
}

.tier-card {
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    background: transparent;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-card:last-child {
    border-right: none;
}

.tier-card--popular {
    background-color: var(--color-black);
    color: var(--color-paper);
}

.tier-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 0;
}

.tier-name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-red);
    margin-bottom: 8px;
    margin-top: 8px;
}

.tier-card--popular .tier-name {
    margin-top: 24px;
    color: var(--color-red);
}

.tier-card h3 {
    margin-bottom: 8px;
    font-size: clamp(20px, 2.5vw, 22px);
}

.tier-card--popular h3 {
    color: var(--color-paper);
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.tier-card--popular .tier-price {
    color: var(--color-paper);
}

.tier-price span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-muted);
}

.tier-card--popular .tier-price span {
    color: rgba(240, 235, 225, 0.5);
}

.tier-timeline {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.tier-card--popular .tier-timeline {
    color: rgba(240, 235, 225, 0.4);
}

.tier-description {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.tier-card--popular .tier-description {
    color: rgba(240, 235, 225, 0.7);
}

.tier-highlights {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.tier-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-muted);
}

.tier-card--popular .tier-highlights li {
    color: rgba(240, 235, 225, 0.7);
}

.tier-highlights li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tier-card .btn {
    width: 100%;
    text-align: center;
}

.tier-card .btn-secondary {
    border-width: 1px;
    color: var(--color-black);
    border-color: var(--color-black);
}

.tier-card--popular .btn-primary {
    width: 100%;
    background-color: var(--color-red);
    color: var(--color-white);
}

.retainer-note {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 0;
}

.retainer-note p {
    margin: 0 auto;
    font-size: 16px;
}

.retainer-note span {
    color: var(--color-red);
    font-weight: 600;
}

/* ----------------------------------------
   PROCESS / TIMELINE
   ---------------------------------------- */
#process {
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

#process .section-label {
    color: var(--color-paper);
}

#process .section-header h2 {
    color: var(--color-paper);
}

#process .section-header h2 span {
    color: var(--color-red);
}

#process .section-header p {
    color: rgba(240, 235, 225, 0.6);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    border: 1px solid rgba(240, 235, 225, 0.15);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
    background: transparent;
    transition: var(--transition);
    overflow: hidden;
    border-right: 1px solid rgba(240, 235, 225, 0.15);
}

.process-step:last-child {
    border-right: none;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background-color: transparent;
    border: 1px solid rgba(240, 235, 225, 0.15);
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-red);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--color-paper);
}

.process-step p {
    font-size: 14px;
    margin: 0 auto;
    max-width: 220px;
    color: rgba(240, 235, 225, 0.6);
}

/* ----------------------------------------
   WHY / BENEFIT CARDS
   ---------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    position: relative;
    border: 1px solid var(--color-border);
}

.why-card {
    padding: 40px 32px;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-card:nth-child(2n) {
    border-right: none;
}

.why-card:nth-child(n+3) {
    border-bottom: none;
}

.why-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-red);
}

.why-card h4 {
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    margin: 0;
}

/* ----------------------------------------
   TRUST / TESTIMONIAL — background: black
   ---------------------------------------- */
#trust-signal {
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: transparent;
    border: 1px solid rgba(240, 235, 225, 0.15);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.trust-content h2 {
    margin-bottom: 24px;
    color: var(--color-paper);
}

.trust-content h2 span {
    color: var(--color-red);
}

.trust-content p {
    font-size: 18px;
    color: rgba(240, 235, 225, 0.7);
    margin: 0 auto 16px;
    max-width: 550px;
    font-style: italic;
    font-family: var(--font-heading);
}

.trust-content p:last-of-type {
    margin-bottom: 0;
}

.guarantee-highlight {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-red);
    margin-top: 24px;
    font-family: var(--font-body);
    font-style: normal;
}

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

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    transition: var(--transition);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
}

/* ----------------------------------------
   FINAL CTA — background: red
   ---------------------------------------- */
#final-cta {
    background-color: var(--color-red);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.final-cta-content h2 span {
    color: var(--color-white);
    font-style: italic;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-buttons .btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-buttons .btn-secondary:hover {
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ----------------------------------------
   FOOTER — background: black
   ---------------------------------------- */
footer {
    background-color: var(--color-black);
    padding: 64px 0 32px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(240, 235, 225, 0.6);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-red);
}

.footer-brand .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.footer-brand .logo-primary,
.footer-brand .logo-secondary {
    color: var(--color-paper);
}

.footer-brand .logo:hover .logo-primary,
.footer-brand .logo:hover .logo-secondary {
    color: var(--color-red);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(240, 235, 225, 0.6);
    margin-top: 16px;
    max-width: 280px;
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--color-paper);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column--tight ul {
    gap: 6px;
}

.footer-column--tight ul li {
    margin-bottom: 0;
}

.footer-column ul a {
    font-size: 14px;
    color: rgba(240, 235, 225, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(240, 235, 225, 0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(240, 235, 225, 0.4);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 235, 225, 0.2);
    border-radius: 0;
    transition: var(--transition);
    color: var(--color-paper);
}

.social-links a:hover {
    border-color: var(--color-red);
    background-color: var(--color-red);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--color-paper);
}

/* ----------------------------------------
   SERVICE CARD TILT
   ---------------------------------------- */
.service-tilt-wrap {
    perspective: 1000px;
    transition: filter 0.4s;
    display: flex;
}

.service-tilt-wrap .service-card {
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.service-tilt-wrap .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(232, 70, 42, 0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.service-tilt-wrap:hover .tilt-shine {
    opacity: 1;
}

.service-tilt-wrap .service-card > *:not(.tilt-shine) {
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   BLOG ARTICLE STYLES
   ---------------------------------------- */
.article-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background-color: var(--color-paper);
}

.article-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.article-meta span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
    max-width: none;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--color-muted);
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 3px solid var(--color-red);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-black);
}

/* ----------------------------------------
   CASE STUDY DETAIL
   ---------------------------------------- */
.case-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: var(--color-paper);
}

.case-hero .section-label {
    margin-bottom: 16px;
}

.case-hero h1 {
    margin-bottom: 24px;
}

.case-body {
    background-color: var(--color-paper);
}

.case-body .container {
    max-width: 900px;
}

/* ----------------------------------------
   CONTACT FORM
   ---------------------------------------- */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--color-black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-red);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ----------------------------------------
   LEGAL / POLICY PAGES
   ---------------------------------------- */
.legal-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background-color: var(--color-paper);
    text-align: center;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    max-width: none;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--color-muted);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ----------------------------------------
   SERVICE DETAIL PAGES
   ---------------------------------------- */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background-color: var(--color-paper);
    position: relative;
    overflow: hidden;
}

.service-hero .hero-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-includes {
    background-color: var(--color-paper);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
}

.include-card {
    padding: 40px 32px;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
}

.include-card:last-child {
    border-right: none;
}

.include-card .problem-number {
    margin-bottom: 16px;
}

.include-card h4 {
    margin-bottom: 12px;
}

.include-card p {
    font-size: 15px;
    margin: 0;
}

/* ----------------------------------------
   INDUSTRIES PAGE
   ---------------------------------------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
}

.industry-card {
    padding: 40px 32px;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
}

.industry-card:last-child,
.industry-card:nth-child(3n) {
    border-right: none;
}

.industry-card:hover {
    background: var(--color-white);
}

.industry-card h3 {
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 15px;
    margin: 0;
    flex-grow: 1;
}

/* ----------------------------------------
   BLOG LISTING
   ---------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
}

.blog-card {
    padding: 40px 32px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
}

.blog-card:nth-child(2n) {
    border-right: none;
}

.blog-card:hover {
    background: var(--color-white);
}

.blog-card .section-label {
    margin-bottom: 12px;
}

.blog-card h3 {
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 15px;
    margin: 0 0 20px;
    flex-grow: 1;
}

/* ----------------------------------------
   CASE STUDIES LISTING
   ---------------------------------------- */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ----------------------------------------
   STACKING PANELS (About page)
   ---------------------------------------- */
.stack-section {
    position: relative;
    margin-top: 40px;
}

.stack-pinned {
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}

.s-panel {
    position: absolute;
    inset: 0;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.s-panel-1 { background-color: var(--color-paper); z-index: 1; }
.s-panel-2 { background-color: var(--color-black); z-index: 2; transform: translateY(100%); }
.s-panel-3 { background-color: var(--color-red); z-index: 3; transform: translateY(100%); }

.s-panel-content {
    text-align: center;
    max-width: 720px;
}

.s-panel-number {
    font-family: var(--font-body);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: -12px;
    user-select: none;
    color: rgba(200, 195, 185, 0.3);
}

.s-panel-2 .s-panel-number { color: rgba(240, 235, 225, 0.06); }
.s-panel-3 .s-panel-number { color: rgba(255, 255, 255, 0.1); }

.s-panel-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.s-panel-2 .s-panel-tag { color: rgba(240, 235, 225, 0.5); }
.s-panel-3 .s-panel-tag { color: rgba(255, 255, 255, 0.65); }

.s-panel h2 {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.s-panel h2 span { color: var(--color-red); }

.s-panel p {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.s-panel p:last-child { margin-bottom: 0; }

.s-panel-2 h2 { color: var(--color-paper); }
.s-panel-2 h2 span { color: var(--color-red); }
.s-panel-2 p { color: rgba(240, 235, 225, 0.55); }

.s-panel-3 h2 { color: var(--color-white); }
.s-panel-3 h2 span { color: var(--color-white); }
.s-panel-3 p { color: rgba(255, 255, 255, 0.8); }

.stack-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0.5;
}

/* ----------------------------------------
   FOCUS STATES
   ---------------------------------------- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 2px;
}

/* ----------------------------------------
   RESPONSIVE — 1024px
   ---------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        text-align: center;
    }

    .hero-mockup {
        max-width: 400px;
    }

    .shift-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-column--old {
        border-right: none;
        border-bottom: 1px solid rgba(240, 235, 225, 0.15);
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        border: none;
    }

    .tier-card {
        border-right: none;
        border: 1px solid var(--color-border);
        margin-bottom: -1px;
    }

    .tier-card--popular {
        transform: none;
        border-color: var(--color-black);
    }

    .why-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .why-card {
        border-right: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
    }

    .why-card:last-child {
        border-bottom: none;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2n) {
        border-right: none;
    }

    .process-step:nth-child(-n+2) {
        border-bottom: 1px solid var(--color-border);
    }

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .problem-card {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .problem-card:last-child {
        border-bottom: none;
    }

    .includes-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .include-card {
        border-right: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
    }

    .include-card:last-child {
        border-bottom: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .industry-card {
        border-right: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .blog-card {
        border-right: none;
        border: 1px solid var(--color-border);
        margin-bottom: -1px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------
   RESPONSIVE — 768px
   ---------------------------------------- */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .navbar .container {
        position: relative;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo {
        flex: 1;
        align-items: flex-start;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(240, 235, 225, 0.98);
        padding: 24px;
        gap: 16px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-black);
    }

    .mobile-menu a:hover {
        color: var(--color-red);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        border: none;
    }

    .process-step {
        border-right: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .mid-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .mid-cta-inner .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }

    #trust-signal { padding: 40px 0; }
    #final-cta { padding: 60px 0; }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(240, 235, 225, 0.15);
    }

    .stat-item:first-child {
        border-left: none;
        border-top: 3px solid var(--color-red);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}
