@import url('assets/colors_and_type.css');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg-1); color: var(--fg-2); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; direction: rtl; }
button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-pad { padding: 120px 40px; }
.sec-pad-quiet { padding: 80px 40px; }
.sec-intro { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-intro .eyebrow { display: inline-flex; }

/* Eyebrow + titles */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--irm-blue); margin-bottom: 16px; }
.eyebrow .line { width: 32px; height: 2px; background: var(--irm-orange); border-radius: 2px; }
.eyebrow.light { color: var(--irm-orange-bright); }
.eyebrow.light .line { background: var(--irm-orange-bright); }
.sec-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 18px; color: var(--fg-1); }
.sec-title .orange { color: var(--irm-orange); }
.sec-sub { font-size: 1.05rem; color: var(--fg-4); max-width: 640px; line-height: 1.85; }

/* SCROLL PROGRESS */
.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--grad-progress); z-index: 9999; transition: width 0.05s linear; width: 0%; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; transition: all 0.5s var(--ease-out-expo); }
.nav.scrolled { padding: 12px 40px; background: rgba(255,255,255,0.88); backdrop-filter: blur(24px) saturate(180%); box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 40px rgba(0,0,0,0.04); }
.nav-logo { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; transition: color 0.4s; }
.nav.scrolled .nav-logo { color: var(--irm-blue-dark); }
.nav-logo .dot { color: var(--irm-orange); }
.nav-cta { padding: 11px 26px; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font: 600 0.9rem/1 var(--font-sans); cursor: pointer; transition: all 0.4s var(--ease-out-expo); backdrop-filter: blur(8px); }
.nav.scrolled .nav-cta { background: var(--irm-blue); border-color: var(--irm-blue); color: #fff; box-shadow: var(--shadow-blue); backdrop-filter: none; }
.nav-cta:hover { transform: translateY(-2px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 40px 90px; background: var(--grad-hero); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 12% 80%, rgba(232,153,62,0.20), transparent), radial-gradient(ellipse 40% 40% at 88% 18%, rgba(255,255,255,0.10), transparent); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 50px 50px; -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent); mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent); }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.h-shape { position: absolute; border-radius: 16px; opacity: 0.10; animation: float3d 14s ease-in-out infinite; }
.h-shape-1 { width: 340px; height: 340px; background: linear-gradient(135deg, var(--irm-orange), transparent); top: 6%; left: 4%; border-radius: 50%; }
.h-shape-2 { width: 240px; height: 240px; border: 3px solid rgba(255,255,255,0.18); bottom: 10%; right: 5%; animation-delay: -4s; }
.h-shape-3 { width: 170px; height: 170px; background: rgba(255,255,255,0.06); top: 26%; right: 16%; border-radius: 50%; animation-delay: -7s; }
.h-shape-4 { width: 100px; height: 100px; background: var(--irm-orange); opacity: 0.16; bottom: 24%; left: 14%; border-radius: 50%; animation-delay: -2s; }
.h-shape-5 { width: 60px; height: 60px; border: 2px solid rgba(232,153,62,0.4); top: 60%; left: 8%; transform: rotate(45deg); animation-delay: -5s; }
@keyframes float3d { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(6deg); } }

