/* Homepage - sales-focused sections */

.hero-section {
 position: relative;
 padding: 0 !important;
 background: #f3f5f8;
 overflow: hidden;
}

.hero-section::before {
 content: "";
 position: absolute;
 width: 420px;
 height: 420px;
 border: 1px solid rgba(42, 92, 159, 0.12);
 border-radius: 50%;
 top: 12%;
 right: -120px;
 pointer-events: none;
}

.hero-section::after {
 content: "";
 position: absolute;
 width: 180px;
 height: 180px;
 background: var(--blueprint-gold);
 border-radius: 28px;
 bottom: 8%;
 left: -60px;
 opacity: 0.35;
 pointer-events: none;
}

.hero-shell {
 max-width: 1180px;
 margin: 0 auto;
 padding: calc(var(--nav-height) + 2.5rem) 1.5rem 4.5rem;
 display: grid;
 grid-template-columns: minmax(0, 1.15fr) minmax(260px, 380px);
 gap: 2.5rem;
 align-items: center;
 position: relative;
 z-index: 1;
}

.hero-copy { min-width: 0; max-width: 100%; }

.hero-tagline {
 display: inline-block;
 font-size: 0.8rem;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--primary-blue);
 margin-bottom: 1rem;
}

.hero-title {
 font-size: clamp(1.85rem, 2.4vw + 0.8rem, 3.1rem) !important;
 font-weight: 800 !important;
 letter-spacing: -0.04em !important;
 line-height: 1.12 !important;
 white-space: normal !important;
 max-width: 18ch;
 margin-bottom: 1.15rem !important;
}

.hero-subtitle {
 font-size: 1.05rem !important;
 line-height: 1.7 !important;
 color: var(--text-secondary) !important;
 margin: 0 0 1.85rem !important;
 max-width: 38rem !important;
}

.hero-cta-group {
 display: flex;
 flex-wrap: wrap;
 gap: 0.85rem;
 justify-content: flex-start !important;
}

.hero-visual { display: flex; justify-content: center; min-width: 0; width: 100%; }

.bp-board {
 position: relative;
 width: 100%;
 max-width: 380px;
 aspect-ratio: 1;
 background: #fff;
 border-radius: 28px;
 border: 1px solid rgba(15, 23, 42, 0.06);
 box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
 overflow: hidden;
}

.bp-board__grid {
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(42, 92, 159, 0.06) 1px, transparent 1px),
 linear-gradient(90deg, rgba(42, 92, 159, 0.06) 1px, transparent 1px);
 background-size: 28px 28px;
}

.bp-board__lines {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}

.bp-node {
 position: absolute;
 z-index: 2;
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.08);
 border-radius: 16px;
 padding: 0.75rem 0.9rem;
 box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
 min-width: 118px;
 animation: floatY 5s ease-in-out infinite;
}

.bp-node span {
 display: block;
 font-size: 0.72rem;
 font-weight: 800;
 color: var(--blueprint-gold);
 letter-spacing: 0.08em;
}

.bp-node strong {
 display: block;
 font-size: 0.95rem;
 font-weight: 700;
 margin-top: 0.15rem;
}

.bp-node--a { left: 8%; bottom: 18%; }
.bp-node--b { right: 8%; top: 12%; animation-delay: 0.6s; }
.bp-node--c { right: 10%; bottom: 14%; animation-delay: 1.1s; }

@keyframes floatY {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-8px); }
}

/* When to call */
.home-triggers { background: #f3f5f8; }

.triggers-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 0.85rem;
 margin-top: 2rem;
 align-items: stretch;
}

.trigger-item {
 display: grid;
 grid-template-columns: 28px 1fr;
 gap: 0.85rem;
 align-items: start;
 height: 100%;
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.06);
 border-radius: 16px;
 padding: 1.15rem 1.25rem;
 box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.trigger-item::before {
 content: "";
 width: 10px;
 height: 10px;
 margin-top: 0.45rem;
 border-radius: 50%;
 background: var(--blueprint-gold);
 box-shadow: 0 0 0 4px rgba(255, 189, 90, 0.18);
}

.trigger-item p {
 margin: 0;
 color: var(--text-secondary);
 font-weight: 600;
 line-height: 1.45;
}

/* How Blueprint Can Help */
.home-help { background: #f3f5f8; }

.help-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1rem;
 margin-top: 2rem;
 align-items: stretch;
}

.help-card {
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.06);
 border-radius: 22px;
 padding: 1.6rem 1.4rem;
 box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
 transition: transform 0.25s ease, box-shadow 0.25s ease;
 text-decoration: none;
 color: inherit;
 display: flex;
 flex-direction: column;
 height: 100%;
 min-height: 220px;
}

.help-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 18px 40px rgba(42, 92, 159, 0.12);
 color: inherit;
}

