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

    :root {
      --bg:        #1A1B1E;
      --bg2:       #222328;
      --bg3:       #2A2B2F;
      --accent:    #D4F53C;
      --accent2:   #B8DC28;
      --white:     #FFFFFF;
      --muted:     #6B7280;
      --subtle:    #9CA3AF;
      --border:    rgba(255,255,255,0.08);
      --radius:    16px;
      --radius-sm: 10px;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212,245,60,0.4); }
      70%  { transform: scale(1);    box-shadow: 0 0 0 14px rgba(212,245,60,0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212,245,60,0); }
    }

    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    section { padding: 100px 0; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 20px 0;
      transition: background 0.3s, padding 0.3s;
    }
    nav.scrolled {
      background: rgba(26,27,30,0.88);
      backdrop-filter: blur(20px);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { height: 34px; width: auto; }
    .nav-logo-text { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.4px; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { color: var(--subtle); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--accent) !important; color: #000 !important;
      padding: 10px 22px !important; border-radius: 100px;
      font-weight: 700 !important; transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }

    /* ─── HERO ─── */
    #hero {
      padding: 130px 0 80px; position: relative; overflow: hidden;
      min-height: 100vh; display: flex; align-items: center;
    }
    .hero-img-bg {
      position: absolute; inset: 0;
      background-image: url('../images/hero-retail-aisle.jpg');
      background-size: cover; background-position: center 40%;
      opacity: 0.4;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(26,27,30,0.82) 0%, rgba(26,27,30,0.45) 50%, rgba(26,27,30,0.75) 100%);
    }
    .hero-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 65% 50%, rgba(212,245,60,0.07) 0%, transparent 65%);
    }
    .hero-grid-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 800px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,245,60,0.1); border: 1px solid rgba(212,245,60,0.25);
      border-radius: 100px; padding: 6px 16px;
      font-size: 13px; font-weight: 500; color: var(--accent);
      margin-bottom: 28px; animation: fadeUp 0.8s ease forwards;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-ring 2s infinite; }
    .hero-title {
      font-size: clamp(44px, 6vw, 76px); font-weight: 800;
      line-height: 1.08; letter-spacing: -2px; margin-bottom: 24px;
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent) 0%, #a8e000 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub {
      font-size: 20px; color: var(--subtle); line-height: 1.6;
      max-width: 560px; margin-bottom: 44px;
      animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--accent); color: #000; font-weight: 700; font-size: 15px;
      padding: 16px 32px; border-radius: 100px; text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,245,60,0.25); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--white); font-weight: 600; font-size: 15px;
      padding: 16px 32px; border-radius: 100px; border: 1px solid var(--border);
      text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

    /* ─── TRUST BAR ─── */
    .trust-bar { padding: 32px 0 80px; border-bottom: 1px solid var(--border); }
    .trust-label { text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 28px; }
    .ai-platforms { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
    .ai-platform-pill { display: flex; align-items: center; gap: 8px; background: var(--bg2); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--subtle); }
    .ai-dot { width: 8px; height: 8px; border-radius: 50%; }
    .dot-gpt { background: #10A37F; } .dot-claude { background: #CC785C; }
    .dot-gemini { background: #4285F4; } .dot-perp { background: #6366F1; }

    /* ─── SECTION LABELS ─── */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; color: var(--accent); margin-bottom: 16px;
    }
    .section-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
    .section-sub { font-size: 18px; color: var(--subtle); max-width: 560px; line-height: 1.6; }

    /* ─── PROBLEM ─── */
    #problem { position: relative; overflow: hidden; }
    .problem-img-bg {
      position: absolute; inset: 0;
      background-image: url('../images/problem-bg.jpg');
      background-size: cover; background-position: center;
      opacity: 0.20;
    }
    .problem-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(26,27,30,0.80) 50%, var(--bg) 100%);
    }
    .problem-content { position: relative; z-index: 1; }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card {
      background: rgba(34,35,40,0.85); backdrop-filter: blur(10px);
      border: 1px solid var(--border); border-radius: var(--radius);
      padding: 28px 24px; transition: border-color 0.3s, transform 0.3s;
    }
    .stat-card:hover { border-color: rgba(212,245,60,0.3); transform: translateY(-4px); }
    .stat-number { font-size: 44px; font-weight: 900; letter-spacing: -2px; color: var(--accent); line-height: 1; margin-bottom: 8px; }
    .stat-label { font-size: 14px; color: var(--subtle); line-height: 1.4; }
    .problem-quote {
      margin-top: 32px; background: rgba(42,43,47,0.9); backdrop-filter: blur(10px);
      border-left: 3px solid var(--accent); padding: 20px 24px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 15px; color: var(--subtle); font-style: italic;
    }
    .problem-quote strong { color: var(--white); font-style: normal; }

    /* ─── BROKEN ─── */
    #broken { background: var(--bg2); }
    .broken-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
    .broken-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 0; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
    }
    .broken-card:hover { border-color: rgba(212,245,60,0.25); transform: translateY(-4px); }
    .broken-icon {
      width: 100%; height: 200px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(212,245,60,0.04);
      border-bottom: 1px solid var(--border);
      padding: 24px;
    }
    .broken-icon img { height: 160px; width: auto; max-width: 100%; object-fit: contain; }
    .broken-card-body { padding: 28px 32px 32px; }
    .broken-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .broken-card p { font-size: 14px; color: var(--subtle); line-height: 1.6; }

    /* ─── PROCESS ─── */
    #process { position: relative; overflow: hidden; }
    .process-img-bg {
      position: absolute; inset: 0;
      background-image: url('../images/process-bg.jpg');
      background-size: cover; background-position: center top;
      opacity: 0.28;
    }
    .process-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(26,27,30,0.72) 40%, rgba(26,27,30,0.72) 60%, var(--bg) 100%);
    }
    .process-content { position: relative; z-index: 1; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; position: relative; }
    .process-steps::before {
      content: ''; position: absolute;
      top: 28px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
      height: 1px; background: linear-gradient(90deg, var(--accent) 0%, rgba(212,245,60,0.3) 100%);
    }
    .step-card {
      text-align: center; padding: 32px 20px;
      background: rgba(26,27,30,0.88); backdrop-filter: blur(14px);
      border: 1px solid var(--border); border-radius: var(--radius);
      transition: border-color 0.3s, transform 0.3s;
    }
    .step-card:hover { border-color: rgba(212,245,60,0.4); transform: translateY(-6px); }
    .step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #000; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 13px; color: var(--subtle); line-height: 1.6; }

    /* ─── OVI ─── */
    #ovi { background: var(--bg); position: relative; overflow: hidden; }
    .ovi-glow {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,245,60,0.05) 0%, transparent 65%);
    }
    .ovi-inner {
      position: relative; z-index: 1;
      max-width: 860px; margin: 0 auto; text-align: center;
    }
    .ovi-trademark {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(212,245,60,0.08); border: 1px solid rgba(212,245,60,0.25);
      border-radius: 100px; padding: 8px 20px; margin-bottom: 28px;
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; color: var(--accent);
    }
    .ovi-trademark::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: block; }
    .ovi-title {
      font-size: clamp(32px, 5vw, 56px); font-weight: 800;
      letter-spacing: -2px; line-height: 1.05; margin-bottom: 24px;
    }
    .ovi-title span {
      background: linear-gradient(135deg, #D4F53C 0%, #a8e000 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .ovi-desc {
      font-size: 17px; color: var(--subtle); line-height: 1.75;
      max-width: 700px; margin: 0 auto 56px;
    }
    .ovi-dimensions {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
      margin-bottom: 56px;
    }
    .ovi-dim {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px 28px;
      transition: border-color 0.3s, transform 0.3s;
    }
    .ovi-dim:hover { border-color: rgba(212,245,60,0.3); transform: translateY(-6px); }
    .ovi-dim-num {
      font-size: 13px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; color: var(--muted); margin-bottom: 12px;
    }
    .ovi-dim-name {
      font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px;
    }
    .ovi-dim:nth-child(1) .ovi-dim-name { color: var(--accent); }
    .ovi-dim:nth-child(2) .ovi-dim-name { color: #64c8ff; }
    .ovi-dim:nth-child(3) .ovi-dim-name { color: #ffa532; }
    .ovi-dim p { font-size: 13px; color: var(--subtle); line-height: 1.6; }
    .ovi-closing {
      background: rgba(212,245,60,0.05); border: 1px solid rgba(212,245,60,0.15);
      border-radius: 16px; padding: 28px 36px;
      font-size: 16px; color: var(--subtle); line-height: 1.75;
      font-style: italic;
    }
    .ovi-closing strong { color: var(--white); font-style: normal; }

    /* ─── ABOUT ─── */
    #about { background: var(--bg2); }
    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
    .team-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 36px 28px; text-align: center;
      transition: border-color 0.3s, transform 0.3s;
    }
    .team-card:hover { border-color: rgba(212,245,60,0.3); transform: translateY(-6px); }
    .team-avatar {
      width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
      background: var(--bg3); border: 2px solid rgba(212,245,60,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 800; color: var(--accent);
      letter-spacing: -1px;
    }
    .team-name { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
    .team-role {
      display: inline-block;
      font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--accent); margin-bottom: 16px;
      background: rgba(212,245,60,0.1); border: 1px solid rgba(212,245,60,0.2);
      border-radius: 100px; padding: 6px 20px;
      min-width: 220px; text-align: center;
    }
    .team-bio { font-size: 14px; color: var(--subtle); line-height: 1.65; }
    .team-links { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
    .team-link {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--bg2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; color: var(--muted); font-size: 14px;
      transition: border-color 0.2s, color 0.2s;
    }
    .team-link:hover { border-color: rgba(212,245,60,0.4); color: var(--accent); }

    /* ─── WHY OBSESSD ─── */
    #why { position: relative; overflow: hidden; }
    .why-img-bg {
      position: absolute; inset: 0;
      background-image: url('../images/why-bg.jpg');
      background-size: cover; background-position: center;
      opacity: 0.38;
    }
    .why-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg2) 0%, rgba(26,27,30,0.72) 50%, var(--bg2) 100%);
    }
    .why-content { position: relative; z-index: 1; }
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
    .why-card {
      background: rgba(26,27,30,0.82); backdrop-filter: blur(16px);
      border: 1px solid var(--border); border-radius: var(--radius);
      padding: 36px 32px; transition: border-color 0.3s, transform 0.3s;
    }
    .why-card:hover { border-color: rgba(212,245,60,0.3); transform: translateY(-4px); }
    .why-number { font-size: 48px; font-weight: 900; color: rgba(212,245,60,0.18); letter-spacing: -3px; line-height: 1; margin-bottom: 16px; }
    .why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
    .why-card p { font-size: 14px; color: var(--subtle); line-height: 1.65; }

    /* ─── CTA ─── */
    #contact { position: relative; overflow: hidden; text-align: center; padding: 120px 0; }
    .cta-img-bg {
      position: absolute; inset: 0;
      background-image: url('../images/cta-bg.jpg');
      background-size: cover; background-position: center 40%;
      opacity: 0.45;
    }
    .cta-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(26,27,30,0.70) 30%, rgba(26,27,30,0.70) 70%, var(--bg) 100%);
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-inner {
      background: rgba(26,27,30,0.72); backdrop-filter: blur(24px);
      border: 1px solid rgba(212,245,60,0.2); border-radius: 28px; padding: 80px 48px;
      position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(212,245,60,0.08) 0%, transparent 70%);
    }
    .cta-inner > * { position: relative; z-index: 1; }
    .cta-inner h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
    .cta-inner p { font-size: 18px; color: var(--subtle); max-width: 500px; margin: 0 auto 40px; }
    .cta-email { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 15px; font-weight: 600; text-decoration: none; margin-top: 24px; }
    .cta-email:hover { text-decoration: underline; }

    /* ─── FOOTER ─── */
    footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .footer-logo img { height: 28px; }
    .footer-logo-text { font-size: 16px; font-weight: 700; color: var(--white); }
    .footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: 13px; color: var(--muted); }

    /* ─── RESPONSIVE ─── */
    /* ─── HAMBURGER ─── */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 6px; z-index: 200;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(26,27,30,0.98); backdrop-filter: blur(20px);
      z-index: 150; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: var(--white); text-decoration: none; font-size: 28px; font-weight: 700;
      padding: 12px 24px; letter-spacing: -0.5px; transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--accent); }
    .mobile-nav .mobile-cta {
      margin-top: 16px; background: var(--accent); color: #000 !important;
      border-radius: 100px; padding: 14px 36px !important; font-size: 18px !important;
    }

    @media (max-width: 900px) {
      .problem-grid { grid-template-columns: 1fr; gap: 32px; }
      .broken-grid, .why-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .ovi-dimensions { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
      .process-steps::before { display: none; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      section { padding: 64px 0; }
      .process-steps { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .cta-inner { padding: 48px 24px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }

/* ============================================================
   BROKEN SECTION REDESIGN — ledger/row layout instead of card grid
   ============================================================ */
.broken-redesign .broken-list {
  margin-top: 56px;
  border-top: 1px solid var(--border);
}
.broken-redesign .broken-row {
  display: grid;
  grid-template-columns: 56px 72px 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s ease, border-color 0.3s ease;
}
.broken-redesign .broken-row:hover {
  padding-left: 12px;
  border-color: rgba(212, 245, 60, 0.25);
}
.broken-redesign .broken-row-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 245, 60, 0.4);
}
.broken-redesign .broken-row-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(212, 245, 60, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.broken-redesign .broken-row-icon img { width: 100%; height: 100%; object-fit: contain; }
.broken-redesign .broken-row-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.broken-redesign .broken-row-body p { font-size: 14px; color: var(--subtle); line-height: 1.6; max-width: 640px; }

@media (max-width: 700px) {
  .broken-redesign .broken-row { grid-template-columns: 32px 48px 1fr; gap: 14px; padding: 24px 0; }
  .broken-redesign .broken-row-num { font-size: 24px; }
  .broken-redesign .broken-row-icon { width: 48px; height: 48px; padding: 8px; }
}

/* ============================================================
   PEOPLE STRIP — deliberately light section, breaks up the all-dark
   rhythm. Real photo, real facts (team backgrounds already used
   in the About section), not decorative stock.
   ============================================================ */
.people-strip { background: #EDEAE0; color: #1A1B1E; }
.people-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.people-strip-photo {
  background-image: url('../images/team-collaboration.jpg');
  background-size: cover;
  background-position: center;
}
.people-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}
.people-strip-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6B7A1F; margin-bottom: 20px;
}
.people-strip-content h2 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 20px; color: #14151A;
}
.people-strip-content p {
  font-size: 16px; line-height: 1.7; color: #45464C; max-width: 460px; margin-bottom: 28px;
}
.people-strip-content a {
  font-weight: 700; color: #14151A; text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px; align-self: flex-start;
}
.people-strip-content a:hover { color: #6B7A1F; }

@media (max-width: 900px) {
  .people-strip-inner { grid-template-columns: 1fr; min-height: 0; }
  .people-strip-photo { height: 280px; }
  .people-strip-content { padding: 48px 32px; }
}