.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-text { color: #fff; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.92); margin-bottom: 28px; backdrop-filter: blur(8px); }
.hero-pill .live { width: 7px; height: 7px; background: var(--irm-orange-bright); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 .orange { color: var(--irm-orange-bright); }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after { content: ''; position: absolute; left: 0; right: 0; bottom: 8px; height: 14px; background: var(--irm-orange); opacity: 0.4; border-radius: 2px; z-index: -1; }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 560px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-orange { display: inline-flex; align-items: center; gap: 10px; padding: 18px 38px; background: var(--irm-orange); color: #fff; border: none; border-radius: 100px; font: 700 1.05rem/1 var(--font-sans); cursor: pointer; transition: all 0.4s var(--ease-out-expo); box-shadow: var(--shadow-orange); position: relative; overflow: hidden; }
.btn-orange::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.4), transparent); transform: translateX(-150%); transition: transform 0.7s var(--ease-out-expo); }
.btn-orange:hover { transform: translateY(-3px) scale(1.02); background: var(--irm-orange-bright); }
.btn-orange:hover::before { transform: translateX(150%); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.25); border-radius: 100px; font: 500 1rem/1 var(--font-sans); cursor: pointer; transition: all 0.4s var(--ease-out-expo); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.hero-trust { display: flex; gap: 32px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-trust-item .n { font-size: 1.7rem; font-weight: 900; color: var(--irm-orange-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.hero-trust-item .l { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 6px; font-weight: 500; }

.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); border-radius: 32px; padding: 32px; position: relative; overflow: hidden; box-shadow: var(--shadow-hero); }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-orange); }
.hc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hc-head .pill { background: rgba(232,153,62,0.18); color: var(--irm-orange-bright); padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; }
.hc-head .title { color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 500; }
.hc-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.hc-row:last-of-type { border-bottom: none; }
.hc-row .lbl { color: rgba(255,255,255,0.65); font-size: 0.92rem; font-weight: 500; }
.hc-row .val { color: #fff; font-size: 1.05rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.hc-row .val.danger { color: #FCA5A5; }
.hc-row .val.success { color: #6EE7B7; }
.hc-final { margin-top: 18px; padding: 22px 24px; background: linear-gradient(135deg, rgba(232,153,62,0.22), rgba(245,169,69,0.15)); border: 1px solid rgba(232,153,62,0.3); border-radius: 20px; display: flex; justify-content: space-between; align-items: center; }
.hc-final .lbl { color: #fff; font-size: 0.95rem; font-weight: 700; }
.hc-final .val { color: var(--irm-orange-bright); font-size: 2rem; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.hc-foot { margin-top: 18px; text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* MARQUEE */
.marquee { padding: 18px 0; overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--irm-gray-100); border-bottom: 1px solid var(--irm-gray-100); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: mScroll 28s linear infinite; }
@keyframes mScroll { to { transform: translateX(-33.333%); } }
.marquee-item { font-size: 0.9rem; font-weight: 700; color: var(--irm-gray-200); white-space: nowrap; letter-spacing: 1px; }
.marquee-dot { width: 6px; height: 6px; background: var(--irm-gray-200); border-radius: 50%; align-self: center; }

/* PAIN SECTION */
.pain-sec { background: var(--bg-1); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pain-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 24px; padding: 36px 24px; text-align: center; transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden; }
.pain-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad-orange); transform: scaleX(0); transition: transform 0.4s; }
.pain-card:hover::after { transform: scaleX(1); }
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--irm-orange); }
.pain-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--fg-1); line-height: 1.5; margin-bottom: 8px; }
.pain-card p { font-size: 0.85rem; color: var(--fg-4); line-height: 1.65; }
.pain-resolve { margin-top: 48px; padding: 32px 40px; background: var(--grad-soft); border-radius: 24px; border: 1px solid var(--irm-gray-100); text-align: center; }
.pain-resolve p { font-size: 1.15rem; font-weight: 700; color: var(--irm-blue-deep); line-height: 1.6; }
.pain-resolve p .orange { color: var(--irm-orange); }

/* WHAT IS ARBITRAGE */
.what-sec { background: var(--bg-2); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.what-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; color: var(--fg-1); }
.what-text h2 .orange { color: var(--irm-orange); }
.what-text p { color: var(--fg-3); font-size: 1.05rem; line-height: 1.85; margin-bottom: 16px; }
.what-text .keypoint { color: var(--fg-1); font-weight: 700; font-size: 1.1rem; padding: 18px 22px; background: #fff; border-right: 4px solid var(--irm-orange); border-radius: 12px; margin-top: 8px; }
.what-flow { background: linear-gradient(135deg, var(--irm-blue-pale), #fff); border: 1px solid var(--irm-gray-100); border-radius: 32px; padding: 36px; box-shadow: var(--shadow-card); }
.flow-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px dashed var(--irm-gray-100); }
.flow-step:last-of-type { border-bottom: none; }
.flow-num { width: 56px; height: 56px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: var(--irm-blue); border: 1px solid var(--irm-gray-100); box-shadow: var(--shadow-soft); }
.flow-body .t { font-size: 1rem; font-weight: 700; color: var(--fg-1); margin-bottom: 4px; }
.flow-body .s { font-size: 0.86rem; color: var(--fg-4); line-height: 1.6; }
.flow-body .s b { color: var(--irm-orange); font-weight: 700; }
.flow-result { margin-top: 12px; padding: 22px 24px; background: linear-gradient(135deg, var(--irm-orange), var(--irm-orange-bright)); border-radius: 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-orange); }
.flow-result .lbl { color: #fff; font-size: 0.95rem; font-weight: 700; }
.flow-result .val { color: #fff; font-size: 1.7rem; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }

/* ═══════════════════════ MODEL · unified anchor section ═══════════════════════ */
.model-sec { background: var(--bg-1); }
.model-stage { padding-top: 64px; margin-top: 64px; border-top: 1px dashed var(--irm-gray-100); }
.model-stage:first-of-type { padding-top: 0; margin-top: 0; border-top: none; }
.model-step-eyebrow { display: inline-block; font-size: 0.92rem; font-weight: 800; color: var(--irm-orange); letter-spacing: 0.5px; margin-bottom: 14px; padding: 6px 14px; background: var(--irm-orange-pale); border-radius: 100px; }
.model-step-h3 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); font-weight: 900; letter-spacing: -0.6px; line-height: 1.2; color: var(--fg-1); margin-bottom: 14px; }
.model-step-h3 .orange { color: var(--irm-orange); }
.model-step-sub { font-size: 1.02rem; color: var(--fg-4); margin-bottom: 28px; max-width: 640px; line-height: 1.75; }

/* PAIN rows (rebuilt — slim version of old pain-cards) */
.pain-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; margin-bottom: 28px; }
.pain-row { display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 16px; transition: all 0.4s var(--ease-out-expo); }
.pain-row:hover { border-color: var(--irm-orange); transform: translateX(-4px); box-shadow: var(--shadow-soft); }
.pain-row-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--irm-orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.pain-row-body .t { font-size: 0.98rem; font-weight: 800; color: var(--fg-1); margin-bottom: 2px; line-height: 1.3; }
.pain-row-body .s { font-size: 0.85rem; color: var(--fg-4); line-height: 1.5; }
.model-bridge { text-align: center; padding: 24px 28px; background: var(--grad-soft); border: 1px solid var(--irm-gray-100); border-radius: 18px; font-size: 1.1rem; font-weight: 800; color: var(--irm-blue-deep); margin-top: 12px; line-height: 1.5; }
.model-bridge .orange { color: var(--irm-orange); }

