/* ============================================
   COMPONENTS.CSS - Header, Nav, Buttons, Cards, Footer, Forms
   ============================================ */

/* Header & Navigation */
header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(5, 5, 9, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 0.4rem 2rem;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0.85);
            transition: filter 0.2s ease-out;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .logo-text img {
            height: 44px;
            width: auto;
            opacity: 0.8;
            transition: opacity 0.2s ease-out;
        }

        .logo-container:hover .logo-icon img {
            filter: brightness(1);
        }

        .logo-container:hover .logo-text img {
            opacity: 1;
        }

        nav[role="navigation"] {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 36px;
            height: 28px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 6px 7px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.2s ease-out;
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-daynite-logo {
            height: 26px;
            width: auto;
            filter: brightness(0.7);
            transition: all 0.2s ease-out;
        }

        .nav-links a:hover .nav-daynite-logo {
            filter: brightness(1);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--purple-primary);
            transition: width 0.2s ease-out;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:has(img)::after {
            display: none;
        }
        
        @media (max-width: 768px) {
            .nav-links a {
                padding: 0.5rem 0.75rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .nav-toggle {
                display: flex;
            }

            nav[role="navigation"] {
                position: absolute;
                top: 64px;
                right: 16px;
                background: rgba(5, 5, 9, 0.98);
                border: 1px solid var(--border-color);
                border-radius: 12px;
                padding: 12px 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.35);
                display: none;
            }

            header.nav-open nav[role="navigation"] {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .nav-links a {
                width: 100%;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
            color: var(--text-primary);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease-out;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 0 14px rgba(161, 86, 255, 0.35), 0 0 3px rgba(255, 255, 255, 0.15) inset;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--glow-purple);
        }

        .daynite .btn-primary:hover {
            box-shadow: 0 6px 25px rgba(142, 68, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--purple-primary);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease-out;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(142, 68, 255, 0.1);
            border-color: var(--purple-accent);
            transform: translateY(-2px);
        }

/* Buttons */
.btn-primary {
            background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
            color: var(--text-primary);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease-out;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 0 14px rgba(161, 86, 255, 0.35), 0 0 3px rgba(255, 255, 255, 0.15) inset;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--glow-purple);
        }

        .daynite .btn-primary:hover {
            box-shadow: 0 6px 25px rgba(142, 68, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--purple-primary);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease-out;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(142, 68, 255, 0.1);
            border-color: var(--purple-accent);
            transform: translateY(-2px);
        }

/* Service Cards */
#services {
            position: relative;
        }

        .services-subline {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-align: center;
            margin-top: 0.5rem;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .services-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(142, 68, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(181, 124, 255, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(142, 68, 255, 0.04) 0%, transparent 70%);
            filter: blur(80px);
            z-index: 0;
            opacity: 0.6;
        }

        .service-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease-out;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(142, 68, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(181, 124, 255, 0.02) 0%, transparent 50%);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(142, 68, 255, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.3s ease-out;
            z-index: 0;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(142, 68, 255, 0.3), rgba(181, 124, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease-out;
            pointer-events: none;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--purple-primary);
            box-shadow: 0 10px 40px var(--glow-purple);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-icon {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 2;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            width: 130%;
            height: 130%;
            background: radial-gradient(circle, rgba(75, 0, 130, 0.35) 0%, rgba(75, 0, 130, 0.2) 35%, rgba(75, 0, 130, 0.1) 55%, transparent 75%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(35px);
            opacity: 0;
            animation: revealGlow 1.5s ease-out 0.5s forwards;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: conic-gradient(from 0deg, rgba(142, 68, 255, 0.08), rgba(181, 124, 255, 0.12), rgba(142, 68, 255, 0.08));
            border-radius: 50%;
            filter: blur(8px);
            z-index: -1;
            opacity: 0.3;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(75, 0, 130, 0.4));
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: scale(0.8);
            animation: revealOwl 1.5s ease-out 0.5s forwards, lookAround 8s ease-in-out 2s infinite;
        }

        .service-card:nth-child(1) .service-icon::before {
            animation-delay: 0.5s;
        }

        .service-card:nth-child(1) .service-icon img {
            animation: revealOwl 1.5s ease-out 0.5s forwards, lookAround 8s ease-in-out 2.5s infinite;
        }

        .service-card:nth-child(2) .service-icon::before {
            animation-delay: 0.7s;
        }

        .service-card:nth-child(2) .service-icon img {
            animation: revealOwl 1.5s ease-out 0.7s forwards, lookAround 8s ease-in-out 2.7s infinite;
        }

        .service-card:nth-child(3) .service-icon::before {
            animation-delay: 0.9s;
        }

        .service-card:nth-child(3) .service-icon img {
            animation: revealOwl 1.5s ease-out 0.9s forwards, lookAround 8s ease-in-out 2.9s infinite;
        }

        .service-card h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.7;
        }

/* Work Cards */
.work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .work-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease-out;
            position: relative;
            overflow: hidden;
        }

        .work-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(142, 68, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease-out;
        }

        .work-card:hover {
            transform: translateY(-8px);
            border-color: var(--purple-primary);
            box-shadow: 0 10px 40px var(--glow-purple);
        }

        .work-card:hover::before {
            opacity: 1;
        }

        .work-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--purple-accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .work-card h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .work-card p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .work-link {
            color: var(--purple-accent);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease-out;
        }

        .work-link:hover {
            gap: 1rem;
            color: var(--purple-light);
        }

