/*
Theme Name: YaoLumen V5
Theme URI: https://www.yaolumen.com
Author: Jun Wu
Author URI: https://www.yaolumen.com
Description: A professional WordPress theme for YAOLUMEN TECHNOLOGIES LTD - UK-registered cross-border eCommerce studio with internal tools. Version 5 features refined copywriting and improved Stripe compliance.
Version: 5.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yaolumen
Tags: one-column, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #64748b;
    --color-accent: #0ea5e9;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-background: #ffffff;
    --color-surface: #f9fafb;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
}

ul, ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.site-header {
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
}

.site-logo:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.logo-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.logo-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #fbbf24;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: pulse 2s infinite;
}

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

.site-logo svg {
    width: 40px;
    height: 40px;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo-text .brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.025em;
}

.site-logo-text .tagline {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--color-text-muted);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-primary);
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-company {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}

.btn-white {
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--color-surface);
    color: var(--color-primary-dark);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    background: #eff6ff;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 40%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(2%, 1%) scale(1.02);
    }
    66% {
        transform: translate(-1%, 2%) scale(1.01);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-content h1 span {
    color: var(--color-primary);
}

.hero-content .lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(79, 70, 229, 0.4));
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
    transform: translateX(-100%);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle-2 {
    top: 60%;
    left: 20%;
    animation-delay: -3s;
    animation-duration: 20s;
    width: 3px;
    height: 3px;
}

.particle-3 {
    top: 30%;
    right: 15%;
    animation-delay: -6s;
    animation-duration: 16s;
}

.particle-4 {
    top: 70%;
    right: 25%;
    animation-delay: -9s;
    animation-duration: 22s;
    width: 5px;
    height: 5px;
}

.particle-5 {
    top: 40%;
    left: 40%;
    animation-delay: -12s;
    animation-duration: 17s;
    width: 2px;
    height: 2px;
}

.particle-6 {
    top: 80%;
    left: 60%;
    animation-delay: -15s;
    animation-duration: 19s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -60px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-30px, -20px) rotate(270deg);
        opacity: 0.5;
    }
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-glow-1 {
    top: 10%;
    left: 5%;
    background: #2563eb;
    animation-delay: 0s;
}

.hero-glow-2 {
    top: 50%;
    right: 10%;
    background: #4f46e5;
    animation-delay: -4s;
}

.hero-glow-3 {
    bottom: 10%;
    left: 30%;
    background: #3b82f6;
    animation-delay: -2s;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

.features-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.advantages-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.advantages-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.advantage-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 9999px;
}

.advantage-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
}

.advantage-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.advantage-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.preview-section {
    padding: 5rem 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(79, 70, 229, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.preview-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

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

.preview-link svg {
    transition: transform var(--transition-fast);
}

.preview-link:hover svg {
    transform: translateX(4px);
}

.preview-image {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.preview-image img {
    border-radius: var(--radius-lg);
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4f46e5 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: ctaShine 15s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: ctaGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes ctaShine {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-5%, -5%) rotate(180deg);
    }
}

@keyframes ctaGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

.lab-header-section {
    padding: 4rem 0;
    background: var(--color-background);
    text-align: center;
}

.lab-header-section h1 {
    margin-bottom: 1rem;
}

.lab-header-section .lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 48rem;
    margin: 0 auto;
}

.tools-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.tool-item {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .tool-item {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-item:nth-child(even) {
        direction: rtl;
    }
    
    .tool-item:nth-child(even) > * {
        direction: ltr;
    }
}

.tool-item:last-child {
    margin-bottom: 0;
}

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

.tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 9999px;
}

.tool-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.tool-icon.green svg {
    color: var(--color-success);
}

.tool-header h2 {
    margin-bottom: 0;
}

.tool-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tool-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.tool-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 9999px;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
}

.tool-badge svg {
    width: 16px;
    height: 16px;
}

.tool-image {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.tool-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.tool-image-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.lab-disclaimer {
    padding: 3rem 0;
    background: #eff6ff;
    border-top: 1px solid #bfdbfe;
    text-align: center;
}

.lab-disclaimer h3 {
    margin-bottom: 1rem;
}

.lab-disclaimer p {
    color: var(--color-text);
    max-width: 48rem;
    margin: 0 auto;
}

.about-header-section {
    padding: 4rem 0;
    background: var(--color-background);
    text-align: center;
}

.about-header-section h1 {
    margin-bottom: 1rem;
}

.about-header-section .lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

.founder-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.founder-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .founder-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 2rem;
    }
}

.founder-info h2 {
    margin-bottom: 1.5rem;
}

.founder-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.founder-item:last-child {
    margin-bottom: 0;
}

.founder-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 9999px;
    flex-shrink: 0;
}

.founder-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.founder-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.founder-item p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 256px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.founder-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: -1rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.company-section {
    padding: 4rem 0;
    background: var(--color-background);
    text-align: center;
}

.company-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    border: 1px solid var(--color-border-light);
}

.company-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.company-card h2 svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.company-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.company-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.company-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.company-item p {
    margin-bottom: 0;
}

.company-item strong {
    color: var(--color-text);
}

.values-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-header-section {
    padding: 4rem 0;
    background: var(--color-background);
    text-align: center;
}

.contact-header-section h1 {
    margin-bottom: 1rem;
}

.contact-header-section .lead {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 9999px;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-item .note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.email-fallback {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

.contact-hours {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-hours h3 {
    margin-bottom: 0.75rem;
}

.contact-hours p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.page-content-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.page-content-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    max-width: 56rem;
    margin: 0 auto;
}

.page-content-card h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.page-content-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content-card p {
    color: var(--color-text);
}

.page-content-card ul,
.page-content-card ol {
    color: var(--color-text);
}

.page-content-card li {
    margin-bottom: 0.5rem;
}

.page-notice {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 2rem;
}

.page-notice p {
    font-size: 0.875rem;
    color: #92400e;
    margin-bottom: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.wp-block-button__link:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
}

/* Ninja Forms Custom Styles */
.form-notice {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
    padding: 1rem;
    font-size: 0.875rem;
    color: #92400e;
}

