/*
 * Outstandinghone - Office Cleaning Services
 * Quantum Membrane Interface Design System
 */

/* ========== Variables ========== */
:root {
    /* Quantum Twilight Palette */
    --outstandinghone-primary: #1a237e;         /* Deep indigo base */
    --outstandinghone-primary-light: #534bae;   /* Medium indigo */
    --outstandinghone-primary-dark: #000051;    /* Dark indigo */
    --outstandinghone-accent: #00e5ff;          /* Electric cyan pulse */
    --outstandinghone-accent-dim: rgba(0, 229, 255, 0.3);  /* Subdued cyan */
    --outstandinghone-accent-dark: #00b8cc;     /* Darker cyan */

    /* Biomechanical Silver Palette */
    --outstandinghone-silver-light: #f5f5f6;    /* Light silver */
    --outstandinghone-silver: #e0e0e0;          /* Medium silver */
    --outstandinghone-silver-dark: #9e9e9e;     /* Dark silver */
    --outstandinghone-biolum: #64ffda;          /* Bioluminescent highlight */

    /* Holographic Membrane Palette */
    --outstandinghone-membrane-light: rgba(255, 255, 255, 0.9);  /* Translucent pearl */
    --outstandinghone-membrane: rgba(240, 244, 248, 0.8);        /* Pearl base */
    --outstandinghone-interference-1: #b39ddb;  /* Spectral interference violet */
    --outstandinghone-interference-2: #81d4fa;  /* Spectral interference blue */

    /* Text Colors */
    --outstandinghone-text-dark: #263238;       /* Primary text */
    --outstandinghone-text-medium: #546e7a;     /* Secondary text */
    --outstandinghone-text-light: #b0bec5;      /* Tertiary text */

    /* Success/Error States */
    --outstandinghone-success: #00c853;         /* Success green */
    --outstandinghone-error: #ff1744;           /* Error red */
    --outstandinghone-warning: #ffab00;         /* Warning amber */

    /* Typography */
    --outstandinghone-font-heading: 'Space Grotesk', sans-serif;
    --outstandinghone-font-body: 'Outfit', sans-serif;
    --outstandinghone-font-size-xs: 0.75rem;   /* 12px */
    --outstandinghone-font-size-sm: 0.875rem;  /* 14px */
    --outstandinghone-font-size-md: 1rem;      /* 16px */
    --outstandinghone-font-size-lg: 1.125rem;  /* 18px */
    --outstandinghone-font-size-xl: 1.25rem;   /* 20px */
    --outstandinghone-font-size-2xl: 1.5rem;   /* 24px */
    --outstandinghone-font-size-3xl: 2rem;     /* 32px */
    --outstandinghone-font-size-4xl: 2.5rem;   /* 40px */
    --outstandinghone-font-size-5xl: 3rem;     /* 48px */

    /* Spacing System */
    --outstandinghone-space-quantum: 0.125rem;  /* 2px */
    --outstandinghone-space-xs: 0.25rem;        /* 4px */
    --outstandinghone-space-sm: 0.5rem;         /* 8px */
    --outstandinghone-space-md: 1rem;           /* 16px */
    --outstandinghone-space-lg: 1.5rem;         /* 24px */
    --outstandinghone-space-xl: 2rem;           /* 32px */
    --outstandinghone-space-2xl: 3rem;          /* 48px */
    --outstandinghone-space-3xl: 4rem;          /* 64px */
    --outstandinghone-space-4xl: 6rem;          /* 96px */

    /* Border Radius */
    --outstandinghone-radius-sm: 0.25rem;        /* 4px */
    --outstandinghone-radius-md: 0.5rem;         /* 8px */
    --outstandinghone-radius-lg: 1rem;           /* 16px */
    --outstandinghone-radius-xl: 1.5rem;         /* 24px */
    --outstandinghone-radius-2xl: 2rem;          /* 32px */
    --outstandinghone-radius-circle: 50%;        /* Circle */
    --outstandinghone-radius-pill: 9999px;       /* Pill shape */

    /* Shadows - Quantum Field Effect */
    --outstandinghone-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 229, 255, 0.05);
    --outstandinghone-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 229, 255, 0.08);
    --outstandinghone-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 229, 255, 0.12);
    --outstandinghone-shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 229, 255, 0.15);
    --outstandinghone-glow-sm: 0 0 8px rgba(0, 229, 255, 0.3);
    --outstandinghone-glow-md: 0 0 16px rgba(0, 229, 255, 0.4);
    --outstandinghone-glow-lg: 0 0 24px rgba(0, 229, 255, 0.5);

    /* Transitions */
    --outstandinghone-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --outstandinghone-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --outstandinghone-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --outstandinghone-transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
    --outstandinghone-transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Layout */
    --outstandinghone-header-height: 5rem;      /* 80px */
    --outstandinghone-container-max: 1280px;
    --outstandinghone-grid-gap: 2rem;           /* 32px */

    /* Z-Index Layers */
    --outstandinghone-z-background: -1;
    --outstandinghone-z-default: 1;
    --outstandinghone-z-hover: 10;
    --outstandinghone-z-sticky: 50;
    --outstandinghone-z-header: 100;
    --outstandinghone-z-modal: 500;
    --outstandinghone-z-toast: 600;
    --outstandinghone-z-tooltip: 700;
}

/* ========== Reset & Base Styles ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--outstandinghone-font-body);
    font-size: var(--outstandinghone-font-size-md);
    line-height: 1.6;
    color: var(--outstandinghone-text-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: var(--outstandinghone-silver-light);
    background-image: linear-gradient(135deg,
    var(--outstandinghone-membrane-light) 0%,
    var(--outstandinghone-membrane) 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--outstandinghone-font-heading);
    line-height: 1.2;
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-md);
    font-weight: 600;
}

h1 {
    font-size: var(--outstandinghone-font-size-4xl);
}

h2 {
    font-size: var(--outstandinghone-font-size-3xl);
}

h3 {
    font-size: var(--outstandinghone-font-size-2xl);
}

h4 {
    font-size: var(--outstandinghone-font-size-xl);
}

h5 {
    font-size: var(--outstandinghone-font-size-lg);
}

h6 {
    font-size: var(--outstandinghone-font-size-md);
}

p {
    margin-bottom: var(--outstandinghone-space-md);
}

a {
    color: var(--outstandinghone-primary);
    text-decoration: none;
    transition: color var(--outstandinghone-transition-fast),
    transform var(--outstandinghone-transition-fast);
    position: relative;
    display: inline-block;
}

a:hover {
    color: var(--outstandinghone-accent);
}

img, video, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select, button {
    font: inherit;
}

/* ========== Quantum Membrane Background ========== */
.outstandinghone-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--outstandinghone-z-background);
    overflow: hidden;
    pointer-events: none;
}

