/* Page-specific styles for industries/beauty-wellness.html */
/* Beauty & Wellness Color Palette */
        :root {
            --bw-rose: #BE6B7B;
            --bw-rose-dark: #9D4F5E;
            --bw-rose-light: #D4919D;
            --bw-sage: #7D9A78;
            --bw-sage-dark: #5C7A57;
            --bw-sage-light: #A3BDA0;
            --bw-gold: #C9A227;
            --bw-gold-light: #E5C454;
            --bw-cream: #FBF9F7;
            --bw-blush: #F9F2F0;
            --bw-deep: #1A1A1A;
            --bw-charcoal: #2D2D2D;
        }

        /* Reset & Base */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        body {
            font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bw-cream);
            color: var(--bw-deep);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
        h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

        p {
            font-size: 1.1rem;
            max-width: 65ch;
        }

        em {
            font-style: italic;
            color: var(--bw-rose);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 4rem;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 1rem 4rem;
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav.scrolled .nav-logo {
            color: var(--bw-deep);
        }

        .nav-logo span {
            color: var(--bw-rose-light);
        }

        .nav.scrolled .nav-logo span {
            color: var(--bw-rose);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav.scrolled .nav-links a {
            color: var(--bw-charcoal);
        }

        .nav-links a:hover {
            color: var(--bw-rose-light);
        }

        .nav.scrolled .nav-links a:hover {
            color: var(--bw-rose);
        }

        .nav-cta {
            background: var(--bw-rose) !important;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: var(--bw-rose-dark) !important;
            transform: translateY(-2px);
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-mobile svg {
            width: 28px;
            height: 28px;
            stroke: white;
        }

        .nav.scrolled .nav-mobile svg {
            stroke: var(--bw-deep);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bw-deep);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(165deg, var(--bw-rose-dark) 0%, var(--bw-charcoal) 50%, var(--bw-deep) 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 4rem 6rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(190, 107, 123, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(125, 154, 120, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1000px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--bw-rose-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 em {
            color: var(--bw-rose-light);
            font-style: italic;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--bw-rose);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(190, 107, 123, 0.4);
        }

        .hero-cta:hover {
            background: var(--bw-rose-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(190, 107, 123, 0.5);
        }

        /* Award Strip */
        .award-strip {
            background: var(--bw-sage);
            padding: 2rem 4rem;
            text-align: center;
        }

        .award-strip-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .award-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .award-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .award-text {
            text-align: left;
        }

        .award-title {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .award-source {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Content Sections */
        .section {
            padding: 6rem 4rem;
        }

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

        .container-narrow {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Section Header */
        .section-header {
            margin-bottom: 4rem;
        }

        .section-header.centered {
            text-align: center;
        }

        .section-badge {
            display: inline-block;
            background: var(--bw-rose);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-badge.sage {
            background: var(--bw-sage);
        }

        .section-badge.gold {
            background: var(--bw-gold);
        }

        /* Philosophy Section */
        .philosophy {
            background: var(--bw-cream);
        }

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

        .philosophy-content h2 {
            margin-bottom: 1.5rem;
        }

        .philosophy-content p {
            color: var(--bw-charcoal);
            margin-bottom: 1.5rem;
        }

        .philosophy-statement {
            background: linear-gradient(135deg, var(--bw-rose) 0%, var(--bw-rose-dark) 100%);
            padding: 2.5rem;
            border-radius: 12px;
            color: white;
        }

        .philosophy-statement h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .philosophy-statement p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Expertise Cards */
        .expertise {
            background: var(--bw-blush);
        }

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

        .expertise-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(190, 107, 123, 0.1);
        }

        .expertise-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(190, 107, 123, 0.15);
        }

        .expertise-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--bw-rose-light) 0%, var(--bw-rose) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .expertise-card h4 {
            margin-bottom: 1rem;
            color: var(--bw-deep);
        }

        .expertise-card p {
            color: var(--bw-charcoal);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Client Showcase */
        .clients {
            background: var(--bw-deep);
            color: white;
        }

        .clients .section-header h2 {
            color: white;
        }

        .clients .section-header h2 em {
            color: var(--bw-rose-light);
        }

        .client-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .client-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s ease;
        }

        .client-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--bw-rose);
            transform: translateY(-5px);
        }

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

        .client-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--bw-rose) 0%, var(--bw-rose-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .client-name h4 {
            color: white;
            font-size: 1.4rem;
        }

        .client-name span {
            color: var(--bw-rose-light);
            font-size: 0.9rem;
        }

        .client-story {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .client-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .client-tag {
            background: rgba(190, 107, 123, 0.2);
            color: var(--bw-rose-light);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* The Difference Section */
        .difference {
            background: var(--bw-cream);
        }

        .difference-table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .difference-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .difference-table th {
            background: var(--bw-deep);
            color: white;
            padding: 1.5rem 2rem;
            text-align: left;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .difference-table th:first-child {
            background: var(--bw-charcoal);
        }

        .difference-table th:last-child {
            background: var(--bw-rose);
        }

        .difference-table td {
            padding: 1.25rem 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            vertical-align: top;
        }

        .difference-table tr:last-child td {
            border-bottom: none;
        }

        .difference-table td:first-child {
            font-weight: 600;
            color: var(--bw-deep);
            background: var(--bw-blush);
        }

        .difference-table td:nth-child(2) {
            color: var(--bw-charcoal);
        }

        .difference-table td:last-child {
            color: var(--bw-rose-dark);
            font-weight: 500;
        }

        /* Results Section */
        .results {
            background: linear-gradient(135deg, var(--bw-sage) 0%, var(--bw-sage-dark) 100%);
            color: white;
        }

        .results .section-header h2 {
            color: white;
        }

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

        .result-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .result-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .result-label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
        }

        /* Approach Section */
        .approach {
            background: var(--bw-blush);
        }

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

        .approach-step {
            position: relative;
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .approach-step::before {
            content: attr(data-step);
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--bw-rose);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .approach-step h4 {
            margin: 1rem 0;
            color: var(--bw-deep);
        }

        .approach-step p {
            color: var(--bw-charcoal);
            font-size: 0.95rem;
        }

        /* Quote Section */
        .quote-section {
            background: var(--bw-deep);
            padding: 5rem 4rem;
            text-align: center;
        }

        .quote-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-style: italic;
            color: white;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .quote-text em {
            color: var(--bw-rose-light);
        }

        .quote-attribution {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq {
            background: var(--bw-cream);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(190, 107, 123, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--bw-deep);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--bw-rose);
        }

        .faq-question span {
            font-size: 1.5rem;
            color: var(--bw-rose);
            transition: transform 0.3s ease;
        }

        .faq-question.active span {
            transform: rotate(45deg);
        }

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--bw-charcoal);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bw-rose) 0%, var(--bw-rose-dark) 100%);
            padding: 5rem 4rem;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin: 0 auto 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: var(--bw-rose-dark);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: var(--bw-cream);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: var(--bw-deep);
            color: white;
            padding: 4rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand h3 span {
            color: var(--bw-rose-light);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-badge {
            display: inline-block;
            background: rgba(190, 107, 123, 0.2);
            color: var(--bw-rose-light);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .footer-column h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--bw-rose-light);
        }

        .footer-bottom {
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin: 0 auto;
        }

        /* Animations */
        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate].visible {
            opacity: 1;
            transform: translateY(0);
        }

        [data-animate="scale"] {
            transform: scale(0.95);
        }

        [data-animate="scale"].visible {
            transform: scale(1);
        }

        [data-animate="slide-left"] {
            transform: translateX(-50px);
        }

        [data-animate="slide-left"].visible {
            transform: translateX(0);
        }

        [data-animate="slide-right"] {
            transform: translateX(50px);
        }

        [data-animate="slide-right"].visible {
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav {
                padding: 1.5rem 2rem;
            }

            .nav.scrolled {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .nav-mobile {
                display: block;
            }

            .mobile-menu {
                display: flex;
            }

            .section {
                padding: 4rem 2rem;
            }

            .hero {
                padding: 6rem 2rem 4rem;
            }

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

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

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

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

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

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .award-strip-content {
                flex-direction: column;
                gap: 2rem;
            }

            .difference-table {
                overflow-x: auto;
            }

            .difference-table table {
                min-width: 600px;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

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

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

            .footer-main {
                grid-template-columns: 1fr;
            }

            .award-strip {
                padding: 1.5rem 2rem;
            }
        }
