/* Google-Inspired Technology Consultant Website */
:root {
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f4;
    --bg-elevated: #ffffff;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-muted: #80868b;
    --accent-primary: #4285F4;
    --accent-hover: #3367d6;
    --accent-light: #e8f0fe;
    --border: #dadce0;
    --border-light: #e8eaed;
    --success: #34A853;
    --warning: #FBBC05;
    --error: #EA4335;
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    --shadow-md: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
    --shadow-lg: 0 1px 3px 0 rgba(60,64,67,.3), 0 8px 16px 4px rgba(60,64,67,.15);
    --shadow-xl: 0 2px 6px 0 rgba(60,64,67,.3), 0 12px 24px 6px rgba(60,64,67,.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

[data-theme="dark"] {
    --bg-primary: #202124;
    --bg-secondary: #292a2d;
    --bg-tertiary: #35363a;
    --bg-elevated: #303134;
    --text-primary: #e8eaed;
    --text-secondary: #9aa0a6;
    --text-muted: #80868b;
    --accent-primary: #8ab4f8;
    --accent-hover: #aecbfa;
    --accent-light: rgba(138,180,248,.15);
    --border: #3c4043;
    --border-light: #5f6368;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.3), 0 1px 3px 1px rgba(0,0,0,.15);
    --shadow-md: 0 1px 3px 0 rgba(0,0,0,.3), 0 4px 8px 3px rgba(0,0,0,.15);
    --shadow-lg: 0 1px 3px 0 rgba(0,0,0,.3), 0 8px 16px 4px rgba(0,0,0,.15);
    --shadow-xl: 0 2px 6px 0 rgba(0,0,0,.3), 0 12px 24px 6px rgba(0,0,0,.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1000;
    transition: top 0.2s ease;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 6px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.2s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-icon {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-icon svg {
    display: block;
    transition: transform 0.2s ease;
}

.logo:hover .logo-icon svg {
    transform: scale(1.08);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    position: relative;
}

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

.nav-link.active {
    color: var(--accent-primary);
    background: var(--accent-light);
}

.nav-link::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn:hover {
    background: var(--bg-secondary);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.2s ease;
    border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.2s ease;
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 8px 16px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
}

.mobile-nav-link:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
}

/* ===== NAV ACTIONS (theme toggle + hamburger) ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.theme-toggle .fa-moon { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle .fa-moon { display: block; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 64px 24px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(66,133,244,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52,168,83,.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--google-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    font-weight: 500;
}

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

.typewriter {
    border-right: 2px solid var(--accent-primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { border-color: transparent; }
    50%, 100% { border-color: var(--accent-primary); }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.75;
    max-width: 540px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-image {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed var(--border);
    animation: orbitRotate 30s infinite linear;
}

.orbit-ring-1 {
    width: 340px; height: 340px;
    margin: -170px 0 0 -170px;
}

.orbit-ring-2 {
    width: 380px; height: 380px;
    margin: -190px 0 0 -190px;
    animation-direction: reverse;
    animation-duration: 40s;
}

.orbit-ring-3 { display: none; }

@keyframes orbitRotate {
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: orbitDot 20s infinite linear;
}

.orbit-dot-1 {
    background: var(--google-blue);
    top: 0; left: 50%;
    margin-left: -5px;
}

.orbit-dot-2 {
    background: var(--google-red);
    top: 50%; right: 0;
    margin-top: -5px;
    animation-delay: -5s;
}

.orbit-dot-3 {
    background: var(--google-green);
    bottom: 0; left: 50%;
    margin-left: -5px;
    animation-delay: -10s;
}

@keyframes orbitDot {
    from { transform: rotate(0deg) translateX(170px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}

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

.hero-stats .stat-item {
    text-align: center;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 100px;
}

.hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 2px;
}

.hero-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

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

section {
    position: relative;
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 96px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.startup-experience {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    padding: 16px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-primary);
}

.startup-experience strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.about-bottom-section {
    margin-bottom: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.unified-approach {
    max-width: 1200px;
    margin: 0 auto;
}

.unified-approach .section-header {
    margin-bottom: 40px;
}

.unified-approach .section-header h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.unified-approach .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.approach-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.approach-card:nth-child(1)::before { background: var(--google-blue); }
.approach-card:nth-child(2)::before { background: var(--google-red); }
.approach-card:nth-child(3)::before { background: var(--google-green); }

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

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

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.approach-card:nth-child(1) .card-icon { background: var(--google-blue); }
.approach-card:nth-child(2) .card-icon { background: var(--google-red); }
.approach-card:nth-child(3) .card-icon { background: var(--google-green); }

.card-header h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.approach-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.approach-card:hover .tag {
    background: var(--accent-light);
    color: var(--accent-primary);
    border-color: transparent;
}

/* About Timeline */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.timeline-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-primary);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-item:nth-child(1) .timeline-icon { background: var(--google-blue); }
.timeline-item:nth-child(2) .timeline-icon { background: var(--google-yellow); }
.timeline-item:nth-child(3) .timeline-icon { background: var(--google-green); }

.timeline-content h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* Resume Download Link */
.resume-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 0;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.15s ease;
}

.resume-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.resume-link i {
    font-size: 0.9rem;
}

/* Credentials Strip */
.credentials-strip {
    margin-bottom: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.credentials-strip .section-header {
    margin-bottom: 32px;
}

.credentials-strip .section-header h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.credentials-strip .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all 0.2s ease;
}

.credential-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
}

.credential-logo {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.credential-text strong {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.credential-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Footer Legal Links */
.footer-legal {
    margin-bottom: 12px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s ease;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

.legal-divider {
    color: var(--text-muted);
    margin: 0 8px;
}

/* Technical Expertise Strip */
.expertise-strip {
    margin-bottom: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.expertise-strip .section-header {
    margin-bottom: 32px;
}

.expertise-strip .section-header h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.expertise-strip .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.expertise-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.expertise-chip i {
    font-size: 0.75rem;
    color: var(--accent-primary);
}

.expertise-chip:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-light);
}

/* About Stats */
.about-stats {
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.stats-grid .stat-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-primary);
}

.stats-grid .stat-item:nth-child(1) .stat-number { color: var(--google-blue); }
.stats-grid .stat-item:nth-child(2) .stat-number { color: var(--google-red); }
.stats-grid .stat-item:nth-child(3) .stat-number { color: var(--google-green); }
.stats-grid .stat-item:nth-child(4) .stat-number { color: var(--google-yellow); }

.stat-number {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8125rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 96px 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.2s ease;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.service-card:nth-child(1) .service-icon { background: var(--google-blue); }
.service-card:nth-child(2) .service-icon { background: var(--google-red); }
.service-card:nth-child(3) .service-icon { background: var(--google-green); }
.service-card:nth-child(4) .service-icon { background: var(--google-yellow); }
.service-card:nth-child(5) .service-icon { background: var(--google-blue); }
.service-card:nth-child(6) .service-icon { background: var(--google-red); }

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.875rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
    font-size: 0.8125rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334A853'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===== WORK / PROJECTS SECTION ===== */
.work {
    padding: 96px 0;
    background: var(--bg-secondary);
}

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

.work-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

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

.work-image {
    height: 180px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image {
    background-color: var(--bg-tertiary) !important;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32,33,36,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.work-overlay i {
    color: white;
    font-size: 2rem;
}

.work-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.work-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
    font-size: 0.875rem;
}

.work-tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.work-tech span {
    padding: 2px 10px;
    background: var(--accent-light);
    color: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.work-results {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.result-item {
    padding: 6px 10px;
    background: rgba(52,168,83,.06);
    color: var(--google-green);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    border-left: 2px solid var(--google-green);
}

[data-theme="dark"] .result-item {
    color: #81c995;
    background: rgba(52,168,83,.1);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 96px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info > a:nth-child(1) i { background: var(--google-red); }
.contact-info > a:nth-child(2) i { background: var(--google-green); }
.contact-info > a:nth-child(3) i { background: var(--google-blue); }
.contact-info > a:nth-child(4) i { background: var(--google-yellow); }

.contact-item h4 {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.contact-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 64px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.newsletter-content {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.newsletter-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.newsletter-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== FLOATING CONSULTATION ===== */
.floating-consultation {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    font-family: inherit;
}

.floating-btn:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.show { display: flex; }

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    line-height: 1;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-body > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 24px; right: 24px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--google-green);
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.2s ease;
}

.toast.show { transform: translateX(0); }

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.toast-content i { color: var(--google-green); font-size: 1.125rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 0.875rem;
}

.social-link:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.footer-section h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.footer-contact .contact-item i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.footer-contact .contact-item span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ===== HIDDEN ELEMENTS ===== */
.animated-background,
.neural-grid,
.healthcare-animations {
    display: none !important;
}

/* ===== GOOGLE-STYLE COLOR BAR ===== */
.google-bar {
    height: 4px;
    display: flex;
    width: 100%;
}

.google-bar span {
    flex: 1;
}

.google-bar .bar-blue { background: var(--google-blue); }
.google-bar .bar-red { background: var(--google-red); }
.google-bar .bar-yellow { background: var(--google-yellow); }
.google-bar .bar-green { background: var(--google-green); }

/* ===== ASK ADARSH AI CHAT WIDGET ===== */
.chat-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--google-blue);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
}

.chat-trigger:hover {
    background: #3367d6;
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.chat-trigger.hidden { display: none; }

.chat-trigger svg { flex-shrink: 0; }

.chat-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    background: rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.chat-panel.open {
    opacity: 1;
    pointer-events: all;
}

.chat-window {
    width: 420px;
    max-height: 600px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.2s ease;
}

.chat-panel.open .chat-window {
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--google-blue);
    color: white;
    flex-shrink: 0;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-title {
    font-size: 0.9375rem;
    font-weight: 500;
}

.chat-header-sub {
    font-size: 0.6875rem;
    opacity: 0.8;
}

.chat-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: background 0.15s ease;
}

.chat-close:hover { background: rgba(255,255,255,.3); }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
    max-height: 400px;
}

.chat-msg {
    display: flex;
}

.chat-msg-user {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.chat-msg-user .chat-bubble {
    background: var(--google-blue);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-msg-assistant .chat-bubble {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-bubble strong { font-weight: 600; }
.chat-bubble code {
    background: rgba(0,0,0,.06);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.8125rem;
}
.chat-bubble ul {
    margin: 6px 0;
    padding-left: 16px;
}
.chat-bubble li {
    margin-bottom: 4px;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 4px;
}

.chat-suggestion {
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent-primary);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s ease;
    text-align: left;
}

.chat-suggestion:hover {
    background: var(--accent-light);
    border-color: var(--accent-primary);
}

.chat-input-area {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    flex-shrink: 0;
}

.chat-input-area textarea {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    resize: none;
    line-height: 1.4;
    max-height: 120px;
    transition: border-color 0.15s ease;
}

.chat-input-area textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.chat-send {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--google-blue);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.chat-send:hover { background: #3367d6; }

/* Typing indicator */
.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.75rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-actions { margin-left: auto; }

    .hero {
        padding: 80px 16px 48px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-title { font-size: 2.25rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image { width: 200px; height: 200px; }
    .hero-orbit { display: none; }
    .hero-stats .stat-item { padding: 12px 14px; min-width: 80px; }
    .hero-stats .stat-number { font-size: 1.25rem; }

    .about-content { grid-template-columns: 1fr; gap: 32px; }
    .approach-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; gap: 32px; }

    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
    section { padding: 56px 0; }

    /* Floating CTA */
    .floating-consultation { bottom: 16px; right: 16px; }
    .floating-btn span { display: none; }
    .floating-btn { padding: 14px; border-radius: 50%; }

    /* Chat widget mobile */
    .chat-trigger { bottom: 16px; left: 16px; padding: 12px; border-radius: 50%; }
    .chat-trigger-label { display: none; }
    .chat-panel { padding: 0; }
    .chat-window {
        width: 100%;
        max-height: 100%;
        height: 100vh;
        border-radius: 0;
    }
    .chat-messages { max-height: none; min-height: 0; flex: 1; }

    /* Newsletter — stack on mobile */
    .newsletter { padding: 48px 0; }
    .newsletter-form .form-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
    }
    .newsletter-form .btn {
        width: 100%;
    }

    /* Credentials */
    .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .credential-item { padding: 12px; }

    /* Expertise chips */
    .expertise-strip { margin-bottom: 48px; padding-top: 40px; }
    .expertise-chip-grid { gap: 8px; }
    .expertise-chip { padding: 6px 12px; font-size: 0.75rem; }
    .expertise-chip i { font-size: 0.675rem; }

    /* Footer — proper centering for flex children */
    .footer { padding: 40px 0 20px; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .footer-bottom { font-size: 0.75rem; }

    /* Contact section */
    .contact-cta { padding: 32px 24px; }
    .contact-item { padding: 14px 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 72px 16px 40px; }
    .hero-title { font-size: 1.75rem; }
    .hero-description { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; align-items: center; }
    .hero-stats .stat-item { width: 100%; max-width: 200px; }

    .about-bottom-section { padding-top: 32px; }
    .approach-card { padding: 24px; }
    .service-card { padding: 24px; }
    .credentials-grid { grid-template-columns: 1fr; }
    .timeline-item { padding: 16px; }

    .section-title { font-size: 1.5rem; }
    .unified-approach .section-header h3 { font-size: 1.375rem; }

    .work-image { height: 160px; }

    .newsletter-content { padding: 0 8px; }
    .newsletter-text h2 { font-size: 1.5rem; }
    .newsletter-text p { font-size: 0.875rem; }
}

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

@media print {
    .navbar, .floating-consultation, .theme-toggle { display: none !important; }
    section { padding: 24px 0; }
    body { background: white !important; color: #000 !important; }
}