.outstandinghone-wave {
    position: absolute;
    border-radius: 43%;
    opacity: 0.15;
    background-color: transparent;
    transform-origin: center center;
    will-change: transform, opacity;
}

.outstandinghone-wave-1 {
    bottom: -20%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
            ellipse at center,
            var(--outstandinghone-accent),
            transparent 70%
    );
    animation: outstandinghone-wave-float 25s infinite linear;
}

.outstandinghone-wave-2 {
    bottom: -20%;
    right: -10%;
    width: 130%;
    height: 130%;
    background: radial-gradient(
            ellipse at center,
            var(--outstandinghone-primary),
            transparent 70%
    );
    animation: outstandinghone-wave-float 22s infinite linear reverse;
    animation-delay: -5s;
}

.outstandinghone-wave-3 {
    top: -20%;
    left: 30%;
    width: 110%;
    height: 110%;
    background: radial-gradient(
            ellipse at center,
            var(--outstandinghone-biolum),
            transparent 70%
    );
    animation: outstandinghone-wave-float 28s infinite linear;
    animation-delay: -8s;
}

@keyframes outstandinghone-wave-float {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ========== Container ========== */
.outstandinghone-container {
    width: 90%;
    max-width: var(--outstandinghone-container-max);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ========== Header & Navigation ========== */
.outstandinghone-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--outstandinghone-z-header);
    transition: all var(--outstandinghone-transition-normal);
    padding: var(--outstandinghone-space-md) var(--outstandinghone-space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.8);
    height: var(--outstandinghone-header-height);
}

.outstandinghone-header.outstandinghone-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--outstandinghone-shadow-md);
}

.outstandinghone-header.outstandinghone-hidden {
    transform: translateY(-100%);
}

.outstandinghone-logo-container {
    display: flex;
    align-items: center;
}

.outstandinghone-logo {
    display: flex;
    align-items: center;
    font-family: var(--outstandinghone-font-heading);
    font-weight: 700;
    font-size: var(--outstandinghone-font-size-2xl);
    color: var(--outstandinghone-primary);
    position: relative;
    transition: all var(--outstandinghone-transition-normal);
}

.outstandinghone-logo:hover {
    transform: scale(1.05);
    color: var(--outstandinghone-primary-light);
}

.outstandinghone-logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    transition: width var(--outstandinghone-transition-normal);
}

.outstandinghone-logo:hover::after {
    width: 100%;
}

.outstandinghone-logo-text {
    position: relative;
    z-index: 2;
}

.outstandinghone-logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--outstandinghone-accent);
    border-radius: var(--outstandinghone-radius-circle);
    margin-left: var(--outstandinghone-space-xs);
    display: block;
    box-shadow: 0 0 12px var(--outstandinghone-accent);
    animation: outstandinghone-pulse 2s infinite;
}

@keyframes outstandinghone-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
        box-shadow: 0 0 20px var(--outstandinghone-accent);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.outstandinghone-nav {
    display: flex;
    align-items: center;
}

.outstandinghone-nav-list {
    display: flex;
    gap: var(--outstandinghone-space-xl);
}

.outstandinghone-nav-item {
    position: relative;
}

.outstandinghone-nav-link {
    font-size: var(--outstandinghone-font-size-md);
    font-weight: 500;
    color: var(--outstandinghone-text-dark);
    padding: var(--outstandinghone-space-sm) var(--outstandinghone-space-sm);
    position: relative;
    display: block;
    transition: all var(--outstandinghone-transition-normal);
    transform-style: preserve-3d;
    perspective: 800px;
}

.outstandinghone-nav-link:hover,
.outstandinghone-nav-link.outstandinghone-active {
    color: var(--outstandinghone-primary);
}

.outstandinghone-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    transition: width var(--outstandinghone-transition-normal) var(--outstandinghone-transition-bezier);
    transform-origin: left;
}

.outstandinghone-nav-link:hover::after,
.outstandinghone-nav-link.outstandinghone-active::after {
    width: 100%;
}

.outstandinghone-nav-link.outstandinghone-active {
    font-weight: 600;
}

.outstandinghone-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: calc(var(--outstandinghone-z-header) + 10);
    position: fixed;
    top: 1.8rem;
    right: var(--outstandinghone-space-xl);
}

.outstandinghone-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--outstandinghone-primary);
    border-radius: var(--outstandinghone-radius-pill);
    transition: all var(--outstandinghone-transition-fast);
    transform-origin: center;
}

.outstandinghone-menu-active .outstandinghone-menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: var(--outstandinghone-primary);
}

.outstandinghone-menu-active .outstandinghone-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.outstandinghone-menu-active .outstandinghone-menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--outstandinghone-primary);
}

/* ========== Hero Section ========== */
.outstandinghone-hero {
    padding: calc(var(--outstandinghone-header-height) + var(--outstandinghone-space-3xl)) 0 var(--outstandinghone-space-4xl);
    overflow: hidden;
    position: relative;
}

.outstandinghone-hero .outstandinghone-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--outstandinghone-space-2xl);
    align-items: center;
}

.outstandinghone-hero-content {
    position: relative;
    z-index: 2;
    animation: outstandinghone-fade-in 1s var(--outstandinghone-transition-bezier);
}

.outstandinghone-hero-title {
    font-size: var(--outstandinghone-font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--outstandinghone-space-lg);
    color: var(--outstandinghone-primary);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.outstandinghone-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    border-radius: var(--outstandinghone-radius-pill);
}

.outstandinghone-hero-subtitle {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-text-medium);
    margin-bottom: var(--outstandinghone-space-xl);
    max-width: 540px;
}

.outstandinghone-hero-buttons {
    display: flex;
    gap: var(--outstandinghone-space-md);
    margin-top: var(--outstandinghone-space-xl);
}

