:root {
    --cobalt: #0047AB;
    --cobalt-light: #1E5FBF;
    --cobalt-dark: #003A8C;
    --bg-cream: #FAF6F1;
    --bg-cream-dark: #F2EDE6;
    --border-light: #E0D9CF;
    --border-medium: #C8BFAE;
    --text-muted: #7A7062;
    --text-secondary: #5C5347;
    --text-primary: #3D352C;
    --text-dark: #1A1510;
    --bg-highlight: #F5F0EA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,71,171,0.02) 2px, rgba(0,71,171,0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,71,171,0.02) 2px, rgba(0,71,171,0.02) 4px);
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 241, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 3px;
    transition: opacity 0.2s;
    opacity: 0.8;
}

.lang-toggle:hover {
    opacity: 1;
}

.lang-flag {
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0,0,0,0.15);
}

.nav-socials {
    display: flex;
    gap: 16px;
    list-style: none;
}

.nav-socials a {
    display: block;
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.nav-socials a:hover {
    opacity: 1;
}

.nav-socials svg {
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--cobalt);
}

.nav-links a.active {
    color: var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    padding-bottom: 4px;
}

.nav-links a.nav-buy-btn {
    background: var(--cobalt);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-links a.nav-buy-btn:hover {
    color: #FFFFFF;
    background: var(--cobalt-light);
}

/* Views System */
.view {
    display: none;
    min-height: 100vh;
    padding-top: 64px;
}

.view.active {
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px 20px;
}

.hero-content {
    max-width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-shadow: none;
}

.hero-title-orbitron {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.5;
}

.hero-subtitle-spaced {
    letter-spacing: 0.12em;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--cobalt);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 71, 171, 0.25);
}

.cta-button:hover {
    background: var(--cobalt-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 71, 171, 0.35);
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: var(--bg-cream-dark);
    border-color: var(--cobalt);
    box-shadow: 0 4px 16px rgba(0, 71, 171, 0.15);
}

/* Section */
section {
    padding: 120px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 64px;
    font-weight: 300;
}

.section-subtitle-spaced {
    letter-spacing: 0.12em;
}

