/* ==========================================================================
   Home Promise Page - Additional Styles
   Promise-focused sales page variation
   ========================================================================== */

/* ==========================================================================
   Show Authority Bar on this page (hidden by default in social-proof.css)
   ========================================================================== */

.authority-bar {
    display: block;
}

/* ==========================================================================
   Hero CTA Stack - Dual CTAs
   ========================================================================== */

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

/* Secondary Button (Ghost/Outline) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--gray-300);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--pink);
    color: var(--white);
    background: rgba(233, 30, 140, 0.08);
}

.btn-secondary svg {
    color: var(--pink);
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   Story Section - Narrative Flow
   ========================================================================== */

.story-section {
    padding: 80px 0 100px;
}

.story-narrative {
    margin-top: 40px;
}

.story-narrative p {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-lead {
    font-size: 1.35rem !important;
    color: var(--gray-300) !important;
    font-weight: 500;
    margin-bottom: 20px !important;
}

.story-emphasis {
    font-size: 1.25rem !important;
    color: var(--white) !important;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 24px !important;
}

.story-closer {
    margin-top: 40px;
    text-align: center;
}

.story-closer .pull-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
    margin: 0;
}

/* ==========================================================================
   Workflow Time Bars - Visual Progress Style
   ========================================================================== */

.workflow-time-bars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bar-step {
    display: grid;
    grid-template-columns: 140px 1fr 70px;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bar-step:last-of-type {
    border-bottom: none;
}

.bar-task {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.bar-track {
    height: 8px;
    background: var(--dark-elevated);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gray-500);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bar-fill-painful {
    background: linear-gradient(90deg, var(--pink), #ff6b9d);
}

.bar-time {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-align: right;
}

.bar-step-painful .bar-task {
    color: var(--gray-200);
}

.bar-step-painful .bar-time {
    color: var(--pink);
}

/* Total bar at bottom */
.time-total-bar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--dark-border);
}

.total-bar-track {
    height: 12px;
    background: var(--dark-elevated);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.total-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--gray-500) 0%, var(--gray-500) 40%, var(--pink) 40%, var(--pink) 100%);
    border-radius: 6px;
}

.total-bar-text {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-400);
    text-align: center;
}

.total-bar-text strong {
    color: var(--pink);
    font-weight: 600;
}

/* ==========================================================================
   Options Section - Prose Style
   ========================================================================== */

.options-prose {
    margin-top: 48px;
}

.prose-bad-options p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.prose-bad-options strong {
    color: var(--white);
    font-weight: 600;
}

/* Pain text - highlights the negatives */
.pain-text {
    color: #ff6b6b;
    font-weight: 600;
}

/* Highlight class enhancements for direct response */
.highlight {
    color: var(--pink);
}

.highlight strong {
    color: var(--pink);
}

/* Make strong inside paragraphs pop more */
.story-narrative strong,
.founder-story strong,
.prose-good-option strong {
    color: var(--white);
    font-weight: 600;
}

/* Italics for urgency/emotional emphasis */
.story-narrative em,
.founder-story em {
    font-style: italic;
    color: var(--gray-200);
}

/* Numbers and stats should stand out */
.founder-credentials .highlight strong {
    font-size: 1.05em;
}

.prose-divider {
    text-align: center;
    padding: 36px 0;
}

.prose-divider span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
    font-style: italic;
}

.prose-good-option {
    padding: 32px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, transparent 100%);
    border-left: 3px solid var(--pink);
    border-radius: 0 12px 12px 0;
}

.prose-good-option h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.prose-good-option p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.prose-good-option p:last-child {
    margin-bottom: 0;
}

.prose-kicker {
    margin-top: 20px !important;
    padding-top: 16px;
    border-top: 1px dashed rgba(233, 30, 140, 0.3);
}

.prose-kicker strong {
    color: var(--pink);
}

.prose-kicker em {
    color: var(--pink);
}

/* ==========================================================================
   Result Section - Big Number Contrast
   ========================================================================== */

.result-big-numbers {
    text-align: center;
}