/* Inline CTA (used in LOUD sections) */
.inline-cta { margin-top: 64px; text-align: center; padding: 36px 32px; background: var(--grad-soft); border: 1px solid var(--irm-gray-100); border-radius: 24px; }
.inline-cta p { font-size: 1.15rem; font-weight: 800; color: var(--irm-blue-deep); margin-bottom: 18px; }
.btn-inline-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--irm-orange); color: #fff; border: none; border-radius: 100px; font: 700 0.98rem/1 var(--font-sans); cursor: pointer; box-shadow: var(--shadow-orange); transition: all 0.4s var(--ease-out-expo); }
.btn-inline-cta:hover { background: var(--irm-orange-bright); transform: translateY(-2px); }
.btn-inline-cta svg { width: 14px; height: 14px; }

/* LEARNING section (course + funnel merged) */
.learning-sec { background: var(--bg-1); }
.funnel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.funnel-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 20px; padding: 32px 28px; text-align: right; transition: all 0.5s var(--ease-out-expo); }
.funnel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--irm-blue-light); }
.funnel-card.featured { background: linear-gradient(135deg, var(--irm-orange-pale), #fff); border-color: var(--irm-orange); }
.funnel-num { width: 48px; height: 48px; border-radius: 14px; background: var(--irm-blue-pale); color: var(--irm-blue); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; margin-bottom: 18px; }
.funnel-card.featured .funnel-num { background: var(--irm-orange); color: #fff; }
.funnel-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--fg-1); margin-bottom: 10px; }
.funnel-card p { font-size: 0.92rem; color: var(--fg-3); line-height: 1.7; }

/* FOUNDERS section (story + grid merged · quiet) */
.founders-sec { background: var(--bg-2); }
.founders-sec .founders-grid { margin-top: 64px; padding-top: 64px; border-top: 1px dashed var(--irm-gray-100); }

/* BOGRIM section (success + testimonials merged) */
.bogrim-sec { background: var(--bg-1); }
.bogrim-sec .success-grid { margin-bottom: 0; }
.bogrim-sec .test-grid { margin-top: 64px; padding-top: 64px; border-top: 1px dashed var(--irm-gray-100); }

/* PATHS · 3 entry options for capital */
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.path-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 24px; padding: 36px 28px; transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden; }
.path-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-orange); transform: scaleX(0); transform-origin: right; transition: transform 0.4s; }
.path-card:hover::after { transform: scaleX(1); }
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--irm-orange); }
.path-card.featured { border: 2px solid var(--irm-orange); box-shadow: var(--shadow-orange); transform: translateY(-4px); }
.path-card.featured::after { transform: scaleX(1); }
.path-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--irm-orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 22px; }
.path-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--fg-1); margin-bottom: 10px; letter-spacing: -0.3px; }
.path-card p { font-size: 0.95rem; color: var(--fg-3); line-height: 1.75; margin-bottom: 18px; }
.path-tag { display: inline-block; padding: 8px 14px; background: var(--irm-blue-pale); color: var(--irm-blue); border-radius: 100px; font-size: 0.78rem; font-weight: 700; line-height: 1.4; }
.paths-bottom { margin-top: 48px; padding: 28px 36px; background: var(--grad-soft); border-radius: 20px; border: 1px solid var(--irm-gray-100); text-align: center; }
.paths-bottom p { font-size: 1.1rem; font-weight: 700; color: var(--irm-blue-deep); line-height: 1.6; }
.paths-bottom p .orange { color: var(--irm-orange); }

