/* Aardvark Sensing - Modern Dark Theme Website */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --accent-primary: #22c55e;
    --accent-secondary: #16a34a;
    --accent-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --accent-glow: rgba(34, 197, 94, 0.3);
    --border-color: rgba(255, 255, 255, 0.08);
    --success: #22c55e;
    --font-primary: 'Geom', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Geom', var(--font-primary);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--accent-glow);
}

/* Heartbeat animation for GreenPulse branding */
@keyframes heartbeat {
    0%, 2% { transform: scaleX(1); }
    3% { transform: scaleX(1.04); }
    4% { transform: scaleX(1); }
    5% { transform: scaleX(1.04); }
    6%, 100% { transform: scaleX(1); }
}

.pulse-text {
    display: inline-block;
    animation: heartbeat 6s ease-in-out infinite;
}

/* Spinning animation for loading states */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure images never overflow */
img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y proximity;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 15, 0.95);
}

.navbar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.logo:hover {
    color: var(--accent-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    width: 150px;
    height: auto;
}

.logo span {
    position: relative;
    top: -2px;
    left: -11px;
    font-weight: 300;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-normal);
}

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

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

.nav-cta {
    font-weight: 600;
    white-space: nowrap;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.lang-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    transition: all var(--transition-fast);
}

.lang-switcher a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.lang-switcher a.active {
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.lang-switcher a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(79, 156, 249, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(123, 97, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(79, 156, 249, 0.1) 50%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-image-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: calc(15% - 10px);
    left: calc(-5% - 10px);
    animation: float 6s ease-in-out infinite 2s;
}

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

.floating-card .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-card .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-card .value.success {
    color: var(--success);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

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

.btn-primary:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    box-shadow: var(--shadow-glow);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

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

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Products/Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.solution-image {
    width: 100%;
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.solution-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.solution-content {
    padding: 2rem;
}

.solution-content h3 {
    margin-bottom: 1rem;
}

.solution-content p {
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.solution-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(79, 156, 249, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
}

.social-links a:hover svg {
    stroke: var(--text-primary);
}

/* Page Headers */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(79, 156, 249, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    background: var(--bg-card);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.about-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent-primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info > p {
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

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

.contact-details .icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.contact-details .label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-details .value {
    color: var(--text-primary);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

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

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

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

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .btn {
    width: 100%;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-visual {
        order: -1;
    }

    .floating-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1rem;
        min-height: 48px;
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding: 0.75rem 1rem;
        justify-content: center;
        gap: 0.5rem;
    }

    .lang-switcher a {
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
    }

    .nav-cta {
        background: var(--accent-gradient);
        border-radius: 8px;
        text-align: center;
        margin-top: 0.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .features-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* iPad Pro Bezel Mockup */
.ipad-mockup {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.ipad-frame {
    position: relative;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 16px;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(0, 0, 0, 0.3);
}

.ipad-frame::before {
    /* Camera notch */
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

.ipad-screen {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.ipad-screen img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* iPad Pro 12.9" landscape aspect ratio */
.ipad-mockup.landscape .ipad-screen {
    aspect-ratio: 4/3;
}

.ipad-mockup.landscape .ipad-screen img {
    object-fit: cover;
}

/* Reflection effect */
.ipad-frame::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 100%
    );
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

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

.screenshot-showcase .ipad-mockup {
    width: 100%;
}

.screenshot-showcase .ipad-frame {
    width: 100%;
}

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

.screenshot-item h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

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

/* Featured screenshot (larger, single) */
.screenshot-featured {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.screenshot-featured .ipad-mockup {
    max-width: 900px;
    width: 100%;
}

/* Responsive adjustments for screenshots */
@media (max-width: 1024px) {
    .screenshot-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ipad-frame {
        padding: 12px;
        border-radius: 18px;
    }

    .ipad-frame::before {
        width: 6px;
        height: 6px;
        left: 5px;
    }
}

@media (max-width: 768px) {
    .ipad-frame {
        padding: 8px;
        border-radius: 14px;
    }

    .ipad-frame::before {
        width: 5px;
        height: 5px;
        left: 4px;
    }

    .ipad-screen {
        border-radius: 8px;
    }

    .screenshot-item h4 {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-brand {
    color: var(--accent-primary);
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Index page specific grids */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Override inline 2-column grids to single column */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .pain-points-grid,
    .benefits-grid {
        gap: 1rem;
    }

    /* Team cards with inline grid - stack vertically */
    .team-card[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .team-card[style*="grid-template-columns"] .team-avatar {
        margin: 0 auto 1rem;
    }

    /* Override inline repeat grids */
    [style*="repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Full-width Video Section */
.video-section-wrapper {
    position: relative;
    height: 140vh; /* Reduced height for less dead zone */
    background: transparent;
    pointer-events: none;
}

.video-section-wrapper + .section {
    margin-top: -40vh; /* Pull next section up so it's visible when video fades */
}

.video-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.video-section.video-visible {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 1;
    pointer-events: auto;
}

.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-section .video-benefits {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.video-section.video-visible .video-benefits {
    opacity: 1;
}

/* Video Benefits Overlay */
.video-benefits {
    position: absolute;
    left: 5%;
    top: 15%;
    transform: none;
    z-index: 15;
    width: 500px;
    max-width: 90%;
}

.video-benefit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.video-benefit.visible {
    opacity: 1;
}

.video-benefit.exiting {
    opacity: 0;
}

.video-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.video-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.video-benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.video-benefit p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}


.video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.3) 30%,
        rgba(10, 10, 15, 0.3) 70%,
        rgba(10, 10, 15, 0.7) 100%
    );
    padding: 2rem;
}

.video-text-overlay h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.video-text-overlay p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Video logo at bottom */
.video-logo {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-logo-img {
    width: 200px;
    height: auto;
}

.video-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-primary);
    position: relative;
    top: -3px;
    left: -15px;
}

.video-mute-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.video-mute-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.video-mute-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .page-header {
        padding: 7rem 0 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .hero {
        padding-top: 4rem;
        min-height: auto;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .logo-img {
        width: 100px;
    }

    .logo span {
        display: inline-block;
        font-size: 0.9rem;
        left: -8px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .video-section-wrapper {
        height: 120vh;
    }

    .video-section-wrapper + .section {
        margin-top: -20vh;
    }

    .video-section {
        height: 100vh;
    }

    .video-benefits {
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
        top: 10%;
        bottom: auto;
        transform: none;
    }

    .video-benefit {
        padding: 1rem;
    }

    .video-benefit h3 {
        font-size: 1.1rem;
    }

    .video-benefit p {
        font-size: 0.85rem;
    }

    .video-mute-btn {
        bottom: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
    }

    .video-mute-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-logo {
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
    }

    .video-logo-img {
        width: 50%;
        max-width: 250px;
    }

    .video-logo-text {
        font-size: clamp(2rem, 8vw, 3rem);
        left: -15px;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .video-section-wrapper {
        height: 100vh;
    }

    .video-section-wrapper + .section {
        margin-top: 0;
    }

    .section {
        padding: 2rem 0;
    }

    .page-header {
        padding: 6rem 0 1.5rem;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .logo-img {
        width: 100px;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-links {
        padding: 1rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .solution-content {
        padding: 1.5rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .video-benefits {
        left: 0.5rem;
        right: 0.5rem;
        top: 10%;
    }

    .video-benefit {
        padding: 0.75rem;
    }

    .video-benefit-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .video-benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .video-benefit h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .video-benefit p {
        font-size: 0.8rem;
    }

    .video-logo {
        bottom: 1.5rem;
        width: 95%;
    }

    .video-logo-img {
        width: 45%;
        max-width: 180px;
    }

    .video-logo-text {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        left: -8px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .ipad-frame {
        padding: 6px;
        border-radius: 10px;
    }

    .ipad-screen {
        border-radius: 6px;
    }

    .screenshot-item h4 {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .screenshot-item p {
        font-size: 0.8rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-card {
        animation: none;
    }

    .pulse-text {
        animation: none;
    }

    .hero-badge .dot {
        animation: none;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.5s; }
.animate-on-scroll[data-delay="6"] { transition-delay: 0.6s; }

/* AI visual language - technical grid pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(34, 197, 94, 0.02) 0px,
            rgba(34, 197, 94, 0.02) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(34, 197, 94, 0.02) 0px,
            rgba(34, 197, 94, 0.02) 1px,
            transparent 1px,
            transparent 60px
        ),
        radial-gradient(ellipse at 20% 50%, rgba(79, 156, 249, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(123, 97, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced AI/tech color accents */
.ai-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
}

.sensing-accent {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* ================================
   Homepage-specific styles
   ================================ */

/* Pain Points Section */
.pain-points-grid {
    display: grid;
    gap: 1rem;
}

.pain-point {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
}

.pain-point h4 {
    color: #ef4444;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pain-point p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Workflow Steps */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.workflow-number {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.workflow-content h3 {
    margin-bottom: 0.5rem;
}

.workflow-time {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

/* Benefit Highlights */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-highlight {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.benefit-highlight .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    font-family: var(--font-heading);
}

.benefit-highlight .label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Morning Meeting Visual */
.morning-meeting-visual {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.meeting-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.meeting-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-heading);
}

.meeting-title {
    color: var(--text-secondary);
}

/* Task Cards */
.task-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.task-priority {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.task-priority.high { background: #ef4444; }
.task-priority.medium { background: #f59e0b; }
.task-priority.low { background: #22c55e; }

.task-info h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.task-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Green Logo Variants */
.green-logo {
    color: #22c55e !important;
}

.logo-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* ================================
   Homepage Mobile Styles
   ================================ */

@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }

    .workflow-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .morning-meeting-visual {
        padding: 1.25rem;
    }

    .meeting-time {
        font-size: 1.5rem;
    }

    .benefit-highlight {
        padding: 1rem;
    }

    .benefit-highlight .number {
        font-size: 1.75rem;
    }

    .benefit-highlight .label {
        font-size: 0.85rem;
    }

    .pain-point {
        padding: 1rem;
    }

    .pain-point h4 {
        font-size: 0.95rem;
    }

    .pain-point p {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .workflow-step {
        padding: 1rem;
    }

    .workflow-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .workflow-content h3 {
        font-size: 1rem;
    }

    .workflow-time {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .morning-meeting-visual {
        padding: 1rem;
    }

    .meeting-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .meeting-time {
        font-size: 1.25rem;
    }

    .task-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .task-info h5 {
        font-size: 0.85rem;
    }

    .task-info p {
        font-size: 0.75rem;
    }

    .benefit-highlight .number {
        font-size: 1.5rem;
    }

    .benefit-highlight .label {
        font-size: 0.75rem;
    }

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

/* ================================
   Solutions Page Styles
   ================================ */

.process-section {
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) > * {
    direction: ltr;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Roadmap Items */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.roadmap-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
}

.roadmap-item.active {
    border-color: var(--accent-primary);
}

.roadmap-item.active::before {
    content: 'MVP';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-gradient);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.roadmap-date {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.roadmap-item h4 {
    margin-bottom: 0.5rem;
}

.roadmap-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 1024px) {
    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step:nth-child(even) {
        direction: ltr;
    }

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

/* ================================
   About Page Styles
   ================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-item {
    margin-bottom: 2rem;
}

.problem-item h3 {
    margin-bottom: 1rem;
}

.problem-item h3.cost { color: #ef4444; }
.problem-item h3.warning { color: #f59e0b; }
.problem-item h3.info { color: #4f9cf9; }

.problem-item p {
    color: var(--text-secondary);
}

.problem-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}
