/* ===================================
    GROW Platform - Homepage Styles
    Based on SEO Agency Demo Template
====================================== */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Variables - matching GROW platform gradient */
:root {
    --alt-font: 'Urbanist', sans-serif;
    --primary-font: 'Urbanist', sans-serif;
    --base-color: #9c32b0;
    --grow-pink: #ff1e80;
    --grow-purple: #9c32b0;
    --grow-deep-purple: #6000ff;
    --dark-gray: #2a2b3f;
    --medium-gray: #797a8c;
}

/* GROW Platform Gradient - Pink to Purple to Deep Purple */
.grow-gradient-text {
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override the template's orange gradient with GROW gradient */
.text-gradient-orange-sky-blue,
.btn-gradient-orange-sky-blue {
    background-image: linear-gradient(to right, #ff1e80, #9c32b0, #6000ff, #9c32b0, #ff1e80) !important;
    background-size: 200% auto;
}

.text-base-color,
.feather.text-base-color {
    color: #9c32b0 !important;
}

/* Hero title - larger sizing, black text, single line */
.hero-title-grow {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #1e293b;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .hero-title-grow {
        font-size: 2.75rem;
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .hero-title-grow {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 767px) {
    .hero-title-grow {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }
}

/* GROW Logo - matching platform exactly */
.grow-logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to top right, rgb(255, 30, 128) 15.92%, rgb(156, 50, 176) 50.64%, rgb(96, 0, 255) 99.68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* White logo for footer */
.grow-logo-text.text-white {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

/* Gradient button - matching platform */
.btn-grow-gradient {
    background: linear-gradient(to top right, rgb(255, 30, 128) 15.92%, rgb(156, 50, 176) 50.64%, rgb(96, 0, 255) 99.68%);
    color: white !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-grow-gradient:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white !important;
}

/* Remove floating animation */
.animation-float {
    animation: none !important;
}

/* Reset */
body {
    font-size: 17px;
    line-height: 30px;
    font-family: var(--primary-font);
}

/* Disable custom cursor */
.cursor-page-inner {
    display: none !important;
}

/* Background Colors - GROW Platform Gradient */
.bg-grow-gradient {
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
}

.bg-grow-light {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
}

.bg-grow-purple-light {
    background-color: #f5f3ff;
}

/* Gradient backgrounds matching SEO template */
.bg-gradient-grow-light {
    background-image: linear-gradient(to right, #f5f3ff, #f5f3ff, #ede9fe, #e9d5ff, #e9d5ff);
}

/* Text Colors */
.text-grow-purple {
    color: var(--base-color) !important;
}

.text-grow-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons - matching template style */
.btn-grow-primary {
    background: linear-gradient(to right, #7c3aed, #a855f7, #7c3aed);
    background-size: 200% auto;
    color: white !important;
    border: none;
    font-weight: 600;
}

.btn-grow-primary:hover {
    background-position: right center;
    color: white !important;
}

.btn-grow-secondary {
    background: transparent;
    color: var(--dark-gray) !important;
    border: 1px solid var(--dark-gray);
    font-weight: 600;
}

.btn-grow-secondary:hover {
    background: var(--dark-gray);
    color: white !important;
}

/* Header Logo */
.grow-logo-img {
    max-height: 32px;
}

/* Section Tags - matching template */
.section-tag {
    padding: 8px 20px;
    text-transform: uppercase;
    color: var(--dark-gray);
    font-size: 13px;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 4px;
    background: linear-gradient(to right, #f5f3ff, #f5f3ff, #ede9fe, #e9d5ff, #e9d5ff);
    display: inline-block;
}

/* Stats Box - matching template sizing */
.stats-box {
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 60px rgba(0,0,0,0.08);
    padding: 50px 30px;
}

.stats-box .stat-item {
    text-align: center;
    padding: 0 15px;
}

.stats-box .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.2;
}

.stats-box .stat-label {
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Worker Badge - compact pill style with GROW gradient */
.worker-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.worker-badge i {
    margin-right: 6px;
    font-size: 10px;
}

/* Feature boxes - matching template */
.feature-box-grow {
    padding: 30px;
}

.feature-box-grow .feature-icon {
    height: 65px;
    margin-bottom: 30px;
}

.feature-box-grow .feature-icon img {
    height: 100%;
}

.feature-box-grow h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.feature-box-grow p {
    margin-bottom: 0;
}

/* Process steps - matching template */
.process-step-grow {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.process-step-grow .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    background: #f5f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.process-step-grow:hover .step-number {
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    color: white;
}

.process-step-grow .step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
    display: block;
}

.process-step-grow .step-desc {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Results grid - compact sizing */
.results-grid .result-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.results-grid .result-item .icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
}

.results-grid .result-item .icon i {
    font-size: 20px;
    color: var(--base-color);
}

.results-grid .result-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.results-grid .result-item p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing section - compact */
.pricing-box {
    background: linear-gradient(to right, #f5f3ff, #ede9fe);
    border-radius: 6px;
    padding: 50px 40px;
    border: 2px solid #e9d5ff;
}

.pricing-box .pricing-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--base-color);
    margin-bottom: 10px;
}

.pricing-box .pricing-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-box .pricing-desc {
    font-size: 15px;
    color: var(--medium-gray);
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
}

.pricing-feature i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 16px;
}

.pricing-feature h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.pricing-feature p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Comparison box */
.comparison-box {
    background: #f9fafb;
    border-radius: 6px;
    padding: 40px;
}

.comparison-item {
    text-align: center;
    padding: 0 20px;
}

.comparison-item .label {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.comparison-item .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.comparison-item .value.highlight {
    color: var(--base-color);
}

.comparison-item .value.savings {
    color: #10b981;
}

.comparison-item .value.strikethrough {
    text-decoration: line-through;
    opacity: 0.4;
}

/* Recap items */
.recap-list .recap-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.recap-list .recap-item:last-child {
    border-bottom: none;
}

.recap-list .recap-item i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

.recap-list .recap-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
}

/* CTA Section - GROW Platform Gradient */
.cta-box {
    background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    border-radius: 6px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* CTA button white with gradient text */
.cta-box .btn {
    color: #9c32b0 !important;
}

/* Large catalog section */
.catalog-stat {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.catalog-feature {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 25px 20px;
}

.catalog-feature i {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.catalog-feature h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.catalog-feature p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Footer */
.footer-grow {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
}

.footer-grow .footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-grow a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-grow a:hover {
    color: #a855f7;
}

.footer-grow h6 {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.footer-grow ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-grow ul li {
    margin-bottom: 8px;
}

.footer-grow ul li a {
    font-size: 15px;
}

/* Footer navbar styling */
.footer-grow .footer-navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.footer-grow .footer-navbar .nav-item {
    margin-bottom: 0;
}

.footer-grow .footer-navbar .nav-link {
    color: rgba(255,255,255,0.6);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.footer-grow .footer-navbar .nav-link:hover {
    color: #a855f7;
}

@media (max-width: 767px) {
    .footer-grow .footer-navbar {
        justify-content: center;
    }
}

/* Stack box customization */
.stack-box .stack-item.stack-item-02 {
    background: #f5f3ff;
}

/* Feature cards - matching template */
.feature-card-grow {
    background: white;
    border-radius: 6px;
    padding: 50px 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card-grow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.1);
}

.feature-card-grow .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
}

.feature-card-grow .icon img {
    width: 100%;
    height: 100%;
}

.feature-card-grow h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.feature-card-grow p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Review stars - use GROW purple */
.review-star-icon i {
    color: #7c3aed !important;
}

/* Smile underline for Profit */
.profit-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.profit-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M3 2 Q50 14 97 2' stroke='%239c32b0' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

/* Hero paragraph title */
.hero-paragraph-title {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero challenge heading */
.hero-challenge-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Automate label */
.automate-label {
    font-size: 1rem;
    font-weight: 700;
    color: #9c32b0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Challenge List in Hero */
.challenge-list {
    text-align: left;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.challenge-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(to top right, rgb(255, 30, 128) 15.92%, rgb(156, 50, 176) 50.64%, rgb(96, 0, 255) 99.68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.challenge-content {
    flex: 1;
}

.challenge-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    line-height: 1.3;
}

.challenge-desc {
    display: block;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Hero subtitle - bigger single line */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2a2b3f;
    white-space: nowrap;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .hero-subtitle {
        font-size: 1.25rem;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Hero description paragraph */
.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Hero section z-index fix - ensure image stays below header */
header {
    position: relative;
    z-index: 100 !important;
}

header nav {
    z-index: 100 !important;
}

#home {
    z-index: 1;
}

#home .container {
    position: relative;
    z-index: 5;
}

#home img {
    position: relative;
    z-index: 1;
}

/* Platform screenshot styling */
.platform-screenshot {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Ongoing box */
.ongoing-box {
    background: #f5f3ff;
    border-radius: 6px;
    padding: 20px 25px;
}

/* Header vertical alignment */
header .navbar .container-fluid {
    align-items: center;
}

header .navbar .navbar-brand {
    display: flex;
    align-items: center;
}

header .navbar .navbar-nav {
    align-items: center;
}

header .navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

header .navbar .navbar-nav .nav-link {
    display: flex;
    align-items: center;
}

header .header-icon {
    display: flex;
    align-items: center;
}

/* Compliance box styling */
.compliance-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.compliance-badge i {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 10px;
}

.compliance-badge i.fa-aws {
    color: #ff9900;
}

.compliance-badge i.fa-shield-halved {
    color: #22c55e;
}

.compliance-badge i.fa-lock {
    color: #3b82f6;
}

.compliance-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

/* Core dropdown menu styling */
.navbar-nav .dropdown-menu {
    min-width: 200px;
    padding: 6px 0;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: none;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #f5f3ff;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 991px) {
    .catalog-stat {
        font-size: 4rem;
    }

    .pricing-box .pricing-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .catalog-stat {
        font-size: 3rem;
    }

    .stats-box .stat-number {
        font-size: 2rem;
    }

    .pricing-box {
        padding: 30px 25px;
    }

    .pricing-box .pricing-number {
        font-size: 2rem;
    }

    .comparison-item .value {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 40px 25px;
    }
}
