@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #ffffff;
    --bg: #000000;
    --bg-alt: #0a0a0a;
    --bg-dark: #000000;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --white: #ffffff;
    --black: #000000;
    --border: #27272a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --container: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Light Theme Variables for Solution Section */
    --light-bg: #ffffff;
    --light-bg-alt: #f8fafc;
    --light-pill-bg: #eff6ff;
    --light-text: #0f172a;
    --light-text-muted: #64748b;
    --light-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-family: var(--font-main) !important;
    font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    border-color: var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo-icon {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

/* Intro Gallery Section */
.intro-gallery {
    width: 100%;
    position: relative;
    background: #000;
    padding-top: 80px;
    /* offset for fixed header */
}

.intro-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    min-height: 650px; /* Increased from 500px */
    height: 70vh; /* Increased from 60vh */
}

.intro-gallery-image {
    width: 670px; /* 30% larger (original was ~515px) */
    height: 440px; /* 30% larger (original was ~337px) */
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.intro-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.intro-gallery-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
    padding-top: 4rem;
    text-align: center;
}

.intro-gallery-text {
    font-size: 2.65rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .intro-gallery-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 80vh;
    }

    .intro-gallery-image {
        height: 40vh;
    }

    .intro-gallery-text {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-lg {
    font-size: 1.35rem;
    padding: 0.75rem 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.stat-card {
    background: var(--white);
    color: var(--black);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--white);
    transition: var(--transition);
    width: 230px;
    text-align: center;
}

.stat-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #52525b;
    font-weight: 500;
}

/* Background elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite alternate;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: 50px;
    left: -50px;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem {
    background-color: #ffffff;
    color: #000000;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
    margin-bottom: 40px;
}

.problem-card {
    padding: 0.75rem;
    background: #ffffff;
    color: #1a202c;
    border-radius: 12px;
    border: 1.5px solid #ef4444;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.problem-icon {
    width: 20px;
    /* Reduced from 24px */
    height: 20px;
    background: rgba(239, 68, 68, 0.08);
    /* Lighter bg for white theme */
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.problem-icon i {
    width: 12px;
    height: 12px;
}

.problem-card h3 {
    font-size: 0.7rem;
    /* Even smaller */
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.problem-card p {
    color: #4a5568;
    font-size: 0.78rem;
    /* Reduced from 0.85rem */
    line-height: 1.25;
}

.impact-box {
    background: var(--black);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border: 1px solid var(--border);
}

.badge-accent {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.impact-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.impact-list i {
    color: var(--primary);
    flex-shrink: 0;
}

/* Solution Section */
.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.solution-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.solution-features i {
    color: var(--primary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    color: var(--black);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #52525b;
}

/* Modern Solution Section (Based on Image) */
.solution-modern {
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: 120px 0;
}

.solution-modern .section-title {
    color: var(--light-text);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.solution-modern .section-title .text-primary-color {
    color: var(--primary);
}

.solution-modern .section-subtitle {
    color: var(--light-text-muted);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefits-pill-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.benefits-pill {
    background-color: var(--light-pill-bg);
    border-radius: 60px;
    padding: 1.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.05);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--light-text);
}

.benefit-item .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1200px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .benefits-pill {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        border-radius: 24px;
    }
}

.feature-card-modern {
    background: #000000;
    padding: 1.25rem;
    border-radius: 16px;
    border: 2px solid #fbbf24;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.1);
    border-color: #d1e4ff;
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-card-modern h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card-modern p {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0.8;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.result-item {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.result-item:hover {
    background: var(--bg-alt);
    border-bottom-color: var(--primary);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(59, 130, 246, 0.3);
    margin-bottom: -1.5rem;
}

.result-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.result-item p {
    color: var(--text-muted);
}

/* Why Us Section */
.why-header {
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.ideal-client {
    background: #000000;
    color: #ffffff;
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 3px solid #fbbf24;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ideal-client h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-list i {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #000000;
    color: #ffffff;
    border-radius: var(--radius-md);
    border: 3px solid #fbbf24;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.advantage-card i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.advantage-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.85;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.contact-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.c-feature {
    display: flex;
    gap: 1.5rem;
}

.c-feature i {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.c-feature h6 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.c-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: #ffffff;
    color: #000000;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid #fbbf24;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 1rem;
    color: #000000;
    background: #f9fafb;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-stats {
        order: 2;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    .stat-card {
        width: auto;
        min-width: 200px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .impact-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-list {
        text-align: left;
    }

    .solution-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Checkboxes & Legal Summary */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000000;
    user-select: none;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--primary);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-summary {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #000000;
    line-height: 1.6;
    background: #f3f4f6;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e5e7eb;
}

.legal-summary strong {
    color: #000000;
}

.legal-summary a {
    color: var(--primary);
}