.outstandinghone-hero-image {
    position: relative;
    z-index: 2;
    animation: outstandinghone-fade-in-right 1s var(--outstandinghone-transition-bezier);
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.outstandinghone-image-container {
    position: relative;
    border-radius: var(--outstandinghone-radius-lg);
    overflow: hidden;
    box-shadow: var(--outstandinghone-shadow-lg);
    transition: all var(--outstandinghone-transition-normal);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.outstandinghone-image-container:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
    box-shadow: var(--outstandinghone-shadow-xl), var(--outstandinghone-glow-sm);
}

.outstandinghone-image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--outstandinghone-transition-slow);
}

.outstandinghone-image-container:hover img {
    transform: scale(1.05);
}

.outstandinghone-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px dashed var(--outstandinghone-accent);
    border-radius: var(--outstandinghone-radius-lg);
    opacity: 0.5;
    z-index: -1;
    animation: outstandinghone-float 8s ease-in-out infinite;
}

@keyframes outstandinghone-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* ========== Services Overview Section ========== */
.outstandinghone-services-overview {
    padding: var(--outstandinghone-space-4xl) 0;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.outstandinghone-services-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at bottom right,
            var(--outstandinghone-accent-dim) 0%,
            rgba(255, 255, 255, 0) 70%
    );
    z-index: 0;
}

.outstandinghone-section-header {
    text-align: center;
    margin-bottom: var(--outstandinghone-space-3xl);
    position: relative;
    z-index: 2;
}

.outstandinghone-section-title {
    font-size: var(--outstandinghone-font-size-3xl);
    color: var(--outstandinghone-primary);
    position: relative;
    display: inline-block;
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    border-radius: var(--outstandinghone-radius-pill);
}

.outstandinghone-section-subtitle {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-text-medium);
    max-width: 700px;
    margin: var(--outstandinghone-space-md) auto 0;
}

.outstandinghone-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--outstandinghone-space-xl);
    position: relative;
    z-index: 2;
}

.outstandinghone-service-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--outstandinghone-radius-lg);
    padding: var(--outstandinghone-space-xl);
    transition: all var(--outstandinghone-transition-normal);
    box-shadow: var(--outstandinghone-shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--outstandinghone-transition-normal);
}

.outstandinghone-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--outstandinghone-shadow-lg), var(--outstandinghone-glow-sm);
    background: rgba(255, 255, 255, 0.9);
}

.outstandinghone-service-card:hover::before {
    transform: scaleX(1);
}

.outstandinghone-service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--outstandinghone-radius-circle);
    background-color: rgba(26, 35, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--outstandinghone-space-lg);
    color: var(--outstandinghone-primary);
    font-size: var(--outstandinghone-font-size-2xl);
    transition: all var(--outstandinghone-transition-normal);
    position: relative;
    overflow: hidden;
}

.outstandinghone-service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 30% 30%,
            var(--outstandinghone-accent-dim),
            transparent 70%
    );
    opacity: 0;
    transition: opacity var(--outstandinghone-transition-normal);
}

.outstandinghone-service-card:hover .outstandinghone-service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--outstandinghone-primary);
    color: white;
    box-shadow: var(--outstandinghone-glow-sm);
}

.outstandinghone-service-card:hover .outstandinghone-service-icon::after {
    opacity: 1;
}

.outstandinghone-service-title {
    font-size: var(--outstandinghone-font-size-xl);
    margin-bottom: var(--outstandinghone-space-md);
    color: var(--outstandinghone-primary);
    font-weight: 600;
}

.outstandinghone-service-description {
    color: var(--outstandinghone-text-medium);
    margin-bottom: var(--outstandinghone-space-md);
    flex-grow: 1;
}

.outstandinghone-service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--outstandinghone-accent-dark);
    transition: all var(--outstandinghone-transition-fast);
    margin-top: auto;
}

.outstandinghone-service-link i {
    font-size: 12px;
    margin-left: var(--outstandinghone-space-sm);
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-service-link:hover {
    color: var(--outstandinghone-primary);
    transform: translateX(5px);
}

.outstandinghone-service-link:hover i {
    transform: translateX(3px);
}

.outstandinghone-services-cta {
    text-align: center;
    margin-top: var(--outstandinghone-space-2xl);
}

/* ========== Features Section ========== */
.outstandinghone-features {
    padding: var(--outstandinghone-space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.outstandinghone-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--outstandinghone-space-3xl);
    align-items: center;
    position: relative;
}

.outstandinghone-features-image {
    position: relative;
}

.outstandinghone-image-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.outstandinghone-image-particles .particle {
    position: absolute;
    background: var(--outstandinghone-biolum);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 10px var(--outstandinghone-biolum);
}

.outstandinghone-image-particles .particle:nth-child(1) {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 10%;
    animation: outstandinghone-particle-float 8s ease-in-out infinite;
}

.outstandinghone-image-particles .particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 15%;
    animation: outstandinghone-particle-float 12s ease-in-out infinite;
    animation-delay: -5s;
}

.outstandinghone-image-particles .particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 10%;
    animation: outstandinghone-particle-float 10s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes outstandinghone-particle-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(0, -60px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
}

.outstandinghone-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-xl);
}

.outstandinghone-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-md);
    transition: transform var(--outstandinghone-transition-normal);
    position: relative;
}

.outstandinghone-feature-item:hover {
    transform: translateX(10px);
}

.outstandinghone-feature-item::after {
    content: '';
    position: absolute;
    left: calc(50px + var(--outstandinghone-space-md));
    bottom: -8px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary-light),
    transparent
    );
    transition: width var(--outstandinghone-transition-normal);
}

.outstandinghone-feature-item:hover::after {
    width: calc(100% - 50px - var(--outstandinghone-space-md));
}

.outstandinghone-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--outstandinghone-radius-circle);
    background-color: var(--outstandinghone-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--outstandinghone-font-size-xl);
    box-shadow: var(--outstandinghone-shadow-md);
    transition: all var(--outstandinghone-transition-normal);
    position: relative;
    overflow: hidden;
}

.outstandinghone-feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 30% 30%,
            var(--outstandinghone-accent-dim),
            transparent 70%
    );
    opacity: 0;
    transition: opacity var(--outstandinghone-transition-normal);
}

.outstandinghone-feature-item:hover .outstandinghone-feature-icon {
    transform: rotate(10deg);
    background-color: var(--outstandinghone-accent-dark);
    box-shadow: var(--outstandinghone-shadow-md), var(--outstandinghone-glow-sm);
}

