/*
Theme Name: Raging Custom Theme
Theme URI: https://ragingagency.com
Author: Raging Agency
Author URI: https://ragingagency.com
Description: Custom performance theme for Raging Agency. Brand Identity v1.2.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raging-custom
*/


/* =============================================================================
   1. FONTS (@font-face - self-hosted WOFF2 variable fonts, latin subset)
   ============================================================================= */

@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('assets/fonts/BricolageGrotesque-Latin.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('assets/fonts/IBMPlexSans-Latin.woff2') format('woff2');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('assets/fonts/IBMPlexSans-Italic-Latin.woff2') format('woff2');
    font-weight: 100 700;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Metric-adjusted fallback faces. Sized slightly LARGER than the web fonts so
   the swap-in renders smaller, never larger - this prevents the font swap from
   re-stamping LCP (only larger repaints create new LCP candidates). */
@font-face {
    font-family: 'Bricolage Fallback';
    src: local('Arial');
    size-adjust: 105%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Plex Fallback';
    src: local('Arial');
    size-adjust: 102%;
    ascent-override: 102%;
    descent-override: 26%;
    line-gap-override: 0%;
}


/* Hide Alpine-controlled elements until Alpine initializes (prevents
   pre-init flash of all intake steps and the late hero re-layout) */
[x-cloak] { display: none !important; }


/* =============================================================================
   2. DESIGN TOKENS (Brand Identity v1.2)
   ============================================================================= */

:root {
    /* Colors */
    --amber    : #FBA400;
    --sienna   : #B85C38;
    --charcoal : #444444;
    --linen    : #FBF7EE;
    --white    : #FFFFFF;
    --amber-30 : rgba(251, 164, 0, 0.30);

    /* Fonts */
    --font-headline : 'Bricolage Grotesque', 'Bricolage Fallback', Georgia, serif;
    --font-body     : 'IBM Plex Sans', 'Plex Fallback', system-ui, sans-serif;

    /* Type scale - mobile */
    --text-h1      : 36px;
    --text-h2      : 28px;
    --text-h3      : 22px;
    --text-body-lg : 17px;
    --text-body    : 16px;
    --text-eyebrow : 12px;
    --text-caption : 12px;

    /* Tracking */
    --tracking-h1      : -0.01em;
    --tracking-h2      : -0.005em;
    --tracking-eyebrow : 0.08em;

    /* Line heights */
    --lh-h1      : 1.1;
    --lh-h2      : 1.15;
    --lh-h3      : 1.2;
    --lh-body-lg : 1.55;
    --lh-body    : 1.6;
    --lh-eyebrow : 1.2;

    /* Spacing */
    --section-py   : 64px;
    --max-width    : 1200px;
    --card-padding : 24px;
    --card-radius  : 8px;
    --header-h     : 72px;
}

@media (min-width: 1024px) {
    :root {
        --text-h1      : 56px;
        --text-h2      : 40px;
        --text-h3      : 28px;
        --text-body-lg : 19px;
        --text-body    : 17px;
        --text-eyebrow : 14px;
        --text-caption : 13px;
        --section-py   : 96px;
        --header-h     : 80px;
    }
}


/* =============================================================================
   3. RESET
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--linen);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    padding-left: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--charcoal);
}

/* Links - brand spec states */
a {
    color: var(--sienna);
    text-decoration: underline;
    text-underline-offset: 1px;
    text-decoration-thickness: 1px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.15s ease, text-decoration-thickness 0.15s ease;
}

a:hover {
    color: var(--amber);
    text-decoration-thickness: 2px;
}

a:visited {
    color: var(--sienna);
}

/* ── Prevent visited-purple across all link types ── */

/* Buttons */
.btn-primary:visited                   { color: var(--charcoal); }
.btn-outline-white:visited             { color: #fff; }
.btn-outline-light:visited             { color: #fff; }
.btn-secondary:visited                 { color: var(--charcoal); }

/* Desktop nav */
.nav-link:visited                      { color: var(--charcoal); }
.nav-dd-item:visited                   { color: var(--charcoal); }
.nav-dd-hub:visited                    { color: var(--charcoal); }

/* Mobile nav */
.mobile-nav-link:visited               { color: var(--charcoal); }
.mobile-nav-sub a:visited              { color: #444; }
.mobile-nav-logo:visited               { color: inherit; }
.header-logo:visited                   { color: inherit; }

/* Footer — explicit colours matching each footer element's normal state */
.footer-nav-list a:visited             { color: rgba(255, 255, 255, 0.68); }
.footer-legal-links a:visited          { color: rgba(255, 255, 255, 0.38); }
.footer-contact a:visited              { color: rgba(255, 255, 255, 0.68); }
.footer-logo:visited                   { color: inherit; }

/* Charcoal section & dark hero — keep white text */
.section--charcoal a:visited           { color: #fff; }
.channel-hero a:visited                { color: #fff; }

/* Cards and tags */
.channel-vertical-tag:visited          { color: var(--charcoal); }
.blog-card-link:visited                { color: var(--charcoal); }
.review-card-platform:visited          { color: inherit; }

strong,
b {
    font-weight: 600;
    color: var(--charcoal);
}

em,
i {
    font-style: italic;
}

/* Inline highlight (brand spec) */
mark {
    background-color: var(--amber-30);
    color: var(--charcoal);
    padding: 0 2px;
}


/* =============================================================================
   4. ACCESSIBILITY
   ============================================================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background-color: var(--amber);
    color: var(--charcoal);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.1s;
}

.skip-link:focus {
    top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =============================================================================
   5. LAYOUT UTILITIES
   ============================================================================= */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
}

@media (min-width: 768px) {
    .container { padding-inline: 40px; }
}

@media (min-width: 1440px) {
    .container { padding-inline: 24px; }
}

.section {
    padding-block: var(--section-py);
}

.section--linen { background-color: var(--linen); }
.section--white { background-color: var(--white); }
.section--charcoal { background-color: var(--charcoal); }

/* Eyebrow label */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    color: var(--amber);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
}

/* Section heading */
.section-heading {
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: var(--tracking-h2);
    line-height: var(--lh-h2);
    margin-bottom: 20px;
    color: var(--charcoal);
}

.section-body {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: var(--charcoal);
    max-width: 680px;
}

.section-body + .section-body {
    margin-top: 16px;
}

/* Image placeholder */
.img-placeholder {
    background-color: rgba(68, 68, 68, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: var(--text-caption);
    opacity: 0.45;
    text-align: center;
    padding: 24px;
    font-family: var(--font-body);
}


/* =============================================================================
   6. BUTTONS (Brand Identity v1.2)
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Primary - amber fill */
.btn-primary {
    background-color: var(--amber);
    color: var(--charcoal);
    border-color: var(--amber);
}

.btn-primary:hover {
    background-color: #e09500;
    border-color: #e09500;
    color: var(--charcoal);
    text-decoration: none;
}

.btn-primary:visited { color: var(--charcoal); }

/* Primary alt - sienna fill (warm sections) */
.btn-primary-alt {
    background-color: var(--sienna);
    color: var(--amber);
    border-color: var(--sienna);
}

.btn-primary-alt:hover {
    background-color: #a04f30;
    border-color: #a04f30;
    color: var(--amber);
    text-decoration: none;
}

.btn-primary-alt:visited { color: var(--amber); }

/* Secondary - charcoal outline */
.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--linen);
    text-decoration: none;
}

.btn-secondary:visited { color: var(--charcoal); }

/* White outline - for dark backgrounds */
.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    text-decoration: none;
}


/* =============================================================================
   7. HEADER
   ============================================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--linen);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(68, 68, 68, 0.12);
    box-shadow: 0 2px 20px rgba(68, 68, 68, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 24px;
    gap: 24px;
}

@media (min-width: 768px) {
    .header-inner { padding-inline: 40px; }
}

/* Logo */
.header-logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 38px;
    width: auto;
    display: block;
}

@media (min-width: 1024px) {
    .header-logo img { height: 42px; }
}

/* Primary nav - hidden on mobile */
.header-nav {
    flex: 1;
    display: none;
    justify-content: center;
}

@media (min-width: 1024px) {
    .header-nav { display: flex; }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li { list-style: none; }

.nav-list a {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-list a:hover {
    color: var(--amber);
    background-color: rgba(251, 164, 0, 0.08);
}

.nav-list a:visited { color: var(--charcoal); }

/* Header CTA - hidden on mobile */
.header-cta {
    display: none;
    margin-left: auto;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-cta { display: flex; }
}

/* Mobile toggle button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    border-radius: 4px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
    display: none;
    background-color: var(--linen);
    border-top: 1px solid rgba(68, 68, 68, 0.1);
    padding: 24px;
}

.mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list li { list-style: none; }

.mobile-nav-list a {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
    transition: color 0.15s ease;
}

.mobile-nav-list a:hover { color: var(--amber); }

.mobile-nav .btn {
    width: 100%;
    text-align: center;
}


/* =============================================================================
   8. HERO SECTION
   ============================================================================= */

.hero {
    background-color: var(--linen);
    padding-top: 56px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 96px;
        padding-bottom: 80px;
    }
}


.hero-content { max-width: 600px; }

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    color: var(--sienna);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: var(--text-h1);
    font-weight: 700;
    letter-spacing: var(--tracking-h1);
    line-height: var(--lh-h1);
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero h1 .highlight { color: var(--amber); }

.hero-description {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: var(--charcoal);
    margin-bottom: 36px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

/* Trust bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(68, 68, 68, 0.12);
}

.trust-bar-label {
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--charcoal);
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.trust-item:hover { opacity: 0.7; }

.trust-stars {
    display: flex;
    gap: 1px;
    color: var(--amber);
    font-size: 13px;
    line-height: 1;
}

.trust-platform {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
}

/* Hero image column */
.hero-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-image.is-placeholder {
    background-color: rgba(68, 68, 68, 0.06);
    min-height: 300px;
}


/* =============================================================================
   9. INTAKE WIDGET
   ============================================================================= */

.intake-section {
    background-color: var(--white);
    padding-block: 64px;
    border-top: 1px solid rgba(68, 68, 68, 0.08);
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
}

.intake-inner {
    max-width: 740px;
    margin-inline: auto;
    text-align: center;
}

.intake-heading {
    font-size: var(--text-h3);
    font-weight: 700;
    letter-spacing: var(--tracking-h2);
    color: var(--charcoal);
    margin-bottom: 8px;
}

.intake-subheading {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 32px;
}

.intake-form {
    background-color: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.16);
    border-radius: 12px;
    padding: 28px;
    text-align: left;
}

.intake-input-group { margin-bottom: 20px; }

.intake-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.intake-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--charcoal);
    background-color: var(--white);
    border: 1.5px solid rgba(68, 68, 68, 0.22);
    border-radius: 6px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.intake-input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(251, 164, 0, 0.15);
}

