:root {
            --primary: #050d1a;
            --secondary: #0a1f3d;
            --accent: #c9a227;
            --accent-light: #e8d5a3;
            --accent-glow: rgba(201, 162, 39, 0.4);
            --white: #ffffff;
            --light-bg: #f0f4f8;
            --text: #1e293b;
            --text-light: #64748b;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--primary); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
        .bubble-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            overflow: hidden;
        }
        .bubble {
            position: absolute;
            bottom: -100px;
            background: radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.03));
            border-radius: 50%;
            border: 1px solid rgba(201, 162, 39, 0.15);
            animation: rise var(--duration) ease-in infinite;
            opacity: 0;
        }
        .bubble::after {
            content: '';
            position: absolute;
            top: 15%;
            left: 20%;
            width: 25%;
            height: 15%;
            background: rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            transform: rotate(-45deg);
        }
        @keyframes rise {
            0% { bottom: -100px; transform: translateX(0) scale(0.5); opacity: 0; }
            10% { opacity: 0.5; }
            50% { transform: translateX(var(--sway)) scale(1); opacity: 0.35; }
            90% { opacity: 0.15; }
            100% { bottom: 110vh; transform: translateX(calc(var(--sway) * -1)) scale(0.8); opacity: 0; }
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(5, 13, 26, 0.95);
            backdrop-filter: blur(30px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            padding: 0.8rem 5%;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }
        .logo img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
            box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
            transition: var(--transition);
        }
        .logo:hover img {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
        }
        .logo-text {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .logo-text span { color: var(--accent); font-weight: 400; }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            transition: var(--transition);
            padding: 0.5rem 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--accent); }
        .nav-cta {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary) !important;
            padding: 0.7rem 2rem !important;
            border-radius: 50px;
            font-weight: 700 !important;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
        }
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
        }
        .nav-cta::after { display: none !important; }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            min-height: 100vh;
            background: linear-gradient(160deg, #02040a 0%, #0a1628 40%, #0d1f3d 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 5% 80px;
        }
        .hero::before, .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: liquid-morph 15s ease-in-out infinite;
        }
        .hero::before {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }
        .hero::after {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.3), transparent 70%);
            bottom: -10%;
            left: -5%;
            animation-delay: -7s;
        }
        @keyframes liquid-morph {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
            25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(30px, -30px) scale(1.1); }
            50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; transform: translate(-20px, 20px) scale(0.95); }
            75% { border-radius: 40% 30% 60% 50% / 60% 50% 40% 60%; transform: translate(20px, 10px) scale(1.05); }
        }
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .hero-content { animation: fadeInUp 1.2s ease-out; }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.25);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            color: var(--accent-light);
            font-size: 0.78rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            animation: badge-glow 3s ease-in-out infinite;
        }
        @keyframes badge-glow {
            0%, 100% { box-shadow: 0 0 5px rgba(201, 162, 39, 0.2); }
            50% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.4); }
        }
        .hero h1 {
            font-size: 4.2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        .hero h1 .highlight {
            background: linear-gradient(90deg, var(--accent), var(--accent-light), #fff, var(--accent));
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: text-morph 4s ease infinite;
            position: relative;
        }
        @keyframes text-morph {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.9;
            margin-bottom: 2.5rem;
            max-width: 500px;
            font-weight: 300;
        }
        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        .btn::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: 0.6s;
        }
        .btn:hover::before { left: 100%; }
        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #d4af37);
            color: var(--primary);
            box-shadow: 0 10px 40px rgba(201, 162, 39, 0.35);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(201, 162, 39, 0.5);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }
        .hero-image {
            position: relative;
            animation: float-bottle 5s ease-in-out infinite;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        @keyframes float-bottle {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-10px) rotate(-1deg); }
        }
        .hero-image img {
            max-width: 100%;
            height: auto;
            max-height: 75vh;
            filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
            border-radius: 20px;
        }
        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 40px;
            background: radial-gradient(ellipse, rgba(201, 162, 39, 0.2), transparent 70%);
            filter: blur(20px);
            animation: shadow-pulse 5s ease-in-out infinite;
        }
        @keyframes shadow-pulse {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
            50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
        }
        .stats-bar {
            background: linear-gradient(135deg, var(--primary), #0a1a30);
            padding: 3rem 5%;
            position: relative;
            z-index: 3;
            border-top: 1px solid rgba(201, 162, 39, 0.1);
        }
        .stats-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .stat-item {
            text-align: center;
            color: var(--white);
            position: relative;
            padding: 1rem;
        }
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background: rgba(201, 162, 39, 0.2);
        }
        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-item p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }
        .trust-banner {
            background: linear-gradient(135deg, var(--primary), #0a1a30);
            padding: 4rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .trust-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
        }
        .trust-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .trust-banner h2 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .trust-banner p {
            color: rgba(255,255,255,0.5);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }
        .instagram-stat {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: rgba(255,255,255,0.05);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        .instagram-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: 0.6s;
        }
        .instagram-stat:hover::before { left: 100%; }
        .instagram-stat:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(201, 162, 39, 0.2);
        }
        .instagram-stat i {
            font-size: 2.2rem;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s;
        }
        .instagram-stat:hover i { transform: scale(1.2) rotate(-10deg); }
        .instagram-stat div { text-align: left; }
        .instagram-stat strong {
            color: var(--accent);
            font-size: 1.6rem;
            display: block;
            line-height: 1;
        }
        .instagram-stat span {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
        }
        .services {
            padding: 8rem 5%;
            background: var(--light-bg);
        }
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }
        .section-header h2 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .services-stack-wrapper {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        .services-stack {
            position: relative;
        }
        .stack-card {
            position: sticky;
            top: 100px;
            width: 100%;
            background: var(--white);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s;
            border: 1px solid rgba(0,0,0,0.04);
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 2.5rem;
            align-items: center;
            margin-bottom: 2rem;
            cursor: pointer;
        }
        .stack-card:nth-child(1) { z-index: 3; }
        .stack-card:nth-child(2) { z-index: 2; top: 120px; transform: scale(0.97); }
        .stack-card:nth-child(3) { z-index: 1; top: 140px; transform: scale(0.94); }
        .stack-card:hover {
            box-shadow: 0 30px 80px rgba(0,0,0,0.12);
            transform: scale(1) !important;
        }
        .stack-icon-wrap {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        .stack-card:hover .stack-icon-wrap {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
        }
        .stack-icon-wrap::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: conic-gradient(from 0deg, transparent, var(--accent), transparent 30%);
            animation: rotate 4s linear infinite;
            opacity: 0.3;
        }
        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }
        .stack-icon-wrap::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: var(--white);
            border-radius: 21px;
        }
        .stack-icon {
            font-size: 2.2rem;
            color: var(--accent);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        .stack-card:hover .stack-icon {
            color: var(--primary);
        }
        .stack-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }
        .stack-content p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }
        .stack-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .stack-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
        }
        .stack-feature:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        .stack-feature i {
            color: var(--accent);
            font-size: 0.7rem;
            transition: var(--transition);
        }
        .stack-feature:hover i {
            transform: scale(1.3);
        }
        .custom-label {
            padding: 8rem 5%;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .custom-label::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
            animation: gradient-orb 10s ease-in-out infinite;
        }
        .custom-label::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(10, 31, 61, 0.06), transparent 70%);
            animation: gradient-orb 12s ease-in-out infinite reverse;
        }
        @keyframes gradient-orb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }
        .custom-label-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .label-showcase {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .bottle-mockup {
            position: relative;
            width: 260px;
            height: 450px;
            background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 30%, #93c5fd 100%);
            border-radius: 50px 50px 25px 25px;
            box-shadow: 
                0 50px 100px rgba(0,0,0,0.12),
                inset 0 -20px 40px rgba(255,255,255,0.3),
                inset 0 20px 40px rgba(255,255,255,0.5);
            overflow: hidden;
            transition: var(--transition);
        }
        .bottle-mockup:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 60px 120px rgba(0,0,0,0.18);
        }
        .bottle-mockup::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 35px;
            background: linear-gradient(180deg, #1a1a2e, #0a0a1a);
            border-radius: 8px 8px 0 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .bottle-label {
            position: absolute;
            top: 28%;
            left: 8%;
            right: 8%;
            height: 38%;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: var(--transition);
            border: 2px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .bottle-label img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-bottom: 0.5rem;
            border: 2px solid var(--accent);
        }
        .bottle-label-text {
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 2px;
        }
        .bottle-label-sub {
            color: rgba(255,255,255,0.5);
            font-size: 0.55rem;
            margin-top: 0.3rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .label-controls {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            width: 100%;
            max-width: 320px;
        }
        .label-input {
            padding: 1rem 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            text-align: center;
            letter-spacing: 1px;
        }
        .label-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
        }
        .color-picker {
            display: flex;
            gap: 12px;
            justify-content: center;
        }
        .color-option {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid transparent;
            transition: var(--transition);
            position: relative;
        }
        .color-option.active {
            border-color: var(--accent);
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
        }
        .color-option:hover { transform: scale(1.15); }
        .label-content h2 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .label-content .lead-text {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }
        .label-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 1.2rem;
            background: var(--light-bg);
            border-radius: 16px;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: default;
        }
        .benefit-item:hover {
            border-color: var(--accent);
            transform: translateX(8px);
            background: rgba(201, 162, 39, 0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        .benefit-item i {
            color: var(--accent);
            font-size: 1.3rem;
            transition: var(--transition);
        }
        .benefit-item:hover i {
            animation: icon-wiggle 0.5s ease;
        }
        @keyframes icon-wiggle {
            0%, 100% { transform: rotate(0); }
            25% { transform: rotate(-15deg) scale(1.2); }
            75% { transform: rotate(15deg) scale(1.2); }
        }
        .benefit-item span {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
        }
        .about {
            padding: 8rem 5%;
            background: linear-gradient(160deg, #04080f 0%, #0a1a30 50%, #0d1f3d 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .about::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            animation: parallax-orb 20s ease-in-out infinite;
        }
        @keyframes parallax-orb {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, 50px); }
        }
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .about-image {
            position: relative;
            transform: translateY(0);
            transition: transform 0.3s ease-out;
        }
        .about-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.4);
            transition: var(--transition);
        }
        .about-image:hover img {
            transform: scale(1.02);
        }
        .experience-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: linear-gradient(135deg, var(--accent), #d4af37);
            color: var(--primary);
            padding: 1.8rem 2.5rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            animation: badge-float 3s ease-in-out infinite;
        }
        @keyframes badge-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .experience-badge h4 {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }
        .experience-badge p {
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 0.3rem;
            letter-spacing: 1px;
        }
        .about-content h2 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        .about-content h2 span { color: var(--accent); }
        .about-content .lead-text {
            color: rgba(255,255,255,0.55);
            line-height: 1.9;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
            font-weight: 300;
        }
        .why-choose-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        .why-choose-list li {
            padding: 1.2rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
            cursor: default;
        }
        .why-choose-list li:hover {
            padding-left: 15px;
            border-bottom-color: rgba(201, 162, 39, 0.3);
        }
        .why-choose-list li:last-child { border-bottom: none; }
        .why-icon {
            width: 48px;
            height: 48px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            flex-shrink: 0;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .why-choose-list li:hover .why-icon {
            background: var(--accent);
            color: var(--primary);
            transform: rotateY(360deg) scale(1.1);
        }
        .why-text h4 {
            font-size: 1.15rem;
            margin-bottom: 0.4rem;
            font-weight: 600;
        }
        .why-text p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .process {
            padding: 8rem 5%;
            background: var(--light-bg);
            position: relative;
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 4rem auto 0;
        }
        .process-step {
            text-align: center;
            position: relative;
            padding: 2rem 1rem;
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-10px);
        }
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            z-index: 0;
            animation: line-grow 2s ease-out forwards;
            transform-origin: left;
            transform: scaleX(0);
        }
        .process-step.visible:not(:last-child)::after {
            animation: line-grow 1.5s ease-out 0.5s forwards;
        }
        @keyframes line-grow {
            to { transform: scaleX(1); }
        }
        .step-number {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--accent), #d4af37);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
            transition: var(--transition);
            cursor: default;
        }
        .process-step:hover .step-number {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 20px 50px rgba(201, 162, 39, 0.5);
        }
        .step-number::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px dashed var(--accent);
            opacity: 0;
            transition: var(--transition);
            animation: spin-slow 10s linear infinite;
        }
        .process-step:hover .step-number::before {
            opacity: 0.4;
        }
        @keyframes spin-slow {
            to { transform: rotate(360deg); }
        }
        .process-step h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }
        .process-step p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .testimonials {
            padding: 8rem 5%;
            background: var(--white);
        }
        .testimonials-stack-wrapper {
            max-width: 700px;
            margin: 4rem auto 0;
            position: relative;
        }
        .testimonials-stack {
            position: relative;
        }
        .testimonial-card {
            position: sticky;
            top: 100px;
            width: 100%;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            padding: 2.5rem;
            border-radius: 30px;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 20px 60px rgba(0,0,0,0.06);
            margin-bottom: 2rem;
        }
        .testimonial-card:nth-child(1) { z-index: 3; }
        .testimonial-card:nth-child(2) { z-index: 2; top: 120px; transform: scale(0.97); }
        .testimonial-card:nth-child(3) { z-index: 1; top: 140px; transform: scale(0.94); }
        .testimonial-card:hover {
            transform: scale(1) !important;
            box-shadow: 0 30px 80px rgba(0,0,0,0.1);
        }
        .stars {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }
        .stars i {
            display: inline-block;
            transition: transform 0.3s;
        }
        .testimonial-card:hover .stars i:nth-child(1) { animation: star-pop 0.4s 0s; }
        .testimonial-card:hover .stars i:nth-child(2) { animation: star-pop 0.4s 0.1s; }
        .testimonial-card:hover .stars i:nth-child(3) { animation: star-pop 0.4s 0.2s; }
        .testimonial-card:hover .stars i:nth-child(4) { animation: star-pop 0.4s 0.3s; }
        .testimonial-card:hover .stars i:nth-child(5) { animation: star-pop 0.4s 0.4s; }
        @keyframes star-pop {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.4) rotate(15deg); }
        }
        .testimonial-text {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .testimonial-card:hover .author-avatar {
            transform: scale(1.1) rotate(10deg);
        }
        .author-info h4 {
            color: var(--primary);
            font-size: 1rem;
        }
        .author-info p {
            color: var(--text-light);
            font-size: 0.85rem;
        }
        .cta-section {
            padding: 8rem 5%;
            background: linear-gradient(160deg, var(--primary), #0a1f3d);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
            animation: cta-gradient-shift 8s ease-in-out infinite;
        }
        @keyframes cta-gradient-shift {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
            }
            50% { 
                background: 
                    radial-gradient(circle at 80% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
                    radial-gradient(circle at 20% 70%, rgba(30, 58, 95, 0.25) 0%, transparent 50%);
            }
        }
        .cta-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.06));
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            animation: wave-flow 6s ease-in-out infinite;
        }
        @keyframes wave-flow {
            0%, 100% { transform: scaleX(1) translateY(0); }
            50% { transform: scaleX(1.05) translateY(-5px); }
        }
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-section h2 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        .cta-section p {
            color: rgba(255,255,255,0.55);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        .contact {
            padding: 8rem 5%;
            background: var(--light-bg);
            position: relative;
        }
        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        .contact-info h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .contact-info .lead-text {
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1rem 1.2rem;
            border-radius: 16px;
            transition: var(--transition);
            text-decoration: none;
            border: 1px solid transparent;
        }
        .contact-item:hover {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transform: translateX(10px);
            border-color: rgba(201, 162, 39, 0.2);
        }
        .contact-item i {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            transition: var(--transition);
            flex-shrink: 0;
        }
        .contact-item:hover i {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
        }
        .contact-item div h4 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        .contact-item div p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .contact-form:hover {
            box-shadow: 0 40px 100px rgba(0,0,0,0.12);
        }
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--light-bg);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
            transform: translateY(-2px);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .submit-btn {
            width: 100%;
            padding: 1.1rem;
            background: linear-gradient(135deg, var(--accent), #d4af37);
            color: var(--primary);
            border: none;
            border-radius: 14px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.6s;
        }
        .submit-btn:hover::before { left: 100%; }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.35);
        }
        .submit-btn:active {
            transform: translateY(-1px) scale(0.98);
        }
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 5rem 5% 2rem;
            position: relative;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        .footer-brand .logo-footer {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }
        .footer-brand .logo-footer img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid var(--accent);
            transition: var(--transition);
        }
        .footer-brand .logo-footer:hover img {
            transform: rotate(360deg);
        }
        .footer-brand .logo-footer span {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
        }
        .footer-brand .logo-footer span span { color: var(--accent); font-weight: 400; }
        .footer-brand p {
            color: rgba(255,255,255,0.5);
            line-height: 1.8;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
        }
        .social-links a::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: 0.5s;
        }
        .social-links a:hover::before { left: 100%; }
        .social-links a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 1rem; }
        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
            display: inline-block;
            position: relative;
        }
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .footer-links a:hover::after { width: 100%; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.3);
            font-size: 0.85rem;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
        }
        .modal.active { display: flex; }
        .modal-content {
            background: var(--white);
            padding: 3.5rem;
            border-radius: 30px;
            max-width: 480px;
            width: 90%;
            text-align: center;
            animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 40px 80px rgba(0,0,0,0.3);
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.8) translateY(30px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .modal-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--primary);
            animation: check-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        @keyframes check-pop {
            0% { transform: scale(0) rotate(-180deg); }
            70% { transform: scale(1.2) rotate(10deg); }
            100% { transform: scale(1) rotate(0); }
        }
        .modal h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .modal p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .modal-close {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        .modal-close:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.9s ease-out, transform 0.9s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.9s ease-out, transform 0.9s ease-out;
        }
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.9s ease-out, transform 0.9s ease-out;
        }
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.9s ease-out, transform 0.9s ease-out;
        }
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3rem; }
            .hero-container { gap: 2rem; }
            .stats-container { grid-template-columns: repeat(2, 1fr); }
            .stat-item:not(:last-child)::after { display: none; }
            .stack-card { grid-template-columns: 1fr; text-align: center; }
            .stack-features { justify-content: center; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .process-step:not(:last-child)::after { display: none; }
            .footer-container { grid-template-columns: repeat(2, 1fr); }
            .custom-label-container { grid-template-columns: 1fr; }
            .about-container { grid-template-columns: 1fr; }
            .contact-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero { padding: 100px 5% 60px; }
            .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
            .hero-content { order: 2; }
            .hero-image { order: 1; }
            .hero h1 { font-size: 2.4rem; }
            .hero p { margin: 0 auto 2rem; }
            .hero-buttons { justify-content: center; }
            .stats-container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            .stat-item h3 { font-size: 1.8rem; }
            .section-header h2 { font-size: 2.2rem; }
            .stack-card { position: relative !important; top: auto !important; transform: none !important; margin-bottom: 1.5rem; }
            .testimonial-card { position: relative !important; top: auto !important; transform: none !important; margin-bottom: 1.5rem; }
            .process-grid { grid-template-columns: 1fr; }
            .label-benefits { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
            .logo-footer { justify-content: center; }
            .contact-item { justify-content: center; }
            .about-image { margin-bottom: 3rem; }
            .experience-badge { right: 10px; bottom: -15px; padding: 1.2rem 1.8rem; }
            .experience-badge h4 { font-size: 2rem; }
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: var(--primary);
            z-index: 1500;
            padding: 6rem 2rem 2rem;
            transition: var(--transition);
            box-shadow: -20px 0 60px rgba(0,0,0,0.5);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu ul { list-style: none; }
        .mobile-menu li { margin-bottom: 1.5rem; }
        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .mobile-menu .nav-cta {
            display: inline-block;
            margin-top: 1rem;
        }
        .overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1400;
            display: none;
            backdrop-filter: blur(5px);
        }
        .overlay.active { display: block; }