/* COMPARISON TABLE */
.compare-sec { background: var(--bg-1); }
.compare-table { margin-top: 56px; background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: stretch; }
.compare-row.head { background: var(--irm-blue-dark); color: #fff; font-weight: 700; }
.compare-row.head .compare-cell { padding: 22px 20px; font-size: 0.95rem; text-align: center; }
.compare-row.head .compare-cell.label { text-align: right; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.compare-row.head .compare-cell.us { background: var(--irm-orange); position: relative; }
.compare-row.head .compare-cell.us::before { content: 'מומלץ'; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; background: rgba(0,0,0,0.2); padding: 2px 10px; border-radius: 100px; letter-spacing: 1px; }
.compare-row + .compare-row:not(.head) { border-top: 1px solid var(--irm-gray-100); }
.compare-cell { padding: 20px; font-size: 0.92rem; text-align: center; display: flex; align-items: center; justify-content: center; }
.compare-cell.label { text-align: right; justify-content: flex-start; font-weight: 700; color: var(--fg-1); background: var(--bg-2); }
.compare-cell.us { background: rgba(232,153,62,0.06); font-weight: 700; color: var(--irm-orange); }
.compare-cell .yes { color: var(--irm-success); font-weight: 900; font-size: 1.3rem; }
.compare-cell .no { color: var(--irm-danger); font-weight: 900; font-size: 1.3rem; }
.compare-cell .meh { color: var(--fg-4); font-weight: 700; }

/* FIT */
.fit-sec { background: var(--bg-2); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.fit-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 28px; padding: 40px; transition: all 0.5s var(--ease-out-expo); }
.fit-card.yes { border-top: 4px solid var(--irm-success); }
.fit-card.no { border-top: 4px solid var(--irm-danger); }
.fit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.fit-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.fit-head .icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; font-weight: 900; flex-shrink: 0; }
.fit-card.yes .fit-head .icon { background: var(--irm-success-bg); color: var(--irm-success); }
.fit-card.no .fit-head .icon { background: var(--irm-danger-bg); color: var(--irm-danger); }
.fit-head h3 { font-size: 1.45rem; font-weight: 900; letter-spacing: -0.5px; color: var(--fg-1); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-size: 0.96rem; line-height: 1.65; color: var(--fg-2); }
.fit-list li .mark { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; font-weight: 900; margin-top: 2px; }
.fit-card.yes .mark { background: var(--irm-success-bg); color: var(--irm-success); }
.fit-card.no .mark { background: var(--irm-danger-bg); color: var(--irm-danger); }

/* COURSE TIMELINE */
.course-sec { background: var(--bg-1); }
.timeline { max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 16px; }
.tl-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 24px; padding: 28px 32px; display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start; transition: all 0.5s var(--ease-out-expo); position: relative; }
.tl-card:hover { transform: translateX(8px); border-color: var(--irm-blue-light); box-shadow: var(--shadow-lifted); }
.tl-card:hover .tl-num { background: var(--irm-blue); color: #fff; transform: scale(1.05); }
.tl-num { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--irm-blue-pale); color: var(--irm-blue); border-radius: 16px; font-size: 1.2rem; font-weight: 900; transition: all 0.4s; flex-shrink: 0; }
.tl-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--fg-1); margin-bottom: 8px; letter-spacing: -0.3px; }
.tl-card p { font-size: 0.92rem; color: var(--fg-4); line-height: 1.75; }
.tl-card .tl-tag { display: inline-block; margin-top: 10px; font-size: 0.75rem; font-weight: 700; color: var(--irm-orange); padding: 4px 10px; background: var(--irm-orange-pale); border-radius: 100px; }