.help-card__num {
 font-size: 0.78rem;
 font-weight: 800;
 letter-spacing: 0.08em;
 color: var(--blueprint-gold);
 margin-bottom: 0.75rem;
}

.help-card h3 {
 font-size: 1.15rem;
 margin: 0 0 0.55rem;
 letter-spacing: -0.025em;
 color: var(--black);
}

.help-card p {
 margin: 0;
 color: var(--text-tertiary);
 line-height: 1.6;
 font-size: 0.95rem;
 flex: 1;
}

.help-card__link {
 display: inline-block;
 margin-top: 1rem;
 font-size: 0.85rem;
 font-weight: 700;
 color: var(--primary-blue);
}

/* Keep remaining home sections */
.tech-partners-section {
 background: #fff !important;
 padding: 3.5rem 0 !important;
}

.tech-partners-section .section-title {
 font-size: 0.82rem !important;
 letter-spacing: 0.12em !important;
 text-transform: uppercase !important;
 color: var(--text-tertiary) !important;
 margin-bottom: 1.75rem !important;
}

.home-impact { background: #fff !important; }

.impact-layout {
 display: grid;
 grid-template-columns: 0.95fr 1.05fr;
 gap: 3rem;
 align-items: center;
}

.gold-bar {
 width: 48px;
 height: 3px;
 background: var(--blueprint-gold);
 margin: 0 0 1.25rem;
}

.impact-diagram {
 position: relative;
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.impact-diagram__track {
 position: absolute;
 left: 28px;
 top: 36px;
 bottom: 36px;
 width: 2px;
 background: #d7deea;
}

.impact-card {
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: auto 1fr;
 gap: 1rem;
 align-items: center;
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.06);
 border-radius: 20px;
 padding: 1.2rem 1.3rem;
 box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.impact-card__index {
 width: 52px;
 height: 52px;
 border-radius: 16px;
 background: var(--primary-blue);
 color: #fff;
 font-weight: 800;
 font-size: 1.15rem;
 display: flex;
 align-items: center;
 justify-content: center;
}

.impact-card h4 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.impact-card p { margin: 0; color: var(--text-tertiary); font-size: 0.95rem; }

.home-process { background: #f3f5f8 !important; }

.process-flow {
 position: relative;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
}

.process-flow__line {
 position: absolute;
 top: 34px;
 left: 16%;
 right: 16%;
 height: 2px;
 background: #d7deea;
 z-index: 0;
}

.process-tile {
 position: relative;
 z-index: 1;
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.06);
 border-radius: 24px;
 padding: 1.75rem 1.5rem 1.6rem;
 box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.process-tile__orb {
 width: 56px;
 height: 56px;
 border-radius: 50%;
 border: 3px solid var(--blueprint-gold);
 background: #fff;
 color: var(--primary-blue);
 font-weight: 800;
 font-size: 1.2rem;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: -2.55rem auto 1.15rem;
 box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.process-tile h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.process-tile p { margin: 0; color: var(--text-tertiary); line-height: 1.65; }

.home-cta { background: #fff !important; padding: var(--space-section) 0 !important; }

.cta-panel {
 position: relative;
 max-width: 760px;
 margin: 0 auto;
 background: #fff;
 border: 1px solid rgba(15, 23, 42, 0.06);
 border-radius: 28px;
 padding: 2.75rem 2.25rem;
 text-align: center;
 box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
 overflow: hidden;
}

.cta-panel__accent {
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 background: var(--blueprint-gold);
}

.cta-panel .consultation-title { color: var(--black) !important; margin-bottom: 0.9rem !important; }
.cta-panel .consultation-text {
 color: var(--text-secondary) !important;
 max-width: 36rem;
 margin: 0 auto 1.75rem !important;
}

.section-head.center { text-align: center; margin-bottom: 0.5rem; }
.section-head.center .section-subtitle { margin: 0.75rem auto 0; }

@media (max-width: 991px) {
 .hero-shell,
 .triggers-grid,
 .help-grid,
 .impact-layout,
 .process-flow {
 grid-template-columns: 1fr;
 }

 .hero-shell { gap: 2rem; }
 .hero-title { max-width: none; }
 .hero-visual { max-width: 340px; margin: 0 auto; }
 .process-flow__line { display: none; }
 .process-tile__orb { margin-top: 0; margin-left: 0; }
}

@media (max-width: 768px) {
 body.seminar-announcement-visible .hero-shell {
 padding-top: calc(var(--nav-height) + var(--seminar-announcement-height, 2.75rem) + 1rem);
 }
 .bp-board { max-width: 300px; }
 .cta-panel { padding: 2rem 1.35rem; }
}

body.seminar-announcement-visible .hero-shell {
 padding-top: calc(var(--nav-height) + var(--seminar-announcement-height, 2.75rem) + 1.5rem);
}

html.seminar-announcement--hidden .hero-shell {
 padding-top: calc(var(--nav-height) + 2.5rem);
}