.outstandinghone-feature-item:hover .outstandinghone-feature-icon::after {
    opacity: 1;
}

.outstandinghone-feature-content {
    flex-grow: 1;
}

.outstandinghone-feature-title {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-sm);
    font-weight: 600;
}

.outstandinghone-feature-description {
    color: var(--outstandinghone-text-medium);
}

/* ========== CTA Section ========== */
.outstandinghone-cta {
    padding: var(--outstandinghone-space-3xl) 0;
    background: linear-gradient(135deg,
    var(--outstandinghone-primary-dark),
    var(--outstandinghone-primary)
    );
    position: relative;
    overflow: hidden;
}

.outstandinghone-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.outstandinghone-cta-title {
    font-size: var(--outstandinghone-font-size-3xl);
    color: white;
    margin-bottom: var(--outstandinghone-space-md);
}

.outstandinghone-cta-description {
    font-size: var(--outstandinghone-font-size-lg);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto var(--outstandinghone-space-xl);
}

.outstandinghone-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--outstandinghone-space-md);
}

.outstandinghone-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.outstandinghone-blob-1,
.outstandinghone-blob-2,
.outstandinghone-blob-3 {
    position: absolute;
    border-radius: 43%;
    opacity: 0.1;
}

.outstandinghone-blob-1 {
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: white;
    animation: outstandinghone-rotate 25s linear infinite;
}

.outstandinghone-blob-2 {
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background-color: var(--outstandinghone-accent);
    animation: outstandinghone-rotate 22s linear infinite reverse;
}

.outstandinghone-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--outstandinghone-biolum);
    opacity: 0.05;
    animation: outstandinghone-rotate 30s linear infinite;
}

@keyframes outstandinghone-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ========== Footer ========== */
.outstandinghone-footer {
    padding: var(--outstandinghone-space-3xl) 0 var(--outstandinghone-space-xl);
    background-color: rgba(240, 244, 248, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.outstandinghone-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent),
    var(--outstandinghone-biolum)
    );
}

.outstandinghone-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--outstandinghone-space-2xl);
}

.outstandinghone-footer-logo {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-sm);
}

.outstandinghone-footer-tagline {
    color: var(--outstandinghone-text-medium);
    font-size: var(--outstandinghone-font-size-sm);
}

.outstandinghone-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--outstandinghone-space-xl);
}

.outstandinghone-footer-heading {
    font-size: var(--outstandinghone-font-size-md);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-lg);
    font-weight: 600;
}

.outstandinghone-footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-sm);
}

.outstandinghone-footer-nav a,
.outstandinghone-footer-contact a {
    color: var(--outstandinghone-text-medium);
    font-size: var(--outstandinghone-font-size-sm);
    transition: all var(--outstandinghone-transition-fast);
    display: inline-block;
}

.outstandinghone-footer-nav a:hover,
.outstandinghone-footer-contact a:hover {
    color: var(--outstandinghone-primary);
    transform: translateX(3px);
}

.outstandinghone-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-md);
}

.outstandinghone-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-sm);
    font-size: var(--outstandinghone-font-size-sm);
    color: var(--outstandinghone-text-medium);
}

.outstandinghone-footer-contact i {
    color: var(--outstandinghone-primary);
    margin-top: 3px;
}

.outstandinghone-footer-bottom {
    margin-top: var(--outstandinghone-space-2xl);
    padding-top: var(--outstandinghone-space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.outstandinghone-copyright {
    font-size: var(--outstandinghone-font-size-xs);
    color: var(--outstandinghone-text-light);
}

/* ========== Buttons ========== */
.outstandinghone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--outstandinghone-space-sm);
    padding: var(--outstandinghone-space-md) var(--outstandinghone-space-lg);
    border-radius: var(--outstandinghone-radius-md);
    font-weight: 500;
    transition: all var(--outstandinghone-transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.outstandinghone-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: transform var(--outstandinghone-transition-slow);
    z-index: -1;
}

.outstandinghone-button:hover::before {
    transform: translateX(200%);
}

.outstandinghone-button-primary {
    background-color: var(--outstandinghone-primary);
    color: white;
    box-shadow: var(--outstandinghone-shadow-md);
}

.outstandinghone-button-primary:hover {
    background-color: var(--outstandinghone-primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--outstandinghone-shadow-lg), var(--outstandinghone-glow-sm);
}

.outstandinghone-button-secondary {
    background-color: var(--outstandinghone-biolum);
    color: var(--outstandinghone-primary-dark);
    box-shadow: var(--outstandinghone-shadow-md);
}

.outstandinghone-button-secondary:hover {
    background-color: var(--outstandinghone-accent);
    color: var(--outstandinghone-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--outstandinghone-shadow-lg), var(--outstandinghone-glow-sm);
}

.outstandinghone-button-outline {
    background-color: transparent;
    border: 2px solid var(--outstandinghone-primary);
    color: var(--outstandinghone-primary);
}

.outstandinghone-button-outline:hover {
    background-color: var(--outstandinghone-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--outstandinghone-shadow-md);
}

.outstandinghone-button-light {
    background-color: white;
    color: var(--outstandinghone-primary);
    box-shadow: var(--outstandinghone-shadow-md);
}

.outstandinghone-button-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--outstandinghone-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--outstandinghone-shadow-lg);
}

.outstandinghone-button-text {
    background-color: transparent;
    color: white;
    padding: var(--outstandinghone-space-sm) var(--outstandinghone-space-md);
}

.outstandinghone-button-text:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ========== Cookie Consent ========== */
.outstandinghone-cookie-consent {
    position: fixed;
    bottom: var(--outstandinghone-space-md);
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: var(--outstandinghone-membrane-light);
    border-radius: var(--outstandinghone-radius-md);
    box-shadow: var(--outstandinghone-shadow-xl);
    z-index: var(--outstandinghone-z-toast);
    padding: var(--outstandinghone-space-lg);
    display: none;
    animation: outstandinghone-fade-in-up 0.5s ease-out forwards;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-md);
}

.outstandinghone-cookie-content p {
    margin: 0;
    font-size: var(--outstandinghone-font-size-sm);
}

.outstandinghone-cookie-buttons {
    display: flex;
    gap: var(--outstandinghone-space-md);
}