/* Team Members */
.team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .team-intro .section-title {
            color: var(--text-primary);
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: var(--text-primary);
            background-clip: unset;
        }

        .team-intro p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .team-grid::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background:
                radial-gradient(circle at 30% 30%, rgba(142, 68, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(181, 124, 255, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at center, rgba(142, 68, 255, 0.04) 0%, transparent 70%);
            filter: blur(95px);
            z-index: 0;
            opacity: 0.55;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: all 0.3s ease-out;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(142, 68, 255, 0.03) 0%, transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(181, 124, 255, 0.02) 0%, transparent 60%);
        }

        .team-member::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(142, 68, 255, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.3s ease-out;
            z-index: 0;
        }

        .team-member::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(142, 68, 255, 0.3), rgba(181, 124, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease-out;
            pointer-events: none;
            z-index: -1;
        }

        .team-member:hover {
            transform: translateY(-8px);
            border-color: var(--purple-primary);
            box-shadow: 0 10px 40px var(--glow-purple);
        }

        .team-member:hover::before,
        .team-member:hover::after {
            opacity: 1;
        }

        .team-avatar {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .team-avatar::before {
            content: '';
            position: absolute;
            width: 140%;
            height: 140%;
            background: radial-gradient(circle, rgba(75, 0, 130, 0.3) 0%, rgba(75, 0, 130, 0.15) 45%, transparent 75%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(35px);
            opacity: 0;
            animation: revealGlow 1.5s ease-out 0.4s forwards;
        }

        .team-avatar::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(from 0deg, rgba(142, 68, 255, 0.08), rgba(181, 124, 255, 0.12), rgba(142, 68, 255, 0.08));
            filter: blur(8px);
            opacity: 0.3;
            z-index: -1;
        }

        .team-avatar-placeholder,
        .team-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(75, 0, 130, 0.35);
            opacity: 0;
            transform: scale(0.85);
            animation: revealOwl 1.5s ease-out 0.5s forwards, lookAround 10s ease-in-out 2.2s infinite;
        }

        .team-avatar-placeholder {
            background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--text-primary);
            letter-spacing: 0.05em;
        }

        .team-grid .team-member:nth-child(2) .team-avatar::before {
            animation-delay: 0.6s;
        }

        .team-grid .team-member:nth-child(2) .team-avatar img,
        .team-grid .team-member:nth-child(2) .team-avatar-placeholder {
            animation: revealOwl 1.5s ease-out 0.7s forwards, lookAround 10s ease-in-out 2.4s infinite;
        }

        .team-grid .team-member:nth-child(3) .team-avatar::before {
            animation-delay: 0.8s;
        }

        .team-grid .team-member:nth-child(3) .team-avatar img,
        .team-grid .team-member:nth-child(3) .team-avatar-placeholder {
            animation: revealOwl 1.5s ease-out 0.9s forwards, lookAround 10s ease-in-out 2.6s infinite;
        }

        .team-member h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .team-role {
            color: var(--purple-accent);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 2;
        }

        .team-tagline {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

/* Contact Forms */
.contact-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .contact-intro p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg-secondary);
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.2s ease-out;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--purple-primary);
            box-shadow: 0 0 0 3px var(--glow-purple);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input[type="submit"] {
            background: linear-gradient(135deg, var(--purple-primary), var(--purple-accent));
            border: none;
            color: var(--text-primary);
            font-weight: 600;
            cursor: pointer;
            padding: 1rem 2rem;
            width: auto;
            box-shadow: 0 4px 15px var(--glow-purple);
        }

        .form-group input[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--glow-purple);
        }

/* Footer */
footer[role="contentinfo"] {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        .footer-brand p {
            color: #e5e5ee;
            font-size: 0.95rem;
        }

        .footer-nav h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: #e5e5ee;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease-out;
        }

        .footer-nav a:hover {
            color: var(--purple-accent);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s ease-out;
            padding: 4px;
        }

        .footer-social a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0.9);
            transition: all 0.2s ease-out;
        }

        .footer-social a:hover {
            border-color: var(--purple-primary);
            transform: translateY(-2px);
        }

        .footer-social a:hover img {
            filter: brightness(1);
        }

        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: #d7d7e6;
            font-size: 0.85rem;
        }

/* Section Arrows */
.section-arrow {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem 0;
            opacity: 0.6;
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
            cursor: pointer;
            position: relative;
        }

        .section-arrow::before,
        .section-arrow::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            height: 1px;
            width: 200px;
            box-shadow: 0 0 8px rgba(142, 68, 255, 0.3), 0 0 16px rgba(142, 68, 255, 0.15);
            z-index: 0;
        }

        .section-arrow::before {
            left: calc(50% + 45px + 10px);
            background: linear-gradient(to right, rgba(142, 68, 255, 0.5), rgba(142, 68, 255, 0.3), transparent);
        }

        .section-arrow::after {
            right: calc(50% + 45px + 10px);
            background: linear-gradient(to left, rgba(142, 68, 255, 0.5), rgba(142, 68, 255, 0.3), transparent);
        }

        .section-arrow:hover {
            opacity: 1;
            transform: translateY(5px);
        }

        .section-arrow .lottie-container {
            width: 90px;
            height: 90px;
            filter: drop-shadow(0 4px 12px rgba(142, 68, 255, 0.3));
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        
        .section-arrow .lottie-container svg {
            width: 100% !important;
            height: 100% !important;
        }

        .section-arrow:hover .lottie-container {
            filter: drop-shadow(0 6px 20px rgba(142, 68, 255, 0.5));
        }

        /* Hide fallback arrow - we want Lottie to show */
        .section-arrow .lottie-container::before {
            display: none;
        }

/* Legal Sections */
.legal-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .legal-section h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        @media (min-width: 1400px) {
            .legal-section h2 {
                letter-spacing: -1px;
            }
        }

        .legal-section p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

