.hiw-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    background: #0058a3;
    color: #ffffff;
}

.hiw-hero-orb {
    display: none;
}

.hiw-hero-orb-1 {
    display: none;
}

.hiw-hero-orb-2 {
    display: none;
}

.hiw-hero-orb-3 {
    display: none;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -20px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.12; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.hiw-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hiw-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: #ffcc00;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #111111;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h1.hiw-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: fadeInUp 1s ease-out;
}

.hiw-gradient-text {
    color: #ffcc00;
    -webkit-text-fill-color: #ffcc00;
}

.hiw-hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.85;
    line-height: 1.7;
}

.hiw-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hiw-arrow-bounce {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

.hiw-before-after {
    padding: 6rem 0;
    position: relative;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-card {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.ba-before {
    background: #fff5f5;
    border: 2px solid rgba(255, 80, 80, 0.3);
}

.ba-after {
    background: #ffffff;
    border: 2px solid #cccccc;
    box-shadow: 0 0 60px #f2f2f2;
}

.ba-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.ba-before .ba-label {
    color: #ff5050;
}

.ba-after .ba-label {
    color: var(--primary);
}

.ba-card ul {
    list-style: none;
    padding: 0;
}

.ba-card li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f8f8f8;
    line-height: 1.5;
}

.ba-before li::before {
    content: '\2717  ';
    color: #ff5050;
    font-weight: 700;
}

.ba-after li::before {
    content: '\2713  ';
    color: var(--primary);
    font-weight: 700;
}

.ba-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--secondary);
    text-align: center;
    text-shadow: none;
}

.hiw-steps {
    padding: 5rem 0;
}

.hiw-section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0058a3;
}

.hiw-section-sub {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 4rem;
}

.hiw-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hiw-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 1;
    background: #cccccc;
}

.hiw-step-icon-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #0058a3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #f5f5f5;
    box-shadow: 0 0 40px #f0f0f0;
    transition: all 0.4s ease;
}

.hiw-step:hover .hiw-step-icon-ring {
    border-color: var(--primary);
    box-shadow: 0 0 60px #cccccc;
    transform: scale(1.08);
}

.hiw-ring-gold {
    border-color: #0058a3 !important;
    box-shadow: 0 0 40px #f0f0f0 !important;
}

.hiw-step:hover .hiw-ring-gold {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.25) !important;
}

.hiw-step-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hiw-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    color: #0058a3;
}

.hiw-step-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.hiw-step-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hiw-tag-cyan {
    padding: 0.5rem 1.2rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.hiw-tag-orange {
    padding: 0.5rem 1.2rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.hiw-book-btn {
    display: inline-block;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem !important;
    padding: 1rem 2rem !important;
}

.hiw-giveaway-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.35);
    border-radius: 14px;
    animation: giveawayPulse 3s ease-in-out infinite;
}

@keyframes giveawayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
    50% { box-shadow: 0 0 25px 0 #e0e0e0; }
}

.hiw-giveaway-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

.hiw-giveaway-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hiw-giveaway-text p {
    font-size: 0.95rem !important;
    line-height: 1.7;
    margin-bottom: 0 !important;
    opacity: 0.9;
}

.hiw-giveaway-text p strong {
    display: inline;
    font-size: inherit;
    color: var(--primary);
    letter-spacing: 0;
}

.hiw-agents {
    padding: 6rem 0;
    background: #ffcc00;
}

.hiw-agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hiw-agent-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hiw-agent-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 80px #dddddd;
}

.hiw-agent-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hiw-agent-card:hover .hiw-agent-glow {
    opacity: 1;
}

.hiw-agent-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.hiw-agent-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hiw-agent-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hiw-agent-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.hiw-results {
    padding: 6rem 0;
}

.hiw-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-result-card {
    background: #fff8dd;
    border: 2px solid #dddddd;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.hiw-result-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hiw-result-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    display: inline-block;
    line-height: 1;
}

.hiw-result-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.6;
    margin: 1rem 0;
}

.hiw-result-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.hiw-result-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    animation: barFill 2s ease-out forwards;
    transform-origin: left;
}

.hiw-fill-orange {
    background: #ffcc00;
}

.hiw-fill-green {
    background: #ffcc00;
}

@keyframes barFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hiw-faq {
    padding: 6rem 0;
    background: transparent;
}

.hiw-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-faq-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.hiw-faq-item:hover {
    border-color: rgba(255, 140, 0, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px #f2f2f2;
}

.hiw-faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.hiw-faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

.hiw-final-cta {
    padding: 6rem 0 8rem;
}

.hiw-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 2px solid #cccccc;
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.hiw-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0058a3;
}