.outstandinghone-cookie-accept {
    padding: var(--outstandinghone-space-sm) var(--outstandinghone-space-md);
    background-color: var(--outstandinghone-biolum);
    color: var(--outstandinghone-primary-dark);
    border: none;
    border-radius: var(--outstandinghone-radius-sm);
    cursor: pointer;
    font-size: var(--outstandinghone-font-size-sm);
    font-weight: 500;
    transition: all var(--outstandinghone-transition-fast);
}

.outstandinghone-cookie-accept:hover {
    background-color: var(--outstandinghone-accent);
    transform: translateY(-2px);
    box-shadow: var(--outstandinghone-shadow-sm);
}

.outstandinghone-cookie-more {
    padding: var(--outstandinghone-space-sm) 0;
    color: var(--outstandinghone-text-medium);
    font-size: var(--outstandinghone-font-size-sm);
    cursor: pointer;
    text-decoration: underline;
}

.outstandinghone-cookie-more:hover {
    color: var(--outstandinghone-primary);
}

/* ========== Contact Page ========== */
.outstandinghone-contact {
    padding: calc(var(--outstandinghone-header-height) + var(--outstandinghone-space-2xl)) 0 var(--outstandinghone-space-4xl);
}

.outstandinghone-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--outstandinghone-space-3xl);
    align-items: flex-start;
}

.outstandinghone-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-xl);
}

.outstandinghone-contact-heading {
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-contact-title {
    font-size: var(--outstandinghone-font-size-3xl);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-sm);
}

.outstandinghone-contact-subtitle {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-text-medium);
}

.outstandinghone-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-md);
    transition: transform var(--outstandinghone-transition-normal);
}

.outstandinghone-contact-detail:hover {
    transform: translateX(8px);
}

.outstandinghone-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: var(--outstandinghone-radius-circle);
    background-color: rgba(26, 35, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-primary);
    transition: all var(--outstandinghone-transition-normal);
}

.outstandinghone-contact-detail:hover .outstandinghone-contact-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--outstandinghone-primary);
    color: white;
    box-shadow: var(--outstandinghone-glow-sm);
}

.outstandinghone-contact-content {
    flex-grow: 1;
}

.outstandinghone-contact-label {
    font-size: var(--outstandinghone-font-size-sm);
    color: var(--outstandinghone-text-light);
    margin-bottom: var(--outstandinghone-space-xs);
}

.outstandinghone-contact-value {
    font-size: var(--outstandinghone-font-size-md);
    color: var(--outstandinghone-text-dark);
}

.outstandinghone-contact-value a {
    color: var(--outstandinghone-primary);
    transition: color var(--outstandinghone-transition-fast);
}

.outstandinghone-contact-value a:hover {
    color: var(--outstandinghone-accent-dark);
}

.outstandinghone-contact-map {
    border-radius: var(--outstandinghone-radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--outstandinghone-shadow-lg);
    margin-top: var(--outstandinghone-space-xl);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    transition: all var(--outstandinghone-transition-normal);
}

.outstandinghone-contact-map:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: var(--outstandinghone-shadow-xl), var(--outstandinghone-glow-sm);
}

.outstandinghone-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.outstandinghone-contact-form {
    background-color: var(--outstandinghone-membrane-light);
    border-radius: var(--outstandinghone-radius-lg);
    padding: var(--outstandinghone-space-xl);
    box-shadow: var(--outstandinghone-shadow-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
            to bottom,
            var(--outstandinghone-primary),
            var(--outstandinghone-accent)
    );
}

.outstandinghone-form-group {
    margin-bottom: var(--outstandinghone-space-lg);
    position: relative;
}

.outstandinghone-form-label {
    display: block;
    margin-bottom: var(--outstandinghone-space-sm);
    font-size: var(--outstandinghone-font-size-sm);
    color: var(--outstandinghone-text-dark);
    font-weight: 500;
}

.outstandinghone-form-input,
.outstandinghone-form-textarea {
    width: 100%;
    padding: var(--outstandinghone-space-md);
    border-radius: var(--outstandinghone-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--outstandinghone-font-body);
    font-size: var(--outstandinghone-font-size-md);
    background-color: var(--outstandinghone-silver-light);
    transition: all var(--outstandinghone-transition-fast);
}

.outstandinghone-form-input:focus,
.outstandinghone-form-textarea:focus {
    outline: none;
    border-color: var(--outstandinghone-primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1), var(--outstandinghone-glow-sm);
    background-color: white;
}

.outstandinghone-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.outstandinghone-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-sm);
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--outstandinghone-primary);
}

.outstandinghone-form-checkbox label {
    font-size: var(--outstandinghone-font-size-sm);
    color: var(--outstandinghone-text-medium);
}

.outstandinghone-form-submit {
    width: 100%;
}

.outstandinghone-form-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
}

.outstandinghone-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--outstandinghone-accent);
    border-radius: 43%;
    animation: outstandinghone-rotate 20s linear infinite;
}

.outstandinghone-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.outstandinghone-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--outstandinghone-primary);
    opacity: 0.3;
}

.outstandinghone-circle:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 10%;
}

.outstandinghone-circle:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 60%;
    left: 30%;
}

.outstandinghone-circle:nth-child(3) {
    width: 15px;
    height: 15px;
    top: 40%;
    left: 60%;
}

/* ========== Services Page ========== */
.outstandinghone-services {
    padding: calc(var(--outstandinghone-header-height) + var(--outstandinghone-space-md)) 0 var(--outstandinghone-space-2xl);
}

.outstandinghone-service-section {
    padding: var(--outstandinghone-space-3xl) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.outstandinghone-service-section:last-child {
    border-bottom: none;
}

.outstandinghone-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--outstandinghone-space-3xl);
    align-items: center;
}

.outstandinghone-service-section:nth-child(even) .outstandinghone-service-content {
    direction: rtl;
}

.outstandinghone-service-section:nth-child(even) .outstandinghone-service-text,
.outstandinghone-service-section:nth-child(even) .outstandinghone-service-media {
    direction: ltr;
}

.outstandinghone-service-text h2 {
    font-size: var(--outstandinghone-font-size-2xl);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-md);
}

.outstandinghone-service-text p {
    color: var(--outstandinghone-text-medium);
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-service-features {
    margin-top: var(--outstandinghone-space-xl);
}

.outstandinghone-service-features-title {
    font-size: var(--outstandinghone-font-size-md);
    font-weight: 600;
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-md);
}

.outstandinghone-service-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-sm);
}