/* SUCCESS STORY */
.success-sec { background: var(--bg-2); position: relative; overflow: hidden; }
.success-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; margin-top: 48px; }
.success-img { aspect-ratio: 4/3; border-radius: 32px; background: linear-gradient(135deg, var(--irm-blue), var(--irm-blue-light)); position: relative; overflow: hidden; box-shadow: var(--shadow-hero); display: flex; align-items: center; justify-content: center; }
.success-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,0,0,0.3), transparent); }
.success-img .ph-text { position: relative; z-index: 1; color: rgba(255,255,255,0.95); font-size: 1.1rem; font-weight: 800; text-align: center; padding: 32px; }
.success-img .ph-text .small { display: block; font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.success-img .ph-tag { position: absolute; top: 20px; right: 20px; background: var(--irm-orange); color: #fff; padding: 8px 18px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; z-index: 2; box-shadow: var(--shadow-orange); }
.success-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; color: var(--fg-1); }
.success-text h2 .orange { color: var(--irm-orange); }
.success-text > p { color: var(--fg-3); font-size: 1.02rem; line-height: 1.8; margin-bottom: 20px; }
.success-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.success-stat { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 16px; padding: 20px; text-align: center; transition: all 0.4s; }
.success-stat:hover { transform: translateY(-4px); border-color: var(--irm-orange); box-shadow: var(--shadow-card); }
.success-stat .n { font-size: 1.7rem; font-weight: 900; color: var(--irm-orange); line-height: 1; font-variant-numeric: tabular-nums; }
.success-stat .l { font-size: 0.72rem; color: var(--fg-4); margin-top: 8px; font-weight: 600; line-height: 1.4; }

/* STATS BAND */
.stats-sec { background: var(--bg-dark); position: relative; overflow: hidden; padding: 90px 40px; }
.stats-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(232,153,62,0.12), transparent); }
.stats-sec .stats-shape { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(232,153,62,0.05); top: -100px; right: -100px; }
.stats-eyebrow { text-align: center; margin-bottom: 28px; position: relative; z-index: 1; }
.stats-eyebrow .eyebrow { color: var(--irm-orange-bright); }
.stats-eyebrow .eyebrow .line { background: var(--irm-orange-bright); }
.stats-title { text-align: center; color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 48px; line-height: 1.2; position: relative; z-index: 1; }
.stats-title .orange { color: var(--irm-orange-bright); }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.stat-block { text-align: center; padding: 32px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; transition: all 0.4s; }
.stat-block:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(232,153,62,0.3); }
.stat-block .n { font-size: 3.2rem; font-weight: 900; color: var(--irm-orange-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-block .l { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 12px; font-weight: 500; }

/* FOUNDER STORY */
.story-sec { background: var(--bg-1); }
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; margin-top: 48px; }
.story-img-wrap { position: relative; }
.story-img { aspect-ratio: 16/10; border-radius: 32px; background: linear-gradient(135deg, var(--irm-blue), var(--irm-blue-deep)); overflow: hidden; box-shadow: var(--shadow-hero); position: relative; display: flex; align-items: center; justify-content: center; }
.story-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,60,106,0.5), transparent 50%); pointer-events: none; }
.story-img .ph { color: rgba(255,255,255,0.95); font-size: 5rem; font-weight: 900; font-family: var(--font-display); letter-spacing: -3px; z-index: 1; }
.story-img .ph-sub { position: absolute; bottom: 20px; right: 24px; color: rgba(255,255,255,0.65); font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; z-index: 2; }
.story-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.story-badge { position: absolute; bottom: -20px; right: -20px; background: #fff; padding: 18px 24px; border-radius: 20px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 14px; border: 1px solid var(--irm-gray-100); }
.story-badge .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--irm-orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.story-badge .text .t { font-size: 0.9rem; font-weight: 800; color: var(--fg-1); }
.story-badge .text .s { font-size: 0.75rem; color: var(--fg-4); }
.story-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; color: var(--fg-1); }
.story-text h2 .orange { color: var(--irm-orange); }
.story-text p { color: var(--fg-3); font-size: 1.02rem; line-height: 1.85; margin-bottom: 16px; }
.story-text .quote { padding: 20px 24px; background: var(--grad-soft); border-radius: 16px; font-size: 1.05rem; font-weight: 700; color: var(--irm-blue-deep); line-height: 1.6; margin: 24px 0; border-right: 4px solid var(--irm-orange); }
.story-text .signature { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.story-text .signature .line { width: 40px; height: 2px; background: var(--irm-orange); border-radius: 2px; }
.story-text .signature .name { font-size: 0.92rem; font-weight: 700; color: var(--fg-1); }

/* FOUNDERS GRID (small intro) */
.founders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.founder-card { background: #fff; border-radius: 32px; overflow: hidden; border: 1px solid var(--irm-gray-100); transition: all 0.5s var(--ease-out-expo); }
.founder-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hero); border-color: var(--irm-blue-light); }
.founder-img { aspect-ratio: 1/1; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--irm-blue), var(--irm-blue-light)); display: flex; align-items: center; justify-content: center; }
.founder-img .placeholder { color: rgba(255,255,255,0.95); font-size: 4rem; font-weight: 900; font-family: var(--font-display); letter-spacing: -2px; }
.founder-img .placeholder-sub { position: absolute; bottom: 16px; right: 20px; color: rgba(255,255,255,0.65); font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.founder-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,60,106,0.4), transparent 50%); pointer-events: none; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; }
.founder-body { padding: 22px 20px; }
.founder-name { font-size: 1.15rem; font-weight: 900; color: var(--irm-blue-deep); margin-bottom: 4px; letter-spacing: -0.4px; }
.founder-role { font-size: 0.74rem; color: var(--irm-orange); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.4px; text-transform: uppercase; }
.founder-desc { font-size: 0.86rem; color: var(--fg-3); line-height: 1.7; margin-bottom: 14px; }
.founder-tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--irm-blue-pale); color: var(--irm-blue); border-radius: 100px; font-size: 0.72rem; font-weight: 700; line-height: 1.3; }
.founder-tag svg { width: 12px; height: 12px; fill: var(--irm-orange); flex-shrink: 0; }

/* TESTIMONIALS */
.test-sec { background: var(--bg-1); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.test-card { background: #fff; border: 1px solid var(--irm-gray-100); border-radius: 24px; padding: 32px; position: relative; transition: all 0.5s var(--ease-out-expo); }
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--irm-blue-light); }
.test-card .qmark { position: absolute; top: 16px; left: 24px; font-size: 4rem; color: var(--irm-blue-pale); font-family: Georgia, serif; line-height: 1; font-weight: 700; }
.test-stars { display: flex; gap: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.test-stars svg { width: 16px; height: 16px; fill: var(--irm-orange); }
.test-quote { font-size: 0.98rem; color: var(--fg-2); line-height: 1.75; margin-bottom: 22px; font-weight: 500; position: relative; z-index: 1; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--irm-gray-100); }
.test-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--irm-blue), var(--irm-blue-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 0.95rem; flex-shrink: 0; }
.test-author .name { font-weight: 700; color: var(--fg-1); font-size: 0.95rem; }
.test-author .meta { font-size: 0.78rem; color: var(--fg-4); margin-top: 2px; }

