/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bowisolve brand colors */
    --bowi-green: #b1d042;
    --bowi-green-light: #c4db6a;
    --bowi-green-dark: #9aba35;
    --bowi-blue: #43b4f0;
    --bowi-blue-light: #6bc4f4;
    --bowi-blue-dark: #2a9fd8;
    --emerald-300: #c9e472;
    
    --slate-950: #020617;
    --slate-900: hsl(222, 47%, 11%);
    --slate-800: hsl(217, 33%, 17%);
    --slate-700: hsl(215, 25%, 27%);
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    
    --white: #ffffff;
    --border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate-300);
    background-color: var(--slate-950);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Utility Classes */
.text-gradient-gold {
    background: linear-gradient(to right, var(--bowi-green), var(--emerald-300), var(--bowi-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elegant-button {
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-background img {
        object-position: right;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(177, 208, 66, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.navbar a {
    text-decoration: none;
    color: var(--slate-300);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--bowi-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 1.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--slate-300);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Header/Navigation (removed) */
header {
    display: none;
}

header .container {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--slate-300);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--bowi-green);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-logo {
    margin-top: 6rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-image {
    height: auto;
    width: auto;
    max-height: 160px;
}

/* Elegant Divider */
.elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.divider-line {
    height: 1px;
    width: 64px;
}

.divider-line.green {
    background: var(--bowi-green);
}

.divider-line.blue {
    background: var(--bowi-blue);
}

/* Headline */
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.headline-second {
    display: block;
    margin-top: 0.5rem;
}

.gradient-text {
    display: block;
    margin-top: 0.75rem;
    font-weight: 500;
    background: linear-gradient(to right, var(--bowi-green), var(--emerald-300), var(--bowi-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--slate-400);
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--bowi-green);
    color: var(--slate-900);
    letter-spacing: 0.025em;
}

.cta-button.primary:hover {
    background: var(--bowi-green-light);
    box-shadow: 0 10px 25px rgba(177, 208, 66, 0.25);
}

.cta-button.secondary {
    border: 2px solid var(--bowi-blue);
    color: var(--bowi-blue);
    letter-spacing: 0.025em;
}

.cta-button.secondary:hover {
    background: var(--bowi-blue);
    color: var(--slate-900);
}

/* Trust Indicators - Stats */
.trust-indicators {
    margin-top: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-number.green {
    color: var(--bowi-green);
}

.stat-number.white {
    color: var(--white);
}

.stat-number.blue {
    color: var(--bowi-blue);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--slate-800);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--bowi-green), var(--bowi-blue));
    margin: 1rem auto 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
    color: var(--slate-300);
}

/* Approach Cards */
.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(177, 208, 66, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.approach-card h3 {
    color: var(--bowi-green);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.approach-card p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    text-align: left;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--slate-900);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--bowi-green), var(--bowi-blue));
    margin: 1rem auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(51, 65, 85, 0.5);
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--bowi-green);
}

.service-icon i,
.service-icon svg {
    width: 85px !important;
    height: 85px !important;
    stroke-width: 1.5;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
    font-weight: 300;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(154, 186, 53, 0.70), rgba(177, 208, 66, 0.70)), var(--slate-900);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.how-it-works h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--bowi-green), var(--bowi-blue));
    margin: 1rem auto 2rem;
}

.how-it-works .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Vertical dotted line for mobile/tablet */
.steps-grid::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    border-left: 3px dotted var(--slate-600);
    z-index: 0;
}

@media (min-width: 768px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 15%;
        right: 15%;
        height: 2px;
        border-top: 3px dotted var(--slate-600);
        border-left: none;
        bottom: auto;
        width: auto;
        z-index: 0;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0F1729;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background-color: var(--slate-800);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--bowi-green), var(--bowi-blue));
    margin: 1rem auto 3rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--slate-400);
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(51, 65, 85, 0.5);
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    color: var(--bowi-green);
}

.detail-icon i,
.detail-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.detail-item strong {
    display: block;
    color: var(--bowi-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-item p {
    margin: 0;
    color: var(--slate-300);
    font-weight: 300;
}

.detail-item a {
    color: var(--slate-300);
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--slate-300);
}

/* Footer */
footer {
    background-color: var(--slate-900);
    color: var(--slate-500);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(51, 65, 85, 0.5);
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 62px;
        flex-direction: column;
        background: rgba(2, 6, 23, 0.8);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        gap: 0;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(177, 208, 66, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .navbar ul {
        gap: 0;
    }

    .navbar a {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .trust-items {
        gap: 1rem;
    }

    .trust-items span:not(.dot) {
        font-size: 0.75rem;
    }

    .about, .services, .contact, .how-it-works {
        padding: 4rem 1rem;
    }

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

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

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

    .contact-card {
        flex-direction: column;
        gap: 2rem;
    }

    .logo-image {
        max-height: 130px;
    }
}

@media (max-width: 480px) {
    .navbar ul {
        gap: 0.75rem;
    }

    .navbar a {
        font-size: 0.85rem;
    }

    nav ul {
        gap: 1rem;
    }

    .about h2, .services h2, .contact h2, .how-it-works h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .detail-item {
        gap: 0.75rem;
    }

    .logo-image {
        max-height: 110px;
    }
}
    }
}