.outstandinghone-service-feature-item {
    display: flex;
    align-items: center;
    gap: var(--outstandinghone-space-sm);
    padding: var(--outstandinghone-space-sm) 0;
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-service-feature-item:hover {
    transform: translateX(5px);
}

.outstandinghone-service-feature-icon {
    color: var(--outstandinghone-biolum);
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-service-feature-item:hover .outstandinghone-service-feature-icon {
    transform: scale(1.2);
    color: var(--outstandinghone-accent);
}

.outstandinghone-service-feature-text {
    font-size: var(--outstandinghone-font-size-md);
    color: var(--outstandinghone-text-dark);
}

.outstandinghone-service-media {
    position: relative;
}

/* ========== Pricing Page ========== */
.outstandinghone-pricing {
    padding: calc(var(--outstandinghone-header-height) + var(--outstandinghone-space-2xl)) 0 var(--outstandinghone-space-4xl);
}

.outstandinghone-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--outstandinghone-space-xl);
    margin-top: var(--outstandinghone-space-2xl);
}

.outstandinghone-pricing-card {
    background-color: var(--outstandinghone-membrane-light);
    border-radius: var(--outstandinghone-radius-lg);
    overflow: hidden;
    box-shadow: var(--outstandinghone-shadow-md);
    transition: all var(--outstandinghone-transition-normal);
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--outstandinghone-shadow-xl), var(--outstandinghone-glow-sm);
}

.outstandinghone-pricing-header {
    padding: var(--outstandinghone-space-xl);
    background: linear-gradient(135deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-primary-dark)
    );
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outstandinghone-pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at top right,
            var(--outstandinghone-accent-dim),
            transparent 70%
    );
    opacity: 0;
    transition: opacity var(--outstandinghone-transition-normal);
}

.outstandinghone-pricing-card:hover .outstandinghone-pricing-header::before {
    opacity: 1;
}

.outstandinghone-pricing-title {
    font-size: var(--outstandinghone-font-size-xl);
    margin-bottom: var(--outstandinghone-space-md);
    color: white;
}

.outstandinghone-pricing-price {
    font-size: var(--outstandinghone-font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--outstandinghone-space-sm);
    background: linear-gradient(90deg,
    var(--outstandinghone-accent),
    white
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.outstandinghone-pricing-period {
    font-size: var(--outstandinghone-font-size-sm);
    opacity: 0.8;
}

.outstandinghone-pricing-body {
    padding: var(--outstandinghone-space-xl);
}

.outstandinghone-pricing-features {
    margin-bottom: var(--outstandinghone-space-xl);
}

.outstandinghone-pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--outstandinghone-space-sm);
    padding: var(--outstandinghone-space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-pricing-feature:last-child {
    border-bottom: none;
}

.outstandinghone-pricing-feature:hover {
    transform: translateX(5px);
}

.outstandinghone-pricing-feature-icon {
    color: var(--outstandinghone-biolum);
    font-size: var(--outstandinghone-font-size-sm);
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-pricing-feature:hover .outstandinghone-pricing-feature-icon {
    transform: scale(1.2);
    color: var(--outstandinghone-accent);
}

.outstandinghone-pricing-feature-text {
    color: var(--outstandinghone-text-dark);
    font-size: var(--outstandinghone-font-size-sm);
}

.outstandinghone-pricing-footer {
    padding: 0 var(--outstandinghone-space-xl) var(--outstandinghone-space-xl);
}

.outstandinghone-additional-services {
    margin-top: var(--outstandinghone-space-4xl);
}

.outstandinghone-custom-quote {
    margin-top: var(--outstandinghone-space-3xl);
    background: linear-gradient(135deg,
    rgba(26, 35, 126, 0.05),
    rgba(0, 229, 255, 0.05)
    );
    border-radius: var(--outstandinghone-radius-lg);
    padding: var(--outstandinghone-space-2xl);
    position: relative;
    overflow: hidden;
}

.outstandinghone-custom-quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.outstandinghone-custom-quote-content h2 {
    margin-bottom: var(--outstandinghone-space-md);
    font-size: var(--outstandinghone-font-size-2xl);
}

.outstandinghone-custom-quote-content p {
    margin-bottom: var(--outstandinghone-space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.outstandinghone-custom-quote-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.2;
    background: radial-gradient(
            circle at center,
            var(--outstandinghone-accent),
            transparent 70%
    );
    z-index: 1;
}

.outstandinghone-faq-section {
    margin-top: var(--outstandinghone-space-4xl);
}

.outstandinghone-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--outstandinghone-space-xl);
    margin-top: var(--outstandinghone-space-2xl);
}

.outstandinghone-faq-item {
    background-color: var(--outstandinghone-membrane-light);
    border-radius: var(--outstandinghone-radius-lg);
    overflow: hidden;
    padding: var(--outstandinghone-space-lg);
    box-shadow: var(--outstandinghone-shadow-md);
    transition: all var(--outstandinghone-transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--outstandinghone-shadow-lg), var(--outstandinghone-glow-sm);
}

.outstandinghone-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: var(--outstandinghone-space-sm);
}

.outstandinghone-faq-question h3 {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-primary);
    margin: 0;
    flex-grow: 1;
}

.outstandinghone-faq-icon {
    color: var(--outstandinghone-primary);
    transition: transform var(--outstandinghone-transition-fast);
}

.outstandinghone-faq-item.active .outstandinghone-faq-icon {
    transform: rotate(180deg);
}

.outstandinghone-faq-answer {
    margin-top: var(--outstandinghone-space-md);
    padding-top: var(--outstandinghone-space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.outstandinghone-faq-item.active .outstandinghone-faq-answer {
    display: block;
    animation: outstandinghone-fade-in 0.3s ease-out;
}

.outstandinghone-faq-answer p {
    margin-bottom: 0;
    color: var(--outstandinghone-text-medium);
}

/* ========== Error Page ========== */
.outstandinghone-error {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--outstandinghone-space-xl);
}

.outstandinghone-error-content {
    position: relative;
    z-index: 2;
}

.outstandinghone-error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-md);
    line-height: 1;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.outstandinghone-error-code::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-accent)
    );
    border-radius: var(--outstandinghone-radius-pill);
}

.outstandinghone-error-title {
    font-size: var(--outstandinghone-font-size-3xl);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-error-message {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-text-medium);
    margin-bottom: var(--outstandinghone-space-2xl);
}