.hiw-cta-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: #ffffff;
}

.hiw-cta-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hiw-cta-price {
    margin-bottom: 2rem;
}

.hiw-cta-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
}

.hiw-cta-period {
    display: block;
    font-size: 1.1rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.btn-lg {
    padding: 1.5rem 3.5rem !important;
    font-size: 1.3rem !important;
    letter-spacing: 2px;
}

.hiw-cta-urgency {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.hiw-equalizer {
    padding: 6rem 0;
    background: transparent;
}

.eq-intro {
    max-width: 850px;
    margin: 3rem auto;
    position: relative;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    background: #fffae6;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.eq-intro-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0058a3;
    border-radius: 4px 0 0 4px;
}

.eq-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.eq-intro p:last-child {
    margin-bottom: 0;
}

.eq-intro strong {
    color: var(--primary);
}

.eq-subheading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin: 4rem 0 2rem;
    color: #0058a3;
    letter-spacing: 2px;
}

.eq-needs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto 2rem;
}

.eq-need-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.eq-need-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.eq-need-card:hover::after {
    transform: scaleX(1);
}

.eq-need-card:hover {
    transform: translateY(-6px);
    border-color: #cccccc;
    box-shadow: 0 20px 60px #f0f0f0;
}

.eq-need-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.eq-need-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.eq-need-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.eq-agents-list {
    max-width: 850px;
    margin: 0 auto;
}

.eq-agent-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: #fffae6;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.eq-agent-row:hover {
    border-color: #cccccc;
    transform: translateX(6px);
    box-shadow: 0 10px 40px #f2f2f2;
}

.eq-agent-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--darker);
    background: #0058a3;
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-top: 0.2rem;
}

.eq-agent-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.eq-agent-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.eq-bottom-line {
    max-width: 850px;
    margin: 3rem auto 0;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
}

.eq-bottom-line p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.eq-bottom-line strong {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .eq-needs-grid {
        grid-template-columns: 1fr;
    }

    .eq-agent-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .eq-intro {
        padding: 2rem 1.5rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ba-vs {
        font-size: 2rem;
    }

    .hiw-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hiw-step-right .hiw-step-visual {
        order: -1;
    }

    .hiw-step-tags {
        justify-content: center;
    }

    .hiw-agents-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hiw-results-grid {
        grid-template-columns: 1fr;
    }

    .hiw-faq-grid {
        grid-template-columns: 1fr;
    }

    .hiw-cta-box {
        padding: 3rem 1.5rem;
    }

    .btn-lg {
        padding: 1.2rem 2rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hiw-agents-grid,
    .agents-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* GIVEAWAY BANNER */
.hiw-giveaway-banner {
    padding: 2rem 0;
}

.giveaway-banner-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.35);
    border-radius: 16px;
    animation: giveawayPulse 3s ease-in-out infinite;
}

.giveaway-banner-icon {
    font-size: 2.8rem;
    min-width: 50px;
    text-align: center;
}

.giveaway-banner-text {
    flex: 1;
}

.giveaway-banner-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.giveaway-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

.giveaway-banner-text strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .giveaway-banner-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* WHY AI AGENTS SECTION */
.hiw-why-ai {
    padding: 6rem 0;
    background: transparent;
}

.why-ai-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 950px;
    margin: 3rem auto;
    align-items: start;
}

.why-ai-col h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #0058a3;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.why-ai-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.why-ai-list li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f8f8f8;
}

.why-ai-list-enemy li::before {
    content: '\25B6  ';
    color: var(--secondary);
    font-size: 0.7rem;
}

.why-ai-callout {
    background: rgba(0, 61, 143, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 14px;
    padding: 1.5rem;
}

.why-ai-callout p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.why-ai-callout strong {
    color: var(--secondary);
}

.why-ai-truth {
    margin-bottom: 2rem;
}

.why-ai-truth h3 {
    font-size: 2rem !important;
    opacity: 0.5;
    margin-bottom: 0.3rem !important;
}

.why-ai-truth-answer {
    opacity: 1 !important;
    color: var(--primary) !important;
    font-size: 2.5rem !important;
}

.why-ai-col > p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.why-ai-col > p strong {
    color: var(--primary);
}

.why-ai-absorb {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
}

.why-ai-absorb-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.why-ai-absorb h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.why-ai-absorb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-ai-winner ul {
    list-style: none;
    padding: 0;
}

.why-ai-winner li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
}

