        /* === CSS RESET & BASE === */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Vue Media Brand Colors */
            --brand-dark: #101111;
            --brand-teal: #40e0d0;
            --brand-cream: #f6ece0;
            
            /* Derived colors */
            --black: #101111;
            --white: #ffffff;
            --off-white: #f6ece0;
            --cream: #f6ece0;
            
            /* Teal/Mint accents (brand teal derived) */
            --teal: #40e0d0;
            --teal-dark: #2db8b0;
            --teal-light: #6ceadd;
            
            --gray-100: #f8f8f8;
            --gray-200: #e8e8e8;
            --gray-300: #d4d4d4;
            --gray-400: #a3a3a3;
            --gray-500: #737373;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--black);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            font-weight: 400;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        h1 { font-size: clamp(40px, 6vw, 72px); }
        h2 { font-size: clamp(32px, 5vw, 52px); }
        h3 { font-size: clamp(24px, 4vw, 36px); }
        
        /* No Border Radius Anywhere */
        * {
            border-radius: 0 !important;
        }
        
        /* === LAYOUT UTILITIES === */
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
            box-sizing: border-box;
        }

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

        /* Fix for text overflow in general */
        p, span, div, li {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

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

        /* Fix for text overflow in general */
        p, span, div, li {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }
        
        .section {
            padding: 120px 0;
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 80px 0;
            }
        }
        
        /* === NAVIGATION === */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--black);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .nav-logo-mark {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--black);
        }
        
        .nav-logo-mark span {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--black);
        }
        
        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 500;
            letter-spacing: -0.03em;
        }
        
        .nav-logo-sub {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gray-500);
            margin-top: 2px;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 48px;
        }
        
        .nav-link {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--black);
            text-decoration: none;
            position: relative;
            padding: 8px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--teal);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--black);
            color: var(--white);
            padding: 14px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid var(--black);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--black);
            color: var(--white);
        }
        
        /* Language Switcher - Airbnb Style */
        .nav-lang-toggle {
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid var(--gray-300);
            padding: 8px 14px;
            cursor: pointer;
            transition: all 0.15s ease;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 8px;
        }

        .nav-lang-btn:hover {
            border-color: var(--gray-600);
            background: var(--gray-100);
        }

        .nav-lang-btn .lang-flag {
            width: 20px;
            height: auto;
            object-fit: contain;
            border-radius: 2px;
        }

        .nav-lang-btn svg {
            width: 12px;
            height: 12px;
            transition: transform 0.2s ease;
        }

        .nav-lang-btn:hover svg {
            transform: rotate(180deg);
        }

        /* Language Dropdown */
        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 160px;
            background: var(--white);
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .lang-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            text-decoration: none;
            color: var(--black);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            transition: background 0.15s ease;
            border: none;
            background: transparent;
            cursor: pointer;
        }

        .lang-option:hover {
            background: var(--gray-100);
        }

        .lang-option.active {
            background: var(--gray-100);
            font-weight: 600;
        }

        .lang-option-flag {
            width: 20px;
            height: auto;
            object-fit: contain;
            border-radius: 2px;
        }

        /* Mobile Language Toggle */
        .mobile-lang-toggle {
            display: none;
            position: relative;
            margin-left: 12px;
        }

        @media (max-width: 768px) {
            .nav-lang-toggle {
                display: none;
            }
        }
        
        .nav-mobile-toggle {
            display: none;
            width: 48px;
            height: 48px;
            border: 2px solid var(--black);
            background: transparent;
            cursor: pointer;
            position: relative;
        }
        
        .nav-mobile-toggle span {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--black);
        }
        
        .nav-mobile-toggle span:nth-child(1) { top: 14px; }
        .nav-mobile-toggle span:nth-child(2) { top: 22px; }
        .nav-mobile-toggle span:nth-child(3) { top: 30px; }
        
        @media (max-width: 1024px) {
            .nav-menu { display: none; }
            .nav-cta { display: none; }
            .nav-mobile-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }

            /* Mobile Language Switcher */
            .mobile-lang-toggle {
                display: flex;
                align-items: center;
            }

            .mobile-lang-toggle .nav-lang-btn {
                padding: 8px 10px;
                font-size: 12px;
            }

            .mobile-lang-dropdown {
                right: -20px;
                min-width: 150px;
            }
        }
        
        /* === HERO SECTION === */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            background: var(--off-white);
            border-bottom: 1px solid var(--black);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 80px);
        }
        
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            border-right: 1px solid var(--black);
        }
        
        @media (max-width: 1024px) {
            .hero-content { padding: 60px 40px; border-right: none; border-bottom: 1px solid var(--black); }
        }
        
        @media (max-width: 640px) {
            .hero-content { padding: 40px 20px; }
        }
        
        .hero-label {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--teal);
            margin-bottom: 32px;
        }
        
        .hero-title {
            font-size: clamp(28px, 5vw, 72px);
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero-title span {
            display: inline;
            font-style: italic;
            white-space: nowrap;
        }

        .hero-title-line2 {
            display: block;
            white-space: nowrap;
        }
        
        .hero-subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
            max-width: 480px;
            margin-bottom: 48px;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 18px 40px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid var(--black);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--teal);
            border-color: var(--teal);
            color: var(--black);
        }
        
        .btn-outline {
            background: transparent;
            border-color: var(--black);
            color: var(--black);
        }
        
        .btn-outline:hover {
            background: var(--black);
            color: var(--white);
        }
        
        .hero-visual {
            position: relative;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: filter 0.5s ease;
        }
        
        .hero:hover .hero-image {
            filter: grayscale(0%);
        }
        
        .hero-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            border-top: 1px solid var(--black);
            background: var(--white);
        }
        
        .hero-stat {
            flex: 1;
            padding: 32px;
            border-right: 1px solid var(--black);
        }
        
        .hero-stat:last-child { border-right: none; }
        
        .hero-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--teal);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .hero-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
        }
        
        /* === SECTION HEADERS === */
        .section-header {
            margin-bottom: 80px;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .section-header { padding: 0 20px; margin-bottom: 60px; }
        }

        @media (max-width: 480px) {
            .section-header { margin-bottom: 40px; }
        }

        .section-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--black);
        }

        @media (max-width: 768px) {
            .section-header-inner { padding-bottom: 24px; }
        }

        @media (max-width: 480px) {
            .section-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
        }
        
        .section-label {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--teal);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
        }
        
        .section-subtitle {
            font-size: 16px;
            color: var(--gray-600);
            max-width: 600px;
            margin-top: 16px;
        }
        
        .section-number {
            font-family: 'Playfair Display', serif;
            font-size: 120px;
            font-weight: 500;
            color: var(--gray-200);
            line-height: 1;
        }

        @media (max-width: 768px) {
            .section-number { font-size: 80px; }
        }

        @media (max-width: 480px) {
            .section-number { font-size: 60px; display: none; }
        }

        /* Services section header override for mobile */
        #services .section-header-inner {
            padding-bottom: clamp(16px, 4vw, 32px) !important;
        }

        /* Fix for service text elements to prevent overflow */
        .service-text {
            text-align: left;
            box-sizing: border-box;
            padding-right: 0;
        }

        .service-text[data-i18n] {
            display: block;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding-right: 0;
        }

        .service-title {
            max-width: 100%;
            word-wrap: break-word;
            box-sizing: border-box;
        }

        /* Force all text in service cards to respect container width */
        .service-card * {
            box-sizing: border-box;
            padding-right: 0;
        }

        .service-card .service-text,
        .service-card .service-text *,
        .service-card .service-title,
        .service-card .service-title *,
        .service-card .service-list li,
        .service-card .service-list li span {
            box-sizing: border-box;
            padding-right: 0;
        }

        /* Fix for inline br elements in service descriptions */
        .service-text br {
            display: block;
            margin-bottom: 1em;
        }

        .service-text {
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }
        
        /* === ABOUT SECTION === */
        .about {
            background: var(--black);
            color: var(--white);
            min-height: calc(100vh - 80px); /* Full viewport minus sticky header */
            display: flex;
            align-items: center;
        }

        .about > .container {
            width: 100%;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 60px; }
            .about { min-height: auto; } /* Allow natural height on mobile */
        }
        
        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: auto;
            border: 1px solid var(--gray-700);
        }
        
        .about-badge {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--white);
        }
        
        .about-badge-text {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--black);
        }
        
        .about-content h2 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 600;
            margin-bottom: 32px;
            line-height: 1.2;
        }
        
        .about-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-400);
            margin-bottom: 24px;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 48px;
            padding-top: 48px;
            border-top: 1px solid var(--gray-700);
        }
        
        .about-stat {
            padding: 24px;
            border: 1px solid var(--gray-700);
        }
        
        .about-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 500;
            color: var(--teal);
            margin-bottom: 8px;
        }
        
        .about-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
        }
        
        /* === STATS SECTION === */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--black);
            border: 1px solid var(--black);
        }
        
        @media (max-width: 768px) {
            .stats-grid { grid-template-columns: 1fr; }
        }
        
        .stat-box {
            background: var(--off-white);
            padding: 80px 60px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .stat-box { padding: 60px 40px; }
        }
        
        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: clamp(56px, 8vw, 96px);
            font-weight: 500;
            color: var(--black);
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }
        
        .stat-desc {
            font-size: 14px;
            color: var(--gray-500);
            max-width: 280px;
            margin: 0 auto;
        }
        
        /* === SERVICES SECTION === */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1px;
            background: var(--black);
            border: 1px solid var(--black);
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }

        #services {
            overflow-x: hidden;
            width: 100%;
        }

        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: 1fr; }
        }
        
        .service-card {
            background: var(--white);
            padding: 60px;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            width: 100%;
            min-width: 0;
            max-width: 100%;
            box-sizing: border-box;
            display: block;
            overflow: hidden;
            grid-column: auto;
            position: relative;
        }

        /* Bonus Ribbon for ListingLabs */
        .service-bonus-ribbon {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            color: var(--black);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 8px 16px;
            text-align: center;
            z-index: 10;
        }

        .service-bonus-ribbon-dark {
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            color: var(--black);
        }

        .service-card:hover .service-bonus-ribbon {
            background: var(--black);
            color: var(--white);
        }

        .service-card-dark:hover .service-bonus-ribbon-dark {
            background: var(--white);
            color: var(--black);
        }

        /* Adjust card padding when ribbon is present */
        .service-card:has(.service-bonus-ribbon) {
            padding-top: 80px;
        }

        @media (max-width: 1024px) {
            .service-card:has(.service-bonus-ribbon) { padding-top: 70px; }
        }

        @media (max-width: 640px) {
            .service-card:has(.service-bonus-ribbon) { padding-top: 60px; }
            .service-bonus-ribbon { font-size: 10px; padding: 6px 12px; }
        }

        @media (max-width: 480px) {
            .service-card:has(.service-bonus-ribbon) { padding-top: 52px; }
            .service-bonus-ribbon { font-size: 9px; padding: 5px 10px; }
        }

        .service-card > * {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        .service-card p,
        .service-card h3,
        .service-card span,
        .service-card li {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
            word-break: break-word !important;
        }

        @media (max-width: 1024px) {
            .service-card { padding: 50px 40px; }
        }

        @media (max-width: 640px) {
            .service-card { padding: 40px 24px; }
        }

        @media (max-width: 480px) {
            .service-card { padding: 32px 20px; }
        }
        
        .service-card:hover {
            background: var(--teal);
        }
        
        .service-card:hover .service-title,
        .service-card:hover .service-text,
        .service-card:hover .service-list li {
            color: var(--black);
        }
        
        .service-card:hover .service-price,
        .service-card:hover .service-price-label {
            color: var(--white);
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        @media (max-width: 640px) {
            .service-header { margin-bottom: 24px; }
        }

        @media (max-width: 480px) {
            .service-header { margin-bottom: 20px; }
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--black);
        }

        @media (max-width: 640px) {
            .service-icon { width: 56px; height: 56px; }
            .service-icon svg { width: 24px; height: 24px; }
        }

        @media (max-width: 480px) {
            .service-icon { width: 48px; height: 48px; }
            .service-icon svg { width: 20px; height: 20px; }
        }
        
        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--black);
        }
        
        .service-badge {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 8px 16px;
            background: var(--black);
            color: var(--white);
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }

        .service-text {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 32px;
            transition: color 0.3s ease;
            max-width: 100%;
            width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
            line-height: 1.6;
            display: block;
        }

        @media (max-width: 640px) {
            .service-title { font-size: 20px; margin-bottom: 12px; }
            .service-text { font-size: 13px; margin-bottom: 24px; }
        }

        @media (max-width: 480px) {
            .service-title { font-size: 18px; margin-bottom: 10px; }
            .service-text { font-size: 12px; margin-bottom: 20px; line-height: 1.6; }
        }
        
        .service-list {
            list-style: none;
            margin-bottom: 40px;
            max-width: 100%;
            overflow: visible;
        }
        
        .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-top: 1px solid var(--gray-200);
            font-size: 14px;
            color: var(--gray-600);
            transition: color 0.3s ease;
            max-width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .service-list li span {
            flex: 1;
            min-width: 0;
        }

        @media (max-width: 640px) {
            .service-list li { font-size: 13px; padding: 10px 0; gap: 10px; }
            .service-list li svg { width: 18px; height: 18px; }
        }

        @media (max-width: 480px) {
            .service-list li { font-size: 12px; padding: 8px 0; gap: 8px; }
            .service-list li svg { width: 16px; height: 16px; margin-top: 0; }
        }
        
        .service-list li svg {
            width: 20px;
            height: 20px;
            color: var(--teal);
            flex-shrink: 0;
            margin-top: 2px;
            min-width: 20px;
        }
        
        .service-card:hover .service-list li svg {
            color: var(--black);
        }

        .service-card:hover .service-list li {
            border-color: var(--teal-dark);
        }

        /* Dark service card (Photo + Video Combo) - white checks on hover */
        .service-card-dark:hover .service-list li svg {
            color: var(--white);
        }
        
        .service-price {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--teal);
            transition: color 0.3s ease;
        }

        .service-price-label {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
            display: block;
            margin-top: 4px;
        }

        @media (max-width: 640px) {
            .service-price { font-size: 30px; }
            .service-price-label { font-size: 11px; }
        }

        @media (max-width: 480px) {
            .service-price { font-size: 26px; }
            .service-price-label { font-size: 10px; }
        }
        
        /* === PORTFOLIO SECTION - BIG & IMPRESSIVE === */
        .portfolio {
            background: var(--black);
            color: var(--white);
        }
        
        .portfolio-header .section-title,
        .portfolio-header .section-label {
            color: var(--white);
        }
        
        .portfolio-header .section-number {
            color: var(--gray-800);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1px;
            background: var(--gray-800);
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/5;
            grid-column: span 4;
        }
        
        @media (max-width: 1200px) {
            .portfolio-item { grid-column: span 6; }
        }
        
        @media (max-width: 768px) {
            .portfolio-item { grid-column: span 12; aspect-ratio: 3/4; }
        }
        
        .portfolio-item.large {
            grid-column: span 8;
            aspect-ratio: 16/9;
        }
        
        @media (max-width: 1200px) {
            .portfolio-item.large { grid-column: span 12; aspect-ratio: 4/3; }
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover img {
            filter: brightness(1);
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-overlay h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .portfolio-overlay p {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--teal);
        }
        
        .portfolio-cta {
            margin-top: 80px;
            text-align: center;
        }
        
        /* === TESTIMONIALS SECTION === */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        @media (max-width: 1024px) {
            .testimonials-grid { grid-template-columns: 1fr; }
        }
        
        .testimonial-card {
            padding: 48px;
            background: var(--off-white);
            border: 1px solid var(--black);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            background: var(--teal);
        }
        
        .testimonial-card:hover * {
            color: var(--black) !important;
        }
        
        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            line-height: 1;
            color: var(--teal);
            margin-bottom: 24px;
            opacity: 0.4;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .testimonial-avatar {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border: 2px solid var(--teal);
        }
        
        .testimonial-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .testimonial-role {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
        }
        
        /* === BONUS BANNER === */
        .bonus-banner {
            background: linear-gradient(135deg, var(--black) 0%, #1a3a3a 100%);
            padding: 80px 0;
            border-top: 1px solid var(--gray-800);
            border-bottom: 1px solid var(--black);
        }

        @media (max-width: 768px) {
            .bonus-banner { padding: 60px 0; }
        }

        .bonus-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            padding: 40px 60px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--teal);
        }

        @media (max-width: 1024px) {
            .bonus-content {
                flex-direction: column;
                text-align: center;
                gap: 32px;
                padding: 40px;
            }
        }

        @media (max-width: 640px) {
            .bonus-content { padding: 32px 24px; }
        }

        .bonus-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--black);
        }

        @media (max-width: 1024px) {
            .bonus-icon { margin: 0 auto; }
        }

        @media (max-width: 640px) {
            .bonus-icon { width: 64px; height: 64px; }
        }

        .bonus-icon svg {
            width: 40px;
            height: 40px;
            color: var(--black);
        }

        @media (max-width: 640px) {
            .bonus-icon svg { width: 32px; height: 32px; }
        }

        .bonus-text {
            flex: 1;
        }

        .bonus-tag {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--teal);
            background: rgba(64, 224, 208, 0.15);
            padding: 6px 12px;
            margin-bottom: 16px;
        }

        @media (max-width: 640px) {
            .bonus-tag { font-size: 10px; padding: 5px 10px; }
        }

        .bonus-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        @media (max-width: 640px) {
            .bonus-title { font-size: 22px; margin-bottom: 10px; }
        }

        .bonus-description {
            font-size: 16px;
            color: var(--gray-400);
            line-height: 1.6;
            max-width: 500px;
        }

        @media (max-width: 640px) {
            .bonus-description { font-size: 14px; }
        }

        .bonus-cta {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--teal);
            color: var(--black);
            padding: 16px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid var(--teal);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .bonus-cta { width: 100%; justify-content: center; }
        }

        @media (max-width: 640px) {
            .bonus-cta { padding: 14px 24px; font-size: 11px; }
        }

        .bonus-cta:hover {
            background: var(--white);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .bonus-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .bonus-cta:hover svg {
            transform: translateX(4px);
        }

        /* === CONTACT SECTION === */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--black);
        }
        
        @media (max-width: 1024px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
        
        .contact-info {
            background: var(--white);
            padding: 80px;
        }
        
        @media (max-width: 768px) {
            .contact-info { padding: 60px 40px; }
        }
        
        .contact-info h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 24px;
        }
        
        .contact-info > p {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 48px;
            max-width: 400px;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .contact-method-icon {
            width: 64px;
            height: 64px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--black);
        }
        
        .contact-method-icon svg {
            width: 28px;
            height: 28px;
            color: var(--black);
        }
        
        .contact-method h3 {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .contact-method p {
            font-size: 16px;
            color: var(--gray-600);
        }
        
        .contact-form {
            background: var(--black);
            padding: 80px;
        }
        
        @media (max-width: 768px) {
            .contact-form { padding: 60px 40px; }
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        @media (max-width: 640px) {
            .form-row { grid-template-columns: 1fr; }
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: 1px solid var(--gray-700);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--teal);
        }
        
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--gray-500);
        }
        
        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a66b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }
        
        .form-select option {
            background: var(--black);
            color: var(--white);
        }
        
        .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        .form-submit {
            width: 100%;
            padding: 24px;
            background: var(--teal);
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--black);
        }
        
        .form-submit:hover {
            background: var(--white);
        }
        
        /* === FOOTER === */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 0;
            border-top: 1px solid var(--gray-800);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 60px;
            align-items: center;
        }
        
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .footer-logo-mark {
            width: 50px;
            height: 50px;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--white);
        }
        
        .footer-logo-mark span {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--black);
        }
        
        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 500;
        }
        
        .footer-logo-sub {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gray-500);
        }
        
        .footer-text {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.8;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social a {
            width: 48px;
            height: 48px;
            border: 1px solid var(--gray-700);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--teal);
            border-color: var(--teal);
        }
        
        .footer-social a:hover svg {
            color: var(--black);
        }
        
        .footer-social svg {
            width: 20px;
            height: 20px;
            color: var(--white);
        }
        
        .footer-bottom {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--gray-800);
            text-align: center;
        }
        
        .footer-bottom p {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--gray-500);
        }
        
        /* === ANIMATIONS === */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in.visible {
            opacity: 1;
        }
        
        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--teal);
            z-index: 9999;
            width: 0%;
            transition: width 0.1s ease-out;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--white);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--teal);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 2000;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu a {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .mobile-menu a:hover {
            color: var(--teal);
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 48px;
            height: 48px;
            border: 1px solid var(--gray-700);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-close svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }

        /* === FULLSCREEN SCROLL GALLERY === */
        .fullscreen-gallery {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: var(--black);
        }

        .fullscreen-gallery-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .fullscreen-gallery-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: scale(1.1);
        }

        .fullscreen-gallery-item.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .fullscreen-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fullscreen-gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%, transparent 100%);
        }

        .fullscreen-gallery-content {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
            opacity: 0;
            transform: translateX(-50%) translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.3s;
        }

        .fullscreen-gallery-item.active .fullscreen-gallery-content {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .fullscreen-gallery-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 500;
            color: var(--white);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .fullscreen-gallery-location {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--teal);
        }

        /* Navigation dots */
        .fullscreen-gallery-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .fullscreen-gallery-dot {
            width: 40px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .fullscreen-gallery-dot:hover {
            background: rgba(255,255,255,0.6);
        }

        .fullscreen-gallery-dot.active {
            background: var(--teal);
        }

        /* Arrow navigation */
        .fullscreen-gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            transition: all 0.3s ease;
        }

        .fullscreen-gallery-arrow:hover {
            background: var(--teal);
            border-color: var(--teal);
        }

        .fullscreen-gallery-arrow:hover svg {
            color: var(--black);
        }

        .fullscreen-gallery-arrow svg {
            width: 24px;
            height: 24px;
            color: var(--white);
            transition: color 0.3s ease;
        }

        .fullscreen-gallery-prev {
            left: 40px;
        }

        .fullscreen-gallery-next {
            right: 40px;
        }

        @media (max-width: 768px) {
            .fullscreen-gallery-arrow {
                width: 44px;
                height: 44px;
            }

            .fullscreen-gallery-arrow svg {
                width: 20px;
                height: 20px;
            }

            .fullscreen-gallery-prev {
                left: 15px;
            }

            .fullscreen-gallery-next {
                right: 15px;
            }

            .fullscreen-gallery-content {
                bottom: 60px;
                padding: 0 20px;
            }

            .fullscreen-gallery-nav {
                bottom: 25px;
            }
        }

        /* Scroll indicator */
        .fullscreen-gallery-scroll {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            z-index: 20;
        }

        .fullscreen-gallery-scroll span {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255,255,255,0.6);
        }

        .fullscreen-gallery-scroll svg {
            width: 24px;
            height: 24px;
            color: var(--teal);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(8px);
            }
            60% {
                transform: translateY(4px);
            }
        }

        /* === LANGUAGE SWITCHER === */
        .nav-lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: transparent;
            border: 1px solid var(--gray-300);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--black);
        }

        .nav-lang-btn:hover {
            border-color: var(--black);
            background: var(--black);
            color: var(--white);
        }

        .nav-lang-btn .flag-icon {
            width: 18px;
            height: auto;
            display: block;
        }

        .mobile-lang-switcher {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .mobile-lang-switcher .translate-option {
            background: transparent;
            border: 1px solid var(--gray-700);
            color: var(--white);
            padding: 12px 24px;
            font-size: 14px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .mobile-lang-switcher .translate-option:hover {
            background: var(--teal);
            border-color: var(--teal);
            color: var(--black);
        }

        /* === SERVICES RESPONSIVE FULL-WIDTH SECTION === */
        #services .container {
            padding-left: clamp(20px, 5vw, 40px) !important;
            padding-right: clamp(20px, 5vw, 40px) !important;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            #services .container {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }

        @media (max-width: 480px) {
            #services .container {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }
        }

        /* Ensure services section has no padding-bottom issues */
        #services[style*="padding-bottom"] {
            padding-bottom: 0 !important;
        }

        /* === SUPERHOST SECTION - Class-based styling === */
        .superhost-fullwidth {
            grid-column: 1 / -1;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .superhost-bg {
            background: linear-gradient(135deg,
                #1a3a3a 0%,
                #152d2d 40%,
                #0f2020 70%,
                var(--black) 100%
            );
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 60px);
        }

        .superhost-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .superhost-glow--sun {
            top: 10%;
            right: 15%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(255, 217, 54, 0.25) 0%, transparent 70%);
            animation: sunGlow 4s ease-in-out infinite;
        }

        .superhost-glow--moon {
            bottom: 15%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(64, 224, 208, 0.2) 0%, transparent 70%);
            animation: moonGlow 3s ease-in-out infinite;
        }

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

        @keyframes moonGlow {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.2); }
        }

        .superhost-content {
            position: relative;
            z-index: 1;
            width: 100%;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .superhost-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .superhost-content {
                gap: 32px;
            }

            .superhost-bg {
                min-height: auto;
                padding: 40px 20px;
            }
        }

        .superhost-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 4px !important;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
            color: var(--white);
        }

        .superhost-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 48px);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--white);
        }

        .superhost-desc {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-400);
            max-width: 500px;
            margin-bottom: 40px;
        }

        @media (max-width: 1024px) {
            .superhost-desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
        }

        .superhost-price-container {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 32px;
        }

        @media (max-width: 1024px) {
            .superhost-price-container {
                justify-content: center;
            }
        }

        .superhost-price {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 600;
            color: var(--teal);
        }

        .superhost-price-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
        }

        .superhost-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--teal);
            color: var(--black);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.025em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .superhost-cta:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-2px);
        }

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

        @media (max-width: 640px) {
            .superhost-features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .superhost-feature-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 28px;
            border-radius: 8px !important;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .superhost-feature-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
        }

        @media (max-width: 480px) {
            .superhost-feature-card {
                padding: 20px;
            }
        }

        .superhost-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        @media (max-width: 480px) {
            .superhost-feature-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 12px;
            }

            .superhost-feature-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        .superhost-feature-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--white);
        }

        @media (max-width: 480px) {
            .superhost-feature-title {
                font-size: 16px;
            }
        }

        .superhost-feature-desc {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        @media (max-width: 480px) {
            .superhost-feature-desc {
                font-size: 13px;
            }
        }

        /* Prevent overflow on all service cards */
        .service-card {
            max-width: 100%;
            overflow: hidden;
        }

        .service-card * {
            max-width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
            box-sizing: border-box;
        }

        .service-text,
        .service-title,
        .service-list li {
            overflow: hidden;
            word-wrap: break-word;
            hyphens: auto;
            width: 100%;
            box-sizing: border-box;
        }

        .service-list li {
            overflow-wrap: break-word;
            word-break: break-word;
        }

        /* Critical fix: Ensure services grid doesn't cause text overflow */
        .services-grid .service-card > * {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-right: 0 !important;
        }

        /* Fix for service text specifically */
        .services-grid .service-text,
        .services-grid .service-text *,
        .services-grid .service-title,
        .services-grid .service-title *,
        .services-grid .service-list li,
        .services-grid .service-list li span {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-right: 0 !important;
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
            word-break: break-word !important;
            display: block !important;
        }

        .services-grid .service-list li {
            display: flex !important;
            align-items: flex-start !important;
        }

        .services-grid .service-list li svg {
            flex-shrink: 0 !important;
        }

        .services-grid .service-list li span {
            flex: 1 !important;
            min-width: 0 !important;
        }

        /* === FAQ SECTION === */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        .faq-item {
            border: 1px solid var(--gray-200);
            background: var(--white);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: var(--black);
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--gray-100);
        }

        .faq-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 24px 24px 24px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray-600);
        }
