        /* ===== CSS RESET & VARIABLES ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-50: #eff6ff;
            --primary-100: #dbeafe;
            --primary-200: #bfdbfe;
            --primary-300: #93c5fd;
            --primary-400: #60a5fa;
            --primary-500: #3b82f6;
            --primary-600: #2563eb;
            --primary-700: #1d4ed8;
            --primary-800: #1e40af;
            --primary-900: #1e3a8a;
            --primary-950: #172554;

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

            --accent: #f59e0b;
            --accent-hover: #d97706;
            --success: #10b981;
            --danger: #ef4444;

            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-full: 9999px;

            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

            --section-padding: 6rem 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--neutral-800);
            background: #ffffff;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--primary-600); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--primary-800); }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary-600);
            background: var(--primary-50);
            border: 1px solid var(--primary-200);
            padding: 0.35rem 1rem;
            border-radius: var(--radius-full);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            color: var(--neutral-900);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--neutral-500);
            max-width: 640px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary-600);
            color: #fff;
            box-shadow: 0 1px 3px rgba(37,99,235,0.3);
        }
        .btn-primary:hover {
            background: var(--primary-700);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37,99,235,0.3);
        }

        .btn-secondary {
            background: #fff;
            color: var(--primary-700);
            border: 2px solid var(--primary-200);
        }
        .btn-secondary:hover {
            background: var(--primary-50);
            border-color: var(--primary-400);
            color: var(--primary-800);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--neutral-900);
            font-weight: 700;
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245,158,11,0.3);
        }

        /* ===== HEADER / NAV ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--neutral-200);
            transition: box-shadow 0.3s;
        }
        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--neutral-900);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
        }

        .logo span { color: var(--primary-600); }

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

        .nav-links a {
            display: block;
            padding: 0.5rem 0.9rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--neutral-600);
            border-radius: var(--radius-sm);
            transition: all 0.2s;
        }
        .nav-links a:hover {
            color: var(--primary-700);
            background: var(--primary-50);
        }

        .nav-cta {
            margin-left: 0.5rem;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .burger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--neutral-700);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 10rem 0 6rem;
            background: linear-gradient(165deg, var(--primary-50) 0%, #fff 50%, var(--primary-50) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            border: 1px solid var(--primary-200);
            border-radius: var(--radius-full);
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-700);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 800;
            color: var(--neutral-900);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--neutral-500);
            max-width: 520px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--neutral-200);
        }

        .hero-stat strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-700);
        }
        .hero-stat span {
            font-size: 0.85rem;
            color: var(--neutral-500);
        }

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--neutral-200);
            position: relative;
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .hero-card-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .hero-card-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--neutral-900);
        }
        .hero-card-header span {
            font-size: 0.8rem;
            color: var(--primary-600);
            font-weight: 500;
        }

        .checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .checklist li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--neutral-700);
        }

        .check-icon {
            width: 22px;
            height: 22px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .hero-floating {
            position: absolute;
            top: -1.5rem;
            right: -1rem;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 0.8rem 1.2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--neutral-100);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--success);
            animation: float 3s ease-in-out infinite;
        }

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

        /* ===== TRUST BAR ===== */
        .trust-bar {
            padding: 3rem 0;
            background: var(--neutral-50);
            border-top: 1px solid var(--neutral-100);
            border-bottom: 1px solid var(--neutral-100);
        }

        .trust-items {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--neutral-500);
        }

        .trust-icon {
            width: 36px;
            height: 36px;
            background: var(--primary-100);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* ===== SERVICES OVERVIEW ===== */
        .services {
            padding: var(--section-padding);
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-header .section-subtitle {
            margin: 0 auto;
        }

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

        .service-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--neutral-200);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-50);
            border: 1px solid var(--primary-100);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .service-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--neutral-500);
            line-height: 1.6;
        }

        /* ===== DETAILED SERVICES ===== */
        .detail-section {
            padding: var(--section-padding);
        }

        .detail-section.alt {
            background: var(--neutral-50);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .detail-content {
            position: sticky;
            top: 100px;
        }

        .detail-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .detail-list li {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--neutral-200);
            transition: all 0.2s;
        }

        .detail-section.alt .detail-list li {
            background: var(--neutral-50);
        }

        .detail-list li:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-sm);
        }

        .detail-number {
            width: 32px;
            height: 32px;
            background: var(--primary-600);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .detail-list h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--neutral-900);
            margin-bottom: 0.25rem;
        }

        .detail-list p {
            font-size: 0.85rem;
            color: var(--neutral-500);
            line-height: 1.6;
        }

        /* ===== REGULATIONS / COMPLIANCE ===== */
        .compliance {
            padding: var(--section-padding);
            background: linear-gradient(180deg, var(--primary-950) 0%, var(--neutral-900) 100%);
            color: #fff;
        }

        .compliance .section-label {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: var(--primary-300);
        }

        .compliance .section-title {
            color: #fff;
        }

        .compliance .section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .compliance-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .compliance-header .section-subtitle {
            margin: 0 auto;
        }

        .law-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .law-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            transition: all 0.3s;
        }

        .law-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.2);
        }

        .law-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-300);
            margin-bottom: 0.5rem;
        }

        .law-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        /* ===== PRICING ===== */
        .pricing {
            padding: var(--section-padding);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-header .section-subtitle {
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            border: 2px solid var(--neutral-200);
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: var(--primary-300);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured {
            border-color: var(--primary-500);
            box-shadow: var(--shadow-xl);
        }

        .pricing-badge {
            position: absolute;
            top: -0.8rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-600);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: var(--radius-full);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-card h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .pricing-card .pricing-desc {
            font-size: 0.9rem;
            color: var(--neutral-500);
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            margin-bottom: 0.25rem;
        }

        .pricing-price .amount {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--neutral-900);
        }

        .pricing-price .period {
            font-size: 0.9rem;
            color: var(--neutral-400);
        }

        .pricing-note {
            font-size: 0.8rem;
            color: var(--neutral-400);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--neutral-700);
        }

        .pricing-features li::before {
            content: '\2713';
            color: var(--success);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== PROCESS ===== */
        .process {
            padding: var(--section-padding);
            background: var(--neutral-50);
        }

        .process-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process-header .section-subtitle {
            margin: 0 auto;
        }

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

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -1rem;
            width: calc(100% - 60px);
            height: 2px;
            background: var(--primary-200);
            transform: translateX(50%);
        }
        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-600);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 800;
            margin: 0 auto 1.2rem;
            position: relative;
            z-index: 1;
        }

        .process-step h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .process-step p {
            font-size: 0.88rem;
            color: var(--neutral-500);
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: var(--section-padding);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-header .section-subtitle {
            margin: 0 auto;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #fff;
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            color: var(--neutral-800);
            text-align: left;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--neutral-50);
        }

        .faq-chevron {
            font-size: 1.2rem;
            color: var(--neutral-400);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.2rem;
            font-size: 0.92rem;
            color: var(--neutral-600);
            line-height: 1.7;
        }

        /* ===== BOOKING ===== */
        .booking {
            padding: var(--section-padding);
            background: var(--primary-50);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .booking-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--neutral-200);
        }

        .booking-card h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .booking-card > p {
            font-size: 0.9rem;
            color: var(--neutral-500);
            margin-bottom: 1.5rem;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .time-slot {
            padding: 0.6rem;
            border: 2px solid var(--neutral-200);
            border-radius: var(--radius-sm);
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--neutral-600);
            cursor: pointer;
            transition: all 0.2s;
            background: #fff;
        }

        .time-slot:hover, .time-slot.selected {
            border-color: var(--primary-500);
            color: var(--primary-700);
            background: var(--primary-50);
        }

        /* ===== CONTACT FORM ===== */
        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--neutral-700);
            margin-bottom: 0.4rem;
        }

        .form-group label .required {
            color: var(--danger);
        }

        .form-input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1.5px solid var(--neutral-200);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.92rem;
            color: var(--neutral-800);
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-500);
            box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
        }

        .form-input::placeholder {
            color: var(--neutral-400);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .consent-group {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin: 1.5rem 0;
        }

        .consent-group input[type="checkbox"] {
            margin-top: 0.25rem;
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            accent-color: var(--primary-600);
        }

        .consent-group label {
            font-size: 0.82rem;
            color: var(--neutral-500);
            line-height: 1.5;
            font-weight: 400;
        }

        .consent-group label a {
            color: var(--primary-600);
            text-decoration: underline;
        }

        /* ===== CONTACT INFO ===== */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: var(--primary-100);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--neutral-900);
        }

        .contact-item p {
            font-size: 0.88rem;
            color: var(--neutral-500);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--neutral-900);
            color: rgba(255,255,255,0.6);
            padding: 4rem 0 2rem;
        }

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

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 1rem;
        }

        .footer h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.82rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.4);
        }
        .footer-legal a:hover {
            color: #fff;
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 1px solid var(--neutral-200);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            padding: 1.5rem;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

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

        .cookie-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            font-size: 0.88rem;
            color: var(--neutral-600);
            line-height: 1.6;
            min-width: 280px;
        }

        .cookie-text a {
            color: var(--primary-600);
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-family: var(--font-body);
        }

        .cookie-btn-accept {
            background: var(--primary-600);
            color: #fff;
        }
        .cookie-btn-accept:hover {
            background: var(--primary-700);
        }

        .cookie-btn-settings {
            background: var(--neutral-100);
            color: var(--neutral-700);
        }
        .cookie-btn-settings:hover {
            background: var(--neutral-200);
        }

        .cookie-btn-reject {
            background: none;
            color: var(--neutral-500);
            border: 1px solid var(--neutral-300);
        }
        .cookie-btn-reject:hover {
            background: var(--neutral-50);
            color: var(--neutral-700);
        }

        /* ===== COOKIE SETTINGS MODAL ===== */
        .cookie-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .cookie-modal-overlay.show {
            display: flex;
        }

        .cookie-modal {
            background: #fff;
            border-radius: var(--radius-xl);
            max-width: 560px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2rem;
        }

        .cookie-modal h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cookie-modal > p {
            font-size: 0.88rem;
            color: var(--neutral-500);
            margin-bottom: 1.5rem;
        }

        .cookie-category {
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-md);
            padding: 1rem;
            margin-bottom: 0.75rem;
        }

        .cookie-category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cookie-category h4 {
            font-size: 0.92rem;
            font-weight: 600;
        }

        .cookie-category p {
            font-size: 0.82rem;
            color: var(--neutral-500);
            margin-top: 0.4rem;
        }

        .toggle {
            position: relative;
            width: 44px;
            height: 24px;
        }

        .toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            inset: 0;
            background: var(--neutral-300);
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .toggle-slider::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: #fff;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: transform 0.2s;
        }

        .toggle input:checked + .toggle-slider {
            background: var(--primary-600);
        }

        .toggle input:checked + .toggle-slider::after {
            transform: translateX(20px);
        }

        .toggle input:disabled + .toggle-slider {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .cookie-modal-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .cookie-modal-actions .cookie-btn {
            flex: 1;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-600);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-700);
            transform: translateY(-2px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .hero-visual { order: -1; }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .detail-content {
                position: static;
            }
            .booking-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-step::after { display: none; }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 4rem 0;
            }

            .nav-links, .nav-cta {
                display: none;
            }
            .burger {
                display: flex;
            }

            .mobile-menu {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: #fff;
                border-bottom: 1px solid var(--neutral-200);
                box-shadow: var(--shadow-lg);
                padding: 1rem;
                transform: translateY(-120%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            .mobile-menu.open {
                transform: translateY(0);
            }
            .mobile-menu a {
                display: block;
                padding: 0.8rem 1rem;
                font-size: 1rem;
                font-weight: 500;
                color: var(--neutral-700);
                border-radius: var(--radius-sm);
            }
            .mobile-menu a:hover {
                background: var(--primary-50);
            }

            .hero {
                padding: 8rem 0 4rem;
            }
            .hero-stats {
                gap: 1.5rem;
            }
            .hero-floating { display: none; }

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

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

            .process-steps {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

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

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

            .trust-items { gap: 1.5rem; }

            .cookie-inner {
                flex-direction: column;
                align-items: stretch;
            }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .hero-actions { flex-direction: column; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            .hero-stats { flex-direction: column; gap: 1rem; }
        }

        /* ===== WORDPRESS-SPECIFIC STYLES ===== */

        /* Skip link */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        .skip-link:focus {
            position: fixed;
            top: 0;
            left: 0;
            width: auto;
            height: auto;
            padding: 1rem 2rem;
            background: var(--primary-600);
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            z-index: 100000;
            text-decoration: none;
        }

        .screen-reader-text {
            clip: rect(1px, 1px, 1px, 1px);
            position: absolute !important;
            height: 1px;
            width: 1px;
            overflow: hidden;
            word-wrap: normal !important;
        }
        .screen-reader-text:focus {
            background-color: var(--primary-50);
            clip: auto !important;
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            height: auto;
            left: 5px;
            padding: 15px 23px 14px;
            text-decoration: none;
            top: 5px;
            width: auto;
            z-index: 100000;
        }

        /* Legal pages */
        .legal-page {
            padding: 8rem 0 4rem;
        }
        .legal-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-100);
        }
        .legal-article {
            max-width: 800px;
        }
        .legal-content h2 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--neutral-900);
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--neutral-200);
        }
        .legal-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--neutral-800);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .legal-content p {
            font-size: 0.95rem;
            color: var(--neutral-600);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        .legal-content ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        .legal-content ul li {
            font-size: 0.95rem;
            color: var(--neutral-600);
            line-height: 1.8;
            margin-bottom: 0.3rem;
        }
        .legal-content a {
            color: var(--primary-600);
            text-decoration: underline;
        }

        /* Blog pages */
        .blog-section, .single-section, .page-section {
            padding: 8rem 0 4rem;
        }
        .page-header, .single-header {
            margin-bottom: 2rem;
        }
        .page-content, .single-content {
            max-width: 800px;
            font-size: 1rem;
            line-height: 1.8;
        }
        .page-content h2, .single-content h2 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        .page-content h3, .single-content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .page-content p, .single-content p {
            margin-bottom: 1rem;
        }
        .page-content img, .single-content img {
            border-radius: var(--radius-md);
            margin: 1.5rem 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .blog-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--neutral-200);
            overflow: hidden;
            transition: all 0.3s;
        }
        .blog-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .blog-card-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .blog-card-content {
            padding: 1.5rem;
        }
        .blog-card-date {
            font-size: 0.82rem;
            color: var(--neutral-400);
            font-weight: 500;
        }
        .blog-card-content h2 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0.5rem 0;
        }
        .blog-card-content h2 a {
            color: var(--neutral-900);
            text-decoration: none;
        }
        .blog-card-content h2 a:hover {
            color: var(--primary-700);
        }
        .blog-card-content p {
            font-size: 0.9rem;
            color: var(--neutral-500);
            margin-bottom: 1rem;
        }

        .single-date {
            display: inline-block;
            font-size: 0.85rem;
            color: var(--primary-600);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .single-featured-image {
            margin-bottom: 2rem;
        }
        .single-featured-image img {
            border-radius: var(--radius-lg);
            width: 100%;
        }

        .pagination {
            margin-top: 3rem;
            text-align: center;
        }
        .pagination .nav-links {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid var(--neutral-200);
            color: var(--neutral-600);
            text-decoration: none;
            transition: all 0.2s;
        }
        .pagination a:hover {
            border-color: var(--primary-500);
            color: var(--primary-700);
            background: var(--primary-50);
        }
        .pagination .current {
            background: var(--primary-600);
            color: #fff;
            border-color: var(--primary-600);
        }

        .post-navigation {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--neutral-200);
        }

        /* WP alignment classes */
        .alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
        .alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
        .aligncenter { display: block; margin-left: auto; margin-right: auto; }
        .alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
        .alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }

        /* WP blocks */
        .wp-block-image { margin: 1.5rem 0; }
        .wp-block-image img { border-radius: var(--radius-md); }

        /* Custom logo in header */
        .custom-logo-link { display: flex; align-items: center; }
        .custom-logo { max-height: 40px; width: auto; }

        /* WP admin bar fix */
        .admin-bar .header { top: 32px; }
        @media (max-width: 782px) {
            .admin-bar .header { top: 46px; }
        }
