@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

:root {
    /* Corporate Color Palette - Better Contrast */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --accent-navy: #1e293b;
    --accent-navy-light: #334155;
    --accent-slate: #475569;
    --accent-slate-light: #64748b;
    --accent-steel: #0f172a;
    --accent-steel-light: #1e293b;

    /* Corporate Grays - Better Contrast */
    --corporate-50: #f8fafc;
    --corporate-100: #f1f5f9;
    --corporate-200: #e2e8f0;
    --corporate-300: #cbd5e1;
    --corporate-400: #94a3b8;
    --corporate-500: #64748b;
    --corporate-600: #475569;
    --corporate-700: #334155;
    --corporate-800: #1e293b;
    --corporate-900: #0f172a;

    /* Corporate Accents */
    --corporate-gold: #d97706;
    --corporate-gold-light: #f59e0b;
    --corporate-silver: #6b7280;
    --corporate-silver-light: #9ca3af;

    /* Base Colors */
    --white: #ffffff;
    --black: #000000;

    /* Neutral Colors */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;

    /* Additional Colors */
    --text-gray: #64748b;
    --text-dark: #1e293b;
    --light-bg: #f8fafc;
    --light-bg-2: #f1f5f9;
    --dark-bg: #0f172a;
    --accent-purple: #7c3aed;
    --accent-purple-light: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-teal: #0d9488;
    --accent-orange: #f97316;
    --accent-coral: #f97316;
    --accent-pink: #ec4899;

    /* Corporate Shadows - Softer */
    --shadow-corporate: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-corporate-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-corporate-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-corporate-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-executive: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-executive-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--corporate-800);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--corporate-900);
}

h1 {
    font-weight: 800;
    font-size: 3.5rem;
}

h2 {
    font-weight: 700;
    font-size: 2.75rem;
}

h3 {
    font-weight: 600;
    font-size: 2rem;
}

h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.125rem; font-weight: 600; }
p { font-size: 1.125rem; color: var(--corporate-600); line-height: 1.6; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 25px;
    border: 2px solid var(--accent-purple);
    font-family: 'Source Sans Pro', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
}

.gradient-bg-2 {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
}

.hand-drawn-border {
    border: 3px solid var(--primary-forest);
    border-radius: 20px 5px 20px 5px;
    position: relative;
}

.hand-drawn-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-terracotta), var(--accent-sage));
    border-radius: 22px 7px 22px 7px;
    z-index: -1;
}

.organic-shape {
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
}

.organic-shape-2 {
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.mesh-bg {
    background:
        radial-gradient(circle at 20% 30%, rgba(45, 80, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(210, 105, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(156, 175, 136, 0.06) 0%, transparent 50%);
}

.hand-drawn-bg {
    background:
        linear-gradient(45deg, var(--accent-cream) 25%, transparent 25%),
        linear-gradient(-45deg, var(--accent-warm) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--accent-sage-light) 75%),
        linear-gradient(-45deg, transparent 75%, var(--accent-terracotta-light) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-executive);
    border-bottom: 2px solid var(--corporate-200);
}

header.dark-mode {
    background: rgba(15, 23, 42, 0.95);
}

header.dark-mode.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-blue);
}

.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-executive);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-navy));
    color: var(--white);
    box-shadow: var(--shadow-executive);
    border: 2px solid var(--primary-blue);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-purple-light);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-executive);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-purple);
}

.btn-hand-drawn {
    background: var(--neutral-100);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.btn-hand-drawn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: var(--primary-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.auth-link {
    color: var(--corporate-700);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.auth-link:hover {
    color: var(--primary-blue);
}

.auth-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.auth-link-register {
    font-weight: 600;
}

.auth-link-register:hover {
    color: var(--accent-purple);
}

.auth-link-register.active {
    color: var(--accent-purple);
    font-weight: 700;
}

.user-menu {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--neutral-50);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--corporate-900);
}

.user-profile:hover {
    background: var(--corporate-100);
}

.user-icon {
    font-size: 1.2rem;
}

.user-name {
    font-weight: 600;
    color: var(--corporate-900);
}

.logout-btn {
    background: transparent;
    border: none;
    color: var(--corporate-600);
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.logout-btn:hover {
    color: #dc2626;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none !important;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: var(--shadow-corporate-lg);
    border: 1px solid var(--corporate-200);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--corporate-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--corporate-50);
    color: var(--primary-blue);
}

.dropdown-logout-btn {
    background: transparent;
    border: none;
    color: var(--corporate-600);
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    text-align: left;
}

.dropdown-logout-btn:hover {
    background: var(--corporate-50);
    color: #dc2626;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: var(--neutral-50);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-illustration {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

/* Web App Mockup */
.web-app-mockup {
    width: 200px;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
    position: absolute;
    top: 20%;
    left: 5%;
    animation: float 4s ease-in-out infinite;
    border: 2px solid var(--primary-blue);
    overflow: hidden;
}

.web-app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-app-mockup::after {
    content: '🌐 Web App';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neutral-700);
}

/* Mobile App Mockup */
.mobile-app-mockup {
    width: 80px;
    height: 140px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
    position: absolute;
    bottom: 15%;
    right: 10%;
    animation: float 5s ease-in-out infinite 1s;
    border: 2px solid var(--accent-purple);
    overflow: hidden;
}

.mobile-app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-teal));
    border-radius: 18px 18px 0 0;
}