.big-number-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.big-number-before,
.big-number-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 40px;
    border-radius: 16px;
}

.big-number-before {
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
}

.big-number-after {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(233, 30, 140, 0.03) 100%);
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.big-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.big-num.bad {
    color: #ff6b6b;
}

.big-num.good {
    color: var(--pink);
}

.big-unit {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 4px;
}

.big-number-before .big-unit {
    color: var(--gray-400);
}

.big-number-after .big-unit {
    color: var(--white);
}

.big-context {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.big-number-vs {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.big-number-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    color: var(--gray-300);
}

.benefit-item svg {
    color: var(--pink);
    flex-shrink: 0;
}

.benefit-item strong {
    color: var(--white);
}

.big-number-kicker {
    padding-top: 24px;
    border-top: 1px dashed var(--dark-border);
}

.big-number-kicker p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-300);
    margin: 0;
}

/* Responsive for result comparison */
@media (max-width: 768px) {
    .big-number-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .big-number-vs {
        padding: 8px 0;
    }
    
    .big-num {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .big-number-before,
    .big-number-after {
        padding: 24px 32px;
        width: 100%;
    }
    
    .big-number-kicker p {
        font-size: 1.35rem;
    }
}

/* Responsive for options */
@media (max-width: 600px) {
    .prose-bad-options p {
        font-size: 1rem;
    }
    
    .prose-good-option {
        padding: 24px;
    }
    
    .prose-good-option h3 {
        font-size: 1.2rem;
    }
    
    .prose-good-option p {
        font-size: 1rem;
    }
}

/* Responsive for time bars */
@media (max-width: 600px) {
    .bar-step {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }
    
    .bar-track {
        display: none;
    }
    
    .bar-task {
        font-size: 0.85rem;
    }
    
    .bar-time {
        font-size: 0.7rem;
        min-width: auto;
    }
}

/* Show time bars on mobile - stacked layout */
@media (max-width: 480px) {
    .workflow-time-bars {
        background: var(--dark-surface);
        border: 1px solid var(--dark-border);
        border-radius: 12px;
        padding: 16px;
    }
    
    .bar-step {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px 0;
    }
    
    .bar-step:first-child {
        padding-top: 0;
    }
    
    .bar-step-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .bar-task {
        font-size: 0.9rem;
        order: 1;
    }
    
    .bar-time {
        font-size: 0.75rem;
        order: 2;
        text-align: right;
    }
    
    .bar-track {
        display: block;
        order: 3;
        height: 6px;
        margin-top: 4px;
    }
    
    .time-total-bar {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .total-bar-track {
        height: 10px;
    }
    
    .total-bar-text {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   System Different Section - Grid with Animation
   ========================================================================== */

.system-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.system-flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.system-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, transparent 50%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 60px 40px 40px;
    min-height: 420px;
}

.system-visual .flow-container {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix node positioning within system visual to prevent overlapping */
.system-visual .node-research {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.system-visual .node-personalize {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.system-visual .node-create {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Ensure labels have proper spacing */
.system-visual .node-label {
    margin-top: 8px;
    white-space: nowrap;
    font-size: 0.65rem;
}

/* Output indicator spacing */
.system-visual .output-indicator {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

/* System visual label positioning */
.system-visual .system-visual-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.system-flow-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.system-flow-card:hover {
    border-color: rgba(233, 30, 140, 0.2);
    transform: translateY(-4px);
}

.system-flow-card.highlighted {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.02) 100%);
    border-color: rgba(233, 30, 140, 0.4);
}

.system-flow-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(233, 30, 140, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-flow-icon svg {
    width: 26px;
    height: 26px;
    color: var(--pink);
}

.system-flow-card.highlighted .system-flow-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-soft));
}

.system-flow-card.highlighted .system-flow-icon svg {
    color: var(--white);
}

.system-flow-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.system-flow-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* System Flow Responsive */
@media (max-width: 1100px) {
    .system-different-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .system-visual {
        order: -1;
        min-height: 380px;
        padding: 56px 32px 36px;
        overflow: hidden;
    }
    
    .system-visual .flow-container {
        height: 300px;
    }
    
    .system-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .system-visual {
        min-height: 340px;
        padding: 52px 24px 32px;
    }
    
    .system-visual .flow-container {
        height: 260px;
    }
    
    .system-visual .node-research {
        left: 5px;
    }
    
    .system-visual .node-create {
        right: 5px;
    }
    
    .system-visual .node-personalize {
        top: 10px;
    }
    
    .system-visual .output-indicator {
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .system-flow-grid {
        grid-template-columns: 1fr;
    }

    .system-flow-card {
        padding: 24px 20px;
    }
    
    .system-visual {
        min-height: 280px;
        padding: 44px 12px 24px;
        overflow: hidden;
    }
    
    .system-visual .flow-container {
        height: 200px;
        max-width: 100%;
        overflow: visible;
    }
    
    .system-visual .system-visual-label {
        top: 10px;
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    
    .system-visual .node-research {
        left: 0;
    }
    
    .system-visual .node-create {
        right: 0;
    }
    
    .system-visual .node-personalize {
        top: 5px;
    }
    
    .system-visual .output-indicator {
        bottom: -8px;
        padding: 6px 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .system-visual .output-indicator-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 400px) {
    .system-visual {
        min-height: 240px;
        padding: 40px 8px 20px;
    }
    
    .system-visual .flow-container {
        height: 170px;
    }
    
    .system-visual .node-label {
        display: none;
    }
    
    .system-visual .output-indicator {
        padding: 5px 8px;
    }
    
    .system-visual .output-indicator-text {
        font-size: 0.55rem;
    }
}

/* ==========================================================================
   Result Section
   ========================================================================== */

.result-section {
    padding: 80px 0;
    text-align: center;
}

.result-question {
    margin-top: 48px;
    padding: 40px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.result-question .pull-quote {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.result-answer {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
    margin: 0 !important;
}

/* ==========================================================================
   Guarantee Section - Prominent Variant
   ========================================================================== */

.guarantee-box-prominent {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(233, 30, 140, 0.02) 100%);
    border: 2px solid rgba(233, 30, 140, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.guarantee-box-prominent::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--pink);
    filter: blur(180px);
    opacity: 0.15;
    pointer-events: none;
}

.guarantee-box-prominent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.guarantee-badge svg {
    color: var(--pink);
}

.guarantee-box-prominent .guarantee-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.guarantee-statement {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.guarantee-statement .highlight {
    color: var(--pink);
}

.guarantee-statement .highlight strong {
    color: var(--pink);
}

.guarantee-box-prominent .guarantee-specifics {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.15);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Responsive Adjustments for Promise Page
   ========================================================================== */

@media (max-width: 900px) {
    .story-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 600px) {
    .hero-cta-stack {
        width: 100%;
        align-items: stretch;
    }
    
    .btn-secondary {
        justify-content: center;
        padding: 16px 20px;
    }
    
    .story-lead {
        font-size: 1.15rem !important;
        text-align: center;
    }
    
    .story-narrative p {
        text-align: center;
    }
    
    .story-emphasis {
        font-size: 1.1rem !important;
    }
    
    .story-closer .pull-quote {
        font-size: 1.25rem;
    }
    
    .result-question {
        padding: 28px 24px;
    }
    
    .result-question .pull-quote {
        font-size: 1.1rem;
    }
    
    .result-answer {
        font-size: 1.25rem;
    }
    
    .guarantee-box-prominent {
        padding: 40px 24px;
    }
    
    .guarantee-badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .guarantee-statement {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Text-Centered Hero - Prominent Headlines
   ========================================================================== */

.hero-text-centered {
    text-align: center;
}

.hero-text-centered .hero-grid {
    display: block;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content-centered .hero-eyebrow {
    justify-content: center;
    margin-bottom: 32px;
}

.hero-headline-large {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px !important;
    color: var(--white);
}

.hero-headline-large .highlight {
    color: var(--pink);
    -webkit-text-fill-color: var(--pink);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-subheadline-prominent {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-subheadline-prominent em {
    font-style: italic;
    color: var(--pink);
}

.hero-subheadline-prominent strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta-centered {
    align-items: center;
    justify-content: center;
}

.hero-content-centered .hero-social-proof {
    display: block;
    margin-top: 32px;
}

/* Responsive for text-centered hero */
@media (max-width: 900px) {
    .hero-headline-large {
        font-size: clamp(2rem, 5vw, 2.75rem) !important;
    }
    
    .hero-subheadline-prominent {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
}

@media (max-width: 600px) {
    .hero-content-centered {
        padding: 0 8px;
    }
    
    .hero-content-centered .hero-eyebrow {
        font-size: 0.65rem;
        padding: 0 4px;
        flex-wrap: wrap;
        gap: 6px;
        line-height: 1.4;
    }
    
    .hero-headline-large {
        font-size: 1.85rem !important;
        margin-bottom: 20px !important;
        padding: 0 4px;
    }
    
    .hero-subheadline-prominent {
        font-size: 1.15rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 400px) {
    .hero-content-centered .hero-eyebrow {
        font-size: 0.6rem;
    }
    
    .hero-headline-large {
        font-size: 1.6rem !important;
    }
    
    .hero-subheadline-prominent {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Direct Response Hero Styling
   ========================================================================== */

/* Urgent Eyebrow - Gold accent for urgency */
.hero-eyebrow--urgent {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 10px 20px;
    border-radius: 30px;
}

.hero-eyebrow--urgent strong {
    color: #FFD700;
    font-weight: 600;
}

/* Direct Response Highlight - Pink per brand guidelines */
.highlight-yellow {
    color: var(--pink) !important;
    font-weight: 700;
}

/* Guarantee Text - Pink emphasis per brand */
.guarantee-text {
    color: var(--pink) !important;
    font-weight: 700;
    font-size: 1.05em;
}

/* Highlight Box - Gold accent callout */
.highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    color: #FFD700;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

/* Subheadline with guarantee styling */
.hero-subheadline--guarantee {
    line-height: 1.8;
}

.hero-subheadline--guarantee em {
    color: var(--gray-300) !important;
    font-style: italic;
}

/* Hero CTA Row - Side by Side */
.hero-cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-cta-row.hero-cta-centered {
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .hero-cta-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .hero-eyebrow--urgent {
        padding: 8px 16px;
    }
    
    .highlight-box {
        display: block;
        margin-top: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 400px) {
    .hero-eyebrow--urgent {
        padding: 6px 12px;
    }
}

/* ==========================================================================
   How It Works - Grid Layout with Animation
   ========================================================================== */

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.how-it-works-content {
    /* Timeline container */
}

.how-it-works-content .timeline {
    margin-top: 0;
}

.how-it-works-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, transparent 50%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
}

.system-visual-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    background: var(--dark-surface);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 140, 0.3);
}

/* Ensure flow container works in the how-it-works section */
.how-it-works-visual .flow-container {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive for how-it-works grid */
@media (max-width: 900px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .how-it-works-visual {
        order: -1; /* Show visual first on mobile */
        min-height: 300px;
        padding: 32px 20px;
    }
    
    .how-it-works-visual .flow-container {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .how-it-works-visual {
        min-height: 280px;
        padding: 28px 16px;
    }
    
    .how-it-works-visual .flow-container {
        height: 220px;
    }
    
    .system-visual-label {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(233, 30, 140, 0.3);
    transform: translateY(-4px);
}

.testimonial-card.testimonial-featured {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(233, 30, 140, 0.02) 100%);
    border-color: rgba(233, 30, 140, 0.3);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-quote {
    flex: 1;
    position: relative;
    margin-bottom: 24px;
}

.testimonial-quote .quote-icon {
    position: absolute;
    top: -8px;
    left: -4px;
    color: var(--pink);
    opacity: 0.3;
}

.testimonial-quote p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin: 0;
    padding-left: 8px;
    font-style: italic;
}

.testimonial-featured .testimonial-quote p {
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dark-border);
}

.testimonial-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), rgba(233, 30, 140, 0.6));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial-featured .testimonial-avatar {
    border-color: rgba(233, 30, 140, 0.4);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--pink);
    font-weight: 500;
}

/* Testimonials Responsive */
@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .testimonial-card.testimonial-featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   Founder Section
   ========================================================================== */

.founder-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 140, 0.03) 50%, transparent 100%);
}

.founder-section .container {
    display: flex;
    justify-content: center;
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.founder-avatar-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-elevated) 100%);
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.founder-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), rgba(233, 30, 140, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.founder-placeholder-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
}

.founder-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--pink), rgba(233, 30, 140, 0.3));
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

.founder-content {
    text-align: left;
}

.founder-content .section-label {
    text-align: left;
}

.founder-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.founder-story {
    margin-bottom: 32px;
}

.founder-story p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.founder-story strong {
    color: var(--white);
    font-weight: 600;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.5;
}

.credential-item svg {
    color: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item strong {
    color: var(--white);
    font-weight: 600;
}

.credential-item em {
    font-style: italic;
    color: var(--gray-300);
}

/* Founder Responsive */
@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .founder-content {
        text-align: center;
    }
    
    .founder-content .section-label {
        text-align: center;
    }
    
    .founder-credentials {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-image {
        max-width: 250px;
    }
    
    .founder-image-accent {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }
    
    .founder-content h2 {
        font-size: 1.5rem;
    }
    
    .founder-story p {
        font-size: 1rem;
    }
    
    .founder-credentials {
        padding: 20px;
    }
    
    .credential-item {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Guarantee Section - Cinematic Split-Screen Design
   ========================================================================== */

.guarantee-section.guarantee-cinematic {
    padding: 0;
    overflow: hidden;
}

.guarantee-cinematic-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-cinematic-left {
    background: linear-gradient(135deg, var(--pink) 0%, #c4177a 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guarantee-cinematic-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: guaranteeSlidePattern 20s linear infinite;
}

@keyframes guaranteeSlidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.guarantee-cinematic-left-content {
    position: relative;
    z-index: 2;
}

.guarantee-cinematic-big-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 0.85;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-cinematic-big-text span {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
}

.guarantee-cinematic-right {
    background: var(--dark-surface);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--dark-border);
}

.guarantee-cinematic-right .section-label {
    text-align: left;
}

.guarantee-cinematic-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.guarantee-cinematic-headline em {
    font-style: italic;
    color: var(--pink);
}

.guarantee-cinematic-statement {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
}

.guarantee-cinematic-statement .highlight {
    color: var(--pink);
}

.guarantee-cinematic-statement .highlight strong {
    color: var(--pink);
    font-weight: 700;
}

.guarantee-cinematic-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-cinematic-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-cinematic-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-cinematic-item-icon svg {
    color: #22c55e;
}

.guarantee-cinematic-item-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.guarantee-cinematic-item-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* Guarantee Cinematic Responsive */
@media (max-width: 900px) {
    .guarantee-cinematic-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .guarantee-cinematic-left {
        padding: 50px 30px;
        text-align: center;
    }
    
    .guarantee-cinematic-big-text {
        font-size: 5rem;
    }
    
    .guarantee-cinematic-right {
        padding: 50px 30px;
        border-left: none;
        border-top: 1px solid var(--dark-border);
    }
    
    .guarantee-cinematic-right .section-label {
        text-align: center;
    }
    
    .guarantee-cinematic-headline {
        text-align: center;
    }
    
    .guarantee-cinematic-statement {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .guarantee-cinematic-left {
        padding: 40px 24px;
    }
    
    .guarantee-cinematic-big-text {
        font-size: 4rem;
    }
    
    .guarantee-cinematic-big-text span {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }
    
    .guarantee-cinematic-right {
        padding: 40px 24px;
    }
    
    .guarantee-cinematic-headline {
        font-size: 1.5rem;
    }
    
    .guarantee-cinematic-statement {
        font-size: 1rem;
    }
    
    .guarantee-cinematic-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .guarantee-cinematic-item-content h4 {
        font-size: 1rem;
    }
}
