/* =============================================
   BLACKLINE RESOLUTION GROUP
   Main Stylesheet — Plain CSS, no framework
   ============================================= */

/* === Custom Properties === */
:root {
    --black:       #0c0c0c;
    --navy:        #2e4159;
    --navy-dark:   #1e2f42;
    --beige:       #e8e2d8;
    --beige-dark:  #ddd6ca;
    --blue:        #5b8ab5;
    --blue-light:  #cddaeb;
    --blue-bg:     #dce8f2;
    --teal:        #1e7a9a;
    --white:       #ffffff;
    --text:        #1c1c1c;
    --text-mid:    #4a4a4a;
    --text-light:  #787878;
    --orange:      #c87840;
    --container:   1160px;
    --hero-container: 1350px;
    --radius:      3px;
    --transition:  0.22s ease;
}

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

/* === Base === */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

[x-cloak] { display: none !important; }

/* === Typography === */
h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.2;
}

/* === Layout Utilities === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

.section        { padding: 88px 0; }
.section-sm     { padding: 60px 0; }
.bg-white       { background: var(--white); }
.bg-beige       { background: var(--beige); }
.bg-black       { background: var(--black); }
.bg-navy        { background: var(--navy); }
.text-center    { text-align: center; }
.section-relative { position: relative; overflow: hidden; }

/* === Section Labels / Titles === */
.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 22px;
}

.section-title.light  { color: var(--white); }

.section-lead {
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--text-mid);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border-radius: var(--radius);
    line-height: 1;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background: #4a78a2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

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

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--black);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-logo img {
    height: 46px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-nav a {
    color: rgba(255,255,255,0.75);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: color var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--white);
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.18);
    margin: 0 6px;
}

.nav-contact a {
    color: var(--blue) !important;
    font-size: 0.86rem !important;
}
.nav-contact a:hover {
    color: #7eabd4 !important;
}

.header-cta {
    margin-left: 12px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

.page-body { padding-top: 72px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: var(--black);
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--hero-container);
    margin: 0 auto;
    padding: 60px 48px;
    gap: 60px;
}

.hero-geo {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100px);
}

.hero-icon-svg {
    width: 87%;
    max-width: 450px;
    aspect-ratio: 31 / 33;
    display: block;
}

.hero-text { color: var(--white); }

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
    display: block;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.68);
    margin-bottom: 12px;
    max-width: 440px;
    line-height: 1.7;
}

.hero-support {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.36);
    text-transform: uppercase;
    margin-bottom: 38px;
    display: block;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================
   GEOMETRIC SVG ANIMATIONS
   ============================================= */
.geo-g1 { animation: geoFloat1 14s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: 200px 200px; }
.geo-g2 { animation: geoFloat2 11s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: 200px 200px; }
.geo-g3 { animation: geoFloat3 9s ease-in-out infinite alternate;  transform-box: fill-box; transform-origin: 250px 180px; }
.geo-g4 { animation: geoFloat4 16s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: 200px 350px; }

@keyframes geoFloat1 { from { transform: translate(0,0); }  to { transform: translate(13px,-9px); } }
@keyframes geoFloat2 { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(-9px,13px) rotate(1.5deg); } }
@keyframes geoFloat3 { from { transform: translate(0,0); }  to { transform: translate(10px, 8px) rotate(-1.1deg); } }
@keyframes geoFloat4 { from { transform: translate(0,0); }  to { transform: translate(-7px,-12px) rotate(0.9deg); } }


/* Section light decorative geo (white bg sections) */
.section-geo-deco {
    position: absolute;
    right: -20px; top: 0;
    width: 40%; height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

/* =============================================
   WHO WE ARE
   ============================================= */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-lead {
    font-size: 1.12rem;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.65;
}

.bracket-list {
    margin-top: 30px;
}

.bracket-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 1rem;
    color: var(--text-mid);
}
.bracket-list li:last-child { border-bottom: none; }

.bracket-icon {
    color: var(--blue);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

/* =============================================
   TRUTH / PAIN POINTS
   ============================================= */
.truth-lead {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 52px;
}

.pain-grid-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.pain-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    width: 280px;
}

.icon-circle {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--blue-bg);
    border: 1px solid var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--blue);
    flex-shrink: 0;
}

.icon-card p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    line-height: 1.45;
}

/* =============================================
   THE PROBLEM
   ============================================= */
.problem-content { max-width: 680px; }

.problem-lead {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text);
    line-height: 1.5;
}

.problem-overextended {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.problem-list {
    margin: 16px 0 24px;
}
.problem-list li {
    padding: 7px 0 7px 20px;
    font-style: italic;
    color: var(--text-mid);
    position: relative;
    font-size: 0.97rem;
}
.problem-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-mid);
}

.problem-note {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-top: 20px;
    border-left: 3px solid var(--blue);
    padding-left: 16px;
    line-height: 1.65;
}

/* =============================================
   OUR SOLUTION / SERVICES
   ============================================= */
.solution-sub-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 36px;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 28px 26px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.solution-tagline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--beige-dark);
}