.intake-input::placeholder { color: rgba(68, 68, 68, 0.38); }

/* Suggestion chips */
.intake-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.intake-chip {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    background-color: var(--white);
    border: 1.5px solid rgba(68, 68, 68, 0.18);
    border-radius: 99px;
    padding: 8px 18px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    text-align: left;
}

.intake-chip:hover {
    background-color: var(--amber);
    border-color: var(--amber);
    color: var(--charcoal);
}

/* Expanded contact fields */
.intake-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(68, 68, 68, 0.12);
    margin-top: 4px;
}

.intake-field-row {
    display: grid;
    gap: 14px;
}

@media (min-width: 600px) {
    .intake-field-row { grid-template-columns: 1fr 1fr; }
}

.intake-field-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.intake-field-label .req {
    color: var(--sienna);
    margin-left: 2px;
}

.intake-error {
    font-size: 13px;
    color: var(--sienna);
    font-weight: 500;
}

.intake-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* Success state */
.intake-success { text-align: center; padding: 20px 0; }

.intake-success-title {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.intake-success-body {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: var(--lh-body-lg);
}


/* =============================================================================
   10. SECTION - WHAT IS A WELLNESS MARKETING AGENCY
   ============================================================================= */

.section-definition { background-color: var(--linen); }

.definition-inner {
    display: grid;
    gap: 48px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .definition-inner { grid-template-columns: 1fr 1fr; }
}

.definition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.definition-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    background-color: var(--white);
    border: 1px solid rgba(68, 68, 68, 0.14);
    border-radius: 4px;
    padding: 6px 12px;
}

.definition-links {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* =============================================================================
   11. SECTION - VERTICALS
   ============================================================================= */

.section-verticals { background-color: var(--white); }

.verticals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: var(--card-radius);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .verticals-grid { grid-template-columns: repeat(5, 1fr); }
}

.vertical-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
    border-right: 1px solid rgba(68, 68, 68, 0.08);
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    background-color: var(--white);
    transition: background-color 0.15s ease;
}

.vertical-item:hover { background-color: var(--linen); }

.vertical-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
}

.verticals-cta-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}


/* =============================================================================
   12. SECTION - 90-DAY FRAMEWORK / FOUR PILLARS
   ============================================================================= */

.section-framework { background-color: var(--linen); }

.framework-intro { max-width: 640px; margin-bottom: 56px; }

/* Four pillar cards */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 64px;
}

@media (min-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
    background-color: var(--white);
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--amber);
}

.pillar-name {
    font-family: var(--font-headline);
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--charcoal);
    opacity: 0.8;
}

/* 90-day timeline */
.timeline-heading {
    font-size: var(--text-h3);
    font-weight: 700;
    letter-spacing: var(--tracking-h2);
    color: var(--charcoal);
    margin-bottom: 32px;
}

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

@media (min-width: 768px) {
    .timeline { grid-template-columns: repeat(3, 1fr); }
}

.timeline-phase {
    background-color: var(--white);
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    position: relative;
    overflow: hidden;
}

.timeline-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--sienna);
}

.timeline-label {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    color: var(--sienna);
    margin-bottom: 12px;
}

.timeline-phase h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--charcoal);
}

.timeline-phase ul {
    font-size: 14px;
    line-height: 1.65;
    color: var(--charcoal);
    opacity: 0.75;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-callout {
    background-color: var(--charcoal);
    border-radius: 10px;
    padding: 32px;
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.stat-callout-number {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.stat-callout-text {
    font-size: var(--text-body-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--lh-body-lg);
    max-width: 520px;
}


/* =============================================================================
   13. SECTION - PRICING
   ============================================================================= */

.section-pricing { background-color: var(--white); }

.pricing-inner {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .pricing-inner { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
    background-color: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background-color: var(--amber);
}

.pricing-plan-name {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.pricing-plan-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--sienna);
    margin-bottom: 24px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--charcoal);
}

.pricing-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
    margin-top: 5px;
}

.pricing-note {
    font-size: 14px;
    line-height: 1.55;
    color: var(--charcoal);
    opacity: 0.65;
    margin-top: 16px;
}


/* =============================================================================
   14. SECTION - COMPLIANCE
   ============================================================================= */

.section-compliance { background-color: var(--linen); }

.compliance-inner {
    display: grid;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .compliance-inner { grid-template-columns: 1fr 1fr; }
}

.compliance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.compliance-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    background-color: var(--white);
    border: 1px solid rgba(68, 68, 68, 0.14);
    border-radius: 4px;
    padding: 7px 13px;
    line-height: 1.3;
}


/* =============================================================================
   15. SECTION - RESULTS
   ============================================================================= */

.section-results { background-color: var(--white); }

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
    background-color: rgba(68, 68, 68, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 479px) {
    .results-grid { grid-template-columns: 1fr; }
    .result-item { padding: 24px 20px; }
}

@media (min-width: 1024px) {
    .results-grid { grid-template-columns: repeat(4, 1fr); }
}

.result-item {
    background-color: var(--white);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-stat {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: var(--tracking-h1);
    line-height: 1.05;
}

@media (min-width: 1024px) {
    .result-stat { font-size: 44px; }
}

.result-desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--charcoal);
}

.results-source {
    margin-top: 20px;
    font-size: var(--text-caption);
    color: var(--charcoal);
    opacity: 0.45;
}


/* =============================================================================
   16. SECTION - DIFFERENCE
   ============================================================================= */

.section-difference { background-color: var(--linen); }

.difference-inner {
    display: grid;
    gap: 24px;
    align-items: center;
}

@media (min-width: 1024px) {
    .difference-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.difference-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.09);
    font-size: var(--text-body);
    line-height: var(--lh-body-lg);
    color: var(--charcoal);
}

.difference-list li:last-child { border-bottom: none; }

.diff-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
    margin-top: 6px;
}


/* =============================================================================
   17. SECTION - FAQ
   ============================================================================= */

.section-faq { background-color: var(--white); }

.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(68, 68, 68, 0.1);
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background-color: #fff;
    border: none;
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: var(--text-body-lg);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: background-color 0.15s ease;
    line-height: 1.4;
}

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

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.2s ease;
}

/* Draw the + via pseudo-elements so it is always pixel-perfect centered,
   regardless of font metrics or whether the span has text content in HTML */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
}

/* Horizontal bar */
.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical bar */
.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* ── <details> FAQ variant (same visual design, no JS needed) ── */
summary.faq-question {
    list-style: none;
    display: flex;
    width: 100%;
    cursor: pointer;
    user-select: none;
}
summary.faq-question::-webkit-details-marker { display: none; }
details[open] > summary.faq-question .faq-icon { transform: rotate(45deg); }
details.faq-item > .faq-answer { display: block; }

.faq-answer {
    background-color: #fff;
    padding: 20px 28px;
    font-size: var(--text-body);
    line-height: 1.65;
    color: var(--charcoal);
}

.faq-answer[hidden] { display: none; }

.faq-answer a {
    color: var(--sienna);
}


/* =============================================================================
   18. SECTION - FINAL CTA
   ============================================================================= */

