/* ============================================================
   REEKIA — Coach App Page
   ============================================================ */

/* ============ HERO ============ */
.coach-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #252540 100%);
    overflow: hidden;
}

.coach-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coach-hero-content { color: white; }

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.coach-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.coach-hero h1 .gold { color: var(--gold); }

.coach-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.coach-hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.coach-hero .store-btn {
    background: white;
    color: var(--black);
}

.coach-hero-trust {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.coach-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.coach-hero-trust svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* Hero visual */
.coach-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-phone-main {
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero-phone-main img {
    width: 280px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-phone-secondary {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 1;
    animation: floatSlow 5s ease-in-out infinite;
}

.hero-phone-secondary img {
    width: 220px;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
}

/* ============ WHY SECTION ============ */
.why-coach {
    padding: 100px 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============ MODES SECTION ============ */
.modes-section {
    padding: 100px 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mode-card {
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.mode-card.autonomous {
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    border: 1.5px solid #BBF7D0;
}

.mode-card.connected {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 1.5px solid #93C5FD;
}

.mode-badge {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.mode-badge.auto {
    background: #D1FAE5;
    color: #059669;
}

.mode-badge.conn {
    background: #DBEAFE;
    color: #2563EB;
}

.mode-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.mode-card > p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.mode-features {
    list-style: none;
}

.mode-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--black);
}

.mode-features li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* ============ TOOLS SECTION ============ */
.tools-section {
    padding: 100px 0;
    background: var(--off-white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tool-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-icon svg {
    width: 22px;
    height: 22px;
}

.tool-icon.timer-green { background: #D1FAE5; color: #059669; }
.tool-icon.timer-blue { background: #DBEAFE; color: #2563EB; }
.tool-icon.timer-orange { background: #FEF3C7; color: #D97706; }
.tool-icon.timer-red { background: #FEE2E2; color: #DC2626; }
.tool-icon.calc-gold { background: var(--gold-light); color: var(--gold); }
.tool-icon.calc-purple { background: #EDE9FE; color: #7C3AED; }

.tool-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.tool-card p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ============ SCREENSHOTS SECTION ============ */
.screenshots-section {
    padding: 100px 0 60px;
    overflow: hidden;
}

.screenshots-track {
    display: flex;
    gap: 20px;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.screenshot-item {
    flex-shrink: 0;
    text-align: center;
}

.screenshot-item img {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-label {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
}

/* ============ VIRAL SECTION ============ */
.viral-section {
    padding: 100px 0;
    background: var(--off-white);
}

.viral-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.viral-text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.viral-text > p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 36px;
}

.viral-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.viral-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.viral-step-number {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.viral-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.viral-step p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Viral diagram */
.viral-diagram {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 44px;
    text-align: center;
}

.viral-diagram-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.viral-diagram-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viral-diagram-icon svg {
    width: 28px;
    height: 28px;
}

.viral-diagram-icon.coach-icon {
    background: var(--gold-light);
    color: var(--gold);
}

.viral-diagram-icon.arrow-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--gray-text);
}

.viral-diagram-icon.arrow-icon svg {
    width: 20px;
    height: 20px;
}

.viral-diagram-icon.box-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.viral-diagram h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.viral-diagram p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============ FINAL CTA ============ */
.coach-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 100%);
    text-align: center;
}

.coach-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.coach-final-cta > .container > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 36px;
}

.coach-final-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.coach-final-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .coach-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coach-hero-desc { margin: 0 auto 32px; }
    .coach-hero-ctas { justify-content: center; }
    .coach-hero-trust { justify-content: center; }

    .coach-hero-visual {
        min-height: 400px;
    }

    .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .modes-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .viral-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .coach-hero { padding: 100px 0 60px; }

    .hero-phone-main img { width: 220px; }
    .hero-phone-secondary { display: none; }
    .coach-hero-visual { min-height: 320px; }

    .why-card { padding: 28px; }
    .mode-card { padding: 32px; }
    .tool-card { padding: 20px; }

    .modes-section,
    .tools-section,
    .screenshots-section,
    .viral-section { padding: 60px 0; }

    .coach-final-cta { padding: 60px 0; }
}