/* =============================================
   OUR PROCESS (CHEVRON ARROWS)
   ============================================= */
.process-flow {
    display: flex;
    align-items: stretch;
    margin-top: 50px;
    gap: 0;
}

.process-step {
    background: var(--navy);
    color: var(--white);
    padding: 22px 48px 22px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.4;
    clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%, 22px 50%);
    margin-right: -1px;
    position: relative;
    z-index: 1;
    min-height: 88px;
    transition: background var(--transition);
}
.process-step:hover { background: var(--navy-dark); z-index: 2; }

.process-step:first-child {
    clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%);
    padding-left: 26px;
}
.process-step:last-child { margin-right: 0; }

.step-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 5px;
}

/* =============================================
   TIME SAVINGS = MONEY SAVINGS
   ============================================= */
.savings-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.savings-list { margin-top: 10px; }

.savings-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.savings-item:first-child { border-top: 2px solid var(--orange); }

.savings-check {
    color: var(--blue);
    font-size: 1.45rem;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}

.savings-item span {
    font-size: 1rem;
    color: var(--text-mid);
}

.savings-tagline {
    margin-top: 26px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    padding-top: 18px;
    border-top: 2px solid var(--blue);
}

.savings-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
}

.savings-side-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px;
    background: var(--white);
    border-left: 4px solid var(--navy);
}

.savings-side-item i {
    font-size: 1.8rem;
    color: var(--navy);
}

.savings-side-item h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
}

.savings-side-item p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* =============================================
   WHY BLACKLINE
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 12px;
}
.why-list li {
    padding: 7px 0;
    font-size: 1rem;
    color: var(--text-mid);
}

.why-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.why-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 20px;
    background: var(--white);
}

.why-icon-block i {
    font-size: 3rem;
    color: var(--teal);
}

.why-icon-block p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.why-icon-block strong { color: var(--text); }

/* =============================================
   WHO ARE OUR CLIENTS
   ============================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.client-card {
    background: var(--beige);
    padding: 42px 28px;
    text-align: center;
    border-bottom: 3px solid var(--navy);
    transition: transform var(--transition), box-shadow var(--transition);
}
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-card i {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 18px;
    display: block;
}

.client-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text);
}

.client-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-style: italic;
}

/* =============================================
   CLIENT BENEFITS
   ============================================= */
.benefits-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.benefits-timeline { margin-top: 30px; }

.benefit-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.benefit-marker-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56px;
    flex-shrink: 0;
}

.benefit-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dce2ea;
    border: 2px solid #bdc9d8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--navy);
}

.benefit-connector {
    width: 2px;
    height: 8px;
    background: #bdc9d8;
}

.benefit-bar {
    background: var(--navy);
    color: var(--white);
    padding: 16px 28px;
    flex: 1;
    font-size: 0.97rem;
    font-weight: 400;
    transition: background var(--transition);
}
.benefit-row:hover .benefit-bar { background: var(--navy-dark); }

.benefits-note {
    padding: 30px 0 0 56px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.benefits-side {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-stat {
    border-left: 4px solid var(--blue);
    padding: 18px 22px;
    background: var(--white);
}

.benefit-stat strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.benefit-stat span {
    font-size: 0.88rem;
    color: var(--text-mid);
}

/* =============================================
   REVIEWS CAROUSEL (Alpine.js)
   ============================================= */
.reviews-section {
    background: var(--navy);
    padding: 90px 0;
}

.carousel-wrapper { position: relative; margin-top: 50px; }

/* Fixed-height container prevents jumping when slides change */
.carousel-slides-container {
    position: relative;
    min-height: 320px;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.review-stars {
    font-size: 1.3rem;
    color: #f5c842;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.review-text {
    font-size: 1.08rem;
    font-weight: 300;
    color: rgba(255,255,255,0.86);
    line-height: 1.78;
    max-width: 800px;
    margin-bottom: 26px;
    font-style: italic;
}

.review-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--white);
    margin-bottom: 2px;
    display: block;
}

.review-location {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.44);
    font-style: italic;
    display: block;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}

.carousel-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.carousel-dots {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all var(--transition);
}
.carousel-dot.active,
.carousel-dot:hover {
    background: rgba(255,255,255,0.82);
    transform: scale(1.25);
}

.carousel-counter {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.36);
    letter-spacing: 0.06em;
}

.reviews-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 30px;
    transition: color var(--transition);
}
.reviews-cta-link:hover { color: white; }

/* =============================================
   CTA / CONTACT SECTION
   ============================================= */
.cta-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
}
.cta-text p {
    color: rgba(255,255,255,0.58);
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 34px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-contact { color: var(--white); }

.cta-contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 20px;
    display: block;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    transition: color var(--transition);
}
.cta-contact-item:hover { color: var(--white); }
.cta-contact-item i {
    color: var(--blue);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.cta-contact-item.address {
    align-items: flex-start;
    color: rgba(255,255,255,0.48);
    font-size: 0.88rem;
    margin-top: 8px;
    cursor: default;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #060606;
    color: rgba(255,255,255,0.38);
    padding: 26px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
}

.footer-nav {
    display: flex;
    gap: 22px;
}
.footer-nav a {
    color: rgba(255,255,255,0.38);
    font-size: 0.82rem;
    transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,255,255,0.75); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    background: var(--black);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.56);
    max-width: 560px;
}

