/* 
   ORAEWONDERLY.BEAUTY - PREMIUM DESIGN SYSTEM 
   Theme: Bioluminescent Abyssal & Sub-Oceanic Wonders with Playful Cartoon-Style Waves & Themes
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
    --bg-deep: #020710;
    --bg-surface: #051329;
    --bg-surface-elevated: #092042;
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #00f5d4;
    --accent-coral: #ff5e62;
    --text-primary: #f0f7ff;
    --text-secondary: #94a9c4;
    --border-color: rgba(0, 242, 254, 0.2);
    --border-glow: rgba(0, 242, 254, 0.4);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1300px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Accessible Keyboard Navigation Outlines (SEO / UX Best Practice) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

/* Background Bioluminescent Glow Effects & Bubble Accents */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.04) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}
body::before { top: 10%; left: -10%; }
body::after { bottom: 20%; right: -10%; }

/* Cartoon Bubble Elements Floating on Theme background */
.bubbly-accent {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid rgba(0, 245, 212, 0.4);
    background: rgba(0, 242, 254, 0.05);
    pointer-events: none;
    z-index: 1;
    animation: floatBubble 8s infinite ease-in-out;
}
.bubbly-accent-2 {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 94, 98, 0.3);
    background: rgba(255, 94, 98, 0.05);
    pointer-events: none;
    z-index: 1;
    animation: floatBubble 12s infinite ease-in-out reverse;
}

@keyframes floatBubble {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 0.8; }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.2; }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border: 3px solid var(--bg-deep);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Top Disclaimer Bar */
.disclaimer-bar {
    background-color: #01040a;
    border-bottom: 2px solid rgba(0, 242, 254, 0.3);
    color: var(--accent);
    text-align: center;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1000;
}

/* Slim Responsive Header */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 7, 16, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--border-color);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    display: inline-block;
}

.logo-text span {
    color: var(--primary);
    font-weight: 400;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.05em;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.cta-header {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(79, 172, 254, 0.15));
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.cta-header:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Master Grid/Container Rules */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

/* Cartoon Styled Wave Animation Dividers */
.cartoon-wave-divider {
    position: relative;
    width: 100%;
    height: 70px;
    background: transparent;
    overflow: hidden;
    margin-top: -68px;
    z-index: 10;
    pointer-events: none;
}

.cartoon-wave-svg {
    display: block;
    width: 200%;
    height: 70px;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: translate3d(0, 0, 0);
    fill: var(--bg-deep);
    animation: cartoonWaveAnim 14s linear infinite;
}

.cartoon-wave-svg.wave-secondary {
    fill: rgba(0, 242, 254, 0.12);
    animation: cartoonWaveAnim 9s linear infinite reverse;
    bottom: 4px;
    z-index: 8;
}

.cartoon-wave-svg.wave-tertiary {
    fill: rgba(79, 172, 254, 0.08);
    animation: cartoonWaveAnim 18s linear infinite;
    bottom: 8px;
    z-index: 7;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 110px 24px 110px;
    background: radial-gradient(circle at center, rgba(5, 19, 41, 0.7) 0%, rgba(2, 7, 16, 0.98) 100%);
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
}

.hero-glow-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 2px solid rgba(0, 242, 254, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 10px var(--accent); }
    100% { transform: scale(0.8); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-deep);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 242, 254, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Cabinet Game Framing */
.hero-game-wrapper {
    position: relative;
    width: 100%;
}

.game-cabinet {
    position: relative;
    background: linear-gradient(145deg, #05142a, #010610);
    border: 3px solid var(--border-glow);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 242, 254, 0.2);
    overflow: hidden;
}

.game-cabinet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cabinet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    border-bottom: 2px solid rgba(0, 242, 254, 0.1);
    margin-bottom: 10px;
}

.cabinet-lights {
    display: flex;
    gap: 6px;
}

.cabinet-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.cabinet-light:nth-child(2) { background-color: var(--accent); animation: flicker 1.2s infinite alternate; }
.cabinet-light:nth-child(3) { background-color: var(--accent-coral); animation: flicker 1.7s infinite alternate; }

@keyframes flicker {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.game-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.game-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.cabinet-panel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 2px solid rgba(0, 242, 254, 0.1);
    margin-top: 10px;
}

.cabinet-brand {
    font-size: 11px;
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.cabinet-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--accent);
}

/* Sections Global Heading */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.section-title span {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

/* Feature Experience / Showcase Grid with Bubble-Style Cartoon Borders */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-card {
    background: linear-gradient(135deg, rgba(5, 19, 41, 0.6) 0%, rgba(3, 11, 24, 0.85) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    transition: var(--transition);
    pointer-events: none;
}

.custom-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12);
}

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

.card-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(0, 242, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(0, 242, 254, 0.35);
    color: var(--accent);
}

.card-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Asymmetric Interactive Highlights Section */
.highlight-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.highlight-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #031429 0%, #08264e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    position: relative;
}

.highlight-img-placeholder svg {
    margin-bottom: 16px;
    opacity: 0.9;
}

.highlight-content-tag {
    color: var(--accent-coral);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.highlight-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
}

/* Stats Counter Section */
.stats-banner {
    background: linear-gradient(135deg, rgba(5, 19, 41, 0.85) 0%, rgba(2, 7, 16, 0.98) 100%);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Dual Column FAQ Styling */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-card {
    background: var(--bg-surface);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-3px);
}

.faq-q {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-a {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Premium Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.15);
}

.blog-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #051429 0%, #092c57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 242, 254, 0.5);
}

.blog-info {
    padding: 24px;
}

.blog-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: var(--accent);
}

/* Contact CTA Banner */
.contact-cta-section {
    position: relative;
    padding: 100px 24px;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.1) 0%, transparent 80%), var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    max-width: var(--max-width);
    margin: 40px auto;
    overflow: hidden;
    text-align: center;
}

.contact-cta-inner {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Premium Footer (Structured, Professional, Clean) */
.footer {
    background-color: #01040a;
    border-top: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 60px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-title {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-legal-bar {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 15px;
}

/* Cookie Banner Design */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    background: rgba(5, 19, 41, 0.96);
    border: 2px solid var(--primary);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 254, 0.15);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-content {
    margin-bottom: 16px;
}

.cookie-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.cookie-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-deep);
    border: none;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.cookie-btn-reject:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Legal Content Framework */
.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Contact Form Implementation */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.contact-card-info {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 242, 254, 0.25);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-detail-val {
    font-size: 16px;
    color: var(--text-primary);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(5, 19, 41, 0.7) 0%, rgba(3, 11, 24, 0.9) 100%);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background: rgba(2, 7, 16, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-submit-btn {
    width: 100%;
    cursor: pointer;
    border: none;
}

.form-feedback {
    display: none;
    padding: 12px 18px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.form-feedback.success {
    display: block;
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    border: 2px solid var(--accent);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-cards, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .highlight-split, .faq-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(2, 7, 16, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 40px;
        z-index: 998;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }
    .hamburger {
        display: flex;
    }
    .cta-header {
        display: none;
    }
    .hero-title {
        font-size: 40px;
    }
    .section-title {
        font-size: 32px;
    }
    .grid-cards, .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .legal-header h1 {
        font-size: 34px;
    }
    .contact-card-info, .contact-form-container {
        padding: 24px;
    }
}