.section-cta-final {
    background-color: var(--charcoal);
    padding-block: var(--section-py);
}

.cta-final-inner {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.cta-final-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    color: var(--amber);
    margin-bottom: 20px;
}

.cta-final-eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber);
}

.cta-final-heading {
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: var(--tracking-h2);
    line-height: var(--lh-h2);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-final-body {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.cta-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}


/* =============================================================================
   19. FOOTER
   ============================================================================= */

.site-footer {
    background-color: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 64px;
    padding-bottom: 40px;
}

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

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* Brand column */
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    height: 34px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 260px;
}

/* Footer trust bar */
.footer-trust {
    margin-bottom: 24px;
}

.footer-trust-label {
    font-size: var(--text-caption);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.footer-trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.footer-trust-item:hover { opacity: 0.75; }

.footer-trust-stars {
    display: flex;
    gap: 1px;
    color: var(--amber);
    font-size: 12px;
}

.footer-trust-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-contact a:hover { color: var(--amber); }

/* Footer nav columns */
.footer-nav-heading {
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 16px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list li { list-style: none; }

.footer-nav-list a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-nav-list a:hover { color: var(--amber); }

/* Footer bottom bar */
.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.32);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-legal-links a:hover { color: rgba(255, 255, 255, 0.7); }


/* =============================================================================
   20. DISCOVERY PAGE (/discovery)
   ============================================================================= */

/* Hero */
.discovery-hero {
    padding: 40px 0 48px;
    background-color: var(--linen);
    text-align: center;
}

.discovery-hero .eyebrow {
    justify-content: center;
}

.discovery-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.discovery-hero h1 {
    margin: 12px 0 20px;
}

.discovery-intro {
    font-size: 19px;
    line-height: 1.65;
    color: var(--charcoal);
    margin-bottom: 28px;
}

/* Meta line below the trust bar */
.discovery-trust-meta {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(68, 68, 68, 0.65);
    text-align: center;
    letter-spacing: 0.01em;
}

/* Calendar embed */
.discovery-calendar {
    padding: 56px 0;
    background-color: #fff;
}

@media (min-width: 1062px) {
    .discovery-calendar {
        padding-top: 8px;
        padding-bottom: 48px;
    }
}

.discovery-calendar-inner {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.discovery-calendar-inner iframe {
    display: block;
}

/* Supporting info grid */
.discovery-info {
    padding: var(--section-py) 0;
    background-color: var(--linen);
}

.discovery-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.discovery-info-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: 1px solid rgba(68, 68, 68, 0.1);
}

.discovery-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.discovery-info-label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.discovery-info-card p:not(.discovery-info-label) {
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0;
}

.discovery-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discovery-trust-list li {
    font-size: 16px;
    line-height: 1.5;
    color: var(--charcoal);
    padding-left: 20px;
    position: relative;
}

.discovery-trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber);
}

/* Responsive */
@media (min-width: 768px) {
    .discovery-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .discovery-hero {
        padding: 56px 0 72px;
    }

    .discovery-intro {
        font-size: 20px;
    }
}


/* =============================================================================
   21. ABOUT PAGE (/about)
   ============================================================================= */

/* Hero - 2-col on desktop */
.about-hero {
    background-color: var(--linen);
    padding: var(--section-py) 0;
}

.about-hero-inner {
    display: grid;
    gap: 48px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.about-hero h1 {
    margin: 12px 0 20px;
}

.about-hero-intro {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: var(--charcoal);
}

.about-hero-intro a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hero image column */
.about-hero-image {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Portrait fill: flex-1 lets it grow inside the flex column;
   on desktop the grid cell gives it height context for absolute fill */
.about-hero-img-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-height: 280px;
}

.about-hero-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .about-hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
    }
}

.about-image-caption {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.6);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* Prose content sections */
.about-prose-section {
    padding: var(--section-py) 0;
}

.about-prose-block {
    max-width: 760px;
}

.about-prose-block h2 {
    margin-bottom: 20px;
}

.about-prose-block p {
    font-size: var(--text-body);
    line-height: var(--lh-body);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.about-prose-block p:last-child {
    margin-bottom: 0;
}

.about-prose-block a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Location section: prose + address card side by side on desktop */
.about-location-inner {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .about-location-inner {
        grid-template-columns: 1fr 280px;
        gap: 64px;
        align-items: center;
    }
}

.about-address-card {
    background-color: var(--charcoal);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
}

.about-address-label {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 12px;
}

.about-address-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.about-address-card a {
    color: var(--amber);
    text-decoration: none;
}

.about-address-card a:hover { text-decoration: underline; }

/* Credential tags */
.about-credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-credential-tag {
    display: inline-block;
    background-color: var(--linen);
    border: 1px solid rgba(251, 164, 0, 0.3);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

/* Stats row */
.about-stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(68, 68, 68, 0.12);
}

@media (min-width: 640px) {
    .about-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stat-value {
    font-family: var(--font-headline);
    font-size: 40px;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--charcoal);
}

/* FAQ section */
.about-faq-section {
    padding: var(--section-py) 0;
}

.about-faq-section h2 {
    margin-bottom: 40px;
}

/* Final CTA */
.about-cta {
    padding: var(--section-py) 0;
}

.about-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    margin-bottom: 32px;
}


/* =============================================================================
   22. SERVICES PAGE (/services)
   ============================================================================= */

/* Hero */
.services-hero {
    background-color: var(--linen);
    padding: var(--section-py) 0;
    max-width: 100%;
}

.services-hero .eyebrow { margin-bottom: 16px; }

.services-hero h1 {
    max-width: 820px;
    margin-bottom: 24px;
}

.services-hero-intro {
    max-width: 760px;
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: var(--charcoal);
    margin-bottom: 32px;
}

.services-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-tag {
    background-color: #fff;
    border: 1px solid rgba(68, 68, 68, 0.15);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
}

/* Shared prose block */
.services-prose-section { padding: var(--section-py) 0; }

.services-prose-block { max-width: 760px; }

.services-prose-block h2 { margin-bottom: 20px; }

.services-prose-block p {
    font-size: var(--text-body);
    line-height: var(--lh-body);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.services-prose-block p:last-child { margin-bottom: 0; }

.services-prose-block a,
.services-prose-section a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Verticals */
.services-verticals-section { padding: var(--section-py) 0; }

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

.services-verticals-intro {
    max-width: 680px;
    font-size: var(--text-body);
    line-height: var(--lh-body);
    color: var(--charcoal);
    margin-bottom: 36px;
}

.services-verticals-intro a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-verticals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    overflow: hidden;
    background-color: #fff;
}

@media (min-width: 640px) {
    .services-verticals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-verticals-grid { grid-template-columns: repeat(5, 1fr); }
}

.services-verticals-grid li {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    border-right: 1px solid rgba(68, 68, 68, 0.08);
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.services-verticals-grid li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--amber);
    flex-shrink: 0;
}

/* Service cards */
.services-cards-section { padding: var(--section-py) 0; }

.services-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background-color: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.08);
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-card--accent {
    background-color: var(--charcoal);
    border-color: transparent;
}


.service-card-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin: 0;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 0;
}

.service-card--accent .service-card-title { color: #fff; }

.service-card-body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0;
    flex: 1;
}

.service-card--accent .service-card-body { color: rgba(255, 255, 255, 0.82); }

.service-card-body a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.service-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
}

.service-card-link:hover { text-decoration: underline; }

/* Framework */
.services-framework-section { padding: var(--section-py) 0; }

.services-framework-inner {
    display: grid;
    gap: 56px;
    align-items: start;
}

@media (min-width: 1024px) {
    .services-framework-inner {
        grid-template-columns: 1fr 320px;
        gap: 80px;
    }
}

.services-framework-content h2 { margin: 12px 0 16px; }

.services-framework-content > p {
    font-size: var(--text-body);
    line-height: var(--lh-body);
    color: var(--charcoal);
    margin-bottom: 36px;
}

.services-phases {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--amber);
}

.services-phase {
    padding: 0 0 32px 24px;
    position: relative;
}

.services-phase:last-child { padding-bottom: 0; }

.services-phase::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--amber);
}

.services-phase-num {
    display: block;
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 8px;
}

.services-phase p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0;
}

/* Pillars sidebar */
.services-pillars {
    background-color: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    padding: 28px;
}

.services-pillars-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 20px;
}

.services-pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.08);
}

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

.services-pillar-num {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 800;
    color: rgba(68, 68, 68, 0.25);
    flex-shrink: 0;
    width: 24px;
}

.services-pillar-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}

/* Pricing */
.services-pricing-section { padding: var(--section-py) 0; }

.services-pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
}

@media (min-width: 640px) {
    .services-pricing-cards { grid-template-columns: repeat(3, 1fr); }
}

.services-pricing-card {
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    background-color: var(--linen);
}

.services-pricing-card--accent {
    background-color: var(--charcoal);
    border-color: transparent;
}

.services-pricing-tier {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 12px;
}