.mobile-app-mockup::after {
    content: '📱 Mobile';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neutral-700);
}

/* Automation Icon */
.automation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-navy));
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 10%;
    animation: pulse 3s ease-in-out infinite 2s;
    border: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.automation-icon::before {
    content: '⚙️';
    animation: rotate 4s linear infinite;
}

/* AI Brain Icon */
.ai-brain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 20px;
    position: absolute;
    top: 60%;
    right: 15%;
    animation: float 4s ease-in-out infinite 1s;
    border: 2px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.ai-brain-icon::before {
    content: '🧠';
    animation: pulse 2s ease-in-out infinite;
}

/* Workflow Icon */
.workflow-icon {
    width: 90px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    border-radius: 12px;
    position: absolute;
    top: 30%;
    right: 40%;
    animation: slideInRight 3s ease-in-out infinite 3s;
    border: 2px solid var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.workflow-icon::before {
    content: '🔄';
    animation: rotate 3s linear infinite;
}

/* Data Flow Icon */
.data-flow-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
    border-radius: 50%;
    position: absolute;
    bottom: 20%;
    left: 20%;
    animation: bounce 2.5s ease-in-out infinite 4s;
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.data-flow-icon::before {
    content: '📊';
    animation: pulse 2s ease-in-out infinite;
}

/* Email Icon */
.email-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 12px;
    position: absolute;
    top: 15%;
    right: 30%;
    animation: float 3s ease-in-out infinite 5s;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.email-icon::before {
    content: '📧';
}

/* HR Icon */
.hr-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 12px;
    position: absolute;
    bottom: 30%;
    right: 25%;
    animation: bounce 2s ease-in-out infinite 6s;
    border: 2px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.hr-icon::before {
    content: '👥';
}

/* Calendar Icon */
.calendar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    border-radius: 12px;
    position: absolute;
    top: 45%;
    left: 5%;
    animation: float 4s ease-in-out infinite 7s;
    border: 2px solid var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.calendar-icon::before {
    content: '📅';
}

/* Assistant Icon */
.assistant-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
    border-radius: 12px;
    position: absolute;
    bottom: 10%;
    right: 5%;
    animation: pulse 3s ease-in-out infinite 8s;
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.assistant-icon::before {
    content: '🤖';
}

/* Database Icon */
.database-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
    border-radius: 12px;
    position: absolute;
    top: 25%;
    right: 35%;
    animation: bounce 2s ease-in-out infinite 3s;
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.database-icon::before {
    content: '🗄️';
}

/* UI Design Mockup */
.ui-design-mockup {
    width: 180px;
    height: 100px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 5s ease-in-out infinite 4s;
    border: 2px solid var(--accent-teal);
    overflow: hidden;
}

.ui-design-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-design-mockup::after {
    content: '🎨 UI Design';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neutral-700);
}

/* WordPress Mockup */
.wordpress-mockup {
    width: 160px;
    height: 90px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
    position: absolute;
    top: 35%;
    left: 50%;
    animation: float 4s ease-in-out infinite 5s;
    border: 2px solid var(--accent-orange);
    overflow: hidden;
}

.wordpress-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordpress-mockup::after {
    content: '📝 WordPress';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neutral-700);
}

/* E-commerce Icon */
.ecommerce-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    border-radius: 50%;
    position: absolute;
    bottom: 15%;
    left: 45%;
    animation: pulse 3s ease-in-out infinite 6s;
    border: 3px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.ecommerce-icon::before {
    content: '🛒';
    animation: bounce 2s ease-in-out infinite;
}

/* API Icon */
.api-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 12px;
    position: absolute;
    top: 20%;
    right: 45%;
    animation: bounce 2.5s ease-in-out infinite 7s;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.api-icon::before {
    content: '🔗';
    animation: rotate 3s linear infinite;
}

/* Cloud Icon */
.cloud-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    border-radius: 20px;
    position: absolute;
    bottom: 50%;
    right: 5%;
    animation: float 6s ease-in-out infinite 8s;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.cloud-icon::before {
    content: '☁️';
}

/* Programming Language Icons */
.php-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #777BB4, #4F5B93);
    border-radius: 12px;
    position: absolute;
    top: 10%;
    right: 20%;
    animation: bounce 2s ease-in-out infinite 3s;
    border: 2px solid #4F5B93;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(79, 91, 147, 0.3);
}

.php-icon::before {
    content: '🐘';
}

.flutter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02569B, #0175C2);
    border-radius: 12px;
    position: absolute;
    bottom: 10%;
    left: 15%;
    animation: float 4s ease-in-out infinite 4s;
    border: 2px solid #0175C2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(1, 117, 194, 0.3);
}

.flutter-icon::before {
    content: '🦋';
}

