/**
 * Pages — Inner page specific styles (Safeguard, Use Cases, How We Work)
 * @package Brightn8_Safeguard
 */


/* ================================================================
   SAFEGUARD PAGE (sg- prefix)
   ================================================================ */

/* --- Hero --- */
.sg-hero {
    position: relative; padding: 10rem 0 5rem;
    background: linear-gradient(180deg, #000000 0%, #0A0F1A 50%, #0A0A0A 100%);
    overflow: hidden;
}
.sg-hero::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px; pointer-events: none; z-index: 1;
}
[data-theme="light"] .sg-hero { background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%); }
[data-theme="light"] .sg-hero::before { opacity: 0.02; }

.sg-hero__glow {
    position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.sg-hero__grid-bg {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}
[data-theme="light"] .sg-hero__grid-bg { opacity: 0.06; }

.sg-hero__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.sg-hero__label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--accent);
    margin-bottom: 1.5rem; padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent-glow); border-radius: 100px;
    background: rgba(37, 99, 235, 0.08);
}
.sg-hero__label svg { flex-shrink: 0; }
.sg-hero__title {
    font-size: 3.25rem; font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.sg-hero__title span { color: var(--accent); }
.sg-hero__subtitle {
    font-size: 1.1875rem; color: var(--text-secondary); line-height: 1.7;
    max-width: 680px; margin: 0 auto 2.5rem;
}
.sg-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Section Header --- */
.sg-section-header { text-align: center; margin-bottom: 3.5rem; }
.sg-section-header h2 {
    font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.sg-section-header h2 span { color: var(--accent); }
.sg-section-header p {
    font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto;
}

/* --- Section 1: Risk Cards --- */
.sg-risk { background: var(--bg-secondary); }
[data-theme="light"] .sg-risk { background: #F8FAFC; }

.sg-risk__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.sg-risk-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px;
    padding: 2rem; transition: all var(--transition); position: relative; overflow: hidden;
}
.sg-risk-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #EF4444, #F97316); opacity: 0;
    transition: opacity var(--transition);
}
.sg-risk-card:hover { border-color: rgba(239, 68, 68, 0.3); transform: translateY(-3px); }
.sg-risk-card:hover::before { opacity: 1; }
[data-theme="light"] .sg-risk-card { background: var(--bn8-white); border-color: var(--bn8-gray-200); }

.sg-risk-card__icon {
    width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(239, 68, 68, 0.1); color: #EF4444; margin-bottom: 1.25rem;
}
.sg-risk-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.sg-risk-card__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* --- Section 2: Definition --- */
.sg-define { background: var(--bg-primary); }
.sg-define__layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.sg-define__content h2 {
    font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.sg-define__content h2 span { color: var(--accent); }
.sg-define__content p {
    font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem;
}
.sg-define__pillars { display: flex; flex-direction: column; gap: 1rem; }
.sg-define__pillar {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 12px; transition: all var(--transition);
}
.sg-define__pillar:hover { border-color: var(--accent-glow); transform: translateX(4px); }
[data-theme="light"] .sg-define__pillar { background: var(--bn8-white); border-color: var(--bn8-gray-200); }
.sg-define__pillar-icon {
    width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(37, 99, 235, 0.1); color: var(--accent); flex-shrink: 0;
}
.sg-define__pillar-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.sg-define__pillar-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

/* Definition visual (right side) */
.sg-define__visual {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.sg-define__diagram {
    width: 100%; max-width: 420px; aspect-ratio: 1; position: relative;
}
.sg-define__ring {
    position: absolute; inset: 0; border: 2px dashed rgba(37, 99, 235, 0.15); border-radius: 50%;
    animation: sg-spin 40s linear infinite;
}
.sg-define__ring--inner {
    inset: 15%; border-color: rgba(37, 99, 235, 0.1);
    animation-direction: reverse; animation-duration: 30s;
}
@keyframes sg-spin { to { transform: rotate(360deg); } }

.sg-define__center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(37, 99, 235, 0.2);
}
.sg-define__center-icon {
    width: 56px; height: 56px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px var(--accent-glow);
}

.sg-define__node {
    position: absolute; width: 48px; height: 48px; border-radius: 12px;
    background: var(--bg-card); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}
[data-theme="light"] .sg-define__node { background: var(--bn8-white); border-color: var(--bn8-gray-200); }
.sg-define__node--1 { top: 5%; left: 50%; transform: translateX(-50%); }
.sg-define__node--2 { top: 30%; right: 2%; }
.sg-define__node--3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.sg-define__node--4 { top: 30%; left: 2%; }

/* --- Section 3: Triple Lens / Expertise --- */
.sg-expertise { background: var(--bg-secondary); }
[data-theme="light"] .sg-expertise { background: #F8FAFC; }

.sg-expertise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sg-expertise-col {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 2.5rem 2rem; transition: all var(--transition);
}
.sg-expertise-col:hover { border-color: rgba(37, 99, 235, 0.25); transform: translateY(-4px); }
[data-theme="light"] .sg-expertise-col { background: var(--bn8-white); border-color: var(--bn8-gray-200); }

.sg-expertise-col__icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.sg-expertise-col__icon--marketing { background: rgba(37, 99, 235, 0.1); color: var(--accent); }
.sg-expertise-col__icon--bizdev { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.sg-expertise-col__icon--ops { background: rgba(168, 85, 247, 0.1); color: #A855F7; }

.sg-expertise-col__title { font-size: 1.1875rem; font-weight: 700; margin-bottom: 1.25rem; }
.sg-expertise-col__list { display: flex; flex-direction: column; gap: 0.75rem; }
.sg-expertise-col__item {
    display: flex; align-items: flex-start; gap: 0.625rem;
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5;
}
.sg-expertise-col__item svg { flex-shrink: 0; margin-top: 2px; }

/* --- Section 4: 6-Step Framework --- */
.sg-framework { background: var(--bg-primary); }
.sg-framework__timeline { max-width: 740px; margin: 0 auto; position: relative; }
.sg-framework__timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 27px; width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(37, 99, 235, 0.1));
}
.sg-step {
    display: flex; gap: 1.75rem; padding-bottom: 2.5rem; position: relative;
}
.sg-step:last-child { padding-bottom: 0; }
.sg-step__number {
    width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem;
    background: var(--bg-card); border: 2px solid var(--accent);
    color: var(--accent); position: relative; z-index: 2;
    box-shadow: 0 0 20px var(--accent-glow);
}
[data-theme="light"] .sg-step__number { background: var(--bn8-white); }
.sg-step__content { padding-top: 0.625rem; }
.sg-step__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.375rem; }
.sg-step__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* --- Section 5: UAE + Global --- */
.sg-global {
    background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
    position: relative; overflow: hidden;
}
.sg-global::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px; opacity: 0.03; pointer-events: none;
}
[data-theme="light"] .sg-global { background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%); }

.sg-global__inner { position: relative; z-index: 2; }
.sg-global h2 { color: var(--bn8-white); }
.sg-global p.sg-global__desc { color: rgba(255, 255, 255, 0.6); }
.sg-global__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.sg-global-card {
    padding: 1.75rem; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04); transition: all var(--transition);
}
.sg-global-card:hover { border-color: rgba(37, 99, 235, 0.3); background: rgba(255, 255, 255, 0.06); }
.sg-global-card__icon {
    width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(37, 99, 235, 0.15); color: var(--bn8-blue-light); margin-bottom: 1rem;
}
.sg-global-card__title { font-size: 1rem; font-weight: 700; color: var(--bn8-white); margin-bottom: 0.375rem; }
.sg-global-card__text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

/* --- Section 6: Results / Outcomes --- */
.sg-outcomes { background: var(--bg-secondary); }
[data-theme="light"] .sg-outcomes { background: #F8FAFC; }

.sg-outcomes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sg-outcome-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px;
    padding: 2rem; display: flex; align-items: flex-start; gap: 1rem; transition: all var(--transition);
}
.sg-outcome-card:hover { border-color: rgba(34, 197, 94, 0.3); transform: translateY(-3px); }
[data-theme="light"] .sg-outcome-card { background: var(--bn8-white); border-color: var(--bn8-gray-200); }
.sg-outcome-card__check {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34, 197, 94, 0.1); color: #22C55E;
}
.sg-outcome-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.sg-outcome-card__text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }

/* --- Section 7: Who This Is For --- */
.sg-audience { background: var(--bg-primary); }
.sg-audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sg-audience__col { padding: 2.5rem; border-radius: 16px; border: 1px solid var(--border-color); }
.sg-audience__col--for { background: rgba(34, 197, 94, 0.04); border-color: rgba(34, 197, 94, 0.15); }
.sg-audience__col--not { background: rgba(239, 68, 68, 0.04); border-color: rgba(239, 68, 68, 0.15); }
[data-theme="light"] .sg-audience__col--for { background: #F0FDF4; border-color: #BBF7D0; }
[data-theme="light"] .sg-audience__col--not { background: #FEF2F2; border-color: #FECACA; }

.sg-audience__col-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.sg-audience__col-icon {
    width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.sg-audience__col--for .sg-audience__col-icon { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.sg-audience__col--not .sg-audience__col-icon { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.sg-audience__col-title { font-size: 1.25rem; font-weight: 700; }
.sg-audience__list { display: flex; flex-direction: column; gap: 0.875rem; }
.sg-audience__item {
    display: flex; align-items: flex-start; gap: 0.625rem;
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5;
}
.sg-audience__item svg { flex-shrink: 0; margin-top: 3px; }

/* --- Final CTA --- */
.sg-final-cta {
    background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
    position: relative; overflow: hidden; padding: 6rem 0;
}
.sg-final-cta::before {
    content: ''; position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px; pointer-events: none;
}
[data-theme="light"] .sg-final-cta { background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%); }
.sg-final-cta__glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.sg-final-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.sg-final-cta__title { font-size: 2.5rem; font-weight: 800; color: var(--bn8-white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.sg-final-cta__text { font-size: 1.0625rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 2.5rem; }
.sg-final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.sg-final-cta__contact { margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; }
.sg-final-cta__contact a { color: rgba(255, 255, 255, 0.5); font-size: 0.9375rem; display: flex; align-items: center; gap: 0.5rem; }
.sg-final-cta__contact a:hover { color: var(--bn8-blue-light); }

/* --- Safeguard Responsive --- */
@media (max-width: 1024px) {
    .sg-risk__grid { grid-template-columns: repeat(2, 1fr); }
    .sg-define__layout { grid-template-columns: 1fr; gap: 3rem; }
    .sg-define__visual { order: -1; }
    .sg-define__diagram { max-width: 320px; margin: 0 auto; }
    .sg-expertise__grid { grid-template-columns: 1fr; }
    .sg-global__grid { grid-template-columns: repeat(2, 1fr); }
    .sg-outcomes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sg-hero { padding: 8rem 0 4rem; }
    .sg-hero__title { font-size: 2.25rem; }
    .sg-hero__subtitle { font-size: 1.0625rem; }
    .sg-hero__actions { flex-direction: column; align-items: center; }
    .sg-hero__actions .bn8-btn { width: 100%; max-width: 340px; }
    .sg-risk__grid { grid-template-columns: 1fr; }
    .sg-section-header h2 { font-size: 1.75rem; }
    .sg-global__grid { grid-template-columns: 1fr; }
    .sg-outcomes__grid { grid-template-columns: 1fr; }
    .sg-audience__grid { grid-template-columns: 1fr; }
    .sg-final-cta__title { font-size: 1.75rem; }
    .sg-final-cta__contact { flex-direction: column; gap: 0.75rem; align-items: center; }
}
@media (max-width: 480px) {
    .sg-hero__title { font-size: 1.875rem; }
    .sg-define__content h2 { font-size: 1.75rem; }
    .sg-final-cta__title { font-size: 1.5rem; }
    .sg-audience__col { padding: 1.75rem; }
}


/* ================================================================
   USE CASES PAGE (uc- prefix)
   ================================================================ */

/* --- Hero --- */
.uc-hero {
    position: relative; padding: 10rem 0 5rem;
    background: linear-gradient(180deg, #000 0%, #0A0F1A 50%, #0A0A0A 100%);
    overflow: hidden;
}
.uc-hero::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px; pointer-events: none; z-index: 1;
}
[data-theme="light"] .uc-hero { background: linear-gradient(180deg, #F0F4FF 0%, #FFF 100%); }
[data-theme="light"] .uc-hero::before { opacity: 0.02; }
.uc-hero__glow {
    position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.uc-hero__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.uc-hero__title {
    font-size: 3.25rem; font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.uc-hero__title span { color: var(--accent); }
.uc-hero__subtitle {
    font-size: 1.1875rem; color: var(--text-secondary); line-height: 1.7;
    max-width: 680px; margin: 0 auto 2.5rem;
}
.uc-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Section Header --- */
.uc-section-header { text-align: center; margin-bottom: 3.5rem; }
.uc-section-header h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.uc-section-header h2 span { color: var(--accent); }
.uc-section-header p { font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

/* --- Use Case Block (alternating layout) --- */
.uc-block { background: var(--bg-primary); }
.uc-block--alt { background: var(--bg-secondary); }
[data-theme="light"] .uc-block--alt { background: #F8FAFC; }

.uc-block__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.uc-block__layout--reverse .uc-block__visual { order: -1; }

/* Priority badge */
.uc-block__priority {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.uc-block__priority--primary { background: rgba(37, 99, 235, 0.1); color: var(--accent); border: 1px solid rgba(37, 99, 235, 0.2); }
.uc-block__priority--secondary { background: rgba(168, 85, 247, 0.1); color: #A855F7; border: 1px solid rgba(168, 85, 247, 0.2); }
.uc-block__priority--industry { background: rgba(245, 158, 11, 0.1); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.2); }

.uc-block__number { font-size: 0.8125rem; font-weight: 800; color: var(--accent); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.uc-block__title { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.uc-block__title span { color: var(--accent); }

/* Problem / Solution / Impact columns */
.uc-block__problem {
    margin-bottom: 1.5rem; padding: 1.25rem 1.5rem;
    background: rgba(239, 68, 68, 0.04); border: 1px solid rgba(239, 68, 68, 0.1); border-radius: 12px;
}
[data-theme="light"] .uc-block__problem { background: rgba(239, 68, 68, 0.03); border-color: rgba(239, 68, 68, 0.12); }
.uc-block__problem-label {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: #EF4444; margin-bottom: 0.625rem;
}
.uc-block__problem-list { display: flex; flex-direction: column; gap: 0.375rem; }
.uc-block__problem-item {
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5;
    display: flex; align-items: flex-start; gap: 0.5rem;
}
.uc-block__problem-item svg { flex-shrink: 0; margin-top: 4px; }

.uc-block__solution { margin-bottom: 1.5rem; }
.uc-block__solution-label {
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.75rem;
}
.uc-block__solution-list { display: flex; flex-direction: column; gap: 0.5rem; }
.uc-block__solution-item {
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5;
    display: flex; align-items: flex-start; gap: 0.5rem;
}
.uc-block__solution-item svg { flex-shrink: 0; margin-top: 4px; }

/* Impact cards */
.uc-block__impact { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.uc-impact-card {
    padding: 1rem; background: rgba(34, 197, 94, 0.04); border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 10px; display: flex; align-items: flex-start; gap: 0.5rem;
}
[data-theme="light"] .uc-impact-card { background: rgba(34, 197, 94, 0.03); border-color: rgba(34, 197, 94, 0.15); }
.uc-impact-card svg { flex-shrink: 0; margin-top: 2px; }
.uc-impact-card__text { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }

/* UAE insight callout */
.uc-block__insight {
    padding: 1rem 1.25rem; background: rgba(37, 99, 235, 0.05);
    border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0;
    font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6;
}
.uc-block__insight strong { color: var(--accent); font-weight: 700; }

/* --- Visual Scene (SVG illustration) --- */
.uc-block__visual { display: flex; align-items: center; justify-content: center; }
.uc-scene {
    width: 100%; max-width: 460px; aspect-ratio: 4/3;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center;
}
[data-theme="light"] .uc-scene { background: var(--bn8-white); border-color: var(--bn8-gray-200); }
.uc-scene svg { width: 85%; height: auto; }

/* --- Why UAE Section --- */
.uc-why {
    background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
    position: relative; overflow: hidden;
}
.uc-why::before {
    content: ''; position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px; pointer-events: none;
}
[data-theme="light"] .uc-why { background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%); }
.uc-why__inner { position: relative; z-index: 2; }
.uc-why h2 { color: var(--bn8-white); }
.uc-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.uc-why-card {
    padding: 1.75rem; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04); text-align: center; transition: all var(--transition);
}
.uc-why-card:hover { border-color: rgba(37, 99, 235, 0.3); background: rgba(255, 255, 255, 0.06); }
.uc-why-card__icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: rgba(37, 99, 235, 0.15); color: var(--bn8-blue-light); margin: 0 auto 1rem;
}
.uc-why-card__title { font-size: 1rem; font-weight: 700; color: var(--bn8-white); margin-bottom: 0.375rem; }
.uc-why-card__text { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }

/* --- Approach Section --- */
.uc-approach { background: var(--bg-secondary); }
[data-theme="light"] .uc-approach { background: #F8FAFC; }
.uc-approach__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; }
.uc-approach-step {
    text-align: center; padding: 1.5rem 1rem;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px;
    position: relative; transition: all var(--transition);
}
.uc-approach-step:hover { border-color: rgba(37, 99, 235, 0.25); transform: translateY(-3px); }
[data-theme="light"] .uc-approach-step { background: var(--bn8-white); border-color: var(--bn8-gray-200); }
.uc-approach-step__num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: var(--bn8-white);
    font-family: var(--font-heading); font-weight: 800; font-size: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem; box-shadow: 0 0 16px var(--accent-glow);
}
.uc-approach-step__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.uc-approach-step__text { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.4; }
/* Connector arrows between steps */
.uc-approach-step:not(:last-child)::after {
    content: ''; position: absolute; top: 50%; right: -14px;
    width: 8px; height: 8px; border-right: 2px solid var(--accent); border-top: 2px solid var(--accent);
    transform: rotate(45deg) translateY(-50%); opacity: 0.4;
}

/* --- Audience Section --- */
.uc-audience { background: var(--bg-primary); }
.uc-audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.uc-audience__col { padding: 2.5rem; border-radius: 16px; border: 1px solid var(--border-color); }
.uc-audience__col--for { background: rgba(34, 197, 94, 0.04); border-color: rgba(34, 197, 94, 0.15); }
.uc-audience__col--not { background: rgba(239, 68, 68, 0.04); border-color: rgba(239, 68, 68, 0.15); }
[data-theme="light"] .uc-audience__col--for { background: #F0FDF4; border-color: #BBF7D0; }
[data-theme="light"] .uc-audience__col--not { background: #FEF2F2; border-color: #FECACA; }
.uc-audience__col-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.uc-audience__col-icon {
    width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.uc-audience__col--for .uc-audience__col-icon { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.uc-audience__col--not .uc-audience__col-icon { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.uc-audience__col-title { font-size: 1.25rem; font-weight: 700; }
.uc-audience__list { display: flex; flex-direction: column; gap: 0.875rem; }
.uc-audience__item {
    display: flex; align-items: flex-start; gap: 0.625rem;
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5;
}
.uc-audience__item svg { flex-shrink: 0; margin-top: 3px; }

/* --- Final CTA --- */
.uc-cta {
    background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
    position: relative; overflow: hidden; padding: 6rem 0;
}
.uc-cta::before {
    content: ''; position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px; pointer-events: none;
}
[data-theme="light"] .uc-cta { background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%); }
.uc-cta__glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.uc-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.uc-cta__title { font-size: 2.5rem; font-weight: 800; color: var(--bn8-white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.uc-cta__text { font-size: 1.0625rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 2.5rem; }
.uc-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Use Cases Responsive --- */
@media (max-width: 1024px) {
    .uc-block__layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .uc-block__layout--reverse .uc-block__visual { order: 0; }
    .uc-scene { max-width: 400px; margin: 0 auto; }
    .uc-why__grid { grid-template-columns: repeat(2, 1fr); }
    .uc-approach__steps { grid-template-columns: repeat(3, 1fr); }
    .uc-approach-step:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
    .uc-hero { padding: 8rem 0 4rem; }
    .uc-hero__title { font-size: 2.25rem; }
    .uc-hero__actions { flex-direction: column; align-items: center; }
    .uc-hero__actions .bn8-btn { width: 100%; max-width: 340px; }
    .uc-section-header h2 { font-size: 1.75rem; }
    .uc-block__title { font-size: 1.5rem; }
    .uc-block__impact { grid-template-columns: 1fr; }
    .uc-why__grid { grid-template-columns: 1fr; }
    .uc-approach__steps { grid-template-columns: 1fr 1fr; }
    .uc-audience__grid { grid-template-columns: 1fr; }
    .uc-cta__title { font-size: 1.75rem; }
}
@media (max-width: 480px) {
    .uc-hero__title { font-size: 1.875rem; }
    .uc-approach__steps { grid-template-columns: 1fr; }
    .uc-audience__col { padding: 1.75rem; }
    .uc-cta__title { font-size: 1.5rem; }
}


/* ================================================================
   HOW WE WORK PAGE (hw- prefix)
   ================================================================ */

/* --- Hero --- */
.hw-hero {
    position: relative; padding: 10rem 0 5rem;
    background: linear-gradient(180deg, #000000 0%, #0A0F1A 50%, #0A0A0A 100%);
    overflow: hidden;
}
.hw-hero::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px; pointer-events: none; z-index: 1;
}
[data-theme="light"] .hw-hero { background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%); }
[data-theme="light"] .hw-hero::before { opacity: 0.02; }

.hw-hero__glow {
    position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.hw-hero__content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hw-hero__title {
    font-size: 3.25rem; font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.hw-hero__title span { color: var(--bn8-blue); }
.hw-hero__subtitle {
    font-size: 1.1875rem; line-height: 1.7; color: var(--text-secondary);
    max-width: 640px; margin: 0 auto 1rem;
}
.hw-hero__lead {
    font-size: 1rem; line-height: 1.8; color: var(--text-muted);
    max-width: 600px; margin: 0 auto 2.5rem;
    font-style: italic;
}
.hw-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Section Header --- */
.hw-section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.hw-section-header h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hw-section-header h2 span { color: var(--bn8-blue); }
.hw-section-header p { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Section 1: Philosophy --- */
.hw-philosophy { background: var(--bg-secondary); }
.hw-philosophy__layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hw-philosophy__content h2 {
    font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2;
}
.hw-philosophy__content h2 span { color: var(--bn8-blue); }
.hw-philosophy__text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; }
.hw-philosophy__roles {
    display: flex; flex-direction: column; gap: 1rem;
}
.hw-philosophy__role {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all var(--transition);
}
.hw-philosophy__role:hover {
    border-color: var(--bn8-blue); transform: translateX(4px);
}
.hw-philosophy__role-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(37, 99, 235, 0.1); color: var(--bn8-blue); flex-shrink: 0;
}
.hw-philosophy__role-text h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.125rem; }
.hw-philosophy__role-text p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* Philosophy visual */
.hw-philosophy__visual {
    display: flex; align-items: center; justify-content: center;
}
.hw-philosophy__diagram {
    position: relative; width: 100%; max-width: 420px; aspect-ratio: 1;
}
.hw-philosophy__diagram svg { width: 100%; height: 100%; }

/* --- Section 2: What Makes Us Different --- */
.hw-different { background: var(--bg-primary); }
.hw-different__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.hw-different__col { display: flex; flex-direction: column; gap: 1.25rem; }
.hw-different__col-header {
    font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem;
    padding-bottom: 0.75rem; border-bottom: 2px solid;
}
.hw-different__col--dont .hw-different__col-header {
    color: #EF4444; border-bottom-color: rgba(239, 68, 68, 0.3);
}
.hw-different__col--do .hw-different__col-header {
    color: #10B981; border-bottom-color: rgba(16, 185, 129, 0.3);
}
.hw-different__item {
    display: flex; gap: 0.875rem; align-items: flex-start;
    padding: 1rem 1.25rem; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border-color);
}
.hw-different__item-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; font-size: 0.875rem;
}
.hw-different__col--dont .hw-different__item-icon {
    background: rgba(239, 68, 68, 0.1); color: #EF4444;
}
.hw-different__col--do .hw-different__item-icon {
    background: rgba(16, 185, 129, 0.1); color: #10B981;
}
.hw-different__item h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.hw-different__item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Trust visual between columns */
.hw-different__visual {
    grid-column: 1 / -1; display: flex; justify-content: center;
    padding: 2rem 0; margin-top: 1rem;
}
.hw-different__visual svg { max-width: 560px; width: 100%; }

/* --- Section 3: 6-Step Framework --- */
.hw-framework {
    background: linear-gradient(180deg, var(--bn8-dark) 0%, #0A0F1A 100%);
    position: relative; overflow: hidden;
}
[data-theme="light"] .hw-framework {
    background: linear-gradient(180deg, #F8FAFC 0%, #F0F4FF 100%);
}
.hw-framework::before {
    content: ''; position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hw-steps { position: relative; z-index: 2; }

/* Vertical connector line */
.hw-steps::before {
    content: ''; position: absolute; left: 32px; top: 40px; bottom: 40px;
    width: 2px; background: linear-gradient(180deg, var(--bn8-blue), rgba(37, 99, 235, 0.1));
    border-radius: 2px;
}

.hw-step {
    display: grid; grid-template-columns: 64px 1fr 380px; gap: 2.5rem;
    align-items: start; margin-bottom: 4rem; position: relative;
}
.hw-step:last-child { margin-bottom: 0; }

/* Step number circle */
.hw-step__number {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--bg-card); border: 2px solid var(--bn8-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    font-family: var(--font-heading); font-weight: 900; font-size: 1.375rem;
    color: var(--bn8-blue); position: relative; z-index: 2;
    flex-shrink: 0;
}

/* Step content */
.hw-step__content { padding-top: 0.75rem; }
.hw-step__title {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.hw-step__title-badge {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; padding: 0.25rem 0.625rem; border-radius: 100px;
    background: rgba(37, 99, 235, 0.1); color: var(--bn8-blue); border: 1px solid rgba(37, 99, 235, 0.2);
}

.hw-step__what { margin-bottom: 1.5rem; }
.hw-step__what h4 {
    font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--bn8-blue); margin-bottom: 0.75rem;
}
.hw-step__what ul { display: flex; flex-direction: column; gap: 0.5rem; }
.hw-step__what li {
    display: flex; align-items: flex-start; gap: 0.625rem;
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6;
}
.hw-step__what li svg { flex-shrink: 0; margin-top: 3px; }

.hw-step__why {
    padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.05); border-left: 3px solid var(--bn8-blue);
}
.hw-step__why h4 {
    font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--bn8-blue); margin-bottom: 0.5rem;
}
.hw-step__why p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* Step illustration */
.hw-step__visual {
    display: flex; align-items: flex-start; justify-content: center; padding-top: 0.5rem;
}
.hw-step__scene {
    width: 100%; max-width: 360px; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    padding: 1.5rem; overflow: hidden;
}
.hw-step__scene svg { width: 100%; height: auto; display: block; }

/* --- Section 4: Safeguard Growth --- */
.hw-safeguard { background: var(--bg-secondary); }
.hw-safeguard__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.hw-safeguard__card {
    padding: 2rem; border-radius: var(--radius-lg); background: var(--bg-card);
    border: 1px solid var(--border-color); transition: all var(--transition);
}
.hw-safeguard__card:hover { border-color: var(--bn8-blue); transform: translateY(-2px); }
.hw-safeguard__card-icon {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(37, 99, 235, 0.1); color: var(--bn8-blue);
    margin-bottom: 1.25rem;
}
.hw-safeguard__card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.625rem; }
.hw-safeguard__card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Section 5: Client Experience --- */
.hw-experience { background: var(--bg-primary); }
.hw-experience__layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hw-experience__list { display: flex; flex-direction: column; gap: 1rem; }
.hw-experience__item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all var(--transition);
}
.hw-experience__item:hover { border-color: rgba(16, 185, 129, 0.3); }
.hw-experience__item-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(16, 185, 129, 0.1); color: #10B981; flex-shrink: 0;
}
.hw-experience__item h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.hw-experience__item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Experience visual */
.hw-experience__visual { display: flex; align-items: center; justify-content: center; }
.hw-experience__visual svg { width: 100%; max-width: 420px; height: auto; }

/* --- Section 6: Who This Is For --- */
.hw-audience { background: var(--bg-secondary); }
.hw-audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.hw-audience__col {
    padding: 2.5rem; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
}
.hw-audience__col--fit { border-top: 3px solid #10B981; }
.hw-audience__col--notfit { border-top: 3px solid #EF4444; }
.hw-audience__col h3 {
    font-size: 1.25rem; font-weight: 800; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.hw-audience__col--fit h3 { color: #10B981; }
.hw-audience__col--notfit h3 { color: #EF4444; }
.hw-audience__list { display: flex; flex-direction: column; gap: 0.875rem; }
.hw-audience__list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6;
}
.hw-audience__list li svg { flex-shrink: 0; margin-top: 3px; }

/* --- Section 7: Final CTA --- */
.hw-final-cta {
    position: relative; padding: 5rem 0;
    background: linear-gradient(135deg, #0A0F1A 0%, #111827 100%);
    overflow: hidden;
}
[data-theme="light"] .hw-final-cta {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
}
.hw-final-cta::before {
    content: ''; position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hw-final-cta__glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hw-final-cta__content {
    position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto;
}
.hw-final-cta__title {
    font-size: 2.5rem; font-weight: 900; color: var(--bn8-white);
    margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hw-final-cta__title span { color: var(--bn8-blue-light); }
.hw-final-cta__text {
    font-size: 1.0625rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hw-final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hw-final-cta__details {
    display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
}
.hw-final-cta__details p {
    font-size: 0.875rem; color: rgba(255, 255, 255, 0.4); line-height: 1.6;
}
.hw-final-cta__contact {
    display: flex; gap: 2rem; justify-content: center; margin-top: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hw-final-cta__contact a {
    display: flex; align-items: center; gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5); font-size: 0.9375rem; transition: color var(--transition);
}
.hw-final-cta__contact a:hover { color: var(--bn8-blue-light); }

/* --- How We Work Responsive --- */
@media (max-width: 1024px) {
    .hw-step { grid-template-columns: 64px 1fr; }
    .hw-step__visual { display: none; }
    .hw-philosophy__layout { grid-template-columns: 1fr; gap: 3rem; }
    .hw-philosophy__visual { order: -1; }
    .hw-philosophy__diagram { max-width: 300px; margin: 0 auto; }
    .hw-different__grid { grid-template-columns: 1fr; }
    .hw-safeguard__grid { grid-template-columns: repeat(2, 1fr); }
    .hw-experience__layout { grid-template-columns: 1fr; gap: 3rem; }
    .hw-experience__visual { order: -1; }
}
@media (max-width: 768px) {
    .hw-hero { padding: 8rem 0 4rem; }
    .hw-hero__title { font-size: 2.25rem; }
    .hw-hero__subtitle { font-size: 1.0625rem; }
    .hw-hero__actions { flex-direction: column; align-items: center; }
    .hw-hero__actions .bn8-btn { width: 100%; max-width: 340px; }
    .hw-section-header h2 { font-size: 1.75rem; }
    .hw-step { grid-template-columns: 48px 1fr; gap: 1.5rem; }
    .hw-step__number { width: 48px; height: 48px; font-size: 1.125rem; }
    .hw-steps::before { left: 23px; }
    .hw-step__title { font-size: 1.25rem; }
    .hw-safeguard__grid { grid-template-columns: 1fr; }
    .hw-audience__grid { grid-template-columns: 1fr; }
    .hw-final-cta__title { font-size: 1.75rem; }
    .hw-final-cta__contact { flex-direction: column; gap: 0.75rem; align-items: center; }
}
@media (max-width: 480px) {
    .hw-hero__title { font-size: 1.875rem; }
    .hw-step { grid-template-columns: 40px 1fr; gap: 1rem; margin-bottom: 3rem; }
    .hw-step__number { width: 40px; height: 40px; font-size: 1rem; }
    .hw-steps::before { left: 19px; }
    .hw-step__title { font-size: 1.125rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .hw-final-cta__title { font-size: 1.5rem; }
    .hw-audience__col { padding: 1.75rem; }
}