.nf-form-cont {
    margin: 0;
}

.nf-form-cont .nf-field-label label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.nf-form-cont .nf-field-element input,
.nf-form-cont .nf-field-element textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    background: var(--color-background);
    color: var(--color-text);
}

.nf-form-cont .nf-field-element input:focus,
.nf-form-cont .nf-field-element textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.nf-form-cont .nf-field-element textarea {
    min-height: 150px;
    resize: vertical;
}

.nf-form-cont .nf-field-element input::placeholder,
.nf-form-cont .nf-field-element textarea::placeholder {
    color: var(--color-text-light);
}

.nf-form-cont .nf-field-container {
    margin-bottom: 1.5rem;
}

.nf-form-cont .nf-field-container:last-child {
    margin-bottom: 0;
}

.nf-form-cont .nf-field-element input[type="submit"],
.nf-form-cont .nf-field-element .ninja-forms-field[type="submit"] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nf-form-cont .nf-field-element input[type="submit"]:hover,
.nf-form-cont .nf-field-element .ninja-forms-field[type="submit"]:hover {
    background: var(--color-primary-dark);
}

.nf-form-cont .nf-error .nf-field-element input,
.nf-form-cont .nf-error .nf-field-element textarea {
    border-color: var(--color-error);
}

.nf-form-cont .nf-error-msg {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.nf-form-cont .nf-field-element .ninja-forms-req-symbol {
    color: var(--color-error);
}

.nf-form-cont .nf-form-fields-required {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.nf-form-cont .nf-response-msg {
    background: #d1fae5;
    border: 1px solid #34d399;
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
}

.nf-form-cont .nf-response-msg p {
    color: #065f46;
    margin: 0;
}