/* =============================================
   SUBMIT CLAIM FORM
   ============================================= */
.form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 48px 90px;
}

.form-section-head {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--navy);
    padding: 10px 20px;
    margin-bottom: 28px;
    margin-top: 44px;
}
.form-section-head:first-of-type { margin-top: 0; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.form-field label .req { color: var(--blue); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 0.97rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid #d0d5dc;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(91,138,181,0.13);
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #c0392b;
}
.form-field textarea { min-height: 120px; resize: vertical; }

.field-note {
    font-size: 0.78rem;
    color: var(--text-light);
}

.form-submit-row {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid #e0e4ea;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.speak-directly {
    background: var(--beige);
    border: 1px solid var(--beige-dark);
    padding: 28px 30px;
    border-radius: var(--radius);
    margin-top: 50px;
}
.speak-directly h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 10px;
}
.speak-directly p {
    font-size: 0.93rem;
    color: var(--text-mid);
    margin-bottom: 16px;
}
.direct-contacts {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.direct-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.95rem;
    color: var(--text);
    transition: color var(--transition);
}
.direct-contact-item:hover { color: var(--blue); }
.direct-contact-item i { color: var(--blue); }

/* Alert messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.alert-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}
.alert-error {
    background: #fdecea;
    border: 1px solid #f5c6c4;
    color: #c0392b;
}

/* =============================================
   REVIEWS PAGE
   ============================================= */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 26px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    border: 1px solid #e4e8ed;
    padding: 34px 30px;
    border-top: 3px solid var(--blue);
    transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

.review-card .stars {
    font-size: 1.05rem;
    color: #f5c842;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}
.review-card .review-body {
    font-size: 0.96rem;
    color: var(--text-mid);
    line-height: 1.74;
    font-style: italic;
    margin-bottom: 20px;
}
.review-card .review-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 2px;
    display: block;
}
.review-card .review-loc {
    font-size: 0.84rem;
    color: var(--text-light);
    font-style: italic;
}

/* =============================================
   INNER PAGES (PRIVACY / SMS)
   ============================================= */
.inner-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 68px 48px 90px;
}

.inner-content h1 {
    font-size: 2.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 6px;
}
.inner-content .date-line {
    font-size: 0.86rem;
    color: var(--text-light);
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e4e8ed;
}
.inner-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-top: 38px;
    margin-bottom: 12px;
}
.inner-content p {
    font-size: 0.96rem;
    color: var(--text-mid);
    line-height: 1.74;
    margin-bottom: 14px;
}
.inner-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0 14px;
}
.inner-content ul li {
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 4px 0;
    line-height: 1.65;
}
.inner-content strong { color: var(--text); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-inner       { grid-template-columns: 1fr; }
    .hero-geo         { display: none; }
    .hero             { min-height: auto; }
    .hero-inner       { padding: 80px 48px; }
    .who-grid         { grid-template-columns: 1fr; gap: 44px; }
    .why-grid         { grid-template-columns: 1fr; gap: 44px; }
    .savings-wrap     { grid-template-columns: 1fr; gap: 44px; }
    .benefits-wrap    { grid-template-columns: 1fr; gap: 44px; }
    .cta-inner        { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 860px) {
    .container { padding: 0 28px; }
    .pain-row { gap: 20px; }
    .icon-card { width: 150px; }
    .clients-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .reviews-page-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: 1; }

    .process-flow { flex-direction: column; gap: 4px; }
    .process-step,
    .process-step:first-child {
        clip-path: none;
        padding: 18px 24px;
        margin-right: 0;
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .container      { padding: 0 20px; }
    .site-header    { padding: 0 20px; height: 64px; }
    .page-body      { padding-top: 64px; }
    .section        { padding: 60px 0; }
    .form-wrapper   { padding: 40px 20px 60px; }
    .inner-content  { padding: 50px 20px 70px; }
    .site-footer    { flex-direction: column; gap: 14px; text-align: center; padding: 24px 20px; }
    .hero-inner     { padding: 60px 20px; }

    /* Mobile nav */
    .header-nav {
        display: none;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        gap: 0;
    }
    .header-nav.open { display: flex; }
    .header-nav a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-divider  { display: none; }
    .header-cta   { margin: 14px 0 0; width: 100%; }
    .header-cta .btn { width: 100%; text-align: center; display: block; }
    .nav-toggle   { display: flex; }

    .hero-actions  { flex-direction: column; }
    .hero-actions .btn { text-align: center; }
    .why-icons     { grid-template-columns: 1fr; }
    .direct-contacts { flex-direction: column; gap: 12px; }
    .cta-actions   { flex-direction: column; }
    .cta-actions .btn { text-align: center; }
}