/*
Theme Name: Benchmark Business Research
Theme URI: https://benchmarkbusinessresearch.com
Author: Benchmark Business Research
Description: Bespoke single-page theme for Benchmark Business Research — AI-delivered research reports for business owners. Converted from the original static design with WooCommerce support.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
Text Domain: bbr
*/

:root {
    --ink: #0A0A0B;
    --ink-soft: #2A2A2E;
    --text: #3F3F46;
    --muted: #71717A;
    --muted-soft: #A1A1AA;
    --line: #EAEAEC;
    --line-soft: #F4F4F5;
    --bg: #FFFFFF;
    --bg-alt: #FAFAFA;
    --bg-wash: #F6F7F9;
    --blue: #1E6FD9;
    --blue-hover: #1858B2;
    --blue-soft: #E8F0FC;
    --blue-light: #4A9BE8;
    --navy: #0C2A5E;
    --navy-deep: #081E47;
    --orange: #E8833C;
    --orange-soft: #FEF1E6;
    --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'Geist Mono', ui-monospace, monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  ::selection { background: var(--ink); color: var(--bg); }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .container-wide {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ========== BENCHMARK LOGO (SVG) ========== */
  .bm-logo {
    display: inline-block;
    line-height: 0;
  }

  .bm-logo svg {
    height: 100%;
    width: auto;
    display: block;
  }

  /* ========== NAV ========== */
  nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 32px);
    max-width: 1200px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
  }

  nav.scrolled {
    box-shadow: 0 8px 32px -12px rgba(10,10,11,0.12);
  }

  .nav-logo {
    height: 34px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .nav-logo img {
    height: 100%;
    width: auto;
    display: block;
  }

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

  .nav-links > li > a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.2s;
  }

  .nav-links > li > a:hover {
    background: var(--line-soft);
    color: var(--ink);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.005em;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--orange);
    color: var(--ink);
  }

  .btn-primary:hover {
    background: #D87430;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(232,131,60,0.5);
  }

  .btn-primary .arrow {
    transition: transform 0.25s;
    display: inline-block;
  }

  .btn-primary:hover .arrow { transform: translateX(3px); }

  .btn-ghost {
    background: var(--blue);
    color: var(--bg);
  }

  .btn-ghost:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(30,111,217,0.5);
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* ========== HERO ========== */
  .hero {
    padding: 150px 0 72px;
    position: relative;
    text-align: center;
    overflow: hidden;
  }

  /* Portrait background image — Variant B treatment */
  .hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("assets/img/img-19.jpg");
    background-size: cover;
    background-position: right 35% center;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
  }

  /* White wash overlay — fades image left to right */
  .hero-bg-wash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 45%, rgba(255,255,255,0.55) 75%, rgba(255,255,255,0.5) 100%),
      linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Soft brand glows kept on top for atmosphere */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 900px;
    pointer-events: none;
    z-index: 2;
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30,111,217,0.10) 0%, rgba(30,111,217,0.04) 30%, transparent 70%);
    filter: blur(40px);
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,131,60,0.08) 0%, transparent 70%);
    filter: blur(40px);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-brand {
    display: flex;
    justify-content: center;
    margin: 0 auto 48px;
  }

  .hero-brand img {
    height: 88px;
    width: auto;
    display: block;
    max-width: 100%;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.5));
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: 0 1px 2px rgba(10,10,11,0.04);
  }

  .eyebrow-badge {
    background: var(--ink);
    color: var(--bg);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    color: var(--blue);
    text-shadow: 0 2px 16px rgba(255,255,255,0.65);
  }

  .hero-sub {
    font-size: 20px;
    line-height: 1.45;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-shadow: 0 1px 8px rgba(255,255,255,0.8);
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }

  .hero-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
  }

  .meta-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  }

  .meta-pill .mono {
    font-family: var(--mono);
    color: var(--muted);
    font-size: 12px;
  }

  /* ===== ENTERPRISE CLIENTS (hero) ===== */
  .enterprise-clients {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .enterprise-label {
    font-family: var(--mono);
    font-size: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(255,255,255,0.85);
  }

  .enterprise-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
  }

  .client-logo:hover {
    transform: translateY(-2px);
  }

  .client-logo img {
    height: 68px;
    max-width: 300px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(255,255,255,0.9)) drop-shadow(0 0 6px rgba(255,255,255,0.7));
  }

  @media (max-width: 600px) {
    .enterprise-logos { gap: 24px; }
    .client-logo img { height: 48px; max-width: 200px; }
  }

  /* ========== IMAGE PLACEHOLDERS ========== */
  .image-placeholder-wrap {
    padding: 32px 0;
  }

  .image-placeholder {
    border: 1.5px dashed var(--muted-soft);
    border-radius: 16px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    text-align: center;
    padding: 40px 24px;
    position: relative;
    transition: border-color 0.2s;
  }

  .image-placeholder:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .ph-slot {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 4px 10px;
    background: var(--blue-soft);
    border-radius: 999px;
    margin-bottom: 4px;
  }

  .ph-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid currentColor;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    opacity: 0.7;
  }

  .ph-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
  }

  .ph-dims {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted);
  }

  .ph-hint {
    font-size: 13px;
    color: var(--muted);
    max-width: 460px;
    margin-top: 4px;
    line-height: 1.5;
  }

  /* Wide (full-bleed feel) placeholder */
  .image-placeholder.wide {
    min-height: 360px;
  }

  .image-placeholder.tall {
    min-height: 440px;
  }

  /* Dark variant for navy sections */
  .image-placeholder.on-dark {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.65);
  }

  .image-placeholder.on-dark .ph-label {
    color: var(--bg);
  }

  .image-placeholder.on-dark .ph-slot {
    background: rgba(127,176,237,0.15);
    color: #9CC3F0;
  }

  .image-placeholder.on-dark .ph-dims,
  .image-placeholder.on-dark .ph-hint {
    color: rgba(255,255,255,0.55);
  }

  /* ===== REAL HERO IMAGE (slot 1) ===== */
  .hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px -25px rgba(10,10,11,0.22), 0 10px 28px -10px rgba(10,10,11,0.10);
    line-height: 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ===== CONTENT IMAGES (slots 2, 3, 4) ===== */
  .content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px -25px rgba(10,10,11,0.22), 0 10px 28px -10px rgba(10,10,11,0.10);
    line-height: 0;
    position: relative;
  }

  .content-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Dark-background variant for the Approach section */
  .content-image-dark {
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  }

  /* ========== SECTIONS ========== */
  section { position: relative; }

  .section-padding { padding: 140px 0; }

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

  .section-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 24px;
    color: var(--blue);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    text-transform: uppercase;
  }

  .section-title {
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .section-sub {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text);
    max-width: 580px;
    margin: 0 auto;
  }

  /* Navigator button + callout (Reports section) */
  .navigator-button {
    display: inline-block;
    margin: 36px auto 24px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: drop-shadow(0 12px 32px rgba(30,111,217,0.35));
    cursor: pointer;
  }

  .navigator-button:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 16px 40px rgba(30,111,217,0.5));
  }

  .navigator-button img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
  }

  .navigator-callout {
    font-size: 22px;
    line-height: 1.4;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 720px;
    margin: 0 auto 32px;
  }

  /* Reports section subtitle — bigger, bolder than other section subs */
  #reports .section-sub {
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    max-width: 640px;
  }

  @media (max-width: 600px) {
    .navigator-button { width: 140px; height: 140px; margin: 28px auto 20px; }
    .navigator-callout { font-size: 17px; }
  }

  /* ========== REPORTS ========== */
  .reports-section {
    background: var(--bg);
    padding: 120px 0;
    border-top: 1px solid var(--line);
  }

  .reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .report-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    position: relative;
    overflow: hidden;
  }

  .report-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,111,217,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .report-card:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -16px rgba(10,10,11,0.12);
  }

  .report-card:hover::before { opacity: 1; }

  .report-card:hover .report-cta-arrow {
    transform: translate(3px, -3px);
  }

  .report-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }

  .report-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  .report-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-wash);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
  }

  .report-icon svg { width: 18px; height: 18px; }

  .report-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--ink);
  }

  .report-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 28px;
    flex-grow: 1;
  }

  .report-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
  }

  .report-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
  }

  .report-price .from {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    margin-right: 6px;
    text-transform: uppercase;
  }

  .report-cta-arrow {
    width: 32px;
    height: 32px;
    background: var(--ink);
    border-radius: 50%;
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.25s;
  }

  .report-card.featured {
    background: linear-gradient(135deg, #FAFBFF 0%, #F5F8FD 100%);
    border-color: var(--blue-soft);
  }

  .report-card.featured .report-icon {
    background: var(--blue-soft);
    color: var(--blue);
  }

  .featured-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--mono);
    color: #FFFFFF;
    background: var(--orange);
    padding: 5px 12px;
    border-radius: 6px;
    margin-left: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  @media (max-width: 960px) {
    .reports-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .reports-grid { grid-template-columns: 1fr; }
  }

  /* ===== ENTERPRISE / CUSTOM RESEARCH STRIP ===== */
  .enterprise-strip {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 16px;
    text-decoration: none;
    color: var(--bg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  }

  .enterprise-strip::before {
    content: '';
    position: absolute;
    top: -120px;
    right: 10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(74,155,232,0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }

  .enterprise-strip:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -20px rgba(12,42,94,0.5);
  }

  .enterprise-strip:hover .enterprise-strip-btn .arrow {
    transform: translateX(4px);
  }

  .enterprise-strip-main {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .enterprise-strip-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(74,155,232,0.15);
    border: 1px solid rgba(74,155,232,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CC3F0;
  }

  .enterprise-strip-icon svg { width: 26px; height: 26px; }

  .enterprise-strip-text h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
    color: var(--bg);
  }

  .enterprise-strip-text p {
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
    max-width: 640px;
  }

  .enterprise-strip-action {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .enterprise-strip-price {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--bg);
    text-align: right;
  }

  .enterprise-strip-price .poa-label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
  }

  .enterprise-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--orange);
    color: var(--ink);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  }

  .enterprise-strip-btn .arrow {
    transition: transform 0.25s;
    display: inline-block;
  }

  @media (max-width: 820px) {
    .enterprise-strip {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding: 28px;
    }
    .enterprise-strip-action {
      width: 100%;
      justify-content: space-between;
    }
  }

  @media (max-width: 480px) {
    .enterprise-strip-main { flex-direction: column; align-items: flex-start; gap: 16px; }
  }

  /* ========== PROCESS ========== */
  .process-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .step-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    position: relative;
  }

  .step-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .step-num::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--line);
  }

  .step-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  .step-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
  }

  .step-glyph {
    width: 36px;
    height: 36px;
    background: var(--bg-wash);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ink);
  }

  .step-glyph svg { width: 18px; height: 18px; }

  @media (max-width: 960px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .process-grid { grid-template-columns: 1fr; }
  }

  /* ========== APPROACH (Navy) ========== */
  .approach-section {
    background: var(--navy);
    background-image: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--bg);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }

  .approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74,155,232,0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }

  .approach-section .section-label { color: #9CC3F0; }
  .approach-section .section-title { color: var(--bg); }

  .approach-section .section-title .gradient {
    background: linear-gradient(135deg, #9CC3F0 0%, #E8833C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 400;
  }

  .approach-section .section-sub {
    color: rgba(255,255,255,0.78);
  }

  .approach-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    position: relative;
  }

  .approach-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
  }

  .approach-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(74,155,232,0.15);
    border: 1px solid rgba(74,155,232,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #9CC3F0;
  }

  .approach-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .approach-card p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
  }

  @media (max-width: 900px) {
    .approach-points { grid-template-columns: 1fr; }
  }

  /* ========== DEEPDIVE / FLIPBOOK ========== */
  .deepdive-section {
    padding: 140px 0;
    background: var(--bg);
  }

  .deepdive-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
  }

  .deepdive-content .section-label { color: var(--orange); }

  .deepdive-content h2 {
    font-size: clamp(32px, 3.6vw, 46px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .deepdive-content > p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 32px;
  }

  .deepdive-list {
    list-style: none;
    margin-bottom: 36px;
  }

  .deepdive-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    color: var(--ink);
  }

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

  .check {
    width: 18px;
    height: 18px;
    background: var(--blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
  }

  .check svg { width: 10px; height: 10px; }

  /* ===== FLIPBOOK ===== */
  .flipbook-wrap {
    position: relative;
  }

  .flipbook-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: 0 8px 20px -6px rgba(10,10,11,0.3);
    white-space: nowrap;
  }

  .flipbook-badge .dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  }

  .flipbook-frame {
    width: 100%;
    aspect-ratio: 1 / 1.29;
    max-height: 640px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(10,10,11,0.18), 0 8px 20px -8px rgba(10,10,11,0.08);
    overflow: hidden;
    position: relative;
  }

  .pages-container {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }

  .flip-page {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: var(--bg);
    padding: 36px 32px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* Page — PDF image variant */
  .flip-page-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .flip-page-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
  }

  /* Page — cover */
  .flip-page.cover {
    background: linear-gradient(135deg, #0D2E5F 0%, #0C2A5E 60%, #081E47 100%);
    color: var(--bg);
    justify-content: space-between;
    padding: 40px 36px;
  }

  .cover-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cover-orange {
    width: 18px;
    height: 18px;
    background: var(--orange);
  }

  .cover-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
  }

  .cover-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 40px;
  }

  .cover-client-block {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .cover-client-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
  }

  .cover-client-name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .cover-foot {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }

  /* Page — standard structure */
  .flip-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--ink);
    margin-bottom: 24px;
  }

  .flip-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .flip-brand-mark {
    width: 14px;
    height: 14px;
    position: relative;
  }

  .flip-brand-mark::before, .flip-brand-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--ink);
  }

  .flip-brand-mark::after { inset: 3.5px; }

  .flip-brand-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .flip-brand-text span {
    font-weight: 300;
    color: var(--muted);
  }

  .flip-page-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  .flip-section-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .flip-h {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }

  .flip-p {
    font-size: 12px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .flip-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* TOC page */
  .flip-toc-list {
    list-style: none;
    margin-top: 8px;
  }

  .flip-toc-list li {
    display: flex;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 12px;
    gap: 14px;
  }

  .flip-toc-list .toc-num {
    font-family: var(--mono);
    color: var(--muted);
    width: 26px;
  }

  .flip-toc-list .toc-item {
    flex: 1;
    color: var(--ink);
  }

  .flip-toc-list .toc-page {
    font-family: var(--mono);
    color: var(--muted);
  }

  /* Chart page */
  .flip-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 110px;
    margin: 14px 0 8px;
    padding: 14px;
    background: var(--bg-wash);
    border-radius: 8px;
  }

  .flip-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--blue), var(--blue-hover));
    border-radius: 3px 3px 0 0;
  }

  .flip-bar:nth-child(1) { height: 40%; }
  .flip-bar:nth-child(2) { height: 62%; }
  .flip-bar:nth-child(3) { height: 85%; }
  .flip-bar:nth-child(4) { height: 50%; }
  .flip-bar:nth-child(5) { height: 95%; background: linear-gradient(180deg, var(--orange), #C56D2F); }
  .flip-bar:nth-child(6) { height: 55%; }
  .flip-bar:nth-child(7) { height: 72%; }

  .flip-chart-labels {
    display: flex;
    gap: 8px;
    padding: 0 14px;
    margin-bottom: 16px;
  }

  .flip-chart-labels span {
    flex: 1;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    text-align: center;
  }

  /* Callout page */
  .flip-callout {
    background: var(--blue-soft);
    border-left: 3px solid var(--blue);
    border-radius: 4px;
    padding: 18px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    margin: 10px 0 20px;
    letter-spacing: -0.01em;
  }

  /* Recommendations */
  .flip-rec-list {
    list-style: none;
    counter-reset: rec;
  }

  .flip-rec-list li {
    counter-increment: rec;
    padding: 13px 0 13px 36px;
    position: relative;
    border-bottom: 1px solid var(--line-soft);
    font-size: 12px;
    color: var(--ink);
    line-height: 1.5;
  }

  .flip-rec-list li::before {
    content: counter(rec, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 13px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--blue);
    font-weight: 500;
  }

  .flip-rec-list li strong {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--ink);
  }

  .flip-rec-list li span {
    color: var(--text);
  }

  /* Table page */
  .flip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-top: 8px;
  }

  .flip-table th, .flip-table td {
    padding: 9px 6px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .flip-table th {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--bg-wash);
    font-weight: 500;
  }

  .flip-table td.num {
    text-align: right;
    font-family: var(--mono);
  }

  .flip-table .cell-pos { color: #16A34A; font-weight: 500; }
  .flip-table .cell-neg { color: #DC2626; font-weight: 500; }

  /* Closing page */
  .flip-page.closing {
    background: var(--bg-alt);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .closing-mark {
    width: 40px;
    height: 40px;
    position: relative;
    margin-bottom: 24px;
  }

  .closing-mark::before, .closing-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--ink);
  }

  .closing-mark::after { inset: 10px; }

  .flip-page.closing h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }

  .flip-page.closing p {
    font-size: 12px;
    color: var(--muted);
  }

  /* ===== FLIPBOOK CONTROLS ===== */
  .flipbook-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
  }

  .flip-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
  }

  .flip-btn:hover:not(:disabled) {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }

  .flip-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .flip-counter {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text);
  }

  .flip-progress {
    width: 140px;
    height: 4px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
  }

  .flip-progress-bar {
    height: 100%;
    background: var(--ink);
    transition: width 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 999px;
  }

  .flipbook-caption {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
    font-style: italic;
  }

  @media (max-width: 900px) {
    .deepdive-inner { grid-template-columns: 1fr; gap: 60px; }
    .flipbook-frame { max-height: 560px; }
  }

  /* ========== FAQ ========== */
  .faq-section {
    padding: 140px 0;
    border-top: 1px solid var(--line);
  }

  .faq-wrap {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
  }

  .faq-item:hover { border-color: var(--muted-soft); }

  .faq-item.open {
    background: var(--bg-alt);
    border-color: var(--ink);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    letter-spacing: -0.01em;
  }

  .faq-q .plus {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .faq-q .plus::before, .faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
  }

  .faq-q .plus::before {
    top: 50%; left: 30%; right: 30%;
    height: 1.5px;
    transform: translateY(-50%);
  }

  .faq-q .plus::after {
    left: 50%; top: 30%; bottom: 30%;
    width: 1.5px;
    transform: translateX(-50%);
    transition: transform 0.3s;
  }

  .faq-item.open .plus { background: var(--ink); }
  .faq-item.open .plus::before,
  .faq-item.open .plus::after { background: var(--bg); }
  .faq-item.open .plus::after { transform: translateX(-50%) scaleY(0); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    padding: 0 24px;
  }

  .faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 24px 24px;
  }

  /* ========== CTA BAND ========== */
  .cta-section {
    padding: 140px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }

  .cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 72px 40px;
    background: var(--navy);
    background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--bg);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74,155,232,0.35) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }

  .cta-inner > * { position: relative; }

  .cta-inner h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .cta-inner h2 .gradient {
    background: linear-gradient(135deg, #9CC3F0 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 400;
  }

  .cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA button uses site-wide orange — no override needed since it contrasts beautifully against the navy card */

  /* ========== FOOTER ========== */
  footer {
    background: var(--bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
  }

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

  .footer-logo { margin-bottom: 16px; display: block; }

  .footer-logo img {
    height: 42px;
    width: auto;
    display: block;
  }

  .footer-brand p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    max-width: 340px;
  }

  .footer-col h5 {
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.005em;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }

  .footer-col a {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--ink); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 20px;
  }

  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* Fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 720px) {
    .container, .container-wide { padding: 0 20px; }
    nav { padding: 6px 6px 6px 14px; }
    .nav-logo { height: 28px; }
    .nav-links > li:not(:last-child) { display: none; }
    .hero { padding: 120px 0 80px; }
    .hero-brand { margin-bottom: 36px; }
    .hero-brand img { height: 56px; }
    .section-padding, .reports-section, .deepdive-section, .approach-section, .faq-section, .cta-section { padding: 80px 0; }
    .section-header { margin-bottom: 56px; }
    .hero-meta { flex-direction: column; gap: 8px; align-items: center; }
  }

/* ========== WOOCOMMERCE BRAND ALIGNMENT (v1.1.1) ========== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order {
  background-color: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  padding: 12px 24px;
  transition: background-color 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #payment #place_order:hover {
  background-color: var(--blue-hover);
  color: #fff;
}

.bbr-woo .woocommerce div.product p.price,
.bbr-woo .woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--navy);
  font-weight: 700;
}

.bbr-woo .woocommerce div.product .product_title {
  color: var(--ink);
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--blue);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--blue);
}

/* ========== INNER PAGES: CONTACT / ABOUT (v1.2.0) ========== */
.bbr-page-section { padding: 160px 0 80px; }

.bbr-grid-2 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: start; }
.bbr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bbr-stack > * + * { margin-top: 16px; }

.bbr-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.bbr-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink); }
.bbr-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.bbr-card-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.bbr-prose { max-width: 720px; margin: 0 auto; }
.bbr-prose p { color: var(--text); margin-bottom: 18px; font-size: 16.5px; line-height: 1.7; }

@media (max-width: 900px) {
  .bbr-grid-2, .bbr-grid-3 { grid-template-columns: 1fr; }
  .bbr-page-section { padding: 130px 0 56px; }
}