.why-ai-winner li::before {
    content: '\2713  ';
    color: var(--primary);
    font-weight: 700;
}

.why-ai-loser h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #ff5050;
    margin-bottom: 0.8rem;
}

.why-ai-loser p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.75;
}

.why-ai-kicker {
    margin-top: 1rem;
    font-size: 1.1rem !important;
    opacity: 1 !important;
}

.why-ai-kicker strong {
    color: var(--secondary);
}

/* COMPETITIVE SHIFT */
.hiw-shift {
    padding: 6rem 0;
}

.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.shift-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.shift-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.shift-accent-red {
    background: #ff5050;
}

.shift-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.shift-early h3 { color: var(--primary); }
.shift-late h3 { color: #ff5050; }

.shift-card ul {
    list-style: none;
    padding: 0;
}

.shift-card li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f8f8f8;
    opacity: 0.85;
}

.shift-early li::before {
    content: '\2713  ';
    color: var(--primary);
    font-weight: 700;
}

.shift-late li::before {
    content: '\2717  ';
    color: #ff5050;
    font-weight: 700;
}

.shift-bottom {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shift-bottom p {
    font-size: 1.3rem;
    font-weight: 700;
}

.shift-bottom strong {
    color: var(--secondary);
}

/* SYSTEM OVERVIEW */
.hiw-system-overview {
    padding: 4rem 0;
}

.system-overview-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.system-do, .system-dont {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.system-do {
    background: #ffffff;
    border: 2px solid #cccccc;
}

.system-dont {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.system-do h3, .system-dont h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.system-do h3 { color: var(--primary); }
.system-dont h3 { color: #0058a3; opacity: 0.6; }

.system-do p, .system-dont p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.system-do strong { color: var(--primary); }
.system-dont strong { color: #0058a3; }

/* 8-STEP WORKFLOW */
.hiw-workflow {
    padding: 6rem 0;
    background: #ffcc00;
}

.wf-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.wf-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0058a3;
}

.wf-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.wf-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--darker);
    background: #0058a3;
    width: 64px;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px #cccccc;
}

.wf-step-content {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.wf-step-content:hover {
    border-color: #cccccc;
    transform: translateX(4px);
}

.wf-step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.wf-step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

/* AGENTS DETAIL */
.agents-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.agent-detail-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.agent-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.agent-detail-card:hover::before {
    transform: scaleX(1);
}

.agent-detail-card:hover {
    transform: translateY(-6px);
    border-color: #cccccc;
    box-shadow: 0 20px 60px #f0f0f0;
}

.agent-detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.agent-detail-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.agent-detail-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.agent-output {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    background: #f5f5f5;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    line-height: 1.5;
    opacity: 0.75;
}

.agent-output strong {
    color: var(--secondary);
}

/* GUARDRAIL SYSTEM */
.hiw-guardrails {
    padding: 6rem 0;
    background: transparent;
}

.gr-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.gr-trigger, .gr-action, .gr-outcome {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 2rem;
}

.gr-trigger { border-color: #cccccc; }
.gr-action { border-color: #cccccc; }
.gr-outcome { border-color: rgba(0, 230, 118, 0.3); }

.gr-trigger h3, .gr-action h3, .gr-outcome h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gr-trigger h3 { color: var(--secondary); }
.gr-action h3 { color: var(--primary); }
.gr-outcome h3 { color: #ffcc00; }

.gr-trigger ul, .gr-action ul, .gr-outcome ul {
    list-style: none;
    padding: 0;
}

.gr-trigger li, .gr-action li, .gr-outcome li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

.gr-trigger li::before { content: '\26A0  '; color: var(--secondary); }
.gr-action li::before { content: '\2699  '; color: var(--primary); }
.gr-outcome li::before { content: '\2713  '; color: #ffcc00; font-weight: 700; }

.gr-arrow {
    font-size: 2rem;
    color: var(--primary);
    align-self: center;
    opacity: 0.5;
}

/* SETUP CHECKLIST */
.hiw-setup-checklist {
    padding: 6rem 0;
}

.checklist-grid {
    max-width: 750px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 0.8rem;
    background: #fffae6;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: #cccccc;
    transform: translateX(6px);
}

.checklist-check {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.checklist-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0058a3;
    margin-bottom: 0.3rem;
}

.checklist-item p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

/* SECURITY */
.hiw-security {
    padding: 3rem 0;
}

.security-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
}

.security-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #0058a3;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.security-item {
    text-align: center;
}

.security-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.6rem;
}

.security-item p {
    font-size: 0.95rem;
    opacity: 0.75;
    font-weight: 600;
}

/* TIMELINE */
.hiw-timeline {
    padding: 6rem 0;
}

.timeline-flow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0058a3;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--darker);
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.timeline-marker-orange {
    background: var(--secondary);
}

.timeline-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #0058a3;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin: 0;
}

/* PRICING CTA */
.hiw-pricing-cta {
    padding: 4rem 0;
}

.pricing-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 3rem;
}

.pricing-cta-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #0058a3;
    margin-bottom: 2rem;
}

