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

:root {
    --primary: #d81b8c;
    --primary-dark: #b8157a;
    --primary-light: #e84da5;
    --secondary: #1e2a5e;
    --accent: #00b4d8;
    --pink-accent: #d81b8c;
    --cyan-accent: #00b4d8;
    --navy-dark: #1e2a5e;
    --dark: #1e2a5e;
    --dark-light: #2a3a6e;
    --gray: #4a5568;
    --gray-light: #718096;
    --gray-lighter: #d4d4d8;
    --bg: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f4f4f5;
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(216, 27, 140, 0.08) 0px, transparent 50%),
                      radial-gradient(at 80% 20%, rgba(0, 180, 216, 0.08) 0px, transparent 50%),
                      radial-gradient(at 40% 80%, rgba(30, 42, 94, 0.06) 0px, transparent 50%);
    --gradient-primary: linear-gradient(135deg, #d81b8c 0%, #00b4d8 100%);
    --gradient-secondary: linear-gradient(135deg, #1e2a5e 0%, #00b4d8 100%);
    --gradient-accent: linear-gradient(135deg, #00b4d8 0%, #d81b8c 100%);
    --gradient-pink: linear-gradient(135deg, #d81b8c 0%, #b8157a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--bg);
    font-size: 16px;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
header {
    position: relative;
    z-index: 1000;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.03);
}

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

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--dark);
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

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

.nav-link.active::after {
    width: calc(100% - 36px);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(216, 27, 140, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 27, 140, 0.4);
}

.nav-cta svg {
    transition: transform 0.3s ease;
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.04);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

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

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

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

.mobile-cta-wrapper {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: #ffffff;
}

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

.hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(216, 27, 140, 0.08);
    border: 1px solid rgba(216, 27, 140, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 32px;
    animation: fadeIn 0.8s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-dark);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--dark);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 44px;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--dark);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 48px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    max-width: fit-content;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Hero Grid Background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 100%);
}

/* Hero Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    bottom: -10%;
    left: -10%;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.code-text {
    color: var(--pink-accent);
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.bracket-accent {
    color: var(--pink-accent);
    font-weight: 900;
    margin: 0 8px;
    opacity: 0.9;
    transition: var(--transition);
}

.section-header h2:hover .bracket-accent {
    opacity: 1;
    transform: scale(1.1);
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(216, 27, 140, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border: 1px solid rgba(216, 27, 140, 0.25);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(216, 27, 140, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -2px;
    text-wrap: balance;
}

.section-header p {
    font-size: 19px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    text-wrap: balance;
}

/* Services Section */
.services {
    background: var(--bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.service-card-wide {
    grid-column: span 2;
}

.service-card-wide:hover {
    transform: translateY(-20px) scale(1.08) translateZ(10px);
}

.service-card {
    position: relative;
    padding: 44px 40px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 27, 140, 0.04) 0%, rgba(0, 180, 216, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
    filter: blur(24px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.15) translateZ(10px);
    box-shadow:
        0 40px 80px rgba(216, 27, 140, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(216, 27, 140, 0.2);
    z-index: 100;
}

.service-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: 2px;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(216, 27, 140, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        0 12px 24px rgba(216, 27, 140, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon svg {
    color: white;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
    letter-spacing: -0.7px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14.5px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Service Modal */
.service-modal {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(216, 27, 140, 0.98) 0%,
        rgba(30, 42, 94, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.service-card:hover .service-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.service-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%);
    pointer-events: none;
}

/* Custom scrollbar for modal */
.service-modal::-webkit-scrollbar {
    width: 6px;
}

.service-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal-header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.modal-header h4 {
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.modal-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tech-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.feature-point {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.feature-point::before {
    content: '';
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -1px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-element {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.visual-element:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(216, 27, 140, 0.25);
}

.visual-element svg {
    width: 32px;
    height: 32px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.visual-element span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.element-1 {
    animation-delay: 0.1s;
}

.element-2 {
    animation-delay: 0.2s;
}

.element-3 {
    animation-delay: 0.3s;
}

/* Mission & Values */
.mission-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 24px;
    padding: 56px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(216, 27, 140, 0.3);
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at 70% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%);
    pointer-events: none;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.mission-card h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
}

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

.value-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(216, 27, 140, 0.25);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(216, 27, 140, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.1) rotate(-5deg);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.value-card:hover .value-icon svg {
    color: white;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

/* Why Choose Us */
.why-choose {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.why-choose h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark);
    letter-spacing: -1px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    position: relative;
    padding-left: 80px;
}

.why-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(216, 27, 140, 0.3);
}

.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* Contact Section */
.contact {
    background: var(--bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(216, 27, 140, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

.info-item h4 {
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.info-item p {
    color: var(--gray);
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(216, 27, 140, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    width: fit-content;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
    color: var(--dark);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 27, 140, 0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 27, 140, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}

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

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

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(216, 27, 140, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a span {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-card-wide {
        grid-column: span 1;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-card {
        padding: 40px 32px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        padding: 100px 24px 40px;
        gap: 8px;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }

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

    .nav-menu li {
        padding: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

    .mobile-cta-wrapper {
        display: block !important;
        margin-top: 16px;
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
    }

    .nav-link::after {
        bottom: 10px;
    }

    .nav-menu .mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        padding: 14px 32px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(216, 27, 140, 0.3);
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1.5px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 48px;
        gap: 12px;
    }

    .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 28px;
        width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .service-card {
        min-height: auto;
        padding: 32px 28px;
    }

    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .service-card-wide {
        grid-column: span 1;
    }

    .service-card-wide:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .about-content {
        gap: 48px;
    }

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

    .value-card {
        padding: 24px 20px;
    }

    .why-choose {
        padding: 40px 24px;
    }

    .why-choose h3 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .why-item {
        padding-left: 70px;
    }

    .why-number {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .mission-card h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .mission-card p {
        font-size: 16px;
    }

    .contact-content {
        gap: 40px;
    }

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

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 48px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .badge-dot {
        width: 5px;
        height: 5px;
    }

    .section-header h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .section-header p {
        font-size: 15px;
    }

    .hero-stats {
        padding: 20px 24px;
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 14px;
    }

    .why-item {
        padding-left: 0;
        padding-top: 60px;
    }

    .why-number {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .why-item h4 {
        font-size: 18px;
        text-align: center;
    }

    .why-item p {
        font-size: 14px;
        text-align: center;
    }

    .mission-card {
        padding: 28px 20px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .mission-card p {
        font-size: 15px;
    }

    .mission-icon {
        width: 64px;
        height: 64px;
    }

    .mission-icon svg {
        width: 32px;
        height: 32px;
    }

    .value-card {
        padding: 20px 18px;
    }

    .value-card h4 {
        font-size: 16px;
    }

    .value-card p {
        font-size: 13px;
    }

    .why-choose {
        padding: 32px 20px;
    }

    .why-choose h3 {
        font-size: 24px;
    }

    .story-content h3 {
        font-size: 26px;
    }

    .story-content p {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 14px 18px;
    }
}
