/* CSS Variables */
:root {
    /* Premium professional color palette */
    --primary: hsl(220, 78%, 29%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(220, 78%, 45%);
    --primary-dark: hsl(220, 78%, 20%);
    
    --secondary: hsl(215, 25%, 97%);
    --secondary-foreground: hsl(220, 78%, 29%);

    --muted: hsl(215, 25%, 97%);
    --muted-foreground: hsl(215, 13%, 37%);

    --accent: hsl(268, 83%, 47%);
    --accent-foreground: hsl(0, 0%, 100%);
    --accent-light: hsl(268, 83%, 65%);

    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 100%);

    --warning: hsl(38, 92%, 50%);
    --warning-foreground: hsl(0, 0%, 100%);

    --destructive: hsl(0, 72%, 51%);
    --destructive-foreground: hsl(0, 0%, 100%);

    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222, 84%, 5%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 84%, 5%);

    --border: hsl(215, 27%, 92%);
    --input: hsl(215, 27%, 92%);
    --ring: hsl(220, 78%, 29%);

    /* Premium design tokens */
    --gradient-primary: linear-gradient(135deg, hsl(220, 78%, 29%), hsl(268, 83%, 47%));
    --gradient-secondary: linear-gradient(135deg, hsl(215, 25%, 97%), hsl(0, 0%, 100%));
    --gradient-accent: linear-gradient(135deg, hsl(268, 83%, 47%), hsl(268, 83%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(220, 78%, 29%) 0%, hsl(268, 83%, 47%) 50%, hsl(220, 78%, 45%) 100%);
    
    --shadow-soft: 0 4px 20px -4px hsl(220, 78%, 29%, 0.15);
    --shadow-medium: 0 8px 30px -8px hsl(220, 78%, 29%, 0.25);
    --shadow-large: 0 20px 60px -12px hsl(220, 78%, 29%, 0.35);
    --shadow-colored: 0 8px 32px -8px hsl(268, 83%, 47%, 0.3);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --radius: 0.5rem;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(220, 78%, 4%);
        --foreground: hsl(210, 40%, 98%);
        --card: hsl(220, 78%, 6%);
        --card-foreground: hsl(210, 40%, 98%);
        --primary: hsl(220, 78%, 45%);
        --primary-light: hsl(220, 78%, 60%);
        --primary-dark: hsl(220, 78%, 29%);
        --secondary: hsl(217, 33%, 15%);
        --secondary-foreground: hsl(210, 40%, 98%);
        --muted: hsl(217, 33%, 15%);
        --muted-foreground: hsl(215, 20%, 70%);
        --accent: hsl(268, 83%, 65%);
        --accent-light: hsl(268, 83%, 75%);
        --border: hsl(217, 33%, 18%);
        --input: hsl(217, 33%, 18%);
        --ring: hsl(220, 78%, 45%);
        
        --gradient-primary: linear-gradient(135deg, hsl(220, 78%, 45%), hsl(268, 83%, 65%));
        --gradient-secondary: linear-gradient(135deg, hsl(217, 33%, 15%), hsl(220, 78%, 6%));
        --gradient-accent: linear-gradient(135deg, hsl(268, 83%, 65%), hsl(268, 83%, 75%));
        --gradient-hero: linear-gradient(135deg, hsl(220, 78%, 45%) 0%, hsl(268, 83%, 65%) 50%, hsl(220, 78%, 60%) 100%);
        
        --shadow-soft: 0 4px 20px -4px hsl(220, 78%, 45%, 0.4);
        --shadow-medium: 0 8px 30px -8px hsl(220, 78%, 45%, 0.5);
        --shadow-large: 0 20px 60px -12px hsl(220, 78%, 45%, 0.6);
        --shadow-colored: 0 8px 32px -8px hsl(268, 83%, 65%, 0.4);
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-feature-settings: "rlig" 1, "calt" 1;
    font-weight: 400;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.section-title, .hero-title, .cta-title, .banner-title, .team-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.logo-text, .footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}

code, .code-text {
    font-family: 'Source Code Pro', monospace;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Enhanced Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-medium);
    }
    50% {
        box-shadow: var(--shadow-large);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slide-in-left 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slide-in-right 0.6s ease-out;
}

.animate-scale-in {
    animation: scale-in 0.4s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 2s linear infinite;
}

