/* ===================================
   GReviews - Exact Mockup Recreation
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #050810;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section - Using Mockup Image as Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('/assets/images/hero-mockup.webp') no-repeat center top;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
}

.cityscape-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 8, 16, 0.3) 0%, rgba(5, 8, 16, 0.8) 100%);
    z-index: 1;
}

.container-hero {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-left {
    max-width: 600px;
    padding-top: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-green {
    color: #7FFF00;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-green {
    background: #7FFF00;
    color: #000000;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background: #6FEF00;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* How It Works Section */
.how-it-works-section {
    background: #050810;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header-how {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7FFF00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.section-title-white {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #7FFF00;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #7FFF00;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    margin: 20px auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* Why We're Different Section */
.why-different-section {
    background: #050810;
    padding: 60px 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
}

.comparison-card.our-service {
    border-color: #7FFF00;
}

.comparison-card.other-providers {
    border-color: #ff3366;
}

.comparison-header {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #7FFF00;
}

.other-providers .comparison-header {
    color: #ff3366;
}

.line-left, .line-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #7FFF00);
}

.line-right {
    background: linear-gradient(to left, transparent, #7FFF00);
}

.line-left-red, .line-right-red {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff3366);
}

.line-right-red {
    background: linear-gradient(to left, transparent, #ff3366);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.check-icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-icon.green,
.check-icon-end.green {
    color: #7FFF00;
}

.check-icon.red,
.check-icon-end.red {
    color: #ff3366;
}

.feature-text {
    flex: 1;
    padding: 0 15px;
    color: #ffffff;
    font-size: 1rem;
}

.btn-start {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.green-btn {
    background: #7FFF00;
    color: #000000;
}

.green-btn:hover {
    background: #6FEF00;
    transform: translateY(-2px);
}

.red-btn {
    background: #ff3366;
    color: #ffffff;
}

.red-btn:hover {
    background: #ee2255;
    transform: translateY(-2px);
}

/* Trusted By Section */
.trusted-section {
    background: #050810;
    padding: 60px 0;
}

.section-title-trusted {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.line-gradient-left,
.line-gradient-right {
    flex: 0 1 200px;
    height: 2px;
    background: linear-gradient(to right, #7FFF00, #00d4ff);
}

.line-gradient-right {
    background: linear-gradient(to left, #00d4ff, #7FFF00);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.map-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    min-height: 250px;
    position: relative;
}

.map-label {
    background: #000000;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.cityscape-image {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-height: 250px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    border-color: #7FFF00;
    transform: scale(1.05);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.industry-item p {
    font-size: 0.95rem;
    color: #ffffff;
}

/* FAQ Section */
.faq-section {
    background: #050810;
    padding: 60px 0 80px;
}

.section-title-faq {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.faq-line-left,
.faq-line-right {
    flex: 0 1 300px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff);
}

.faq-line-right {
    background: linear-gradient(to left, transparent, #ffffff);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(127, 255, 0, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #7FFF00;
    font-size: 0.875rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Auth Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050810;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.6);
}

.auth-form {
    margin: 30px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7FFF00;
    background: rgba(0, 0, 0, 0.4);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.link-small {
    color: #7FFF00;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-small:hover {
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #7FFF00;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6FEF00;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.auth-footer a {
    color: #7FFF00;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid #7FFF00;
    color: #7FFF00;
}

.alert-error {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid #ff3366;
    color: #ff3366;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    color: #00d4ff;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-green,
    .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .map-comparison {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title-trusted,
    .section-title-faq {
        flex-direction: column;
        gap: 10px;
    }

    .line-gradient-left,
    .line-gradient-right,
    .faq-line-left,
    .faq-line-right {
        display: none;
    }
}
