/*
Theme Name: H.C. Bennett Company
Theme URI: https://hcbennett.com
Author: HCB Web
Description: Custom multi-page theme for H.C. Bennett Company — Foreign Principal Agent & international trade services. Converted from the single-page design into editable WordPress pages with ACF content fields, a global settings tab, demo/video card popups, and working forms.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hcbennett
*/

  :root {
    --navy: #0b1e35;
    --navy-mid: #122844;
    --navy-light: #1a3a5c;
    --gold: #c8962b;
    --gold-light: #e8b84b;
    --gold-pale: #f5e9cc;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --text: #1c2b3a;
    --text-muted: #5a6e80;
    --border: rgba(200,150,43,0.18);
    --shadow: 0 4px 32px rgba(11,30,53,0.13);
    --radius: 4px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
  }

  /* ─── NAV ─── */
  nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
  }
  .nav-logo span { color: var(--white); font-weight: 400; }
  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }
  .nav-links li { position: relative; }
  .nav-links a {
    display: block;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 22px 14px;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.22s;
    z-index: 200;
  }
  .nav-links li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-dropdown a {
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.79rem;
  }
  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius);
    font-weight: 700 !important;
    margin-left: 8px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  /* ─── PAGES ─── (single-page show/hide removed for WordPress multi-page) */

  /* ─── HERO ─── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: min(88vh, 880px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  /* animated canvas banner sits behind everything */
  #supplyCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.92;
  }

  .hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .hero h1 em { color: var(--gold); font-style: normal; }
  .hero-desc {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s;
    border: none;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-gold { background: var(--gold); color: var(--navy); }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn-navy { background: var(--navy); color: var(--white); }
  .btn-navy:hover { background: var(--navy-light); }

  .hero-card-stack { display: flex; flex-direction: column; gap: 14px; }
  .hero-card {
    background: rgba(11,30,53,0.72);
    border: 1px solid rgba(200,150,43,0.25);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 22px;
    backdrop-filter: blur(12px);
    transition: background 0.2s;
  }
  .hero-card:hover { background: rgba(11,30,53,0.88); }
  .hero-card-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .hero-card p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

  /* supply-chain stage labels */
  .hero-stage-bar {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 24px 24px;
  }
  .stage-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 130px;
    opacity: 0.45;
    transition: opacity 0.4s;
  }
  .stage-label.lit { opacity: 1; }
  .stage-label .stage-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
  }
  .stage-label span {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-align: center;
  }

  /* ─── SECTIONS ─── */
  section { padding: 88px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-family: 'DM Mono', monospace;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
  }
  h2.section-title.light { color: var(--white); }
  .section-sub { color: var(--text-muted); font-size: 1.02rem; max-width: 580px; margin-bottom: 52px; }
  .section-sub.light { color: rgba(255,255,255,0.65); }

  /* ─── PROBLEMS STRIP ─── */
  .problems { background: var(--navy-mid); }
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 48px;
  }
  .problem-item {
    background: var(--navy);
    padding: 32px 28px;
    transition: background 0.2s;
  }
  .problem-item:hover { background: var(--navy-light); }
  .problem-num {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.5;
  }
  .problem-item h3 { color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; }
  .problem-item p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }

  /* ─── TOOLS GRID ─── */
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 0;
  }
  .tool-card {
    background: var(--white);
    border: 1px solid #e8e2d6;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .tool-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
  }
  .tool-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .tool-card:hover::after { transform: scaleX(1); }
  .tool-icon {
    width: 44px; height: 44px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .tool-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .tool-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; margin-bottom: 18px; }
  .tool-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .tool-link::after { content: '→'; transition: transform 0.2s; }
  .tool-card:hover .tool-link::after { transform: translateX(4px); }

  /* ─── DEMOS STRIP ─── */
  .demos-bg { background: var(--navy); }
  .demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }
  .demo-card {
    border: 1px solid rgba(200,150,43,0.2);
    border-radius: var(--radius);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.22s;
    text-align: center;
  }
  .demo-card:hover { background: rgba(200,150,43,0.1); border-color: var(--gold); }
  .demo-card .demo-date {
    font-family: 'DM Mono', monospace;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .demo-card h3 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
  .demo-card p { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
  .demo-card .demo-free {
    display: inline-block;
    background: rgba(200,150,43,0.2);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
  }

  /* ─── WHY HCB ─── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-points { display: flex; flex-direction: column; gap: 24px; }
  .why-point { display: flex; gap: 18px; }
  .why-check {
    width: 28px; height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-point h3 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: var(--navy); }
  .why-point p { color: var(--text-muted); font-size: 0.87rem; }
  .why-visual {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
  }
  .stat-row { display: flex; flex-direction: column; gap: 24px; }
  .stat-item { border-bottom: 1px solid rgba(200,150,43,0.15); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-num { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 2.2rem; font-weight: 700; line-height: 1; }
  .stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

  /* ─── INNER PAGE HERO ─── */
  .inner-hero {
    background: var(--navy);
    padding: 64px 24px 48px;
    position: relative;
    overflow: hidden;
  }
  .inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(200,150,43,0.10) 0%, transparent 60%);
  }
  .inner-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
  .breadcrumb {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    cursor: pointer;
  }
  .breadcrumb span { color: var(--gold); }
  .inner-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .inner-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 620px; }

  /* ─── CONTENT CARDS ─── */
  .content-section { background: var(--white); }
  .content-section.alt { background: var(--off-white); }
  .content-section.dark { background: var(--navy-mid); }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
  .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .feature-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
    margin-top: 7px;
    flex-shrink: 0;
  }
  .feature-list.dark li { color: rgba(255,255,255,0.65); }

  /* ─── PO WIZARD MODULES ─── */
  .module-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 36px 0;
  }
  .module-card {
    background: var(--white);
    border: 1px solid #e8e2d6;
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s;
  }
  .module-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,150,43,0.12); transform: translateY(-2px); }
  .module-card .mod-icon { font-size: 1.6rem; margin-bottom: 8px; }
  .module-card h4 { font-size: 0.78rem; font-weight: 600; color: var(--navy); }

  /* ─── DOC GRID ─── */
  .doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 28px;
  }
  .doc-item {
    background: var(--off-white);
    border: 1px solid #e8e2d6;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
  }
  .doc-item:hover { background: var(--gold-pale); border-color: var(--gold); }
  .doc-item::before { content: '📄'; font-size: 0.9rem; }

  /* ─── FORM ─── */
  .form-card {
    background: var(--white);
    border: 1px solid #e8e2d6;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .form-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid #ddd8cf;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--off-white);
    transition: border-color 0.18s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group select { appearance: none; cursor: pointer; }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold); color: var(--navy); }
  .form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

  /* ─── TRAINING CARDS ─── */
  .training-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .training-card {
    background: var(--white);
    border: 1px solid #e8e2d6;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.22s;
    cursor: pointer;
  }
  .training-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
  .training-card-header { background: var(--navy); padding: 22px 24px; }
  .training-card-header h3 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; font-weight: 700; }
  .training-card-body { padding: 22px 24px; }
  .training-card-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 16px; }
  .training-price { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.3rem; font-weight: 700; }
  .training-price small { font-size: 0.75rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
  .tag { display: inline-block; background: var(--gold-pale); color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }

  /* ─── NOTICE BANNER ─── */
  .notice {
    background: var(--gold-pale);
    border: 1px solid rgba(200,150,43,0.3);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.87rem;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .notice strong { color: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 52px 24px 28px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
  }
  .footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 12px; display: block; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 16px; }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.18s;
    cursor: pointer;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

  /* ─── UTILITIES ─── */
  .divider { height: 1px; background: var(--border); margin: 40px 0; }
  .gold-line { color: var(--gold); }
  .text-center { text-align: center; }
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }
  .mt-32 { margin-top: 32px; }
  .mt-48 { margin-top: 48px; }
  .mb-24 { margin-bottom: 24px; }
  .mb-32 { margin-bottom: 32px; }
  .flex-gap { display: flex; gap: 16px; flex-wrap: wrap; }

  /* ─── PRICE HIGHLIGHT ─── */
  .price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 24px;
    margin-top: 24px;
  }
  .price-badge .amount { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
  .price-badge .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

  /* ─── WEBINAR TABLE ─── */
  .webinar-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
  .webinar-table th { background: var(--navy); color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 16px; text-align: left; font-weight: 600; }
  .webinar-table td { padding: 14px 16px; border-bottom: 1px solid #eee8df; font-size: 0.88rem; color: var(--text); }
  .webinar-table tr:hover td { background: var(--off-white); }
  .webinar-table .free-badge { background: var(--gold-pale); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.06em; }

  /* ─── ACE / FPPA CONTENT ─── */
  .info-box {
    background: var(--off-white);
    border: 1px solid #e8e2d6;
    border-left: 4px solid var(--navy);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 24px;
  }
  .info-box h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
  .info-box p { font-size: 0.87rem; color: var(--text-muted); }

  /* ─── PRICING CARD ─── */
  .price-card {
    background: var(--navy);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px 30px;
    color: var(--white);
    box-shadow: 0 14px 40px rgba(11,30,53,0.18);
  }
  .price-card-note { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
  .price-card-amount { font-family: 'Playfair Display', serif; color: var(--white); font-size: 2.8rem; font-weight: 700; line-height: 1.1; margin: 4px 0 18px; }
  .price-card-h { color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
  .price-card .feature-list li { color: rgba(255,255,255,0.78); }
  .price-card .btn { flex: 1; text-align: center; }

  @media (max-width: 900px) {
    .hero-inner, .why-grid, .two-col, .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .module-grid { grid-template-columns: repeat(3, 1fr); }
    .three-col { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

/* ════════════════════════════════════════════════════
   ADDITIONS FOR THE WORDPRESS THEME
   (video lightbox, mobile nav, form states, helpers)
════════════════════════════════════════════════════ */

/* logo image in nav */
.nav-logo img { display:block; max-height:40px; width:auto; }

/* mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display:block; height:2px; width:24px; background: var(--gold); transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* video lightbox */
.hcb-video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(7,16,28,0.88);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.hcb-video-modal.open { display: flex; }
.hcb-video-box {
  position: relative; width: 100%; max-width: 960px;
}
.hcb-video-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000; border: 2px solid var(--gold); border-radius: var(--radius); overflow: hidden;
}
.hcb-video-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.hcb-video-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff; font-size: 2rem; line-height: 1;
  cursor: pointer; padding: 4px 10px;
}
.hcb-video-close:hover { color: var(--gold); }

/* video card affordance */
.has-video { position: relative; }
.has-video .tool-icon::after,
.demo-card.has-video::after { content: ''; }
.play-badge {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.7rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--gold);
}
.play-badge::before { content:'▶'; font-size:0.65rem; }

/* form states */
.hcb-form-error {
  display: none;
  background: #fdecea; border: 1px solid #e6b0aa; color: #922b21;
  border-radius: var(--radius); padding: 10px 14px; font-size: 0.85rem; margin-bottom: 16px;
}
.hcb-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height:0; width:0; overflow:hidden; }
.form-submit:disabled { opacity: 0.6; cursor: default; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-mid);
    border-bottom: 2px solid var(--gold);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-dropdown {
    position: static; opacity: 1; pointer-events: all; transform: none;
    min-width: 0; border: none; border-top: none; background: rgba(0,0,0,0.18);
  }
  .nav-cta { margin: 8px 24px; text-align: center; }
}

/* custom override */
a.nav-cta {
  margin-top: 10px;
}

/* HCB Cloud services list (Online Collaboration page) */
.collab-services { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.collab-service {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px 18px; background: var(--off-white);
  border: 1px solid #e6e9ee; border-radius: var(--radius);
}
.collab-service-text strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }
.collab-service-text span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }
.collab-btn { flex: 0 0 auto; white-space: nowrap; font-size: 0.8rem; padding: 9px 16px; }
@media (max-width: 640px) {
  .collab-service { flex-direction: column; align-items: flex-start; gap: 10px; }
}