.pricing-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.pricing-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.pricing-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.pricing-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
}

.pricing-webinar {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.pricing-webinar p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pricing-webinar strong {
    color: var(--secondary);
}

/* STRAIGHT TALK Q&A */
.hiw-straight-talk {
    padding: 6rem 0;
    background: transparent;
}

/* BID CAPACITY CHART */
.bid-chart-card {
    max-width: 850px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 40px #f5f5f5;
}

.bid-chart-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.bid-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bid-chart-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.bid-chart-label {
    min-width: 160px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0058a3;
    opacity: 0.8;
    text-align: right;
}

.bid-chart-bar-wrap {
    flex: 1;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.bid-chart-bar {
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    animation: barGrow 1.2s ease-out forwards;
    transform-origin: left;
}

@keyframes barGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.bid-chart-bar-manual {
    background: #ff5050;
    border: 1px solid rgba(255, 80, 80, 0.4);
}

.bid-chart-bar-ai {
    background: #ffcc00;
    border: 1px solid #0058a3;
    box-shadow: 0 0 20px #e0e0e0;
}

.bid-chart-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #0058a3;
    letter-spacing: 1px;
    white-space: nowrap;
}

.bid-chart-note {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
    margin: 0;
}

/* FAQ QUICK GRID */
.st-subheading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #0058a3;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.st-subheading-sub {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 2.5rem;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.faq-quick-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-quick-card:hover {
    border-color: #0058a3;
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 61, 143, 0.06);
}

.faq-quick-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.faq-quick-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin: 0;
}

.st-list {
    max-width: 850px;
    margin: 0 auto;
}

.st-item {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    transition: all 0.3s ease;
}

.st-item:hover {
    border-color: #cccccc;
    box-shadow: 0 10px 40px #f5f5f5;
}

.st-q {
    padding: 1.8rem 2rem 1rem;
}

.st-a {
    padding: 0 2rem 1.8rem;
}

.st-label {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 0.25rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    background: #e0e0e0;
    color: var(--secondary);
    border: 1px solid #cccccc;
}

.st-label-answer {
    background: #f0f0f0;
    color: var(--primary);
    border-color: #cccccc;
}

.st-q h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0058a3;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.9;
}

.st-a p {
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.8;
    margin: 0;
    border-left: 3px solid #cccccc;
    padding-left: 1.2rem;
}

@media (max-width: 768px) {
    .st-q, .st-a {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .st-q h3 {
        font-size: 1.05rem;
    }

    .st-a p {
        font-size: 0.95rem;
    }

    .faq-quick-grid {
        grid-template-columns: 1fr;
    }

    .bid-chart-card {
        padding: 1.5rem;
    }

    .bid-chart-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
    }

    .bid-chart-label {
        text-align: left;
        min-width: unset;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-ai-columns,
    .why-ai-absorb-grid,
    .shift-grid,
    .system-overview-box,
    .pricing-cta-grid {
        grid-template-columns: 1fr;
    }

    .gr-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gr-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agents-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wf-timeline::before {
        left: 24px;
    }

    .wf-step-num {
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .timeline-flow::before {
        left: 40px;
    }

    .timeline-marker {
        min-width: 80px;
        font-size: 0.75rem;
    }

    .gr-arrow {
        font-size: 1.5rem;
        padding: 0.3rem 0;
    }

    .pricing-cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.8rem;
    }

    .timeline-flow::before {
        display: none;
    }

    .wf-timeline::before {
        display: none;
    }

    .wf-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .portal-features-grid {
        grid-template-columns: 1fr;
    }
}

.hiw-portal {
    padding: 6rem 0;
}

.portal-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portal-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.portal-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.35);
}

.portal-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.portal-feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #0058a3;
    margin-bottom: 0.8rem;
}

.portal-feature-card p {
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
}

.portal-summary {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    text-align: center;
}

.portal-summary p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}