.animate-shimmer {
    animation: shimmer 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.hover-glow {
    transition: var(--transition-smooth);
}

.hover-glow:hover {
    box-shadow: var(--shadow-colored);
}

.hover-scale {
    transition: var(--transition-smooth);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: var(--transition-smooth);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Enhanced Animation Classes */
.hover-scale {
    transition: var(--transition-smooth);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: var(--transition-smooth);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Stagger delays for multiple elements */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Stagger Animation Delays */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Intersection Observer Classes */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left-on-scroll {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-left-on-scroll.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right-on-scroll {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.slide-in-right-on-scroll.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-out;
}

.scale-in-on-scroll.animate {
    opacity: 1;
    transform: scale(1);
}

.text-gradient {
    background: var(--gradient-hero);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.text-normal {
    color: var(--foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn svg, .btn-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.btn-lg {
    height: 2.75rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-premium {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-colored);
    font-weight: 600;
    transition: var(--transition-bounce);
}

.btn-premium:hover {
    box-shadow: var(--shadow-large);
    transform: scale(1.05);
}

.btn-hero {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-medium);
    font-weight: 600;
    transition: var(--transition-bounce);
}

.btn-hero:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--background);
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.btn-secondary:hover {
    background: hsl(0, 0%, 95%);
}

.btn-outline-white {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(32px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-medium);
}

/* Header Top Bar */
.header-top {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.header-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1rem;
    height: 1rem;
}

/* Header Main */
.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fade-in 0.6s ease-out;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;       
    display: flex;
    align-items: center;
    justify-content: center;    
}

.logo-icon img {
    width: 3.1rem;
    height: 3.1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav {
    margin-top: 1rem;
    padding-bottom: 1rem;
    animation: fade-in 0.3s ease-out;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 0.5rem;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-top {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-social {
        gap: 0.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero-banner-BV4JSUKG.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.95));
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(268, 83%, 47%, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fade-in 0.6s ease-out;
}

.star-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slide-up 0.6s ease-out;
}

.hero-description {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fade-in 0.6s ease-out;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: scale-in 0.4s ease-out;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn {
    font-size: 1.125rem;
    padding: 1.75rem 2.5rem;
    height: auto;
}

.arrow-icon, .play-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
}

.hero-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.check-icon {
    width: 2rem;
    height: 2rem;
    color: var(--success);
    margin: 0 auto 0.75rem;
}

.feature-content {
    text-align: center;
}

.feature-text {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: bounce 3s ease-in-out infinite;
}

.floating-1 {
    top: 25%;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    animation-delay: 0s;
}

.floating-2 {
    bottom: 25%;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    animation-delay: 1s;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: linear-gradient(to right, 
        rgba(220, 78%, 29%, 0.2), 
        rgba(268, 83%, 47%, 0.2));
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    animation: fade-in 0.6s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 78%, 29%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.settings-icon, .users-icon {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(215, 27%, 92%, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-out;
}

@keyframes shimmer {
    0% {
        transform: rotate(-45deg) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translateX(100%);
        opacity: 0;
    }
}

.service-header {
    text-align: center;
    padding-bottom: 1.5rem;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    box-shadow: var(--shadow-large);
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-description {
    text-align: center;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-btn {
    width: 100%;
    transition: var(--transition-smooth);
}

.service-card:hover .service-btn {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* Transformation Banner */
.transformation-banner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 6rem;
    box-shadow: var(--shadow-large);
    animation: fade-in 0.6s ease-out;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/digital-transformation-BIlfaPUB.jpg');
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(220, 78%, 29%, 0.9), 
        rgba(268, 83%, 47%, 0.9));
}

.banner-content {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .banner-content {
        padding: 6rem 4rem;
    }
}

.banner-title {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-secondary);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.1s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.2s;
}

.highlight-card:hover {
    box-shadow: var(--shadow-colored);
}

.highlight-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(268, 83%, 47%, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.highlight-stat {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.highlight-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stat-value {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    background: var(--gradient-hero);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Team Banner */
.team-banner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-large);
    animation: fade-in 0.6s ease-out;
}

.team-bg {
    height: 24rem;
    background-image: url('img/team-collaboration-B8Ims_Gl.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(220, 78%, 29%, 0.8), 
        rgba(268, 83%, 47%, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.team-title {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.value-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3) {
    animation-delay: 0.2s;
}

.value-card:nth-child(4) {
    animation-delay: 0.3s;
}

.value-card:hover {
    box-shadow: var(--shadow-colored);
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(268, 83%, 47%, 0.05);
    border-radius: 1rem;
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.achievement-card:nth-child(2) {
    animation-delay: 0.2s;
}

.achievement-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: rgba(268, 83%, 47%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}

.achievement-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-desc {
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-info {
    flex: 1;
}

.client-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.client-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    font-style: italic;
    margin: 0;
    position: relative;
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--gradient-secondary);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stats-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.quote-icon {
    width: 1rem;
    height: 1rem;
}

/* Partner Section */
.partner {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.partner-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.partner-bg-1 {
    top: 0;
    left: 0;
    width: 18rem;
    height: 18rem;
    background: var(--gradient-primary);
    transform: translate(-9rem, -9rem);
}

.partner-bg-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--gradient-accent);
    transform: translate(12rem, 12rem);
}

/* Partner Benefits */
.partner-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .partner-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .partner-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
    animation: fade-in 0.6s ease-out;
    animation-fill-mode: both;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.benefit-header {
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Partnership Features */
.partnership-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .partnership-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.features-content {
    animation: fade-in 0.6s ease-out;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

.partnership-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-in 0.6s ease-out;
}

.partnership-card {
    padding: 1.5rem;
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-soft);
    border-radius: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.card-title {
    font-weight: 600;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.card-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-hero);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-large);
    animation: scale-in 0.4s ease-out;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 4rem;
    }
}

.cta-title {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-large);
    color: white;
}

.footer .container {
    padding: 4rem 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.footer-logo-icon img {
    width: 1.75rem;
    height: 1.75rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-colored);
    color: var(--accent-light);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: white;
}

/* Footer Contact */
.footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-label {
    color: white;
    font-weight: 500;
}

.contact-value {
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title, .banner-title, .team-title {
        font-size: 2rem;
    }
}
