/* REMOVED Montserrat Import */

:root {
    --primary-color: #f38131;
    --primary-dark: #e07025;
    --secondary-color: #2b3e50;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-cream: #fef1e8;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.gtco-nav {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.ai-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.ai-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    background: url('/images/ai/hero_bg_main.png') no-repeat top center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    bottom: 98px;
}

.hero-content .hero-title {
    font-weight: 700;
    margin: 0 auto 15px;
    background: rgba(243, 129, 49, 0.95);
    color: var(--white);
    display: table;
    padding: 5px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 30px;
}

.hero-content p {
    font-weight: 550;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 5px 35px;
    display: table;
    margin: 0 auto;
}

/* Common Section Styles */
.section {
    padding: 60px 0;
    margin-top: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.orange-title {
    color: var(--primary-color) !important;
    text-transform: capitalize;
}

.dual-underline {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
}

.blue-line {
    width: 30px;
    height: 4px;
    background: #2b3e50;
}

.orange-line {
    width: 30px;
    height: 4px;
    background: var(--primary-color);
}

.section-title p {
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature/Movie Section */
.movie-section {
    padding-top: 80px;
    padding-bottom: 60px;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image-wrapper {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    display: inline-block;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
}

/* Phone Video Mockup - Video inside phone frame */
.phone-video-mockup {
    position: relative;
    display: inline-block;
    max-width: 320px;
}

.phone-video-mockup .phone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.phone-video-mockup .video-container {
    position: absolute;
    top: 12px;
    left: 12px;
    width: calc(100% - 23px);
    height: calc(100% - 23px);
    overflow: hidden;
    border-radius: 30px;
    z-index: 1;
}

.phone-video-mockup .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(243, 129, 49, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(243, 129, 49, 0.5);
}

.play-button i {
    color: white;
    margin-left: 5px;
}

.play-button.large {
    width: 90px;
    height: 90px;
}

.feature-content {
    padding: 20px 0;
}

.feature-text {
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #444;
}

.feature-cta {
    margin-top: 30px;
    text-align: center;
}

/* Pill Button */
.btn-pill {
    background: var(--primary-color);
    color: white;
    padding: 16px 50px 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(243, 129, 49, 0.3);
}

.btn-pill::after {
    content: '❯';
    font-weight: 700;
    position: absolute;
    right: 18px;
}

.btn-pill:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(243, 129, 49, 0.4);
    background: var(--primary-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 50px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-cream);
    position: relative;
    z-index: 2;
}

.how-it-works-section .container {
    position: relative;
    z-index: 10;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -46px;
    left: -14px;
    width: 345px;
    height: 345px;
    background: url('../images/ai/hiw_deco_left.png') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -170px;
    right: -90px;
    width: 345px;
    height: 345px;
    background: url('../images/ai/hiw_deco_right.png') no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 2;
}

.steps-container {
    margin-top: 40px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.step-card {
    position: relative;
    flex: 0 0 220px;
    max-width: 220px;
    background: transparent !important;
    text-align: center;
    padding: 5px;
    box-shadow: none !important;
    border: none !important;
}

.step-number {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(243, 129, 49, 0.3);
}

.step-image-wrapper {
    background: transparent !important;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: none !important;
}

.step-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.step-arrow {
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
    align-self: center;
    padding-bottom: 100px;
}

.step-card h3 {
    font-weight: 700;
    color: #333;
    margin: 15px 0 10px;
}

.step-card p {
    color: #555;
    line-height: 1.5;
}

/* Dashboard Section */
.dashboard-section {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.dashboard-left {
    padding-right: 20px;
}

.dashboard-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.dashboard-features li i {
    color: var(--primary-color);
}

.dashboard-right {
    position: relative;
}

.dashboard-mockup {
    position: relative;
    display: block;
    padding: 10px;
    background: linear-gradient(90deg, #2b3e50 50%, var(--primary-color) 50%);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.dashboard-mockup .dashboard-video-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.dashboard-mockup .dashboard-video-container video {
    display: block;
    width: calc(100% + 16px);
    top: 8px;
    height: auto;
    transform: scale(1.05) translateY(-1%);
    position: relative;
    left: 2px;
}

/* Analysis Section */
.analysis-section {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
}

.analysis-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -130px;
    width: 345px;
    height: 345px;
    background: url('../images/ai/hiw_deco_left.png') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
}

.analysis-section::after {
    content: '';
    position: absolute;
    bottom: -170px;
    right: -235px;
    width: 345px;
    height: 345px;
    background: url('../images/ai/hiw_deco_right.png') no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 2;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.analysis-card {
    background: #F5F9FE;
    padding: 0 25px;
    padding-top: 0;
    margin-top: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.analysis-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -40px;
}

.analysis-icon img {
    max-width: 100%;
    max-height: 100%;
}

.analysis-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -40px;
}

.analysis-card h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.analysis-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
section.cta-section {
    background: linear-gradient(135deg, #f38131 0%, #ff9a56 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

section.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

section.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 50px 16px 35px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-btn::after {
    content: '❯';
    font-weight: 700;
    position: absolute;
    right: 18px;
}

.cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .how-it-works-section::before {
        left: -110px;
    }

    .how-it-works-section::after {
        right: -180px;
    }

    .steps-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
        padding-bottom: 30px;
    }

    .hero-content .hero-title {
        padding: 12px 30px;
        font-size: 20px;
    }

    .hero-content p {
        padding: 10px 20px;
        font-size: 12px;
    }

    .section {
        padding: 50px 0;
    }

    .how-it-works-section::before {
        left: -190px;
    }

    .how-it-works-section::after {
        right: -200px;
    }

    .feature-grid,
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-content {
        text-align: center;
    }

    .dashboard-left {
        padding-right: 0;
    }

    .step-card {
        flex: 0 0 100%;
        max-width: 280px;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }
}