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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Colors */
:root {
    --primary-color: #1A584F;
    --secondary-color: #E8EBE5;
    --accent-color: #FCD34D;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(to right, #FEF3C7, #FCD34D, #F59E0B);
    --gradient-2: linear-gradient(to right, #D1FAE5, #A7F3D0, #34D399);
    --gradient-text: linear-gradient(to right, #047857, #0F766E);
}

/* Decorative Background Elements */
.decorative-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-element-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 88, 79, 0.05) 0%, transparent 70%);
}

.bg-element-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 235, 229, 0.05) 0%, transparent 70%);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
}

.geometric-decoration {
    position: absolute;
    z-index: 1;
}

.geo-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.geo-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 3.0rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-highlight {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-highlight:hover {
    transform: scale(1.05);
}

.hero-text-muted {
    color: rgba(255, 255, 255, 0.9);
}

.hero-text-white {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-gradient-1 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-gradient-1:hover {
    transform: scale(1.05);
}

.hero-gradient-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-gradient-2:hover {
    transform: scale(1.05);
}

.hero-description {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 40rem;
}

.btn-custom-primary {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-custom-primary:hover {
    background: #f3f4f6;
    color: black;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-custom-primary i {
    transition: transform 0.3s ease;
}

.btn-custom-primary:hover i {
    transform: translateX(0.25rem);
}

.hero-image-container {
    position: relative;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.hero-decoration {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 20;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.benefit-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Built for Industry Section */
.built-for-industry-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
    position: relative;
}

.section-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, #d1d5db, transparent);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industry-content {
    padding-right: 2rem;
}

.industry-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
}

.industry-image-container {
    position: relative;
}

.industry-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.industry-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.industry-decoration {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
}

/* Industries Section */
.industries-section {
    background: white;
    padding: 6rem 0;
    position: relative;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 56rem;
    margin: 0 auto 5rem auto;
}

.industry-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.industry-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.industry-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-bg {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.industry-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Industry Card Content */
.industry-card-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.industry-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: #FCD34D;
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.industry-list i {
    color: #FCD34D;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Expertise Matters Section */
.expertise-matters-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
    position: relative;
}

.expertise-content {
    padding-left: 2rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.expertise-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.expertise-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.expertise-image-container {
    position: relative;
}

.expertise-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.expertise-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.expertise-decoration {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 6rem 0;
    position: relative;
}

.cta-decoration {
    position: absolute;
}

.cta-geo-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(12deg);
}

.cta-geo-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transform: rotate(45deg);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.cta-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
}

.cta-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-container {
    display: flex;
    justify-content: center;
}

.cta-stats {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .industry-content,
    .expertise-content {
        padding-right: 0;
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .built-for-industry-section,
    .industries-section,
    .expertise-matters-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .industry-text,
    .expertise-text {
        font-size: 1rem;
    }
    
    .bg-element-1,
    .bg-element-2 {
        width: 12rem;
        height: 12rem;
    }
}

@media (max-width: 575.98px) {
    .geometric-decoration {
        display: none;
    }
    
    .cta-decoration {
        display: none;
    }
    
    .hero-decoration,
    .industry-decoration,
    .expertise-decoration {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Loading state for images */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f3c36;
}