/* ===========================
   AI Style Assistant Page
   =========================== */

/* Hero */
.stylist-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #16213e 70%, #0a0a0a 100%);
    overflow: hidden;
}
.stylist-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(100, 161, 157, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(116, 100, 161, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(3%, -2%); }
}
.stylist-hero h1 {
    font-family: "Varela Round", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0.3rem;
    color: #F5F5DC;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .stylist-hero h1 {
        font-size: 4.5rem;
    }
}
@media (min-width: 992px) {
    .stylist-hero h1 {
        font-size: 5.5rem;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(100, 161, 157, 0.15);
    border: 1px solid rgba(100, 161, 157, 0.3);
    border-radius: 50rem;
    color: #64a19d;
    font-family: "Varela Round", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    max-width: 32rem;
    font-size: 1.1rem;
    color: rgba(245, 245, 220, 0.6);
    position: relative;
    z-index: 1;
}

/* Section shared styles */
.stylist-section {
    padding: 8rem 0;
    background-color: #0a0a0a;
}

.section-label {
    display: inline-block;
    color: #64a19d;
    font-family: "Varela Round", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Chat Mockup */
.chat-mockup {
    background: #111;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 161, 157, 0.15);
}
.chat-header {
    background: linear-gradient(135deg, #64a19d, #7464a1);
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: "Varela Round", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}
.chat-header i {
    margin-right: 0.5rem;
}
.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-msg {
    max-width: 80%;
    padding: 0.85rem 1.2rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-msg.ai {
    background: rgba(100, 161, 157, 0.15);
    color: #F5F5DC;
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}
.chat-msg.user {
    background: rgba(116, 100, 161, 0.25);
    color: #F5F5DC;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

/* Typing indicator */
.chat-msg.typing {
    display: flex;
    gap: 0.3rem;
    padding: 1rem 1.4rem;
}
.chat-msg.typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64a19d;
    animation: typingDot 1.4s infinite;
}
.chat-msg.typing span:nth-child(2) {
    animation-delay: 0.2s;
}
.chat-msg.typing span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0a0a0a 0%, #0f0f0f 100%);
}

.feature-card {
    background: #141414;
    border: 1px solid rgba(100, 161, 157, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(100, 161, 157, 0.3);
}
.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(100, 161, 157, 0.15), rgba(116, 100, 161, 0.15));
    font-size: 1.5rem;
    color: #64a19d;
}
.feature-card h4 {
    color: #F5F5DC;
    font-size: 1rem;
    font-family: "Varela Round", sans-serif;
    letter-spacing: 0.05rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Step Cards */
.step-card {
    background: #111;
    border: 1px solid rgba(100, 161, 157, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: border-color 0.3s ease;
}
.step-card:hover {
    border-color: rgba(100, 161, 157, 0.3);
}
.step-number {
    font-family: "Varela Round", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64a19d, #7464a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.step-card h4 {
    color: #F5F5DC;
    font-family: "Varela Round", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.step-card p {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Highlight Section */
.highlight-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0f0f0f 0%, #0a0a0a 100%);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.highlight-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.stat-card {
    background: #141414;
    border: 1px solid rgba(100, 161, 157, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}
.stat-card:hover {
    border-color: rgba(100, 161, 157, 0.3);
}
.stat-number {
    font-family: "Varela Round", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #64a19d;
    margin-bottom: 0.25rem;
}
.stat-label {
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Voice Agent Section */
.voice-section {
    padding: 8rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.voice-mockup {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.voice-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(100, 161, 157, 0.15);
}
.voice-ring-outer {
    width: 280px;
    height: 280px;
    animation: voicePulse 3s ease-in-out infinite;
}
.voice-ring-mid {
    width: 200px;
    height: 200px;
    border-color: rgba(100, 161, 157, 0.25);
    animation: voicePulse 3s ease-in-out 0.5s infinite;
}
.voice-ring-inner {
    width: 130px;
    height: 130px;
    border-color: rgba(100, 161, 157, 0.35);
    animation: voicePulse 3s ease-in-out 1s infinite;
}

@keyframes voicePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.6; }
}

.voice-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64a19d, #7464a1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    z-index: 1;
    box-shadow: 0 0 40px rgba(100, 161, 157, 0.3);
}

.voice-label {
    position: absolute;
    bottom: -10px;
    color: #64a19d;
    font-family: "Varela Round", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    z-index: 1;
}

.voice-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.voice-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.voice-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(100, 161, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64a19d;
    font-size: 1rem;
}

.voice-feature-item h5 {
    font-family: "Varela Round", sans-serif;
    font-size: 0.95rem;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}
.coming-soon-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(100, 161, 157, 0.06) 0%, transparent 70%);
}
.coming-soon-section > .container {
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(100, 161, 157, 0.2), rgba(116, 100, 161, 0.2));
    border: 1px solid rgba(100, 161, 157, 0.3);
    border-radius: 50rem;
    color: #64a19d;
    font-family: "Varela Round", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.coming-soon-section h2 {
    font-family: "Varela Round", sans-serif;
}
