/* services-branding-style.css — page-specific styles */
 .brand-del-icon,
        .touchpoint-emoji,
        .step-emoji,
        .footer-contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .brand-del-icon i,
        .touchpoint-emoji i,
        .step-emoji i {
            width: 38px;
            height: 38px;
            stroke-width: 1.8;
            color: #33cccc;
            filter: drop-shadow(0 0 12px rgba(51, 204, 204, 0.28));
            transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
        }

        .brand-del:hover .brand-del-icon i,
        .touchpoint-card:hover .touchpoint-emoji i,
        .brand-process-step:hover .step-emoji i {
            color: #ffffff;
            transform: translateY(-2px) scale(1.08);
            filter: drop-shadow(0 0 18px rgba(51, 204, 204, 0.48));
        }

        .mock-logo-icon i {
            width: 34px;
            height: 34px;
            stroke-width: 1.8;
            color: #33cccc;
        }

        .footer-contact-icon i {
            width: 18px;
            height: 18px;
            stroke-width: 2;
            color: #33cccc;
            margin-right: 6px;
        }
		
.nav-links .nav-cta-btn {
            display: inline-block; padding: 0.5rem 1.1rem; border-radius: 999px;
            background: linear-gradient(135deg, #00c6ff, #0072ff); color: #fff !important;
            font-weight: 700; font-size: 0.85rem; letter-spacing: 0.01em; white-space: nowrap;
            box-shadow: 0 0 18px rgba(0,114,255,0.45); transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none !important;
        }
        .nav-links .nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(0,114,255,0.7); }
        .mobile-nav-cta {
            display: block; margin: 0.5rem 1rem; padding: 0.7rem 1.2rem; border-radius: 999px;
            background: linear-gradient(135deg, #00c6ff, #0072ff); color: #fff !important;
            font-weight: 700; text-align: center; text-decoration: none !important;
            box-shadow: 0 0 18px rgba(0,114,255,0.45);
        }

        /* ── HERO: centered with color palette visual ── */
        .brand-hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 140px 24px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Animated background: rotating color wheel glow */
        .brand-hero::before {
            content: '';
            position: absolute;
            width: 700px; height: 700px;
            border-radius: 50%;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: conic-gradient(
                rgba(188,122,255,0.18) 0deg,
                rgba(105,191,255,0.18) 90deg,
                rgba(104,242,213,0.18) 180deg,
                rgba(255,160,80,0.14) 270deg,
                rgba(188,122,255,0.18) 360deg
            );
            animation: wheelSpin 24s linear infinite;
            filter: blur(40px);
            z-index: 0;
        }

        @keyframes wheelSpin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

        .brand-hero-content {
            position: relative;
            z-index: 1;
            max-width: 820px;
        }

        .service-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #e8a0ff;
            margin-bottom: 24px;
            padding: 8px 20px;
            border-radius: 999px;
            background: rgba(188,122,255,0.1);
            border: 1px solid rgba(188,122,255,0.3);
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .eyebrow-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #e8a0ff;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
        @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
        @keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

        .brand-hero h1 {
            font-size: clamp(2.6rem, 5.5vw, 4.4rem);
            font-weight: 800;
            line-height: 1.02;
            margin-bottom: 22px;
            background: linear-gradient(135deg, #fff 0%, #e8a0ff 30%, #69bfff 60%, #68f2d5 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeUp 1s ease 0.4s both, gradientShift 8s ease infinite;
        }

        .brand-hero p {
            color: #b8cfe0;
            font-size: 1.12rem;
            line-height: 1.78;
            margin-bottom: 36px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeUp 1s ease 0.6s both;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 1s ease 0.8s both;
        }

        .btn-brand {
            display: inline-block;
            padding: 15px 36px;
            border-radius: 999px;
            background: linear-gradient(135deg, #bc7aff, #e8a0ff, #69bfff);
            background-size: 200% 200%;
            color: #fff;
            font-weight: 800;
            font-size: 0.93rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 32px rgba(188,122,255,0.4);
            animation: gradientShift 6s ease infinite;
        }
        .btn-brand:hover { transform: translateY(-3px); box-shadow: 0 0 52px rgba(188,122,255,0.6); color: #fff; }

        .btn-ghost {
            display: inline-block; padding: 15px 36px; border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18); color: #fff; font-weight: 600; font-size: 0.93rem;
            transition: all 0.3s ease;
        }
        .btn-ghost:hover { background: rgba(188,122,255,0.1); border-color: rgba(188,122,255,0.4); color: #e8a0ff; transform: translateY(-3px); }

        /* ── LOGO + COLOR SWATCH VISUAL ── */
        .brand-visual {
            margin-top: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            animation: fadeUp 1.2s ease 1s both;
            width: 100%;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        .brand-canvas {
            width: 100%;
            padding: 40px;
            border-radius: 24px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Mock logo construction */
        .mock-logo-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .mock-logo-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, #bc7aff, #69bfff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 8px 24px rgba(188,122,255,0.3);
        }

        .mock-logo-wordmark {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .wordmark-line1 { width: 140px; height: 16px; background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2)); border-radius: 4px; }
        .wordmark-line2 { width: 90px; height: 10px; background: rgba(188,122,255,0.4); border-radius: 4px; }

        .color-palette {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }

        .swatch {
            border-radius: 12px;
            transition: transform 0.3s ease;
            position: relative;
        }
        .swatch:hover { transform: translateY(-6px); }

        .swatch-label {
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.68rem;
            color: var(--muted);
            white-space: nowrap;
        }

        .s1 { width: 52px; height: 80px; background: #bc7aff; box-shadow: 0 8px 20px rgba(188,122,255,0.35); }
        .s2 { width: 52px; height: 65px; background: #69bfff; box-shadow: 0 8px 20px rgba(105,191,255,0.35); }
        .s3 { width: 52px; height: 52px; background: #68f2d5; box-shadow: 0 8px 20px rgba(104,242,213,0.35); }
        .s4 { width: 52px; height: 70px; background: #ff9a5c; box-shadow: 0 8px 20px rgba(255,154,92,0.35); }
        .s5 { width: 52px; height: 44px; background: #fff; opacity: 0.85; }

        .type-specimens {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .type-display { font-size: 1.4rem; font-weight: 800; background: linear-gradient(90deg, #e8a0ff, #69bfff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .type-body { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }

        /* ── SECTION ── */
        .section-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .section-label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #e8a0ff;
            margin-bottom: 14px;
            text-align: center;
        }

        .section-headline {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-sub {
            text-align: center;
            color: var(--muted);
            font-size: 1.02rem;
            max-width: 580px;
            margin: 0 auto 56px;
        }

        /* ── DELIVERABLES: masonry-style varying heights ── */
        .brand-deliverables {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto;
            gap: 18px;
        }

        .brand-del {
            padding: 32px 28px;
            border-radius: 22px;
            background: var(--panel);
            border: 1px solid var(--border);
            backdrop-filter: blur(18px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-del:nth-child(1) { grid-column: span 2; }
        .brand-del:nth-child(4) { grid-column: span 2; }

        .brand-del::before {
            content: attr(data-icon);
            position: absolute;
            top: -10px; right: 10px;
            font-size: 5rem;
            opacity: 0.06;
            transition: opacity 0.4s ease, transform 0.4s ease;
            line-height: 1;
        }

        .brand-del:hover::before { opacity: 0.12; transform: scale(1.1) rotate(-5deg); }

        .brand-del:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 56px rgba(0,0,0,0.28), 0 0 28px rgba(188,122,255,0.1);
            border-color: rgba(188,122,255,0.28);
        }

        .brand-del-icon {
            font-size: 2rem;
            margin-bottom: 16px;
            display: block;
        }

        .brand-del h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
        .brand-del p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

        /* ── WHERE YOUR BRAND APPEARS ── */
        .touchpoints-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .touchpoint-card {
            padding: 28px 20px;
            border-radius: 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            text-align: center;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .touchpoint-card:hover {
            background: rgba(188,122,255,0.08);
            border-color: rgba(188,122,255,0.25);
            transform: translateY(-6px);
        }

        .touchpoint-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
        .touchpoint-card h4 { font-size: 0.95rem; color: #fff; margin-bottom: 6px; }
        .touchpoint-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }

        /* ── BRAND PROCESS ── */
        .brand-process {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .brand-process-step {
            padding: 32px;
            border-radius: 22px;
            background: var(--panel);
            border: 1px solid var(--border);
            backdrop-filter: blur(18px);
            text-align: center;
            transition: all 0.35s ease;
        }

        .brand-process-step:hover {
            transform: translateY(-8px);
            border-color: rgba(188,122,255,0.3);
            box-shadow: 0 24px 48px rgba(0,0,0,0.28), 0 0 24px rgba(188,122,255,0.1);
        }

        .step-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
        .step-num { font-size: 0.7rem; letter-spacing: 0.25em; color: #e8a0ff; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .brand-process-step h4 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
        .brand-process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

        /* CTA */
        .brand-cta {
            padding: 60px 24px 120px;
            text-align: center;
        }

        .brand-cta-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 64px 48px;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(188,122,255,0.1), rgba(232,160,255,0.07), rgba(105,191,255,0.08));
            border: 1px solid rgba(188,122,255,0.22);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .brand-cta-card::before {
            content: '';
            position: absolute;
            top: -60px; left: 50%;
            transform: translateX(-50%);
            width: 300px; height: 180px;
            background: radial-gradient(ellipse, rgba(188,122,255,0.28) 0%, transparent 70%);
        }

        .brand-cta-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 14px; line-height: 1.15; position: relative; z-index: 1; }
        .brand-cta-card p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; position: relative; z-index: 1; }

        .cta-btn-brand {
            display: inline-block;
            padding: 18px 48px;
            border-radius: 999px;
            background: linear-gradient(135deg, #bc7aff, #e8a0ff, #69bfff);
            background-size: 200% 200%;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            letter-spacing: 0.04em;
            transition: all 0.4s ease;
            box-shadow: 0 0 36px rgba(188,122,255,0.4);
            animation: gradientShift 6s ease infinite;
            position: relative; z-index: 1;
        }

        .cta-btn-brand:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 0 60px rgba(188,122,255,0.6); color: #fff; }

        footer { padding: 40px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
        .footer-content { max-width: 1200px; margin: 0 auto; }
        .footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--teal); }
        .footer-copyright { text-align: center; color: #5a7085; font-size: 0.84rem; }

        .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 900px) {
            .brand-deliverables { grid-template-columns: 1fr; }
            .brand-del:nth-child(1), .brand-del:nth-child(4) { grid-column: span 1; }
            .touchpoints-grid { grid-template-columns: repeat(2, 1fr); }
            .brand-process { grid-template-columns: 1fr; }
        }

        @media (max-width: 540px) {
            .touchpoints-grid { grid-template-columns: 1fr 1fr; }
            .brand-cta-card { padding: 40px 24px; }
            .color-palette { flex-wrap: wrap; }
        }
    

        /* Performance tuning */
        .brand-hero::before,
        .service-eyebrow,
        .eyebrow-dot,
        .brand-hero h1,
        .brand-hero p,
        .hero-btns,
        .brand-visual,
        .cta-btn-brand,
        .btn-brand {
            animation: none !important;
        }

        .brand-hero::before {
            filter: blur(16px) !important;
            opacity: 0.55;
        }

        .brand-showcase-card,
        .brand-cta-card,
        .identity-card,
        .palette-card,
        .brand-device {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .btn-brand,
        .cta-btn-brand {
            box-shadow: 0 10px 24px rgba(188,122,255,0.22) !important;
        }

        main > section {
            content-visibility: auto;
            contain-intrinsic-size: 950px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }