/* ============ AISLE MATE PAGE STYLES ============ */

/* ============ AISLE MATE HERO ============ */
.aislemate-hero {
    padding: 8rem 2rem 6rem; /* Extra top padding to clear fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.aislemate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: -2;
    pointer-events: none;
}

.aislemate-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.aislemate-hero-title img {
    display: block;
    width: clamp(500px, 45vw, 720px);
    height: auto;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
}

.aislemate-hero-title .ai-accent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aislemate-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.aislemate-hero-visual {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-mockup-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(61, 52, 40, 0.15),
        0 10px 30px rgba(61, 52, 40, 0.1);
    background: var(--white);
    border: 1px solid rgba(61, 52, 40, 0.08);
}

.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--cream-dark);
    border-bottom: 1px solid rgba(61, 52, 40, 0.08);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(61, 52, 40, 0.2);
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C93F; }

.hero-mockup-content {
    padding: 0;
    display: block;
}

.hero-mockup-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 16px 16px;
}

.mockup-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: rgba(61, 52, 40, 0.05);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.mockup-disclaimer svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.mockup-disclaimer a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mockup-disclaimer a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

/* ============ PRODUCT INTRO SECTION ============ */
.aislemate-intro {
    padding: 6rem 2rem;
    background: var(--white);
}

.aislemate-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.aislemate-intro-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aislemate-intro-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.aislemate-intro-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.aislemate-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.aislemate-feature-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.aislemate-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--coral) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aislemate-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(61, 52, 40, 0.12);
}

.aislemate-feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
}

.aislemate-feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.aislemate-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ VISION SECTION ============ */
.aislemate-vision {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--ink) 0%, var(--text-primary) 100%);
    position: relative;
    overflow: hidden;
}

.aislemate-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.aislemate-vision-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.aislemate-vision-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vision-label {
    display: inline-block;
    color: var(--orange-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.aislemate-vision-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
}

.aislemate-vision-header h2 span {
    color: var(--orange-light);
}

.vision-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vision-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.vision-column-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--orange-light);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vision-column-title svg {
    width: 24px;
    height: 24px;
}

.vision-item {
    margin-bottom: 1.5rem;
}

.vision-item:last-child {
    margin-bottom: 0;
}

.vision-item h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.vision-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ TIMELINE SECTION ============ */
.aislemate-timeline {
    padding: 6rem 2rem;
    background: var(--cream);
}

.aislemate-timeline-inner {
    max-width: 900px;
    margin: 0 auto;
}

.aislemate-timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aislemate-timeline-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.aislemate-timeline-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.timeline-track {
    position: relative;
    padding-left: 3rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--peach) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border: 4px solid var(--cream);
    border-radius: 50%;
    transform: translateX(-8px);
}

.timeline-item.active .timeline-dot {
    background: var(--coral);
    box-shadow: 0 0 0 8px rgba(232, 122, 61, 0.2);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(232, 122, 61, 0.2);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(232, 122, 61, 0.1);
    }
}

.timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(61, 52, 40, 0.06);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-item.upcoming .timeline-dot {
    background: var(--warm-gray);
    opacity: 0.5;
}

.timeline-item.upcoming .timeline-content {
    opacity: 0.7;
    border: 2px dashed rgba(61, 52, 40, 0.15);
    background: transparent;
    box-shadow: none;
}

/* ============ NOTIFY SECTION ============ */
.aislemate-notify {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    text-align: center;
}

.aislemate-notify-inner {
    max-width: 600px;
    margin: 0 auto;
}

.aislemate-notify h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.aislemate-notify p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.notify-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ PAGE REVEAL ANIMATIONS ============ */
.aislemate-intro .reveal,
.aislemate-vision .reveal,
.aislemate-timeline .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.aislemate-intro .reveal.visible,
.aislemate-vision .reveal.visible,
.aislemate-timeline .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 900px) {
    .aislemate-features-grid {
        grid-template-columns: 1fr;
    }

    .vision-columns {
        grid-template-columns: 1fr;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
    /* Hero adjustments */
    .aislemate-hero {
        padding: 7rem 1.5rem 4rem; /* Adjusted top padding for mobile header */
    }

    .aislemate-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .aislemate-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .mockup-disclaimer {
        flex-direction: column;
        border-radius: 16px;
        padding: 1rem;
        gap: 0.35rem;
    }

    /* Card adjustments */
    .aislemate-feature-card {
        padding: 2rem 1.5rem;
    }

    .vision-column {
        padding: 2rem 1.5rem;
    }

    /* Timeline adjustments */
    .timeline-track {
        padding-left: 2.5rem;
    }

    .timeline-dot {
        left: -2.5rem;
    }

    .timeline-content {
        padding: 1.25rem 1.5rem;
    }

    /* Section padding adjustments */
    .aislemate-intro,
    .aislemate-vision,
    .aislemate-timeline,
    .aislemate-notify {
        padding: 4rem 1.5rem;
    }

    .aislemate-intro-header,
    .aislemate-vision-header,
    .aislemate-timeline-header {
        margin-bottom: 3rem;
    }
}

/* ============ RESPONSIVE - SMALL MOBILE ============ */
@media (max-width: 480px) {
    /* Hero adjustments */
    .aislemate-hero {
        padding: 6.5rem 1rem 3rem; /* Adjusted top padding for small mobile header */
    }

    .aislemate-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .aislemate-hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-mockup-container {
        border-radius: 12px;
    }

    .hero-mockup-header {
        padding: 0.5rem 0.75rem;
    }

    .mockup-dot {
        width: 8px;
        height: 8px;
    }

    /* Card adjustments */
    .aislemate-feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Vision adjustments */
    .vision-column {
        padding: 1.5rem 1.25rem;
    }

    .vision-column-title {
        font-size: 1.1rem;
    }

    /* Timeline adjustments */
    .timeline-track {
        padding-left: 2rem;
    }

    .timeline-dot {
        left: -2rem;
        width: 16px;
        height: 16px;
        transform: translateX(-6px);
    }

    .timeline-content {
        padding: 1rem 1.25rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-desc {
        font-size: 0.9rem;
    }

    /* Notify adjustments */
    .aislemate-notify h2 {
        font-size: 1.75rem;
    }

    .aislemate-notify p {
        font-size: 1rem;
    }
}