/* .services-prose-block p overrides amber; restore it on every pricing card */
.services-pricing-card .services-pricing-tier { color: var(--amber); }

.services-pricing-range {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.1;
}

.services-pricing-card--accent .services-pricing-range { color: #fff; }

.services-pricing-range span {
    font-size: 16px;
    font-weight: 500;
}

.services-pricing-note {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.65);
    margin: 0;
}

.services-pricing-card--accent .services-pricing-note { color: rgba(255, 255, 255, 0.6); }

/* FAQ */
.services-faq-section { padding: var(--section-py) 0; }

.services-faq-section h2 {
    margin-bottom: 0;
}

/* Final CTA */
.services-cta { padding: var(--section-py) 0; }

.services-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.services-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    margin-bottom: 32px;
}


/* =============================================================================
   23. BODY LOCK (when mobile nav is open)
   ============================================================================= */

body.nav-open { overflow: hidden; }


/* =============================================================================
   24. HOMEPAGE HERO REDESIGN (centered, multi-step conversational intake)
   ============================================================================= */

/* -- Hero: single-column centered layout -- */
.hero {
    background-color: var(--linen);
    padding-top: 56px;
    padding-bottom: 56px;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 96px;
        padding-bottom: 80px;
    }
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 0;
}

.hero h1 { margin-bottom: 16px; }

.hero-subtext {
    font-size: var(--text-body-lg);
    color: rgba(68, 68, 68, 0.6);
    line-height: var(--lh-body-lg);
    margin-bottom: 36px;
    max-width: 520px;
}

/* -- Hero intake wrapper -- */
.hero-intake-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 32px;
    text-align: left;
}

/* Bordered box (shared by all steps) */
.hero-intake-box {
    background: #fff;
    border: 1.5px solid rgba(68, 68, 68, 0.15);
    border-radius: 16px;
    padding: 28px 32px 24px;
    box-shadow: 0 4px 32px rgba(68, 68, 68, 0.07);
}

/* -- Step 0: goal input -- */
.hero-intake-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--charcoal);
    background: transparent;
    border: none;
    outline: none;
    padding: 4px 0 20px;
    border-bottom: 1px solid rgba(68, 68, 68, 0.1);
    margin-bottom: 20px;
    display: block;
}

.hero-intake-input::placeholder { color: rgba(68, 68, 68, 0.55); }

/* Chips + Get Started on same row */
.hero-chips-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

@media (max-width: 599px) {
    .hero-chips-row { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
    .hero-chips-row .btn { width: 100%; justify-content: center; }

    /* Mobile: show only the first 3 suggested goal chips */
    .hero-intake-chips .intake-chip:nth-child(n+4) { display: none; }

    /* Mobile: tighter side padding inside the intake box */
    .hero-intake-box { padding: 24px 16px 20px; }
}

.hero-intake-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

/* Get Started / Next / Finish button inside widget */
.intake-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Disabled state for Get Started */
.hero-intake-box .btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

/* -- Steps 1-3: conversational -- */
.hero-intake-box--conv { min-height: 230px; }

/* Goal recap amber pill */
.conv-goal-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(251, 164, 0, 0.1);
    border: 1px solid rgba(251, 164, 0, 0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Step question */
.conv-question {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (min-width: 768px) { .conv-question { font-size: 26px; } }

/* Single-field conversational input */
.conv-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--charcoal);
    background: #faf9f7;
    border: 1.5px solid rgba(68, 68, 68, 0.18);
    border-radius: 10px;
    outline: none;
    padding: 14px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: block;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.conv-input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(251, 164, 0, 0.12);
    background: #fff;
}
.conv-input::placeholder { color: rgba(68, 68, 68, 0.45); }

/* Error message */
.intake-error {
    color: var(--sienna);
    font-size: 13px;
    margin: 0;
    flex: 1;
}

/* Footer: error left, Next/Finish button right */
.conv-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* -- Step 4: call prompt -- */
.hero-intake-box--call { text-align: center; padding: 40px 32px; }

.conv-call-sub {
    font-size: 15px;
    color: rgba(68, 68, 68, 0.65);
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 460px;
}

.conv-call-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -- Step 5: thank you -- */
.conv-thanks-title {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    text-align: center;
}

.conv-thanks-body {
    font-size: 15px;
    color: rgba(68, 68, 68, 0.65);
    line-height: 1.55;
    text-align: center;
    margin: 0;
}

/* -- Trust bar centered variant -- */
.trust-bar--hero {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}

/* -- SEO Intro prose section -- */
.section-intro-prose {
    padding: var(--section-py) 0;
    border-top: 1px solid rgba(68, 68, 68, 0.08);
}

.intro-prose-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-prose-text {
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    color: rgba(68, 68, 68, 0.85);
    margin-bottom: 40px;
}

.intro-prose-text strong { color: var(--charcoal); }

.intro-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(68, 68, 68, 0.1);
    padding-top: 36px;
}

@media (max-width: 639px) {
    .intro-stats-row { grid-template-columns: 1fr; gap: 20px; }
}

.intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.intro-stat-num {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
}

@media (min-width: 1024px) { .intro-stat-num { font-size: 44px; } }

.intro-stat-label {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.6);
    line-height: 1.45;
    max-width: 180px;
    text-align: center;
}


/* =============================================================================
   25. CHANNEL PAGES (Facebook Advertising, Instagram Advertising, Google Ads)
   Shared styles prefixed .channel-* so all three channel pages reuse this CSS.
   ============================================================================= */

/* -- Hero -- */
.channel-hero {
    background-color: var(--charcoal);
    padding: var(--section-py) 0;
    text-align: center;
}

.channel-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.channel-hero .eyebrow { justify-content: center; }

.channel-hero h1 {
    color: #fff;
    margin-bottom: 24px;
}

.channel-hero-intro {
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    margin-bottom: 36px;
}

.channel-hero-intro strong { color: #fff; }

.channel-hero--compact .channel-hero-intro { margin-bottom: 0; }

/* -- Background helper -- */
.channel-linen { background-color: var(--linen); }

/* -- Generic prose sections -- */
.channel-prose-section { padding: var(--section-py) 0; }
.wwww-faq-section { padding: var(--section-py) 0; }

.channel-prose-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* Space between consecutive H2+p blocks inside a prose inner container */
.channel-prose-inner p + h2 {
    margin-top: 2.5rem;
}

.channel-prose-inner--wide { max-width: 900px; }

.channel-prose-section h2 { margin-bottom: 24px; }

.channel-prose-section p + p { margin-top: 16px; }

/* -- SAC Section -- */
.channel-sac-section { padding: var(--section-py) 0; }

.channel-sac-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .channel-sac-inner {
        grid-template-columns: 1fr 300px;
        gap: 60px;
    }
}

.channel-sac-prose h2 { margin-bottom: 20px; }

.channel-sac-prose p + p { margin-top: 16px; }

.channel-sac-list {
    margin: 16px 0;
    padding-left: 20px;
}

.channel-sac-list li {
    margin-bottom: 8px;
    color: var(--charcoal);
    line-height: 1.55;
}

.channel-sac-callout {
    background-color: var(--charcoal);
    border-radius: var(--card-radius);
    padding: 32px;
}

.channel-sac-callout-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 16px;
}

.channel-sac-callout-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.channel-sac-callout-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.4;
}

.channel-sac-callout-list li:last-child { border-bottom: none; }

/* -- Three-Tier Section -- */
.channel-tier-section { padding: var(--section-py) 0; }

.channel-tier-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.channel-tier-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(68, 68, 68, 0.75);
    line-height: var(--lh-body-lg);
}

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

@media (min-width: 768px) {
    .channel-tier-grid { grid-template-columns: repeat(3, 1fr); }
}

.channel-tier-card {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    padding: 32px 28px;
}

.channel-tier-card--mid { background: var(--charcoal); }

.channel-tier-card--mid .channel-tier-label,
.channel-tier-card--mid .channel-tier-desc { color: rgba(255, 255, 255, 0.85); }

.channel-tier-card--mid .channel-tier-list li { color: rgba(255, 255, 255, 0.75); }

.channel-tier-card--mid .channel-tier-list { border-top-color: rgba(255, 255, 255, 0.15); }

.channel-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.channel-tier-badge--1 { background: rgba(251, 164, 0, 0.15); color: #9a6500; }
.channel-tier-badge--2 { background: var(--amber); color: var(--charcoal); }
.channel-tier-badge--3 { background: rgba(184, 92, 56, 0.15); color: var(--sienna); }

.channel-tier-label {
    font-family: var(--font-headline);
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.channel-tier-desc {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-tier-link { color: var(--amber); text-decoration: underline; }

.channel-tier-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(68, 68, 68, 0.1);
}

.channel-tier-list li {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(68, 68, 68, 0.07);
    line-height: 1.45;
}

.channel-tier-list li:last-child { border-bottom: none; }

/* -- Tracking Stack (CAPI / AEM / LDU) -- */
.channel-tracking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0;
}

@media (min-width: 640px) {
    .channel-tracking-grid { grid-template-columns: repeat(3, 1fr); }
}

.channel-tracking-item {
    background: var(--linen);
    border-radius: var(--card-radius);
    padding: 24px;
    border-left: 3px solid var(--amber);
}

.channel-tracking-label {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 800;
    color: var(--amber);
    margin-bottom: 10px;
}

.channel-tracking-item p:last-child {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.75);
    line-height: 1.6;
    margin: 0;
}

