
        :root {
            --aubergine: #4A0E4E;
            --aubergine-rgb: 74, 14, 78;
            --aubergine-dark: #2D0830;
            --aubergine-light: #7B2880;
            --aubergine-pale: rgba(74, 14, 78, 0.08);
            --grey-900: #1a1a1a;
            --grey-800: #2d2d2d;
            --grey-700: #404040;
            --grey-600: #525252;
            --grey-500: #737373;
            --grey-400: #a3a3a3;
            --grey-300: #d4d4d4;
            --grey-200: #e5e5e5;
            --grey-100: #f5f5f5;
            --grey-50: #fafafa;
            --gold: #C9A962;
            --gold-light: #E8D5A3;
            --white: #ffffff;
            --gradient-main: linear-gradient(135deg, var(--aubergine) 0%, var(--aubergine-light) 100%);
            --gradient-dark: linear-gradient(160deg, var(--aubergine-dark) 0%, var(--aubergine) 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(var(--aubergine-rgb), 0.12);
            --shadow-lg: 0 20px 50px rgba(var(--aubergine-rgb), 0.18);
            --shadow-xl: 0 30px 70px rgba(var(--aubergine-rgb), 0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.65;
            color: var(--grey-800);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 34px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.01em;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border: none;
            outline: none;
        }
        
        .btn-primary {
            background: var(--gradient-main);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(var(--aubergine-rgb), 0.35);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(var(--aubergine-rgb), 0.45);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.4);
            backdrop-filter: blur(4px);
        }
        
        .btn-outline:hover {
            background: var(--white);
            color: var(--aubergine);
            border-color: var(--white);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--aubergine);
            border: 2px solid var(--aubergine);
        }
        
        .btn-secondary:hover {
            background: var(--aubergine);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        /* Navbar */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            position: fixed;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }
        
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover { opacity: 0.9; }
        
        .logo-icon {
            width: 52px;
            height: 52px;
            background: var(--gradient-main);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 25px rgba(var(--aubergine-rgb), 0.35);
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
            animation: logoShine 4s infinite;
        }
        
        @keyframes logoShine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }
        
        .logo-text {
            font-family: 'Fraunces', serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.03em;
        }
        
        .navbar.scrolled .logo-text { color: var(--aubergine); }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 6px 0;
            transition: color 0.3s ease;
        }
        
        .navbar.scrolled .nav-menu a { color: var(--grey-700); }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--gradient-main);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover { color: var(--gold); }
        .nav-menu a:hover::after { width: 100%; }
        
        .nav-cta {
            background: var(--gradient-main) !important;
            color: var(--white) !important;
            padding: 13px 26px !important;
            border-radius: var(--radius-md) !important;
            box-shadow: 0 4px 18px rgba(var(--aubergine-rgb), 0.35) !important;
        }
        
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { transform: translateY(-2px) !important; }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            width: 32px;
            height: 24px;
            justify-content: center;
        }
        
        .mobile-toggle span {
            width: 100%;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .navbar.scrolled .mobile-toggle span { background: var(--grey-800); }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--aubergine-dark);
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(45, 8, 48, 0.95) 0%,
                rgba(74, 14, 78, 0.88) 40%,
                rgba(123, 40, 128, 0.85) 100%
            );
            z-index: 2;
        }
        
        .hero-patterns {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            overflow: hidden;
        }
        
        .hero-patterns::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -15%;
            width: 60%;
            height: 140%;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
            animation: floatPattern 12s ease-in-out infinite;
        }
        
        .hero-patterns::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 50%;
            height: 120%;
            background: radial-gradient(circle, rgba(123, 40, 128, 0.2) 0%, transparent 55%);
            animation: floatPattern 15s ease-in-out infinite reverse;
        }
        
        @keyframes floatPattern {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -20px) scale(1.05); }
        }
        
        .hero-grid {
            position: relative;
            z-index: 4;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-content { max-width: 600px; }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 22px;
            border-radius: 50px;
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .hero-badge i { color: var(--gold); font-size: 14px; }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-title {
            font-size: clamp(42px, 5.5vw, 68px);
            color: var(--white);
            margin-bottom: 26px;
            line-height: 1.05;
            animation: fadeInUp 0.8s ease 0.15s both;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.82);
            margin-bottom: 38px;
            line-height: 1.75;
            animation: fadeInUp 0.8s ease 0.3s both;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 56px;
            animation: fadeInUp 0.8s ease 0.45s both;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding-top: 36px;
            border-top: 1px solid rgba(255,255,255,0.12);
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .stat-item {}
        
        .stat-number {
            font-family: 'Inter', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }
        
        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.65);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-xl);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
        }
        
        .hero-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .mini-stat {
            background: rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        
        .mini-stat:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.15);
            transform: translateY(-4px);
        }
        
        .mini-stat-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }
        
        .mini-stat-num {
            font-family: 'Inter', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 4px;
        }
        
        .mini-stat-text {
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }
        
        /* Section Styles */
        section { padding: 110px 0; position: relative; }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--aubergine-pale);
            color: var(--aubergine);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
            border: 1px solid rgba(var(--aubergine-rgb), 0.1);
        }
        
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 64px;
        }
        
        .section-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--grey-900);
            margin-bottom: 18px;
        }
        
        .section-header p {
            font-size: 17px;
            color: var(--grey-500);
            line-height: 1.75;
        }
        
        /* About Section */
        .about-section { background: var(--white); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-img-main {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 2;
        }
        
        .about-img-main img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-img-main:hover img { transform: scale(1.04); }
        
        .about-exp-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient-main);
            color: white;
            padding: 26px 34px;
            border-radius: var(--radius-lg);
            text-align: center;
            z-index: 3;
            box-shadow: var(--shadow-lg);
        }
        
        .about-exp-badge .num {
            font-family: 'Inter', sans-serif;
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
        }
        
        .about-exp-badge .text {
            font-size: 13px;
            opacity: 0.92;
            margin-top: 4px;
        }
        
        .about-content .section-label { margin-bottom: 16px; }
        
        .about-content h2 {
            font-size: 38px;
            color: var(--grey-900);
            margin-bottom: 24px;
        }
        
        .about-content h2 span { color: var(--aubergine); }
        
        .about-content > p {
            color: var(--grey-600);
            font-size: 16px;
            margin-bottom: 16px;
            line-height: 1.85;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 28px 0 30px;
        }
        
        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature i {
            width: 38px;
            height: 38px;
            background: var(--aubergine-pale);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--aubergine);
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .about-feature span {
            font-weight: 600;
            font-size: 14px;
            color: var(--grey-800);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--grey-50);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        
        .counter-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 42px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .counter-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .counter-card:hover::before { transform: scaleX(1); }
        
        .counter-icon {
            width: 72px;
            height: 72px;
            background: var(--aubergine-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--aubergine);
            transition: var(--transition);
        }
        
        .counter-card:hover .counter-icon {
            background: var(--gradient-main);
            color: white;
        }
        
        .counter-num {
            font-family: 'Inter', sans-serif;
            font-size: 46px;
            font-weight: 900;
            color: var(--grey-900);
            margin-bottom: 8px;
        }
        
        .counter-label {
            font-size: 14px;
            color: var(--grey-500);
            font-weight: 600;
        }
        
        /* Vision Mission Section */
        .vm-section { background: var(--white); }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        .vm-card {
            background: var(--grey-50);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .vm-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .vm-card.vision { border-color: rgba(var(--aubergine-rgb), 0.15); }
        .vm-card.mission { border-color: var(--grey-200); }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
        }
        
        .vm-card.vision::before { background: var(--gradient-main); }
        .vm-card.mission::before { background: linear-gradient(90deg, var(--grey-700), var(--grey-500)); }
        
        .vm-icon {
            width: 76px;
            height: 76px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            margin-bottom: 24px;
        }
        
        .vm-card.vision .vm-icon {
            background: rgba(var(--aubergine-rgb), 0.1);
            color: var(--aubergine);
        }
        
        .vm-card.mission .vm-icon {
            background: rgba(0,0,0,0.06);
            color: var(--grey-700);
        }
        
        .vm-card h3 {
            font-size: 26px;
            color: var(--grey-900);
            margin-bottom: 18px;
        }
        
        .vm-card p {
            color: var(--grey-600);
            font-size: 15px;
            line-height: 1.85;
        }
        
        /* Why Choose Us */
        .features-section { background: var(--grey-50); }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 38px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: var(--gradient-main);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
        .feature-card:hover::after { height: 100%; }
        
        .feature-card > * { position: relative; z-index: 1; }
        
        .feature-emoji {
            font-size: 52px;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-emoji {
            filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
            transform: scale(1.1);
        }
        
        .feature-card h4 {
            font-family: 'Inter', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 14px;
            transition: color 0.3s ease;
        }
        
        .feature-card p {
            color: var(--grey-600);
            font-size: 14px;
            line-height: 1.75;
            transition: color 0.3s ease;
        }
        
        .feature-card:hover h4,
        .feature-card:hover p { color: var(--white); }
        
        /* Process Section */
        .process-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(var(--aubergine-rgb), 0.04) 0%, transparent 70%);
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 0;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 3px;
            background: linear-gradient(90deg, var(--aubergine) 0%, var(--grey-300) 100%);
            transform: translateY(-50%);
            border-radius: 2px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-step { text-align: center; }
        
        .step-circle {
            width: 94px;
            height: 94px;
            background: var(--white);
            border: 3px solid var(--aubergine);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            font-weight: 800;
            color: var(--aubergine);
            position: relative;
            transition: var(--transition);
            animation: pulseGlow 2.5s infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(var(--aubergine-rgb), 0.25); }
            50% { box-shadow: 0 0 0 16px rgba(var(--aubergine-rgb), 0); }
        }
        
        .step-icon-badge {
            position: absolute;
            top: -10px;
            right: -8px;
            width: 42px;
            height: 42px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: white;
            box-shadow: 0 4px 15px rgba(var(--aubergine-rgb), 0.35);
        }
        
        .process-step h4 {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 10px;
        }
        
        .process-step p {
            color: var(--grey-500);
            font-size: 13px;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services-section { background: var(--grey-50); }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(var(--aubergine-rgb), 0.2);
        }
        
        .service-icon-area {
            padding: 44px 40px 28px;
            text-align: center;
            background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
        }
        
        .service-emoji {
            width: 100px;
            height: 100px;
            background: var(--aubergine-pale);
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            margin-bottom: 22px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-emoji {
            background: var(--gradient-main);
            transform: scale(1.08) rotate(-3deg);
        }
        
        .service-body {
            padding: 0 40px 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--aubergine-pale);
            color: var(--aubergine);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            align-self: flex-start;
        }
        
        .service-body h3 {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--grey-900);
            margin-bottom: 14px;
        }
        
        .service-body p {
            color: var(--grey-600);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
            flex-grow: 1;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--aubergine);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
            align-self: flex-start;
        }
        
        .service-link:hover {
            gap: 16px;
            color: var(--aubergine-dark);
        }
        
        .service-link i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i { transform: translateX(4px); }
        
        /* Booking Section */
        .booking-section { background: var(--white); }
        
        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-info .section-label { margin-bottom: 16px; }
        
        .booking-info h2 {
            font-size: 40px;
            color: var(--grey-900);
            margin-bottom: 22px;
        }
        
        .booking-info h2 span { color: var(--aubergine); }
        
        .booking-info > p {
            color: var(--grey-600);
            font-size: 16px;
            margin-bottom: 32px;
            line-height: 1.8;
        }
        
        .booking-list {
            list-style: none;
        }
        
        .booking-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            color: var(--grey-600);
            font-size: 14px;
        }
        
        .booking-list li i {
            width: 24px;
            height: 24px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .booking-form-box {
            background: var(--grey-50);
            border-radius: var(--radius-xl);
            padding: 46px 40px;
            border: 1px solid var(--grey-200);
            box-shadow: var(--shadow-md);
        }
        
        .booking-form-box h3 {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 8px;
        }
        
        .booking-form-box > p {
            color: var(--grey-500);
            font-size: 14px;
            margin-bottom: 26px;
        }
        
        .form-group { margin-bottom: 18px; }
        
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 13px;
            color: var(--grey-800);
            margin-bottom: 8px;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--grey-200);
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 14px;
            color: var(--grey-800);
            background: var(--white);
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--aubergine);
            box-shadow: 0 0 0 4px rgba(var(--aubergine-rgb), 0.1);
        }
        
        .form-control::placeholder { color: var(--grey-400); }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        /* Pricing Section */
        .pricing-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .pricing-section .section-label {
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border-color: rgba(255,255,255,0.2);
        }
        
        .pricing-section .section-header h2,
        .pricing-section .section-header p { color: var(--white); }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        
        .price-card {
            background: rgba(255,255,255,0.97);
            border-radius: var(--radius-xl);
            padding: 42px 34px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .price-card.featured {
            background: var(--white);
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }
        
        .price-card:hover { transform: translateY(-12px); }
        .price-card.featured:hover { transform: scale(1.05) translateY(-12px); }
        
        .popular-tag {
            position: absolute;
            top: 18px;
            right: -32px;
            background: var(--gradient-main);
            color: white;
            padding: 7px 48px;
            font-size: 11px;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 0.05em;
        }
        
        .plan-name {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 18px;
        }
        
        .plan-price {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--grey-200);
        }
        
        .plan-price .currency {
            font-size: 24px;
            color: var(--aubergine);
            font-weight: 700;
            vertical-align: super;
        }
        
        .plan-price .amount {
            font-family: 'Inter', sans-serif;
            font-size: 54px;
            font-weight: 900;
            color: var(--grey-900);
            letter-spacing: -0.03em;
        }
        
        .plan-price .period {
            font-size: 15px;
            color: var(--grey-500);
        }
        
        .plan-desc {
            color: var(--grey-500);
            font-size: 13px;
            margin-bottom: 24px;
        }
        
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: var(--grey-700);
            font-size: 14px;
            border-bottom: 1px solid var(--grey-100);
        }
        
        .plan-features li:last-child { border-bottom: none; }
        
        .plan-features li i {
            color: var(--aubergine);
            font-size: 13px;
            width: 18px;
        }
        
        .price-card .btn { width: 100%; }
        
        /* Reviews Section */
        .reviews-section { background: var(--grey-50); }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 34px 28px;
            position: relative;
            border: 1px solid var(--grey-200);
            transition: var(--transition);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(var(--aubergine-rgb), 0.2);
        }
        
        .review-quote-icon {
            font-size: 48px;
            color: var(--aubergine);
            opacity: 0.12;
            position: absolute;
            top: 20px;
            left: 26px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 18px;
        }
        
        .review-stars i { color: var(--gold); font-size: 16px; }
        
        .review-text {
            color: var(--grey-600);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .review-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--aubergine);
        }
        
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-author-info h4 {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--grey-900);
            margin-bottom: 3px;
        }
        
        .review-author-info span {
            font-size: 12px;
            color: var(--grey-400);
        }
        
        /* FAQ Section */
        .faq-section { background: var(--white); }
        
        .faq-container {
            max-width: 840px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--grey-50);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .faq-item.active {
            border-color: var(--aubergine);
            box-shadow: 0 8px 30px rgba(var(--aubergine-rgb), 0.12);
        }
        
        .faq-question {
            padding: 22px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--grey-900);
        }
        
        .faq-question i {
            color: var(--aubergine);
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-answer-inner {
            padding: 0 28px 24px;
            color: var(--grey-600);
            font-size: 14px;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 55%);
        }
        
        .cta-pattern {
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10zM0 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 15.523 0 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: clamp(32px, 4vw, 46px);
            color: var(--white);
            margin-bottom: 18px;
        }
        
        .cta-content p {
            font-size: 17px;
            color: rgba(255,255,255,0.88);
            margin-bottom: 36px;
            line-height: 1.75;
        }
        
        .cta-content .btn {
            background: var(--white);
            color: var(--aubergine);
            font-weight: 700;
            padding: 18px 42px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .cta-content .btn:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact-section { background: var(--grey-50); }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 48px;
        }
        
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .contact-card {
            background: var(--white);
            padding: 26px 28px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .contact-card:hover {
            border-color: var(--aubergine);
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }
        
        .contact-card-icon {
            width: 54px;
            height: 54px;
            background: var(--gradient-main);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }
        
        .contact-card h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--grey-900);
            margin-bottom: 5px;
        }
        
        .contact-card p,
        .contact-card a {
            color: var(--grey-600);
            font-size: 14px;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
            display: block;
        }
        
        .contact-card a:hover { color: var(--aubergine); }
        
        .contact-form-box {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 42px 38px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-200);
        }
        
        .contact-form-box h3 {
            font-family: 'Inter', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--grey-900);
            margin-bottom: 6px;
        }
        
        .contact-form-box > p {
            color: var(--grey-500);
            font-size: 14px;
            margin-bottom: 26px;
        }
        
        /* Footer */
        .footer {
            background: var(--grey-900);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-main);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        
        .footer-col h3 {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 14px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 22px;
        }
        
        .footer-social {
            display: flex;
            gap: 10px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background: var(--gradient-main);
            transform: translateY(-4px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 11px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        
        .footer-links a i {
            font-size: 9px;
            color: var(--aubergine-light);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .newsletter-input {
            padding: 15px 18px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            background: rgba(255,255,255,0.05);
            color: var(--white);
            font-family: inherit;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--aubergine-light);
            background: rgba(255,255,255,0.08);
        }
        
        .newsletter-btn {
            padding: 15px 26px;
            background: var(--gradient-main);
            border: none;
            border-radius: var(--radius-md);
            color: white;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.02em;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(var(--aubergine-rgb), 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        
        .footer-bottom-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover { color: var(--gold); }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 52px;
            height: 52px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 19px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: none;
            box-shadow: 0 8px 28px rgba(var(--aubergine-rgb), 0.4);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .price-card.featured { transform: scale(1); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 36px 36px;
                gap: 22px;
                transition: right 0.4s ease;
                box-shadow: -10px 40px 60px rgba(0,0,0,0.2);
                z-index: 999;
            }
            
            .nav-menu.active { right: 0; }
            .nav-menu a { color: var(--grey-800) !important; }
            .mobile-toggle { display: flex; }
            
            .hero-grid { grid-template-columns: 1fr; gap: 50px; }
            .hero-visual { display: none; }
            
            .about-grid,
            .vm-grid,
            .booking-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            
            .about-image { order: -1; }
            
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .process-line { display: none; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
        }
        
        @media (max-width: 768px) {
            section { padding: 80px 0; }
            .hero-title { font-size: 40px; }
            .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .features-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .counter-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 36px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .about-features { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 480px) {
            .hero-actions { flex-direction: column; }
            .btn, .btn-outline { width: 100%; }
        }