.outstandinghone-error-actions {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-xl);
    margin-top: var(--outstandinghone-space-2xl);
}

.outstandinghone-error-suggestions {
    text-align: left;
}

.outstandinghone-error-suggestions h2 {
    font-size: var(--outstandinghone-font-size-lg);
    margin-bottom: var(--outstandinghone-space-md);
}

.outstandinghone-error-suggestions ul {
    list-style-type: disc;
    padding-left: var(--outstandinghone-space-xl);
}

.outstandinghone-error-suggestions li {
    margin-bottom: var(--outstandinghone-space-sm);
    color: var(--outstandinghone-text-medium);
}

.outstandinghone-error-buttons {
    display: flex;
    justify-content: center;
    gap: var(--outstandinghone-space-md);
    margin: var(--outstandinghone-space-xl) 0;
}

.outstandinghone-error-links {
    text-align: left;
}

.outstandinghone-error-links h3 {
    font-size: var(--outstandinghone-font-size-md);
    margin-bottom: var(--outstandinghone-space-sm);
}

.outstandinghone-error-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--outstandinghone-space-md);
}

.outstandinghone-error-links li {
    margin-bottom: var(--outstandinghone-space-sm);
}

.outstandinghone-error-links a {
    display: flex;
    align-items: center;
    color: var(--outstandinghone-primary);
    transition: all var(--outstandinghone-transition-fast);
}

.outstandinghone-error-links a:hover {
    color: var(--outstandinghone-accent);
    transform: translateX(3px);
}

.outstandinghone-error-links i {
    margin-right: var(--outstandinghone-space-xs);
    font-size: var(--outstandinghone-font-size-sm);
}

.outstandinghone-error-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.outstandinghone-error-broom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-size: 5rem;
    color: var(--outstandinghone-primary);
    opacity: 0.2;
}

.outstandinghone-error-drops {
    position: absolute;
    width: 100%;
    height: 100%;
}

.outstandinghone-error-drops .drop {
    position: absolute;
    background-color: var(--outstandinghone-biolum);
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(0);
}

.outstandinghone-error-drops .drop.falling {
    animation: outstandinghone-drop 1.5s forwards cubic-bezier(0.6, 0.1, 0.3, 0.9);
}

@keyframes outstandinghone-drop {
    0% {
        transform: scale(0) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* ========== Thank You Page ========== */
.outstandinghone-thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--outstandinghone-space-xl);
}

.outstandinghone-thank-you-content {
    animation: outstandinghone-pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes outstandinghone-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.outstandinghone-thank-you-icon {
    font-size: 5rem;
    color: var(--outstandinghone-biolum);
    margin-bottom: var(--outstandinghone-space-lg);
    display: inline-block;
    animation: outstandinghone-check-animation 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
    transform: scale(0);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

@keyframes outstandinghone-check-animation {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.outstandinghone-thank-you-title {
    font-size: var(--outstandinghone-font-size-3xl);
    color: var(--outstandinghone-primary);
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-thank-you-message {
    font-size: var(--outstandinghone-font-size-lg);
    color: var(--outstandinghone-text-medium);
    margin-bottom: var(--outstandinghone-space-2xl);
}

.outstandinghone-thank-you-next {
    margin-top: var(--outstandinghone-space-2xl);
    background-color: var(--outstandinghone-membrane-light);
    border-radius: var(--outstandinghone-radius-lg);
    padding: var(--outstandinghone-space-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--outstandinghone-shadow-md);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outstandinghone-thank-you-next h2 {
    font-size: var(--outstandinghone-font-size-xl);
    margin-bottom: var(--outstandinghone-space-lg);
    text-align: center;
}

.outstandinghone-thank-you-steps {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-lg);
}

.outstandinghone-thank-you-steps li {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-md);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--outstandinghone-transition-normal);
}

.outstandinghone-thank-you-steps li.active {
    opacity: 1;
    transform: translateX(0);
}

.outstandinghone-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg,
    var(--outstandinghone-primary),
    var(--outstandinghone-primary-light)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: var(--outstandinghone-shadow-sm);
}

.outstandinghone-step-content h3 {
    font-size: var(--outstandinghone-font-size-lg);
    margin-bottom: var(--outstandinghone-space-xs);
    color: var(--outstandinghone-primary);
}

.outstandinghone-step-content p {
    font-size: var(--outstandinghone-font-size-md);
    color: var(--outstandinghone-text-medium);
    margin-bottom: 0;
}

.outstandinghone-thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: var(--outstandinghone-space-md);
    margin-top: var(--outstandinghone-space-2xl);
}

