/* ============================================
   HAIR SALON: BEAUTY SALON GAME
   Gradient Mesh Design System
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #667eea;
    --primary-dark: #5a6fd6;
    --primary-light: #8b9cf0;
    --secondary: #764ba2;
    --secondary-dark: #6a4293;
    --secondary-light: #9b6fc4;
    --accent: #f093fb;
    --accent-dark: #d87ae3;
    --accent-light: #f5b3fc;

    --white: #ffffff;
    --off-white: #f8f9ff;
    --light-gray: #f0f1f8;
    --mid-gray: #d1d5e8;
    --dark-gray: #6b7194;
    --charcoal: #2d3154;
    --near-black: #1a1d3a;

    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    --gradient-mesh-1: radial-gradient(ellipse at 20% 50%, rgba(102,126,234,0.3) 0%, transparent 50%),
                       radial-gradient(ellipse at 80% 20%, rgba(118,75,162,0.3) 0%, transparent 50%),
                       radial-gradient(ellipse at 40% 80%, rgba(240,147,251,0.2) 0%, transparent 50%);
    --gradient-mesh-2: radial-gradient(ellipse at 70% 30%, rgba(102,126,234,0.25) 0%, transparent 50%),
                       radial-gradient(ellipse at 20% 70%, rgba(240,147,251,0.2) 0%, transparent 50%),
                       radial-gradient(ellipse at 90% 80%, rgba(118,75,162,0.2) 0%, transparent 50%);

    --shadow-sm: 0 2px 8px rgba(45,49,84,0.06);
    --shadow-md: 0 4px 20px rgba(45,49,84,0.08);
    --shadow-lg: 0 8px 40px rgba(45,49,84,0.12);
    --shadow-xl: 0 16px 64px rgba(45,49,84,0.16);
    --shadow-glow: 0 0 40px rgba(102,126,234,0.3);
    --shadow-accent-glow: 0 0 40px rgba(240,147,251,0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --z-base: 1;
    --z-nav: 100;
    --z-modal: 200;
    --z-cookie: 300;
    --z-notification: 250;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

ul {
    list-style: none;
}

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

/* ---- Selection ---- */
::selection {
    background: rgba(102, 126, 234, 0.2);
    color: var(--near-black);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 -4px 40px rgba(45, 49, 84, 0.1);
    padding: 20px 0;
    animation: slideUpCookie 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--near-black);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-cookie-necessary {
    padding: 10px 24px;
    background: var(--light-gray);
    color: var(--charcoal);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background var(--transition-fast);
}

.btn-cookie-necessary:hover {
    background: var(--mid-gray);
}

.btn-cookie-settings {
    padding: 10px 24px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: underline;
}

.cookie-settings-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--charcoal);
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
    padding: 16px 0;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 30px rgba(45, 49, 84, 0.08);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-full);
    transition: color var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(102, 126, 234, 0.08);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    -webkit-text-fill-color: white;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: var(--z-nav);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 100px 32px 32px;
        gap: 8px;
        align-items: stretch;
        transition: right var(--transition-smooth);
        box-shadow: -4px 0 40px rgba(45, 49, 84, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 60px;
}

.gradient-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1d3a 30%, #2d1b4e 60%, #1a1d3a 100%);
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: meshFloat 12s ease-in-out infinite;
}

.mesh-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.5) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.mesh-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118,75,162,0.5) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation-delay: -3s;
    animation-duration: 18s;
}

.mesh-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240,147,251,0.35) 0%, transparent 70%);
    bottom: -5%;
    left: 30%;
    animation-delay: -6s;
    animation-duration: 20s;
}

.mesh-blob-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    top: 60%;
    left: 10%;
    animation-delay: -9s;
    animation-duration: 14s;
}

.mesh-blob-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.25) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.mesh-blob-6 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102,126,234,0.4) 0%, transparent 70%);
    top: -15%;
    right: 10%;
    animation-delay: -2s;
    animation-duration: 17s;
}

.mesh-blob-7 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(118,75,162,0.4) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
    animation-duration: 19s;
}