.channel-tracking-note {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.65);
    font-style: italic;
    border-top: 1px solid rgba(68, 68, 68, 0.1);
    padding-top: 24px;
    line-height: 1.6;
    margin: 0;
}

/* -- Compliant Creative Section -- */
.channel-creative-section { padding: var(--section-py) 0; }

.channel-creative-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.channel-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(68, 68, 68, 0.8);
    line-height: var(--lh-body-lg);
}

.channel-creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 599px) {
    .channel-creative-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
    .channel-creative-grid { grid-template-columns: repeat(4, 1fr); }
}

.channel-creative-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 28px 24px;
}

.channel-creative-num {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 900;
    color: var(--amber);
    margin-bottom: 10px;
    line-height: 1;
}

.channel-creative-type {
    font-family: var(--font-headline);
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.channel-creative-card p:last-child {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.75);
    line-height: 1.6;
    margin: 0;
}

.channel-ba-note {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-left: 4px solid var(--sienna);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: 24px 28px;
    max-width: 720px;
    margin: 32px auto 0;
}

.channel-ba-note-heading {
    font-weight: 700;
    color: var(--sienna);
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.channel-ba-note p:last-child {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* -- Verticals Section -- */
.channel-verticals-section { padding: var(--section-py) 0; }

.channel-verticals-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.channel-verticals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.channel-vertical-tag {
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.12);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

a.channel-vertical-tag:hover {
    background-color: var(--amber);
    border-color: var(--amber);
    color: var(--charcoal);
}

/* Tags on linen-background sections get a white fill so they stand out */
.channel-linen .channel-vertical-tag {
    background: #fff;
}

/* -- 90-Day Framework Section -- */
.channel-framework-section { padding: var(--section-py) 0; }

.channel-framework-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .channel-framework-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
}

.channel-framework-text h2 { margin-bottom: 16px; }

.channel-framework-text p + p { margin-top: 16px; }

.channel-framework-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.channel-framework-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.channel-step-marker {
    flex-shrink: 0;
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.channel-step-days {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--card-radius);
    padding: 8px 6px;
    text-align: center;
    line-height: 1.3;
    width: 100%;
    min-height: 44px;
}

.channel-step-line {
    display: block;
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: rgba(251, 164, 0, 0.3);
    margin: 4px 0;
}

.channel-step-content {
    padding-bottom: 28px;
    padding-top: 6px;
}

.channel-step-title {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.channel-step-content p:last-child {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* -- FAQ Section -- */
.channel-faq-section { padding: var(--section-py) 0; }

.channel-faq-section h2 { margin-bottom: 40px; }

/* -- CTA Section (charcoal bg) -- */
.channel-cta-section {
    background-color: var(--charcoal);
    padding: var(--section-py) 0;
}

.channel-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.channel-cta-inner h2 {
    color: #fff;
    margin-bottom: 16px;
}

.channel-cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-body-lg);
    line-height: var(--lh-body-lg);
    margin-bottom: 32px;
}


/* =============================================================================
   26. SEO PILLAR CARDS (Medical Spa SEO page)
   ============================================================================= */

.channel-seo-pillars-section {
    padding: var(--section-py) 0;
}

.channel-seo-pillars-section .section-heading-centered {
    text-align: center;
    margin-bottom: 12px;
}

.seo-pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .seo-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-pillar-card {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.seo-pillar-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.seo-pillar-content {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.seo-pillar-num {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 6px;
}

.seo-pillar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.seo-pillar-content p:last-child {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(68, 68, 68, 0.85);
    margin: 0;
}

/* =============================================================================
   27. COMPLIANCE LAYER GRID (Wellness Ad Compliance page)
   ============================================================================= */

.compliance-layer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .compliance-layer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compliance-layer-card {
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-top: 3px solid var(--amber);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    padding: 28px;
}

.compliance-layer-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 8px;
}

.compliance-layer-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.compliance-layer-card p:last-child {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(68, 68, 68, 0.85);
    margin: 0;
}

/* =============================================================================
   28. WHO WE WORK WITH PAGE
   ============================================================================= */

.wwww-verticals-section {
    padding: var(--section-py) 0;
}

.wwww-verticals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .wwww-verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wwww-verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wwww-vertical-card {
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.wwww-vertical-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 6px;
}

.wwww-vertical-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wwww-vertical-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(68, 68, 68, 0.85);
    margin: 0;
    flex: 1;
}

.wwww-vertical-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sienna);
    text-decoration: none;
}

.wwww-vertical-link:hover {
    text-decoration: underline;
}

/* Disqualifiers list */
.wwww-disqualifiers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.wwww-disqualifier-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wwww-disqualifier-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--sienna);
    margin-top: 2px;
}

.wwww-disqualifier-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.wwww-disqualifier-item p:last-child {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(68, 68, 68, 0.8);
    margin: 0;
}

/* =============================================================================
   29. CONTACT PAGE
   ============================================================================= */

.contact-details-section {
    padding: var(--section-py) 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 900px) {
    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 0;
}

.contact-info-value {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.5;
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--sienna);
}

.contact-trust-bar {
    margin-top: 8px;
}

.contact-trust-label {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.6);
    margin-bottom: 10px;
}

.contact-trust-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
}

.contact-trust-item .trust-stars {
    color: var(--amber);
    font-size: 13px;
}

.contact-trust-item:hover {
    color: var(--sienna);
}

/* CTA card */
.contact-cta-card {
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    padding: 36px;
}

.contact-cta-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}

.contact-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 14px;
}

.contact-cta-body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(68, 68, 68, 0.85);
    margin-bottom: 20px;
}

.contact-cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-cta-checklist li {
    font-size: 14px;
    color: rgba(68, 68, 68, 0.85);
    padding-left: 20px;
    position: relative;
}

.contact-cta-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
    transform: rotate(-45deg);
}

.contact-cta-meta {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(68, 68, 68, 0.5);
    text-align: center;
}

/* Quick links */
.contact-links-section {
    padding: var(--section-py) 0;
}

.contact-links-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-links-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

@media (min-width: 768px) {
    .contact-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-link-card {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: var(--card-radius);
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: border-color 0.15s ease;
}

.contact-link-card:hover {
    border-color: var(--amber);
}

.contact-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--linen);
    border-radius: 10px;
    color: var(--amber);
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.contact-link-card:hover .contact-link-icon {
    background: rgba(254, 165, 0, 0.12);
}

.contact-link-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact-link-desc {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* =============================================================================
   30. REVIEWS PAGE
   ============================================================================= */

/* Platform bar in hero */
.reviews-platform-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    justify-content: center;
}

.reviews-platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: background 0.15s ease;
}

.reviews-platform-item:hover {
    background: rgba(255, 255, 255, 0.14);
}

.reviews-platform-stars {
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 1px;
}

.reviews-platform-score {
    font-weight: 700;
}

.reviews-platform-name {
    font-weight: 500;
}

.reviews-platform-cta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Review cards grid */
.reviews-featured-section {
    padding: var(--section-py) 0;
}

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

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.08);
    border-radius: var(--card-radius);
    padding: 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(68, 68, 68, 0.85);
    margin: 0 0 20px;
    flex: 1;
    font-style: italic;
}

.review-footer {
    border-top: 1px solid rgba(68, 68, 68, 0.1);
    padding-top: 16px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 2px;
}

.review-vertical {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.55);
    margin: 0;
}

/* Platform cards */
.reviews-platforms-section {
    padding: var(--section-py) 0;
}

.reviews-platforms-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

@media (max-width: 480px) {
    .reviews-platform-cards {
        grid-template-columns: 1fr;
    }
}

.reviews-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.08);
    border-radius: var(--card-radius);
    padding: 28px 20px;
    text-decoration: none;
    transition: border-color 0.15s ease;
}

.reviews-platform-card:hover {
    border-color: var(--amber);
}

.reviews-platform-card-stars {
    color: var(--amber);
    font-size: 20px;
    letter-spacing: 3px;
}

.reviews-platform-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.reviews-platform-card-cta {
    font-size: 13px;
    color: var(--sienna);
    margin: 0;
    font-weight: 500;
}

/* =============================================================================
   31. CASE STUDY PAGE
   ============================================================================= */

.cs-metrics-section {
    padding: var(--section-py) 0;
}

.cs-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .cs-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cs-metric-card {
    text-align: center;
    background: var(--linen);
    border: 1px solid rgba(68, 68, 68, 0.08);
    border-radius: var(--card-radius);
    padding: 32px 20px;
}