/* ========== Animations ========== */
@keyframes outstandinghone-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes outstandinghone-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes outstandinghone-fade-in-right {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes outstandinghone-fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes outstandinghone-pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform var(--outstandinghone-transition-normal),
    opacity var(--outstandinghone-transition-normal);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition: transform var(--outstandinghone-transition-normal),
    opacity var(--outstandinghone-transition-normal);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition: transform var(--outstandinghone-transition-normal),
    opacity var(--outstandinghone-transition-normal);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1200px) {
    :root {
        --outstandinghone-font-size-5xl: 2.75rem;
        --outstandinghone-font-size-4xl: 2.25rem;
        --outstandinghone-font-size-3xl: 1.75rem;
        --outstandinghone-space-4xl: 5rem;
    }

    .outstandinghone-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--outstandinghone-space-lg);
    }

    .outstandinghone-pricing-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    :root {
        --outstandinghone-font-size-4xl: 2rem;
        --outstandinghone-font-size-3xl: 1.75rem;
        --outstandinghone-space-3xl: 3.5rem;
    }

    .outstandinghone-hero .outstandinghone-container,
    .outstandinghone-features-content,
    .outstandinghone-contact-grid,
    .outstandinghone-service-content {
        grid-template-columns: 1fr;
        gap: var(--outstandinghone-space-2xl);
    }

    .outstandinghone-hero-image {
        order: -1;
    }

    .outstandinghone-footer-content {
        grid-template-columns: 1fr;
        gap: var(--outstandinghone-space-xl);
    }

    .outstandinghone-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .outstandinghone-services-grid,
    .outstandinghone-pricing-grid,
    .outstandinghone-faq-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .outstandinghone-pricing-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --outstandinghone-font-size-4xl: 1.75rem;
        --outstandinghone-font-size-3xl: 1.5rem;
        --outstandinghone-font-size-2xl: 1.25rem;
        --outstandinghone-space-4xl: 4rem;
        --outstandinghone-space-3xl: 3rem;
    }

    .outstandinghone-header {
        padding: var(--outstandinghone-space-md);
    }

    .outstandinghone-menu-toggle {
        display: flex;
    }

    .outstandinghone-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--outstandinghone-shadow-lg);
        transition: right var(--outstandinghone-transition-normal);
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: calc(var(--outstandinghone-z-header) + 5);
    }

    .outstandinghone-menu-active .outstandinghone-nav {
        right: 0;
    }

    .outstandinghone-nav-list {
        flex-direction: column;
        gap: var(--outstandinghone-space-xl);
        padding: var(--outstandinghone-space-2xl);
    }

    .outstandinghone-nav-link {
        font-size: var(--outstandinghone-font-size-lg);
    }

    .outstandinghone-hero-buttons,
    .outstandinghone-cta-buttons,
    .outstandinghone-thank-you-buttons,
    .outstandinghone-error-buttons {
        flex-direction: column;
        gap: var(--outstandinghone-space-md);
    }

    .outstandinghone-footer-links {
        grid-template-columns: 1fr;
        gap: var(--outstandinghone-space-xl);
    }

    .outstandinghone-service-section:nth-child(even) .outstandinghone-service-content {
        direction: ltr;
    }

    .outstandinghone-error-code {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --outstandinghone-font-size-4xl: 1.75rem;
        --outstandinghone-font-size-3xl: 1.5rem;
        --outstandinghone-font-size-2xl: 1.25rem;
        --outstandinghone-space-4xl: 3.5rem;
        --outstandinghone-space-3xl: 2.5rem;
        --outstandinghone-space-2xl: 2rem;
    }

    .outstandinghone-logo {
        font-size: var(--outstandinghone-font-size-xl);
    }

    .outstandinghone-hero {
        padding-top: calc(var(--outstandinghone-header-height) + var(--outstandinghone-space-xl));
    }

    .outstandinghone-hero-title {
        font-size: var(--outstandinghone-font-size-3xl);
    }

    .outstandinghone-hero-subtitle {
        font-size: var(--outstandinghone-font-size-md);
    }

    .outstandinghone-button {
        width: 100%;
    }

    .outstandinghone-section-title {
        font-size: var(--outstandinghone-font-size-2xl);
    }

    .outstandinghone-section-subtitle {
        font-size: var(--outstandinghone-font-size-md);
    }
}

/* ============================================== */
/* === Palveluosioiden Yksityiskohtainen Tyyli === */
/* ============================================== */

/* Asettaa ulkoisen välityksen palveluosioiden väliin */
.outstandinghone-service-section {
    padding: var(--outstandinghone-space-4xl) 0; /* Huom: Voit poistaa tämän, jos .outstandinghone-services jo asettaa paddingin */
    margin-bottom: var(--outstandinghone-space-4xl);
}

.outstandinghone-service-section:last-child {
    margin-bottom: 0;
}

/* Määrittelee palvelun sisällön ruudukkoasettelun (2 saraketta) */
.outstandinghone-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Kaksi tasaleveää saraketta */
    gap: var(--outstandinghone-space-3xl);
    align-items: center;
}

/* Vuorotteleva asettelu (kuva ja teksti vaihtavat paikkaa joka toisessa osiossa) */
.outstandinghone-service-section:nth-child(even) .outstandinghone-service-content {
    direction: rtl; /* Kääntää elementtien järjestyksen visuaalisesti */
}

/* Palauttaa tekstin lukusuunnan normaaliksi (vasemmalta oikealle) lapsielementeissä */
.outstandinghone-service-text,
.outstandinghone-service-media {
    direction: ltr;
}

/* --- Typografia ja ominaisuuslistan tyylittely --- */

.outstandinghone-service-text h2 {
    color: var(--outstandinghone-primary);
    position: relative;
    display: inline-block;
    margin-bottom: var(--outstandinghone-space-lg);
}

.outstandinghone-service-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--outstandinghone-accent), var(--outstandinghone-primary));
    border-radius: var(--outstandinghone-radius-pill);
}

.outstandinghone-service-features {
    margin: var(--outstandinghone-space-xl) 0;
    padding-left: var(--outstandinghone-space-xl);
    border-left: 3px solid var(--outstandinghone-accent-dim);
}

.outstandinghone-service-features-title {
    color: var(--outstandinghone-text-dark);
    font-weight: 600;
    font-size: var(--outstandinghone-font-size-md);
    margin-bottom: var(--outstandinghone-space-md);
}

.outstandinghone-service-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--outstandinghone-space-sm);
}

.outstandinghone-service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--outstandinghone-space-md);
    font-size: var(--outstandinghone-font-size-md);
    color: var(--outstandinghone-text-dark);
}

.outstandinghone-service-feature-icon {
    color: var(--outstandinghone-success); /* Käyttää success-väriä V-kuvakkeelle */
    margin-top: 3px;
    font-size: var(--outstandinghone-font-size-xl);
}

/* ============================================== */
/* === Responsiivisuus (max-width: 768px) === */
/* ============================================== */

@media (max-width: 768px) {

    .outstandinghone-service-section {
        margin-bottom: var(--outstandinghone-space-3xl);
        padding: var(--outstandinghone-space-3xl) 0;
    }

    /* Palauttaa ruudukon yhdeksi sarakkeeksi pienillä näytöillä */
    .outstandinghone-service-content {
        grid-template-columns: 1fr;
    }

    /* Siirtää kuvan (media) tekstin yläpuolelle mobiilissa */
    .outstandinghone-service-media {
        order: -1;
        margin-bottom: var(--outstandinghone-space-lg);
    }

    /* Kohdistaa otsikon (h2) ja sen viivan keskelle mobiilissa */
    .outstandinghone-service-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Poistaa vuorottelun mobiilissa, joka on jo olemassa style.css-tiedostossasi */
    /* .outstandinghone-service-section:nth-child(even) .outstandinghone-service-content { direction: ltr; } */

    /* Muuttaa ominaisuuslistan tyyliä mobiilissa */
    .outstandinghone-service-features {
        padding-left: 0;
        border-left: none;
        padding-bottom: var(--outstandinghone-space-md);
        border-bottom: 1px dashed var(--outstandinghone-accent-dim);
    }
}

.outstandinghone-menu-active{
    overflow: hidden;
}