/* Product Section */
.product-visual {
    width: 100%;
    max-width: 600px;
    background: transparent;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-visual::after {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 80px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-cream-dark);
    border-radius: 8px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid var(--border-light);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.spec-list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.spec-item {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.spec-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
}

/* Video Section */
.video-container {
    margin: 80px auto;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-cream-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.video-container video {
    width: 100%;
    display: block;
}

/* PCB Showcase */
.pcb-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pcb-showcase-img {
    display: flex;
    justify-content: center;
}

.pcb-showcase-img img {
    display: block;
    width: 75%;
    max-width: 350px;
    border-radius: 12px;
    object-fit: contain;
    overflow: hidden;
}

.pcb-showcase-text h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pcb-showcase-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

@media (max-width: 768px) {
    .pcb-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .pcb-showcase-text p {
        text-align: left;
    }
}

/* Hero Demo Video */
.hero-demo {
    margin-top: 32px;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-demo video {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Assistant Page */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-showcase:last-child {
    margin-bottom: 0;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-visual {
    aspect-ratio: 4/3;
    background: var(--bg-cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-muted);
    font-size: 14px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-visual::after {
    display: none;
}

.feature-text h3 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Hardware Section */
.hardware-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hardware-subtitle {
    letter-spacing: 0.3em;
}

.hardware-hero {
    display: grid;
    grid-template-columns: 400px 1fr auto;
    gap: 32px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.hardware-hero-video {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hardware-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hardware-hero-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hardware-hero-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.hardware-specs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 24px;
    border-left: 1px solid var(--border-light);
    white-space: nowrap;
}

.hardware-spec-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.hardware-spec-row span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Hardware Product List */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.product-list-item {
    display: grid;
    grid-template-columns: 160px 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
    padding: 24px 32px;
    border-radius: 12px;
    background: var(--bg-cream-dark);
    border: 1px solid var(--border-light);
}

.product-list-item-img {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list-item-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-list-item-icons .icon-separator {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
}

.product-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.product-list-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.product-list-item-content .product-list-item-link {
    margin-top: auto;
}

.product-list-item-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-list-item-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

.product-list-item-specs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-left: 24px;
    border-left: 1px solid var(--border-light);
    white-space: nowrap;
}

.product-list-item-specs .spec-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
}

.product-list-item-specs .spec-label {
    color: var(--text-muted);
}

.product-list-item-specs .spec-val {
    color: var(--text-dark);
    font-weight: 500;
}

.product-list-item-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    background: var(--cobalt);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.product-list-item-link.kickstarter {
    background: #05CE78;
}

.product-list-item-link.kickstarter:hover {
    background: #04b86b;
}


.product-list-item-link:hover {
    background: var(--cobalt-light);
    transform: translateY(-1px);
}

.product-list-item-link::after {
    content: '\2192';
}


/* Cobalt Halo Animation */
.cobalt-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    z-index: 0;
}

.cobalt-halo::before,
.cobalt-halo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 71, 171, 0.25);
    animation: halo-pulse 2s ease-out infinite;
}

.cobalt-halo::before {
    width: 100%;
    height: 100%;
}

.cobalt-halo::after {
    width: 100%;
    height: 100%;
    animation-delay: 1s;
}

@keyframes halo-pulse {
    0% {
        width: 72px;
        height: 72px;
        opacity: 0.6;
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}

/* Cobalt Mic Button */
.cobalt-mic-wrapper {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.cobalt-mic-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 71, 171, 0.4);
    transition: background 0.3s;
}

.cobalt-mic-circle img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Cobalt Transcript */
.cobalt-transcript {
    flex: 1;
    max-width: 300px;
    min-height: 60px;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--bg-cream-dark);
    border: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Test Assistant Row */
.test-assistant-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.test-assistant-row h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Assistant Photos Portrait */
.assistant-photo-portrait {
    aspect-ratio: 1080/2340;
    max-width: 50%;
    background: var(--bg-cream-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.assistant-photo-portrait img,
.assistant-photo-portrait video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.assistant-photo-portrait::after {
    display: none;
}

/* Assistant Grid */
.assistant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.assistant-grid-item {
    text-align: center;
}

.assistant-grid-item .assistant-photo-portrait {
    max-width: 75%;
    margin: 0 auto;
}

.assistant-grid-item h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 10px;
}

.assistant-grid-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* About Page - Team Block */
.about-team-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-team-block img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-team-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-team-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 21, 16, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-cream-dark);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 48px;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.modal-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    background: var(--bg-cream);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cobalt);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--cobalt);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 71, 171, 0.25);
}

.submit-button:hover {
    background: var(--cobalt-light);
    box-shadow: 0 8px 24px rgba(0, 71, 171, 0.35);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button.submit-button-kickstarter {
    background: #05CE78;
    box-shadow: 0 4px 16px rgba(5, 206, 120, 0.25);
}

.submit-button.submit-button-kickstarter:hover {
    background: #04b86b;
    box-shadow: 0 8px 24px rgba(5, 206, 120, 0.35);
}

/* Success Message Animation */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    animation: checkmark 0.5s ease-out;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-light);
    padding: 48px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-left {
    justify-self: start;
}

.footer-center {
    justify-self: center;
}

.footer-right {
    justify-self: end;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-logo-center {
    height: 32px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.footer-logo-center:hover {
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    display: block;
    width: 20px;
    height: 20px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-socials {
        display: none;
    }

    .lang-toggle {
        font-size: 12px;
        padding: 3px 8px;
    }

    .hero {
        padding: 80px 24px 60px;
    }

    .hero h1 {
        font-size: clamp(20px, 5.5vw, 40px);
        white-space: nowrap;
    }

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 80px 0;
    }

    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

    .product-grid {
        gap: 40px;
    }

    .spec-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-self: center;
    }

    .footer-links {
        justify-content: center;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .product-list-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .product-list-item-img {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .product-list-item-specs {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-light);
        padding-top: 16px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-team-block {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .hardware-hero {
        grid-template-columns: 1fr;
    }

    .hardware-specs-sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-light);
        padding-top: 16px;
    }

    .assistant-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}