.android-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3DDC84, #2BB673);
    border-radius: 12px;
    position: absolute;
    bottom: 40%;
    left: 45%;
    animation: pulse 3s ease-in-out infinite 5s;
    border: 2px solid #2BB673;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(43, 182, 115, 0.3);
}

.android-icon::before {
    content: '🤖';
}

.swift-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FA7343, #F05138);
    border-radius: 12px;
    position: absolute;
    top: 45%;
    left: 40%;
    animation: bounce 2.5s ease-in-out infinite 6s;
    border: 2px solid #F05138;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(240, 81, 56, 0.3);
}

.swift-icon::before {
    content: '🍎';
}

.java-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ED8B00, #D2691E);
    border-radius: 12px;
    position: absolute;
    bottom: 25%;
    right: 30%;
    animation: float 5s ease-in-out infinite 7s;
    border: 2px solid #D2691E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.3);
}

.java-icon::before {
    content: '☕';
}

.react-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #61DAFB, #21D4FD);
    border-radius: 12px;
    position: absolute;
    top: 15%;
    left: 20%;
    animation: rotate 4s linear infinite 8s;
    border: 2px solid #21D4FD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(33, 212, 253, 0.3);
}

.react-icon::before {
    content: '⚛️';
}

.figma-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F24E1E, #FF7262);
    border-radius: 12px;
    position: absolute;
    bottom: 20%;
    right: 25%;
    animation: pulse 2s ease-in-out infinite 9s;
    border: 2px solid #F24E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(242, 78, 30, 0.3);
}

.figma-icon::before {
    content: '🎨';
}

.nodejs-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #339933, #4CAF50);
    border-radius: 12px;
    position: absolute;
    top: 15%;
    right: 20%;
    animation: bounce 3s ease-in-out infinite 10s;
    border: 2px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.nodejs-icon::before {
    content: '🟢';
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    position: relative;
    background: var(--neutral-50);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

.stats-section {
    background: linear-gradient(135deg, var(--white), var(--corporate-50));
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-executive);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--corporate-200);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-executive-lg);
    border-color: var(--primary-blue);
    background: var(--corporate-50);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--corporate-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-executive);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--corporate-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-executive-lg);
    border-color: var(--primary-blue);
    background: var(--corporate-50);
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2));
    color: var(--primary-blue);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.2));
    color: var(--accent-purple);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.2));
    color: var(--accent-teal);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.2));
    color: var(--accent-orange);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(34, 211, 238, 0.2));
    color: var(--accent-teal);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.2));
    color: var(--accent-purple);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--corporate-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--corporate-600);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--corporate-50);
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-top: auto;
}

.service-link:hover {
    gap: 0.75rem;
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-executive);
}

.projects-section {
    background: var(--corporate-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--neutral-200);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-content {
    padding: 2.5rem;
}

.project-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-purple {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
}

.badge-cyan {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple);
    border-radius: 20px;
}

.badge-coral {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-teal);
    border: 1px solid var(--accent-teal);
    border-radius: 20px;
}

.project-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
}

.project-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.values-section {
    background: linear-gradient(135deg, var(--corporate-50), var(--neutral-100));
    color: var(--corporate-900);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-section .section-title {
    color: var(--corporate-900);
}

.values-section .section-subtitle {
    color: var(--corporate-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid var(--corporate-200);
    box-shadow: var(--shadow-executive);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: var(--corporate-50);
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-executive-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card:nth-child(1) .value-icon { color: var(--primary-blue); }
.value-card:nth-child(2) .value-icon { color: var(--accent-purple); }
.value-card:nth-child(3) .value-icon { color: var(--accent-teal); }
.value-card:nth-child(4) .value-icon { color: var(--accent-orange); }

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--corporate-900);
}

.value-card p {
    font-size: 1rem;
    color: var(--corporate-600);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--white);
    border-radius: 12px;
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: var(--neutral-100);
    color: var(--primary-blue-dark);
}

footer {
    background: linear-gradient(135deg, var(--corporate-800), var(--corporate-900));
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.25rem;
}

.footer-column p {
    font-size: 1rem;
    color: var(--corporate-300);
    margin-bottom: 1.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--corporate-300);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid var(--corporate-700);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--corporate-700);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1rem;
}

/* Footer newsletter input override */
footer .newsletter-form input {
    background: white;
    color: #1e293b;
    border: 2px solid var(--corporate-200);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer newsletter placeholder override */
footer .newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-navy));
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--accent-navy), var(--primary-blue));
}

.footer-bottom {
    border-top: 1px solid var(--corporate-700);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--corporate-300);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--corporate-300);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border: 2px solid var(--primary-blue-dark);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.breadcrumb {
    padding: 2rem 0 1rem;
    margin-top: 80px;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb ul li {
    color: var(--gray-600);
}

.breadcrumb ul li a {
    color: var(--primary-blue);
}

.breadcrumb ul li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--gray-600);
}

.page-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@media (max-width: 1200px) {
    .scroll-indicator {
        display: none !important;
    }

    .container {
        padding: 0 1.5rem;
    }

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

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

@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .scroll-indicator {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-illustration {
        height: 400px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }

    .section {
        padding: 4rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