.cs-metric-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.cs-metric-label {
    font-size: 13px;
    color: rgba(68, 68, 68, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* Case study background section — two-column layout */
.cs-background-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .cs-background-inner {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.cs-background-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cs-background-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--card-radius);
    display: block;
}

/* =============================================================================
   32. PLACEHOLDER IMAGES (will be swapped for real photos)
   ============================================================================= */

/* Wide hero image inside channel pages (dark hero background) */
.channel-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 44px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Image inside creative / format cards */
.channel-creative-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

/* Full-width image break within a section */
.section-img-break {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-top: 28px;
    margin-bottom: 28px;
}

/* Homepage definition column — image fills full grid row height */
.definition-img-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* Mobile: tall portrait aspect ratio (vertical image feel) */
.hp-definition-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Desktop: break out of aspect-ratio and fill the full grid cell height */
@media (min-width: 1024px) {
    .hp-definition-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
    }
}

/* Homepage verticals photo strip (3-up) */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.photo-strip img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 600px) {
    .photo-strip { grid-template-columns: 1fr; }
    .photo-strip img { aspect-ratio: 16 / 9; }
}

/* Homepage results section image */
.hp-results-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-top: 48px;
}

/* Compliance section image */
.compliance-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-top: 28px;
}

/* Why Different — founder image, full-width rectangular */
.difference-portrait {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    display: block;
    margin-top: 28px;
}

/* =============================================================================
   27. SVG ICONS — PILLAR CARDS & STAT CALLOUT
   ============================================================================= */

/* Pillar card icon — amber stroke, sits above the card title */
.pillar-icon {
    width: 36px;
    height: 36px;
    color: var(--amber);
    display: block;
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* Stat callout: left column stacks the case-study badge on top of the number */
.stat-callout-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-callout-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-callout-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.stat-callout-case-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


/* =============================================================================
   28. ABOUT / SERVICES / DISCOVERY PAGE IMAGES
   ============================================================================= */

/* Service card image — sits naturally at top, card overflow:hidden clips corners */
.service-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Discovery info card image */
.discovery-info-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
}

/* About page: stat row icons */
.about-stat-icon {
    width: 28px;
    height: 28px;
    color: var(--amber);
    display: block;
}

/* Services page: pricing card icons */
.services-pricing-icon {
    width: 32px;
    height: 32px;
    color: var(--amber);
    display: block;
    margin-bottom: 12px;
}

/* Services page: framework pillar sidebar icons */
.services-pillar-icon {
    width: 20px;
    height: 20px;
    color: var(--amber);
    flex-shrink: 0;
}


/* =============================================================================
   29. BLOG INDEX PAGE
   ============================================================================= */

/* Compact hero — no image, reduced padding, centered text */
.channel-hero--compact {
    padding-block: 56px;
}

@media (min-width: 768px) {
    .channel-hero--compact {
        padding-block: 80px;
    }
}

/* --- Blog post grid --- */
.blog-posts-section { padding: var(--section-py) 0; }

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 600px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Blog post card --- */
.blog-post-card {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.blog-post-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.blog-post-card-img-link {
    display: block;
    text-decoration: none;
}

.blog-post-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-post-card:hover .blog-post-card-img {
    transform: scale(1.04);
}

.blog-post-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-card-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin: 0 0 8px;
}

.blog-post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
    color: var(--charcoal);
}

.blog-post-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-post-card-title a:hover {
    color: var(--amber);
}

.blog-post-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    line-height: 1.6;
    margin: 0 0 auto;
    padding-bottom: 14px;
}

.blog-post-card-meta {
    border-top: 1px solid rgba(68, 68, 68, 0.08);
    padding-top: 12px;
    margin-top: 4px;
}

.blog-post-card-date {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
}

/* --- Pagination --- */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid rgba(68, 68, 68, 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-pagination .page-numbers:hover {
    background: var(--amber);
    color: #fff;
    border-color: var(--amber);
}

.blog-pagination .page-numbers.current {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

/* --- Topic navigation --- */
.blog-topics-section { padding: var(--section-py) 0; }

.blog-topics-heading {
    text-align: center;
    margin-bottom: 28px;
}

/* --- Empty state --- */
.blog-empty-state {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px;
}

.blog-empty-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}


/* =============================================================================
   30. RESOURCES PAGE
   ============================================================================= */

.resources-section { padding: var(--section-py) 0; }
.resources-compliance-section { padding: var(--section-py) 0; }
.resources-case-section { padding: var(--section-py) 0; }
.resources-blog-section { padding: var(--section-py) 0; }

.resources-section-heading {
    margin-bottom: 12px;
}

.resources-section-intro {
    max-width: 720px;
    margin-bottom: 40px;
    color: var(--text-muted, #555);
}

/* --- Resource card grid (guides + blog) --- */
.resources-card-grid,
.resources-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .resources-card-grid,
    .resources-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .resources-card-grid,
    .resources-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Resource card --- */
.resource-card {
    background: #fff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.resource-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.resource-card-img-link {
    display: block;
    text-decoration: none;
}

.resource-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.resource-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.resource-card:hover .resource-card-img {
    transform: scale(1.04);
}

.resource-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resource-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin: 0 0 8px;
}

.resource-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
    color: var(--charcoal);
}

.resource-card-title a {
    color: inherit;
    text-decoration: none;
}

.resource-card-title a:hover {
    color: var(--amber);
}

.resource-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.resource-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--amber);
    text-decoration: none;
    margin-top: auto;
}

.resource-card-link:hover {
    text-decoration: underline;
}

/* --- Compliance grid --- */
.resources-compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .resources-compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .resources-compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resources-compliance-item {
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(68, 68, 68, 0.08);
}

.resources-compliance-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 10px;
}

.resources-compliance-body {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted, #555);
    margin: 0;
}

.resources-compliance-body a {
    color: var(--amber);
    font-weight: 600;
    text-decoration: none;
}

.resources-compliance-body a:hover {
    text-decoration: underline;
}

/* --- Case study callout --- */
.resources-case-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .resources-case-inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }

    .resources-case-copy {
        flex: 1;
    }


    .resources-case-stat {
        flex-shrink: 0;
        text-align: center;
        min-width: 180px;
    }
}

.resources-case-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin: 0 0 8px;
}

.resources-case-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.resources-case-copy h2 {
    margin-bottom: 12px;
}

.resources-case-copy .btn {
    margin-top: 28px;
}

/* --- Blog section CTA --- */
.resources-blog-cta {
    text-align: center;
    margin-top: 40px;
}


/* =============================================================================
   31. POLICY PAGES (privacy, terms, payments)
   ============================================================================= */

.policy-content-section { padding: var(--section-py) 0; }

.policy-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.9625rem;
    line-height: 1.75;
    color: #333;
}

.policy-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 40px 0 12px;
}

.policy-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 28px 0 8px;
}

.policy-content p {
    margin: 0 0 16px;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--amber);
    font-weight: 600;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content strong {
    font-weight: 700;
    color: var(--charcoal);
}


/* =============================================================================
   32. AUTHOR PAGE
   ============================================================================= */

.author-hero {
    padding: var(--section-py) 0;
    background-color: var(--charcoal);
}

.author-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author-hero-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--amber);
}

@media (min-width: 768px) {
    .author-avatar {
        width: 160px;
        height: 160px;
    }
}

.author-bio-copy {
    flex: 1;
}

.author-bio-copy h1 {
    color: #fff;
    margin-bottom: 4px;
}

.author-job-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin: 0 0 18px;
}

.author-bio-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-body-lg);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 640px;
}

.author-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.author-social-link:hover {
    color: var(--amber);
}

.author-posts-section { padding: var(--section-py) 0; }

.author-posts-heading {
    margin-bottom: 32px;
}


/* =============================================================================
   33. SINGLE BLOG POST
   ============================================================================= */

/* --- Post header --- */
.single-post-header {
    background-color: var(--charcoal);
    padding: 48px 0 40px;
}

.single-post-header-inner {
    max-width: 760px;
    margin: 0 auto;
}

.single-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.single-post-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.single-post-breadcrumb a:hover {
    color: var(--amber);
}

.single-post-cat-eyebrow {
    justify-content: flex-start;
}

.single-post-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 24px;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.single-post-author-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    transition: color 0.2s;
}

.single-post-author-link:hover {
    color: var(--amber);
}

.single-post-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.single-post-meta-sep {
    opacity: 0.4;
}

.single-post-date,
.single-post-read-time {
    color: rgba(255, 255, 255, 0.55);
}

/* --- Featured image --- */
.single-post-featured-img-wrap {
    background: var(--charcoal);
    padding-bottom: 40px;
}

.single-post-featured-img-wrap .container {
    max-width: 900px;
}

.single-post-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* --- Article content section --- */
.single-post-content-section { padding: var(--section-py) 0; }

.single-post-content-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* --- Prose styles inside .entry-content --- */
.single-post-content.entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content.entry-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 48px 0 14px;
}

.single-post-content.entry-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 36px 0 10px;
}

