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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.logo-dot {
    color: #4A90E2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #4A90E2;
}

.arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 28px;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f8f9fb;
    color: #4A90E2;
    padding-left: 32px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sign-in {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.sign-in:hover {
    color: #4A90E2;
}

.btn-cta {
    background: #000;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-cta:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section - Split Design */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: white;
}

.hero-left {
    padding: 100px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fb 0%, #e8f1fb 100%);
}

.hero-tag {
    display: inline-block;
    background: #4A90E2;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    width: fit-content;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.hero-btn {
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: #4A90E2;
    transform: translateX(5px);
}

.hero-right {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-stats-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.stat-box h4 {
    font-size: 28px;
    color: #4A90E2;
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

/* Featured Image Section */
.featured-section {
    padding: 100px 60px;
    background: white;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.featured-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.featured-list {
    list-style: none;
    margin-top: 32px;
}

.featured-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.featured-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
    font-size: 20px;
}

.featured-image-wrapper {
    position: relative;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Workflow Section */
.workflow-section {
    padding: 100px 60px;
    background: #f8f9fb;
}

.workflow-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.workflow-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.workflow-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.workflow-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4A90E2 0%, #87B4E6 100%);
    transform: translateX(-50%);
}

.workflow-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.workflow-step:nth-child(even) .step-content-left {
    order: 3;
}

.workflow-step:nth-child(even) .step-number {
    order: 2;
}

.workflow-step:nth-child(even) .step-content-right {
    order: 1;
}

.step-content-left,
.step-content-right {
    background: white;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s;
}

.step-content-left:hover,
.step-content-right:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.step-content-left h3,
.step-content-right h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000;
}

.step-content-left p,
.step-content-right p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #4A90E2;
    position: relative;
    z-index: 2;
}

/* Image Gallery Section */
.gallery-section {
    padding: 100px 60px;
    background: white;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.gallery-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.gallery-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 24px;
    color: white;
}

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Capabilities Grid */
.capabilities-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #f8f9fb 0%, white 100%);
}

.capabilities-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.capabilities-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.capabilities-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: white;
    border-left: 5px solid #4A90E2;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.capability-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #87B4E6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.capability-card h3 {
    font-size: 22px;
    color: #000;
}

.capability-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.capability-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.capability-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.capability-feature::before {
    content: '→';
    color: #4A90E2;
    font-weight: 700;
}

/* Templates Section */
.templates-section {
    padding: 100px 60px;
    background: #1a1a1a;
    color: white;
}

.templates-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.templates-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.templates-header p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

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

.template-card {
    background: #2d2d2d;
    padding: 32px 28px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.template-card:hover {
    border-color: #4A90E2;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
}

.template-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2 0%, #87B4E6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.template-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.template-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* ROI Section */
.roi-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #87B4E6 100%);
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.roi-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.roi-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.roi-left p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.roi-btn {
    background: white;
    color: #4A90E2;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
}

.roi-btn:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.roi-metric {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-metric h3 {
    font-size: 48px;
    color: white;
    margin-bottom: 8px;
}

.roi-metric p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        padding: 40px;
    }

    .featured-section,
    .workflow-section,
    .gallery-section,
    .capabilities-section,
    .templates-section,
    .roi-section,
    .footer {
        padding: 80px 30px;
    }

    .hero-left h1,
    .featured-text h2,
    .workflow-header h2,
    .gallery-header h2,
    .capabilities-header h2,
    .templates-header h2,
    .roi-left h2 {
        font-size: 36px;
    }

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

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        height: auto;
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 60px 20px;
        text-align: center;
        align-items: center;
    }

    .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-stats-overlay {
        width: 90%;
    }

    .featured-section {
        padding: 60px 20px;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-text {
        order: 1;
    }

    .featured-image-wrapper {
        order: 2;
    }

    .workflow-section {
        padding: 60px 20px;
    }

    .workflow-timeline::before {
        display: none;
    }

    .workflow-step {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .workflow-step:nth-child(even) .step-content-left {
        order: 2;
    }

    .workflow-step:nth-child(even) .step-number {
        order: 1;
    }

    .step-number {
        margin: 0 auto 10px;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capabilities-section {
        padding: 60px 20px;
    }

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

    .capability-features {
        grid-template-columns: 1fr;
    }

    .templates-section {
        padding: 60px 20px;
    }

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

    .roi-section {
        padding: 60px 20px;
    }

    .roi-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .roi-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: auto;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    p {
        font-size: 16px !important;
    }
}