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

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-subtle: rgba(245, 158, 11, 0.08);
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-fade {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.7), rgba(15,23,42,0.85));
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}

.hero-space-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(59, 130, 246, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    pointer-events: none;
}

.hero-space-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-drag-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: grab;
    overflow: hidden;
    transition: opacity 0.6s;
}

.hero-drag-layer:active {
    cursor: grabbing;
}

.drag-orb, .drag-ring, .drag-shape, .drag-blob, .drag-particle {
    position: absolute;
    pointer-events: none;
    transition: transform 0.05s linear;
    will-change: transform;
}

.drag-orb-1 { top: 5%; left: 5%; width: 400px; height: 400px; }
.drag-orb-2 { top: 40%; left: 65%; width: 300px; height: 300px; }
.drag-orb-3 { top: 55%; left: 20%; width: 250px; height: 250px; }
.drag-ring-1 { top: 12%; left: 55%; width: 200px; height: 200px; }
.drag-ring-2 { top: 68%; left: 10%; width: 180px; height: 180px; }
.drag-shape-1 { top: 25%; left: 75%; width: 120px; height: 120px; }
.drag-shape-2 { top: 70%; left: 78%; width: 90px; height: 90px; }
.drag-blob { top: 60%; left: 50%; width: 300px; height: 200px; }

.drag-particle {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.p1 { top: 10%; left: 30%; }
.p2 { top: 20%; left: 80%; }
.p3 { top: 35%; left: 15%; }
.p4 { top: 45%; left: 45%; }
.p5 { top: 55%; left: 85%; }
.p6 { top: 65%; left: 25%; }
.p7 { top: 80%; left: 60%; }
.p8 { top: 90%; left: 40%; }

.hero-3d-space {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.space-object {
    position: absolute;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.obj-cube {
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: cubeSpin 8s linear infinite;
}

.obj-cube.mini {
    width: 30px;
    height: 30px;
}

.obj-cube.mini .cf {
    width: 30px;
    height: 30px;
}

.cf {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

.cf.front  { transform: translateZ(25px); }
.cf.back   { transform: rotateY(180deg) translateZ(25px); }
.cf.right  { transform: rotateY(90deg) translateZ(25px); }
.cf.left   { transform: rotateY(-90deg) translateZ(25px); }
.cf.top    { transform: rotateX(90deg) translateZ(25px); }
.cf.bottom { transform: rotateX(-90deg) translateZ(25px); }

.obj-cube.mini .cf.front  { transform: translateZ(15px); }
.obj-cube.mini .cf.back   { transform: rotateY(180deg) translateZ(15px); }
.obj-cube.mini .cf.right  { transform: rotateY(90deg) translateZ(15px); }
.obj-cube.mini .cf.left   { transform: rotateY(-90deg) translateZ(15px); }
.obj-cube.mini .cf.top    { transform: rotateX(90deg) translateZ(15px); }
.obj-cube.mini .cf.bottom { transform: rotateX(-90deg) translateZ(15px); }

@keyframes cubeSpin {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-orbit-1 {
    top: 12%;
    left: 10%;
    animation: orbit1 18s ease-in-out infinite alternate;
}

@keyframes orbit1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(80px, 40px) scale(1.1); opacity: 0.7; }
    50% { transform: translate(160px, -20px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(80px, -60px) scale(1.05); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}

.cube-orbit-2 {
    top: 72%;
    left: 72%;
    animation: orbit2 14s ease-in-out infinite alternate;
}

@keyframes orbit2 {
    0% { transform: translate(0, 0); opacity: 0.3; }
    33% { transform: translate(-60px, -40px); opacity: 0.6; }
    66% { transform: translate(-100px, 20px); opacity: 0.4; }
    100% { transform: translate(0, 0); opacity: 0.3; }
}

.ico-orbit {
    top: 60%;
    left: 8%;
    animation: orbit3 22s ease-in-out infinite alternate;
}

@keyframes orbit3 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    25% { transform: translate(40px, -50px) rotate(90deg); opacity: 0.7; }
    50% { transform: translate(-20px, -80px) rotate(180deg); opacity: 0.5; }
    75% { transform: translate(30px, -30px) rotate(270deg); opacity: 0.6; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.4; }
}

.torus-orbit {
    top: 30%;
    left: 60%;
    animation: orbit4 16s ease-in-out infinite alternate;
}

@keyframes orbit4 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(50px, -30px) scale(1.15); opacity: 0.6; }
    50% { transform: translate(100px, -60px) scale(0.9); opacity: 0.5; }
    75% { transform: translate(50px, -90px) scale(1.1); opacity: 0.7; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
}

.pyramid-float {
    top: 18%;
    left: 80%;
    animation: orbit5 12s ease-in-out infinite alternate;
}

@keyframes orbit5 {
    0% { transform: translate(0, 0) rotateY(0deg); opacity: 0.4; }
    50% { transform: translate(-30px, -40px) rotateY(180deg); opacity: 0.7; }
    100% { transform: translate(-60px, 0) rotateY(360deg); opacity: 0.4; }
}

.hex-float {
    top: 80%;
    left: 25%;
    animation: orbit6 20s ease-in-out infinite alternate;
}

@keyframes orbit6 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    33% { transform: translate(20px, -30px) rotate(60deg); opacity: 0.6; }
    66% { transform: translate(-30px, -50px) rotate(120deg); opacity: 0.5; }
    100% { transform: translate(0, 0) rotate(180deg); opacity: 0.3; }
}

.space-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite alternate;
}

.space-star:nth-child(2n) { width: 1.5px; height: 1.5px; animation-duration: 2.5s; }
.space-star:nth-child(3n) { width: 3px; height: 3px; animation-duration: 4s; }

@keyframes starTwinkle {
    0% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
    100% { opacity: 0.2; transform: scale(0.8); }
}

.star-1  { top: 5%;   left: 8%;   animation-delay: 0s; }
.star-2  { top: 12%;  left: 45%;  animation-delay: 0.5s; }
.star-3  { top: 8%;   left: 78%;  animation-delay: 1s; }
.star-4  { top: 25%;  left: 30%;  animation-delay: 0.2s; }
.star-5  { top: 40%;  left: 90%;  animation-delay: 0.8s; }
.star-6  { top: 55%;  left: 5%;   animation-delay: 1.2s; }
.star-7  { top: 70%;  left: 50%;  animation-delay: 0.4s; }
.star-8  { top: 82%;  left: 85%;  animation-delay: 0.9s; }
.star-9  { top: 90%;  left: 20%;  animation-delay: 1.5s; }
.star-10 { top: 95%;  left: 70%;  animation-delay: 0.1s; }

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 100px 0 80px;
    width: 100%;
}

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 0;
}