.single-post-content.entry-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 28px 0 8px;
}

.single-post-content.entry-content p {
    margin: 0 0 20px;
}

.single-post-content.entry-content ul,
.single-post-content.entry-content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.single-post-content.entry-content li {
    margin-bottom: 10px;
}

.single-post-content.entry-content a {
    color: var(--amber);
    font-weight: 600;
    text-decoration: none;
}

.single-post-content.entry-content a:hover {
    text-decoration: underline;
}

.single-post-content.entry-content blockquote {
    border-left: 4px solid var(--amber);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--linen);
    border-radius: 0 6px 6px 0;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--charcoal);
}

.single-post-content.entry-content blockquote p:last-child {
    margin: 0;
}

.single-post-content.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 8px 0 24px;
    display: block;
}

.single-post-content.entry-content hr {
    border: none;
    border-top: 1px solid rgba(68, 68, 68, 0.12);
    margin: 40px 0;
}

/* --- Tags --- */
.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(68, 68, 68, 0.1);
}

.single-post-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--linen);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.single-post-tag:hover {
    background: var(--amber);
    color: #fff;
}

/* --- Author bio box --- */
.single-post-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--linen);
    border-radius: 10px;
    margin-top: 48px;
}

.single-post-author-box-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.single-post-author-box-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted, #888);
    margin: 0 0 4px;
}

.single-post-author-box-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    margin-bottom: 8px;
}

.single-post-author-box-name:hover {
    color: var(--amber);
}

.single-post-author-box-bio {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* --- Post navigation --- */
.single-post-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(68, 68, 68, 0.1);
}

@media (min-width: 640px) {
    .single-post-nav {
        flex-direction: row;
        justify-content: space-between;
    }
}

.single-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    max-width: 320px;
}

.single-post-nav-next {
    align-items: flex-end;
    margin-left: auto;
}

.single-post-nav-direction {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
}

.single-post-nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    transition: color 0.2s;
}

.single-post-nav-link:hover .single-post-nav-title {
    color: var(--amber);
}

/* --- Related posts section --- */
.single-post-related { padding: var(--section-py) 0; }

.single-post-related-heading {
    margin-bottom: 32px;
}

.single-post-related-cta {
    text-align: center;
    margin-top: 40px;
}


/* =============================================================================
   34. 404 PAGE
   ============================================================================= */

.error-404-hero {
    padding: var(--section-py) 0;
    text-align: center;
    background-color: var(--charcoal);
}

.error-404-inner {
    max-width: 680px;
    margin: 0 auto;
}

.error-404-code {
    font-size: clamp(5rem, 16vw, 9rem);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: -0.04em;
}

.error-404-inner h1 {
    color: #fff;
    margin-bottom: 16px;
}

.error-404-message {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--text-body-lg);
    line-height: 1.65;
    margin: 0 0 32px;
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Helpful links section */
.error-404-links-section { padding: var(--section-py) 0; }

.error-404-links-heading {
    margin-bottom: 36px;
}

.error-404-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .error-404-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.error-404-link-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin: 0 0 14px;
}

.error-404-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.error-404-link-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.error-404-link-list a:hover {
    color: var(--amber);
}

/* Outline light button variant for 404 dark hero */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}


/* =============================================================================
   35. SEARCH RESULTS PAGE
   ============================================================================= */

.search-results-section { padding: var(--section-py) 0; }

/* --- Search form in hero --- */
.search-hero-form {
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 28px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-hero-form:focus-within {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.14);
}

.search-hero-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
}

.search-hero-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-hero-btn {
    flex-shrink: 0;
    background: var(--amber);
    border: none;
    padding: 0 18px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.search-hero-btn:hover {
    background: #c8880a;
}

/* --- No results state --- */
.search-no-results-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 12px;
}

.search-no-results-suggestions {
    margin-top: 40px;
    text-align: left;
    background: var(--linen);
    border-radius: 10px;
    padding: 28px 32px;
}

.search-suggestions-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin: 0 0 16px;
}

.search-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 480px) {
    .search-suggestions-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-suggestions-list a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.search-suggestions-list a:hover {
    color: var(--amber);
}


/* =============================================================================
   36. MEGA-MENU NAVIGATION
   ============================================================================= */

/* ── Nav trigger (button styled as nav link) ── */
.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 6px 8px;
    border-radius: 6px;
    line-height: 1;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-trigger:hover,
.nav-trigger:focus-visible {
    color: var(--amber);
    outline: none;
}

/* ── Chevron ── */
.nav-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-trigger[aria-expanded="true"] .nav-chevron,
.nav-item--has-dropdown:hover .nav-trigger .nav-chevron {
    transform: rotate(180deg);
}

/* ── Parent li ── */
.nav-item--has-dropdown {
    position: relative;
}

/* ── Dropdown panel ── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 300;
}

/* Visible states — hover OR JS aria-expanded */
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-trigger[aria-expanded="true"] + .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown widths */
.nav-dropdown--services   { width: 600px; }
.nav-dropdown--industries { width: 640px; }
.nav-dropdown--resources  { width: 500px; }

/* Keep right-most dropdowns from overflowing viewport */
.nav-item--has-dropdown:last-of-type .nav-dropdown {
    left: auto;
    right: 0;
}

/* ── 2-column grid inside panel ── */
.nav-dd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

/* ── Hub row (full-width, amber tint) ── */
.nav-dd-hub {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 14px !important;
    background: rgba(251, 164, 0, 0.07);
    border: 1px solid rgba(251, 164, 0, 0.2);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.nav-dd-hub:hover {
    background: rgba(251, 164, 0, 0.13);
    border-color: rgba(251, 164, 0, 0.4);
}

.nav-dd-hub .nav-dd-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 164, 0, 0.15);
}

/* ── Individual dropdown item ── */
.nav-dd-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dd-item:hover {
    background: var(--linen);
}

/* ── Icon container ── */
.nav-dd-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(251, 164, 0, 0.12);
    color: var(--amber);
}

.nav-dd-icon svg,
.nav-dd-icon i {
    width: 18px;
    height: 18px;
}

/* Lucide renders <svg> inside <i> — ensure correct sizing */
.nav-dd-icon i svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* ── Text column ── */
.nav-dd-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dd-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

.nav-dd-desc {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.4;
}

/* ── Mobile nav panel ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    padding: 20px 20px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    overflow-y: auto;
    max-height: calc(100vh - 70px);
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 12px 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s;
}

.mobile-nav-list > li > a:hover {
    color: var(--amber);
}

/* ── Mobile accordion group ── */
.mobile-nav-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    transition: color 0.2s;
}

.mobile-nav-group-trigger:hover {
    color: var(--amber);
}

.mobile-nav-group-trigger .nav-chevron {
    color: inherit;
}

.mobile-nav-group-trigger[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* Sub-menu — hidden by default, shown via JS .is-open */
.mobile-nav-sub {
    display: none;
    flex-direction: column;
    padding: 4px 0 12px 12px;
    gap: 2px;
}

.mobile-nav-sub.is-open {
    display: flex;
}

.mobile-nav-sub a {
    display: block;
    padding: 8px 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-sub a:hover {
    background: rgba(251, 164, 0, 0.08);
    color: var(--amber);
}

/* Mobile CTA button spacing */
.mobile-nav .btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* ── Prevent body scroll when mobile nav is open ── */
body.nav-open {
    overflow: hidden;
}

/* ==============================================
   Section 37: WHO-WE-WORK-WITH - Verticals prose grid
   ============================================== */

/* Full-bleed visual break image */
.wwww-visual-break { overflow: hidden; line-height: 0; }
.wwww-visual-break img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .wwww-visual-break img { height: 420px; }
}

.wwww-verticals-prose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 768px) {
    .wwww-verticals-prose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0;
    }
}

.wwww-vertical-prose-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.wwww-vertical-prose-item h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.wwww-vertical-prose-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* =============================================================================
   33. BLOG CARD GRID
   ============================================================================= */

.blog-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .blog-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: var(--linen);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.blog-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin: 0 0 0.75rem;
    text-decoration: none;
}

.blog-card:hover .blog-card-title {
    color: var(--amber);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 1rem;
    flex: 1;
}

.blog-card-byline {
    font-size: 0.8125rem;
    color: #888;
    margin-top: auto;
}

/* =============================================================================
   34. DATA TABLES (convert-more-leads + similar resource pages)
   ============================================================================= */

.table-overflow {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.6;
    background: #fff;
}

.data-table th {
    background: var(--charcoal);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 0.875rem 1.125rem;
    font-size: 0.8375rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.data-table td {
    padding: 0.8125rem 1.125rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    vertical-align: top;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
    background: #f0f2f4;
}

@media (max-width: 599px) {
    .data-table th,
    .data-table td {
        padding: 0.6875rem 0.875rem;
        font-size: 0.8125rem;
    }
}

/* =============================================================================
   35. AUTHOR PAGE — social links pill row
   ============================================================================= */

.author-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.author-social-list li {
    margin: 0;
}

.author-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    border: 1.5px solid var(--amber);
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.16s ease, color 0.16s ease;
}

