/* ============================================
   SECTIONS.CSS — Section-specific styles
   ============================================ */

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

/* ======== SCROLL TO TOP ======== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-above);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--accent-violet);
    transform: translateY(-3px);
}

/* ======== HERO ======== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero__content {
    position: relative;
    z-index: var(--z-base);
    max-width: 850px;
    gap: var(--space-md);
}

.hero__title {
    margin-top: var(--space-sm);
}

.hero__title em {
    font-style: normal;
}

.hero__subtitle {
    max-width: 680px;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
}

.pill__dot {
    width: 6px;
    height: 6px;
    background: var(--accent-violet);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Hero Orbit */
.hero__orbit {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 350px;
    height: 350px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero__orbit-ring {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

.hero__orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-violet);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
    animation: orbit 20s linear infinite;
}

.hero__orbit-dot--2 {
    width: 5px;
    height: 5px;
    background: var(--accent-amber);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
    animation: orbit 30s linear infinite reverse;
}

/* Hero Scroll Indicator */
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-xl);
    animation: fadeIn 1s ease 1.5s backwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-violet), transparent);
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* ======== WHO WE ARE ======== */
.who-we-are__visual {
    position: relative;
}

/* ======== WHAT WE DO ======== */
.what-we-do__card {
    display: flex;
    flex-direction: column;
}

.what-we-do__card h3 {
    font-size: 1.5rem;
}

.what-we-do__list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.what-we-do__list li {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    padding-left: 1.2rem;
    position: relative;
}

.what-we-do__list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-violet);
    font-weight: 700;
    font-size: 1rem;
}

.what-we-do__card:nth-child(2) .what-we-do__list li::before {
    color: var(--accent-indigo);
}

.what-we-do__card:nth-child(3) .what-we-do__list li::before {
    color: var(--accent-amber);
}

/* ======== AMAZON FBA ======== */
.fba__framework-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fba__framework-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out);
}

.fba__framework-step:hover {
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.15);
}

.fba__step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.fba__framework-step strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ======== METHODOLOGY ======== */
.methodology__flow .process-step {
    text-align: center;
}

.methodology__flow .process-step .process-step__icon {
    margin: 0.75rem 0;
}

.methodology__connector {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.methodology__connector-line {
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    max-width: 80%;
}

/* ======== WHY CHOOSE US ======== */
.why-us__card h4 {
    margin-top: var(--space-sm);
    font-size: 1.15rem;
}

/* ======== VISION ======== */
.vision {
    background: var(--bg-secondary);
}

.vision__pillar {
    padding: var(--space-md);
}

.vision__pillar h4 {
    margin-top: 0.25rem;
}

/* ======== CTA SECTION ======== */
.cta-section {
    background: var(--bg-tertiary);
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}