.carousel-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s both;
}

.carousel-slide.active .hero-title {
    animation: fadeUp 0.6s 0.1s both;
}

.carousel-slide.active .hero-subtitle {
    animation: fadeUp 0.6s 0.2s both;
}

.carousel-slide.active .hero-actions {
    animation: fadeUp 0.6s 0.3s both;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.text-accent {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1.5px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border-color: rgba(245, 158, 11, 0.2);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.hero-scroll {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.about-card:hover .about-card-bg {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: all 0.4s;
}

.about-card:hover .about-card-icon {
    background: var(--accent);
    color: var(--primary);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.about-story {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 48px 48px 48px 56px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border-left: 4px solid var(--accent);
}

.about-story-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.about-story p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.8;
}

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

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.4s;
    user-select: none;
}

.service-card:hover .service-card-num {
    color: rgba(245, 158, 11, 0.06);
    transform: scale(1.2);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-subtle);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

.service-link span {
    transition: transform 0.3s;
}

.service-link:hover span {
    transform: translateX(4px);
}

.stats {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
    transform: scale(1.05);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(15,23,42,0.95));
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 20px 0;
}

.stat-number {
    display: inline-block;
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-plus,
.stat-percent {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 8px;
}

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

.industry-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-sm);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.industry-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
    transform: translateY(-4px);
}

.industry-icon {
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.industry-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

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

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 4px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 0.4s;
    opacity: 0;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card-inner {
    padding: 40px 32px;
    text-align: center;
    background: var(--bg-card);
    border-radius: calc(var(--radius) - 2px);
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
    transition: all 0.5s;
}

.value-card:hover .value-icon-wrap {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.value-card-inner h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card-inner p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(15,23,42,0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.15);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
    transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
    background: var(--accent);
    color: var(--primary);
}

.contact-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 6px;
}

.contact-extra {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 28px 32px;
    background: var(--bg-dark);
    border-radius: var(--radius);
}

.contact-extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-extra-icon {
    color: var(--accent);
    display: flex;
}

.contact-extra-item a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-extra-item a:hover {
    color: var(--accent);
}

.footer {
    background: var(--primary);
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .carousel-controls { gap: 14px; }
    .carousel-btn { width: 38px; height: 38px; }

    .section { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }

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

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

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

    .stat-number { font-size: 2.4rem; }

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

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

    .about-story {
        flex-direction: column;
        padding: 32px 24px;
    }

    .cta h2 { font-size: 2rem; }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 540px) {
    .hero-title { font-size: 1.6rem; letter-spacing: -0.5px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-content { padding: 80px 0 60px; }
    .carousel-controls { margin-top: 24px; }
    .section-title { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-extra { flex-direction: column; align-items: center; gap: 16px; }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 1.5px solid transparent;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.cookie-btn-accept:hover {
    background: #d97706;
    border-color: #d97706;
}

.cookie-btn-more {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
}

.cookie-btn-more:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text p { font-size: 0.8rem; }
    .cookie-btn { padding: 8px 20px; font-size: 0.75rem; }
}