.author-social-list a:hover {
    background: var(--amber);
    color: #fff;
}

/* =============================================================================
   37. BLOCKQUOTE — reviews and case study pages
   ============================================================================= */

blockquote {
    border-left: 4px solid var(--amber);
    margin: 1.5rem 0;
    padding: 0.875rem 1.25rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--charcoal);
    margin: 0 0 0.4rem;
    line-height: 1.65;
}

blockquote cite {
    font-size: 0.875rem;
    color: #666;
    font-style: normal;
}

/* =============================================================================
   38. BLOG POST — author meta line
   ============================================================================= */

.channel-hero-meta {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.channel-hero-meta a {
    color: var(--amber);
    text-decoration: none;
}

.channel-hero-meta a:hover {
    text-decoration: underline;
}

/* =============================================================================
   39. LEGAL CONTENT — spacing overrides for dense legal text
   ============================================================================= */

.legal-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
}

.legal-content p + p {
    margin-top: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

/* =============================================================================
   36. PROSE SECTION — list and h3 spacing
   ============================================================================= */

/* Space above and below bullet/numbered lists inside prose sections */
.channel-prose-inner ul,
.channel-prose-inner ol,
.channel-prose-inner--wide ul,
.channel-prose-inner--wide ol {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    padding-left: 1.5rem;
}

.channel-prose-inner li,
.channel-prose-inner--wide li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

/* Space above and below h3 subheadings inside prose sections */
.channel-prose-inner h3,
.channel-prose-inner--wide h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* =============================================================================
   40. REVIEW CARDS — /reviews page
   ============================================================================= */

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.125rem;
    margin-top: 1.75rem;
}

@media (min-width: 640px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.375rem 1.375rem 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.review-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--charcoal);
    color: #fff;
    font-weight: 700;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.review-card-meta {
    flex: 1;
    min-width: 0;
}

.review-card-name {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.9375rem;
    margin: 0 !important;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card-date {
    font-size: 0.8rem;
    color: #999;
    margin: 0 !important;
    line-height: 1.3;
}

.review-card-role {
    font-size: 0.8rem;
    color: #777;
    margin: 0 !important;
    line-height: 1.3;
}

.review-card-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-card-text {
    font-size: 0.9rem;
    line-height: 1.68;
    color: #444;
    margin: 0;
    flex: 1;
}

.review-card-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 0.625rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* =============================================================================
   41. REVIEW THEMES GRID
   ============================================================================= */

.review-themes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .review-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .review-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-theme-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1.375rem 1.375rem 1.25rem;
}

.review-theme-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 183, 0, 0.12);
    color: var(--amber);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.review-theme-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--amber);
    stroke-width: 2;
    fill: none;
}

.review-theme-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin: 0 0 0.375rem !important;
    line-height: 1.3;
}

.review-theme-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 !important;
}

/* =============================================================================
   42. NEWSLETTER SIGNUP FORM — /email-sign-up
   ============================================================================= */

.newsletter-form-card-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin: 0 0 0.625rem !important;
}

.newsletter-form-card-sub {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.75rem !important;
}

.newsletter-form {
    width: 100%;
    margin-top: 0;
}

.newsletter-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .newsletter-form-fields {
        grid-template-columns: 1fr 1fr;
    }
}

.newsletter-form-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.newsletter-form-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--charcoal);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-form-field input:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.15);
}

.newsletter-submit-btn {
    width: 100%;
    text-align: center;
    border: none;
    font-family: inherit;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.newsletter-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-form-error {
    font-size: 0.875rem;
    color: #d04040;
    margin: 0 0 0.75rem !important;
}

.newsletter-form-disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0 !important;
}

.newsletter-success {
    max-width: 480px;
    margin-top: 1.5rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 183, 0, 0.06);
    border: 1.5px solid rgba(255, 183, 0, 0.2);
    border-radius: 14px;
}

.newsletter-success-icon {
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: block;
}

.newsletter-success-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--charcoal);
    margin: 0 0 0.375rem !important;
}

.newsletter-success-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0 !important;
}

/* =============================================================================
   43. MOBILE NAV — fixed slide-in drawer (overrides earlier mobile-nav rules)
   ============================================================================= */

/* Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.28s ease;
}

body.nav-open .mobile-nav-backdrop {
    display: block;
    opacity: 1;
}

/* Drawer panel */
.mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(340px, 100vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #fff !important;
    z-index: 999 !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.mobile-nav.is-open {
    transform: translateX(0) !important;
}

/* Panel header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.mobile-nav-logo img {
    display: block;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
}

.mobile-nav-close:hover {
    color: var(--amber);
    background: rgba(0, 0, 0, 0.04);
}

/* Scrollable body */
.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 16px;
}

/* Nav list items */
.mobile-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.mobile-nav-link {
    display: block;
    padding: 13px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.15s ease;
}

.mobile-nav-link:hover {
    color: var(--amber);
}

/* Accordion group */
.mobile-nav-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-group-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s ease;
}

.mobile-nav-group-trigger:hover {
    color: var(--amber);
}

.mobile-nav-group-trigger .nav-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.mobile-nav-group-trigger[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* Sub-menu */
.mobile-nav-sub {
    display: none;
    flex-direction: column;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-sub.is-open {
    display: flex;
}

.mobile-nav-sub a {
    display: block;
    padding: 11px 20px 11px 32px;
    font-size: 0.875rem;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color 0.15s ease;
}

.mobile-nav-sub a:last-child {
    border-bottom: none;
}

.mobile-nav-sub a:hover {
    color: var(--amber);
}

/* Sticky footer CTA */
.mobile-nav-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.mobile-nav-cta {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: block;
    white-space: normal;     /* override btn's nowrap so text can wrap on 320px */
    font-size: 0.9375rem;
}

@media (max-width: 340px) {
    .mobile-nav-footer {
        padding: 14px 12px 20px;
    }
    .mobile-nav-cta {
        font-size: 0.875rem;
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Prevent body scroll when drawer open */
body.nav-open {
    overflow: hidden;
}

/* =============================================================================
   43. RESOURCE CARDS — /resources page
   ============================================================================= */

.resource-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .resource-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .resource-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resource-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.resource-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.resource-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.resource-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resource-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
}

.resource-thumb-badge {
    background: var(--amber);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.resource-card-body {
    padding: 1.375rem 1.375rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
}

.resource-card-title {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--charcoal);
    margin: 0 !important;
    line-height: 1.35;
}

.resource-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0 !important;
    flex: 1;
}

.resource-download-btn {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* =============================================================================
   44. RESOURCE GATE MODAL
   ============================================================================= */

.resource-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.resource-modal-backdrop.is-open {
    display: block;
    opacity: 1;
}

.resource-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1101;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.resource-modal.is-open {
    display: flex;
}

.resource-modal-inner {
    background: #fff;
    border-radius: 18px;
    padding: 2.25rem 2rem 2rem;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1); }
}

.resource-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.375rem;
    color: #aaa;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
}

.resource-modal-close:hover {
    color: var(--charcoal);
    background: rgba(0, 0, 0, 0.05);
}

.resource-modal-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin: 0 0 0.5rem !important;
}

.resource-modal-title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.375rem !important;
    line-height: 1.3;
}

.resource-modal-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.375rem !important;
    line-height: 1.55;
}

.resource-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.125rem;
}

.resource-form-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.resource-form-field input {
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.resource-form-field input:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.15);
}

.resource-form-submit {
    width: 100%;
    text-align: center;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.resource-modal-disclaimer {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin: 0.625rem 0 0 !important;
}

/* Success state */
.resource-modal-success {
    text-align: center;
    padding: 0.5rem 0;
}

.resource-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 183, 0, 0.12);
    color: var(--amber);
    font-size: 1.75rem;
    margin-bottom: 1.125rem;
}

.resource-success-title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.5rem !important;
}

.resource-success-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 !important;
}

/* =============================================================================
   CASE STUDIES INDEX PAGE — card tag, result stat, cta
   ============================================================================= */

.cs-card-grid {
    margin-top: 1.75rem;
}

.cs-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--amber);
    margin-bottom: 0.375rem;
}

.cs-card-result {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.625rem !important;
    line-height: 1.4;
}

.cs-card-cta {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber);
    margin-top: 0.75rem;
    text-decoration: none;
}

.cs-card:hover .cs-card-cta {
    text-decoration: underline;
}

/* =============================================================================
   VST CASE STUDY — video embed + impact grid
   ============================================================================= */

/* Responsive 16:9 YouTube embed */
.vst-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.vst-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

/* Impact grid — 2 col mobile, 4 col desktop */
.vst-impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 580px) {
    .vst-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .vst-impact-grid { grid-template-columns: repeat(4, 1fr); }
}

.vst-impact-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 1.375rem;
}

.vst-impact-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin: 0 0 0.5rem !important;
}

.vst-impact-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 !important;
}