/* VIDEO TESTIMONIALS */
.video-test-sec { background: var(--bg-2); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.video-card { aspect-ratio: 9/16; max-width: 280px; margin: 0 auto; width: 100%; background: linear-gradient(135deg, var(--irm-blue-dark), var(--irm-blue)); border-radius: 24px; position: relative; overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease-out-expo); box-shadow: var(--shadow-card); }
.video-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-hero); }
.video-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%); z-index: 1; }
.video-card .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 14px 40px rgba(0,0,0,0.3); transition: all 0.4s; }
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.1); background: var(--irm-orange); }
.video-card:hover .play svg { color: #fff; }
.video-card .play svg { width: 24px; height: 24px; color: var(--irm-blue); margin-right: -3px; transition: color 0.3s; }
.video-card .meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; color: #fff; }
.video-card .meta .name { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.video-card .meta .role { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.video-card .ph-bg { position: absolute; inset: 0; opacity: 0.3; background-size: cover; background-position: center; }

/* FAQ */
.faq-sec { background: var(--bg-1); }
.faq-list { max-width: 760px; margin: 48px auto 0; background: #fff; border-radius: 24px; padding: 8px 32px; border: 1px solid var(--irm-gray-100); }
.faq-item { border-bottom: 1px solid var(--irm-gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--fg-1); transition: color 0.3s; gap: 16px; text-align: right; }
.faq-q:hover { color: var(--irm-blue); }
.faq-toggle { width: 32px; height: 32px; flex-shrink: 0; background: var(--irm-blue-pale); border-radius: 50%; position: relative; transition: all 0.4s; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--irm-blue); top: 50%; left: 50%; transition: all 0.4s var(--ease-out-expo); }
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-toggle { background: var(--irm-blue); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: #fff; }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding-bottom: 24px; color: var(--fg-3); font-size: 0.95rem; line-height: 1.85; }

/* CTA FORM */
.cta-sec { background: var(--grad-hero); position: relative; overflow: hidden; padding: 110px 40px; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(232,153,62,0.20), transparent), radial-gradient(ellipse 40% 40% at 85% 80%, rgba(255,255,255,0.06), transparent); }
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shapes .s { position: absolute; border-radius: 50%; }
.cta-shapes .s1 { width: 420px; height: 420px; top: -120px; left: -100px; background: rgba(255,255,255,0.04); }
.cta-shapes .s2 { width: 280px; height: 280px; bottom: -80px; right: -60px; background: rgba(232,153,62,0.10); }
.cta-shapes .s3 { width: 80px; height: 80px; top: 40%; right: 10%; background: rgba(232,153,62,0.15); }
.cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.cta-text { color: #fff; }
.cta-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 18px; }
.cta-text h2 .orange { color: var(--irm-orange-bright); }
.cta-text p { font-size: 1.1rem; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 28px; max-width: 480px; }
.cta-bullets { display: flex; flex-direction: column; gap: 14px; }
.cta-bullets li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 0.96rem; font-weight: 500; }
.cta-bullets li .check { width: 24px; height: 24px; border-radius: 50%; background: rgba(232,153,62,0.25); border: 1px solid var(--irm-orange-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-bullets li .check svg { width: 12px; height: 12px; color: var(--irm-orange-bright); }
.cta-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.14); border-radius: 32px; padding: 40px; box-shadow: 0 24px 80px rgba(0,0,0,0.18); }
.cta-card-title { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.5px; }
.cta-card-sub { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cta-card-urgent { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(232,153,62,0.18); border: 1px solid rgba(232,153,62,0.35); border-radius: 100px; font-size: 0.78rem; font-weight: 700; color: var(--irm-orange-bright); margin-bottom: 16px; }
.cta-card-urgent .dot { width: 6px; height: 6px; background: var(--irm-orange-bright); border-radius: 50%; animation: blink 2s infinite; }
.f-field { margin-bottom: 12px; }
.f-field input { width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; color: #fff; font: 0.98rem/1 var(--font-sans); transition: all 0.3s; outline: none; text-align: right; }
.f-field input::placeholder { color: rgba(255,255,255,0.45); }
.f-field input:focus { border-color: var(--irm-orange); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 3px rgba(232,153,62,0.18); }
.f-check { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0; text-align: right; font-size: 0.78rem; color: rgba(255,255,255,0.55); cursor: pointer; line-height: 1.5; }
.f-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--irm-orange); flex-shrink: 0; }
.btn-submit { width: 100%; padding: 18px; background: var(--irm-orange); color: #fff; border: none; border-radius: 16px; font: 800 1.1rem/1 var(--font-sans); cursor: pointer; margin-top: 8px; transition: all 0.4s var(--ease-out-expo); box-shadow: var(--shadow-orange); display: inline-flex; align-items: center; justify-content: center; gap: 10px; position: relative; overflow: hidden; }
.btn-submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.4), transparent); transform: translateX(-150%); transition: transform 0.7s; }
.btn-submit:hover { background: var(--irm-orange-bright); transform: translateY(-2px); }
.btn-submit:hover::before { transform: translateX(150%); }
.btn-submit svg { width: 18px; height: 18px; }
.cta-card-foot { margin-top: 14px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* STICKY CTA */
.sticky-cta { display: none; position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 100; padding: 16px; background: var(--irm-orange); color: #fff; border: none; border-radius: 100px; font: 800 1.05rem/1 var(--font-sans); cursor: pointer; box-shadow: 0 14px 35px rgba(232,153,62,0.5); transition: all 0.3s; }
.sticky-cta:active { transform: scale(0.98); }

/* FINAL BAND */
.final-sec { background: var(--bg-1); padding: 80px 40px; text-align: center; }
.final-sec h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -1px; line-height: 1.2; margin-bottom: 18px; color: var(--fg-1); }
.final-sec h2 .orange { color: var(--irm-orange); }
.final-sec p { font-size: 1.05rem; color: var(--fg-4); margin-bottom: 32px; max-width: 520px; margin-inline: auto; line-height: 1.8; }

/* FOOTER */
.footer { padding: 48px 40px; text-align: center; background: var(--irm-blue-dark); color: rgba(255,255,255,0.4); font-size: 0.82rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer .logo { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; }
.footer .logo .dot { color: var(--irm-orange); }
.footer .links { display: flex; justify-content: center; gap: 24px; margin: 18px 0; flex-wrap: wrap; }
.footer .links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer .links a:hover { color: var(--irm-orange-bright); }
.footer .disclaimer { max-width: 760px; margin: 22px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.7rem; line-height: 1.6; color: rgba(255,255,255,0.32); text-align: center; }

/* SCROLL REVEAL */
.sr { opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out-expo); }
.sr.in { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-desc { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; gap: 24px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .path-card.featured { transform: none; }
  .what-grid, .success-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; gap: 20px; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .test-grid, .video-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-block .n { font-size: 2.4rem; }
  .compare-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .compare-cell { padding: 14px 10px; font-size: 0.78rem; }
  .compare-cell.label { font-size: 0.82rem; }
  .compare-row.head .compare-cell { padding: 14px 8px; font-size: 0.78rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-text p { margin-inline: auto; }
  .sec-pad { padding: 70px 20px; }
  .stats-sec, .cta-sec { padding: 70px 20px; }
  .sticky-cta { display: block; }
  .cta-sec { padding-bottom: 100px; }
  .success-stats { grid-template-columns: 1fr 1fr 1fr; }
  .success-stat .n { font-size: 1.3rem; }
}

/* ─── MOBILE-FIRST FINE-TUNING ≤600px ───────────────────────────── */
@media (max-width: 600px) {
  /* Body padding for sticky CTA — never let it cover content */
  body { padding-bottom: 88px; }
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; padding: 14px; font-size: 0.98rem; }

  /* NAV tighter */
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 10px 16px; }
  .nav-logo { font-size: 1.05rem; }
  .nav-cta { padding: 9px 18px; font-size: 0.82rem; }

  /* HERO typography — Hebrew breaks badly above 2.4rem on 375px */
  .hero { padding: 100px 18px 56px; }
  .hero h1 { font-size: clamp(1.85rem, 7.8vw, 2.4rem); line-height: 1.18; letter-spacing: -1px; }
  .hero-pill { font-size: 0.74rem; padding: 7px 16px; margin-bottom: 22px; }
  .hero-desc { font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
  .hero-trust { gap: 16px 24px; margin-top: 32px; padding-top: 22px; }
  .hero-trust-item .n { font-size: 1.4rem; }
  .hero-trust-item .l { font-size: 0.7rem; }
  .btn-orange { padding: 16px 28px; font-size: 0.98rem; }
  .btn-ghost { padding: 14px 24px; font-size: 0.94rem; }

  /* HERO card */
  .hero-card { padding: 24px; border-radius: 24px; }
  .hc-final .val { font-size: 1.65rem; }
  .hc-row .lbl, .hc-row .val { font-size: 0.88rem; }

  /* Section title scale */
  .sec-pad { padding: 60px 18px; }
  .sec-title { font-size: clamp(1.6rem, 6.8vw, 2rem); line-height: 1.2; letter-spacing: -0.6px; }
  .sec-sub { font-size: 0.98rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 1.5px; }

  /* Pain — single column on tiny screens */
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .pain-resolve { padding: 24px 22px; }
  .pain-resolve p { font-size: 1.02rem; }

  /* What flow */
  .what-flow { padding: 24px; border-radius: 24px; }
  .flow-result { flex-direction: column; gap: 8px; align-items: flex-start; padding: 18px 20px; }
  .flow-result .val { font-size: 1.5rem; }

  /* Paths bottom */
  .paths-bottom { padding: 22px 22px; }
  .paths-bottom p { font-size: 0.96rem; }
  .path-card { padding: 28px 22px; }

  /* COMPARISON · simplified mobile (2-way: דירה רגילה vs IRM, hide קרן השקעות) */
  .compare-table { box-shadow: var(--shadow-soft); border-radius: 18px; }
  .compare-row.head { display: none; }
  .compare-row { display: block; padding: 0; }
  .compare-row + .compare-row:not(.head) { border-top: 8px solid var(--bg-2); }
  .compare-row .compare-cell:nth-child(3) { display: none; } /* hide קרן השקעות column on mobile */
  .compare-cell { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px dashed var(--irm-gray-100); font-size: 0.96rem; text-align: right; }
  .compare-cell.label { background: var(--irm-blue-dark); color: #fff; padding: 14px 18px; font-weight: 800; font-size: 0.95rem; justify-content: flex-start; border-bottom: none; }
  .compare-cell:not(.label)::before { font-size: 0.8rem; font-weight: 700; color: var(--fg-4); letter-spacing: 0.3px; }
  .compare-row .compare-cell:nth-child(2)::before { content: 'דירה רגילה'; }
  .compare-row .compare-cell.us::before { content: '★ ארביטראז\' IRM'; color: var(--irm-orange); }
  .compare-row .compare-cell.us { background: rgba(232,153,62,0.08); font-weight: 800; }

  /* Fit cards */
  .fit-card { padding: 28px 24px; border-radius: 22px; }
  .fit-head h3 { font-size: 1.2rem; }

  /* Course timeline */
  .tl-card { padding: 22px 22px; grid-template-columns: 48px 1fr; gap: 16px; border-radius: 20px; }
  .tl-num { width: 48px; height: 48px; font-size: 1rem; }
  .tl-card h3 { font-size: 1rem; }
  .tl-card p { font-size: 0.88rem; }

  /* Funnel grid (3 cards under "מה יקרה אחרי") */
  .funnel-grid { grid-template-columns: 1fr; gap: 14px; }
  .funnel-card { padding: 24px 22px; }

  /* Model section · pain rows + stages */
  .pain-rows { grid-template-columns: 1fr; gap: 12px; }
  .pain-row { padding: 16px 18px; }
  .pain-row-icon { width: 40px; height: 40px; font-size: 1.25rem; }
  .model-stage { padding-top: 44px; margin-top: 44px; }
  .model-step-eyebrow { font-size: 0.85rem; padding: 5px 12px; }
  .model-step-h3 { font-size: clamp(1.4rem, 6.2vw, 1.85rem); }
  .model-bridge { padding: 20px 22px; font-size: 1rem; }

  /* Inline CTA mobile */
  .inline-cta { margin-top: 44px; padding: 26px 22px; }
  .inline-cta p { font-size: 1.02rem; }
  .btn-inline-cta { padding: 13px 26px; font-size: 0.93rem; }

  /* Bogrim/Founders dividers tighter */
  .bogrim-sec .test-grid { margin-top: 44px; padding-top: 44px; }
  .founders-sec .founders-grid { margin-top: 44px; padding-top: 44px; }
  .sec-intro { margin-bottom: 36px; }

  /* Stats */
  .stats-sec { padding: 60px 18px; }
  .stat-block { padding: 24px 12px; }
  .stat-block .n { font-size: 2rem; }

  /* Story */
  .story-text h2, .what-text h2, .success-text h2 { font-size: clamp(1.55rem, 6.5vw, 2rem); line-height: 1.2; }
  .story-img-wrap { max-width: 360px; width: 100%; margin: 0 auto; }
  .story-img { aspect-ratio: 5/3; border-radius: 24px; }
  .story-img .ph { font-size: 3.5rem; }
  .story-badge { right: -8px; bottom: -16px; padding: 14px 18px; }

  /* Founders 4-card grid → 1 column on small mobile */
  .founders-grid { grid-template-columns: 1fr; gap: 14px; }
  .founder-card { border-radius: 22px; }
  .founder-body { padding: 22px 20px; }
  .founder-name { font-size: 1.15rem; }
  .founder-img { aspect-ratio: 1/1; }
  .founder-img .placeholder { font-size: 2.6rem; }

  /* Testimonials */
  .test-card { padding: 26px 24px; border-radius: 20px; }
  .test-quote { font-size: 0.95rem; }
  .test-card .qmark { font-size: 3rem; top: 12px; }

  /* Video grid — keep cards 9/16 */
  .video-card { max-width: 240px; }

  /* FAQ */
  .faq-list { padding: 4px 18px; border-radius: 20px; }
  .faq-q { font-size: 0.82rem; padding: 18px 0; gap: 10px; line-height: 1.4; }
  .faq-toggle { width: 26px; height: 26px; flex-shrink: 0; }
  .faq-toggle::before { width: 10px; }
  .faq-toggle::after { height: 10px; }
  .faq-a-inner { font-size: 0.9rem; padding-bottom: 22px; }

  /* CTA form */
  .cta-sec { padding: 72px 18px 110px; }
  .cta-card { padding: 28px 24px; border-radius: 24px; }
  .cta-card-title { font-size: 1.2rem; }
  .cta-text h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); line-height: 1.2; }
  .cta-text p { font-size: 1rem; }
  .cta-bullets li { font-size: 0.92rem; }
  .f-field input { padding: 14px 18px; font-size: 0.96rem; }
  .btn-submit { padding: 16px; font-size: 1.02rem; }

  /* Final + Footer */
  .final-sec { padding: 64px 18px; }
  .final-sec h2 { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  .footer { padding: 36px 18px; }
}