.mesh-blob-8 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.3) 0%, transparent 70%);
    bottom: -10%;
    right: 20%;
    animation-delay: -8s;
    animation-duration: 13s;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #667eea 50%, #f093fb 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #f093fb 0%, #ffecd2 50%, #f093fb 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background var(--transition-fast), border-color var(--transition-fast);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    background: #1a1d3a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1d3a;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.hero-screenshot {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    background: white;
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    white-space: nowrap;
    font-weight: 400;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--near-black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-light {
    color: white;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: meshFloat 15s ease-in-out infinite;
}

.mesh-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -5%;
}

.mesh-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

.mesh-orb-3 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    top: 5%;
    left: -8%;
    animation-delay: -3s;
}

.mesh-orb-4 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: 5%;
    right: -5%;
    animation-delay: -7s;
}

.mesh-orb-5 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -15%;
    left: 20%;
    animation-delay: -2s;
}

.mesh-orb-6 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -10%;
    right: 10%;
    animation-delay: -6s;
}

.mesh-orb-footer-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -30%;
    left: -10%;
    opacity: 0.08;
}

.mesh-orb-footer-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -20%;
    right: -5%;
    opacity: 0.08;
    animation-delay: -4s;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.about-card-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-card-visual {
    overflow: hidden;
}

.about-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.about-card:hover .about-card-visual img {
    transform: scale(1.03);
}

.about-card-content {
    padding: 40px;
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 16px;
}

.about-card-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.about-card-small {
    padding: 36px;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.06);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-small h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
}

.about-card-small p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--off-white);
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16/9;
}

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

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 29, 58, 0.8));
}

.gallery-card-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.gallery-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mid-gray);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.gallery-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

.gallery-dot:hover:not(.active) {
    background: var(--primary-light);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(240,147,251,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: background var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--gradient-primary);
    color: white;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.92rem;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-featured {
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.testimonial-featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.testimonial-featured:hover::before {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--near-black);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--near-black);
    transition: color var(--transition-fast);
    gap: 16px;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
    color: var(--dark-gray);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.registration-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.registration-mesh {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1d3a 40%, #302b63 70%, #1a1d3a 100%);
}

.registration-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.registration-info {
    color: white;
}

.registration-info .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.registration-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.registration-counter {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.counter-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.counter-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-counter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.registration-counter strong {
    color: white;
}

/* Form */
.registration-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.registration-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--near-black);
    background: var(--off-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 0;
}

.form-checkbox {
    margin-bottom: 14px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin-top: 16px;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    margin-bottom: 20px;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--dark-gray);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 100px 0;
    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(102, 126, 234, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

.trust-card a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--near-black);
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.footer-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links-group a:hover {
    color: var(--accent);
}

.footer-links-group li svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links-group li span {
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom-right p {
    font-size: 0.8rem;
    text-align: right;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-right p {
        text-align: left;
    }
}

/* ============================================
   SOCIAL PROOF NOTIFICATION
   ============================================ */
.social-proof-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: var(--z-notification);
    background: white;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    animation: slideInNotification 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

@keyframes slideInNotification {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.spn-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.spn-content {
    flex: 1;
    min-width: 0;
}

.spn-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
}

.spn-time {
    font-size: 0.75rem;
    color: var(--dark-gray);
}

.spn-close {
    flex-shrink: 0;
    padding: 4px;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.spn-close:hover {
    color: var(--near-black);
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-block {
        order: -1;
    }

    .hero-phone-frame {
        width: 220px;
    }

    .floating-card-1 {
        right: 0;
        top: 5%;
    }

    .floating-card-2 {
        left: 0;
        bottom: 10%;
    }
}

@media (max-width: 500px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .floating-card {
        display: none;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page-hero {
    position: relative;
    padding: 140px 24px 60px;
    overflow: hidden;
    text-align: center;
}

.legal-page-hero .gradient-mesh-bg {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1d3a 40%, #2d1b4e 70%, #1a1d3a 100%);
}

.legal-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.legal-page-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 860px;
    margin: -30px auto 60px;
    padding: 48px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 24px;
    font-size: 0.95rem;
}

.legal-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--charcoal);
}

.legal-content .last-updated {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 32px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .legal-content {
        margin: -20px 16px 40px;
        padding: 28px;
    }
}

/* ============================================
   GLOBAL ANIMATIONS OBSERVER
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .gallery-slide {
        padding: 0 16px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-banner,
    .social-proof-notification,
    .hero-scroll-indicator,
    .social-proof-ticker {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
