.hero {
    color: #fff;
    padding: 120px 25px 100px;
    font-family: Montserrat, sans-serif;
    background: linear-gradient(rgba(26,26,46,0.85), rgba(22,33,62,0.8) 40%, rgba(30,87,153,0.85) 100%),
                url(../images/emporium.jpg) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero h1 {
    color: #fff;
    font-size: 2.8em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero h2 {
    color: rgba(255,255,255,0.85);
    font-size: 1.3em;
    font-weight: 400;
    text-align: center;
    text-transform: none;
    margin-bottom: 35px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-actions .btn {
    padding: 14px 32px;
    font-size: 1.05em;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-actions .btn-primary-cta {
    background-color: #7BD400;
    border-color: #7BD400;
    color: #1a1a2e;
}
.hero-actions .btn-primary-cta:hover {
    background-color: #8ee600;
    border-color: #8ee600;
    color: #1a1a2e;
}
.hero-actions .btn-outline-cta {
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.hero-actions .btn-outline-cta:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
}

.trust-bar {
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.trust-bar .trust-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-stat {
    text-align: center;
}
.trust-stat .stat-number {
    font-family: Montserrat, sans-serif;
    font-size: 2em;
    font-weight: 900;
    color: #1e5799;
    display: block;
    line-height: 1.2;
}
.trust-stat .stat-label {
    font-size: 0.9em;
    color: #666;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title h2 {
    font-family: Montserrat, sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.section-title p {
    font-size: 1.15em;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

#features {
    background-color: #fff;
}
.features-screenshots {
    max-width: 625px;
    margin: 0 auto 50px;
}
.features-screenshots .carousel-inner {
    overflow: hidden;
    background: #fff;
}
.features-screenshots .carousel-inner > .item {
    background: #fff;
}
.features-screenshots .carousel-inner > .item.active.left,
.features-screenshots .carousel-inner > .item.active.right,
.features-screenshots .carousel-inner > .item.next.left,
.features-screenshots .carousel-inner > .item.prev.right {
    background: #fff;
}
.features-screenshots .carousel-inner > .active,
.features-screenshots .carousel-inner > .next,
.features-screenshots .carousel-inner > .prev {
    background: #fff;
}
.features-screenshots .carousel-inner img {
    width: 100%;
    display: block;
}
.features-screenshots .carousel-indicators {
    display: none;
}
.features-screenshots .carousel-control {
    width: 40px;
    height: 40px;
    top: 50%;
    bottom: auto;
    left: -50px;
    margin-top: -20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.features-screenshots .carousel-control.right {
    left: auto;
    right: -50px;
}
.features-screenshots:hover .carousel-control {
    opacity: 1;
}
.features-screenshots .carousel-control.left,
.features-screenshots .carousel-control.right {
    background: none;
    background-image: none;
    filter: none;
}
.features-screenshots .carousel-control .glyphicon {
    color: #1e5799;
    font-size: 1.4em;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}
.feature-card {
    padding: 30px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-align: center;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-bottom: 25px;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.feature-card .feature-icon {
    font-size: 3em;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #b8c4d0 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.feature-card h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 0;
}

#how-it-works {
    background-color: #f8f9fa;
}
.step-card {
    text-align: center;
    padding: 25px 15px;
}
.step-card .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #1e5799;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: 16px;
}
.step-card h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.step-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

#pricing {
    background-color: #fff;
    text-align: center;
}
.pricing-card {
    display: inline-block;
    padding: 40px 60px;
    border: 2px solid #1e5799;
    border-radius: 12px;
    background: #fff;
}
.pricing-card .price {
    font-family: Montserrat, sans-serif;
    font-size: 4em;
    font-weight: 900;
    color: #1e5799;
    line-height: 1;
}
.pricing-card .price-currency {
    font-size: 0.4em;
    font-weight: 400;
    vertical-align: super;
}
.pricing-card .price-period {
    font-size: 0.25em;
    font-weight: 400;
    color: #999;
}
.pricing-card .price-gst {
    font-size: 0.9em;
    color: #999;
    margin-top: 6px;
}
.pricing-card .pricing-features {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
    font-size: 0.95em;
    color: #555;
}
.pricing-card .pricing-features li {
    padding: 4px 0;
}
.pricing-card .pricing-features li i {
    color: #7BD400;
    margin-right: 8px;
}

#credibility {
    background-color: #1a1a2e;
    color: #fff;
}
#credibility .section-title h2 {
    color: #fff;
}
#credibility .section-title p {
    color: rgba(255,255,255,0.6);
}
.credibility-card {
    padding: 30px 25px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.credibility-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #b8c4d0 0%, #7db9e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.credibility-card h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.15em;
    color: #7BD400;
    margin-bottom: 12px;
}
.credibility-card p {
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

#requirements-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #1e5799 100%);
    color: #fff;
}
#requirements-section .section-title h2 {
    color: #7BD400;
}
#requirements-section .section-title p {
    color: rgba(255,255,255,0.7);
}
.req-column {
    text-align: left;
    padding: 20px 30px;
}
.req-column h4 {
    color: #7BD400 !important;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}
.req-column ul {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
    color: rgba(255,255,255,0.8);
}
.req-column ul li {
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}
.req-column ul li::before {
    content: '\f111';
    font-family: FontAwesome;
    font-size: 0.4em;
    position: absolute;
    left: 0;
    top: 12px;
    color: rgba(255,255,255,0.4);
}

#cta-section {
    background: linear-gradient(to bottom, #7db9e8 0%, #1e5799 100%);
    color: #fff;
    text-align: center;
}
#cta-section h2 {
    color: #fff;
    font-family: Montserrat, sans-serif;
}
#cta-section .btn {
    padding: 14px 32px;
    font-size: 1.05em;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.15s ease;
}
#cta-section .btn:hover {
    transform: translateY(-2px);
}

#contact h2 {
    font-family: Montserrat, sans-serif;
}
#contact input[type="text"].form-control {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

@media (max-width: 950px) {
    .hero {
        padding: 60px 20px 40px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero h2 {
        font-size: 1.1em;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .trust-bar .trust-stats {
        gap: 25px;
    }
    .features-screenshots {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .features-screenshots .carousel-control {
        left: 0;
    }
    .features-screenshots .carousel-control.right {
        right: 0;
    }
    .feature-card {
        margin-bottom: 18px;
    }
    .pricing-card {
        padding: 30px 30px;
    }
    .credibility-card {
        margin-bottom: 15px;
    }
}
