/* Satoshi Font - Local */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
         url('fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Medium.woff2') format('woff2'),
         url('fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Bold.woff2') format('woff2'),
         url('fonts/Satoshi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-primary: #ED6B21;
    --color-primary-hover: #d45e1a;
    --color-bg: #FAF9F7;
    --color-bg-light: #F5F4F2;
    --color-bg-card: #FFFFFF;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bed: #E8E6E3;
    --color-border: #E0DEDA;
    --color-accent-green: #4CAF50;
    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.page-wrapper {
    background-color: var(--color-bg);
    min-height: 100vh;
}

/* Header & Navigation */
.header {
    padding: 20px 40px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-bg-light);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    max-width: 900px;
    margin: auto auto;
}

.logo img {
    height: 32px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-download:hover {
    background-color: var(--color-primary-hover);
}

.btn-arrow {
    width: 12px;
    height: 12px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title strong {
    font-weight: 700;
}

.hero-icon {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    margin: 0 4px;
}

.hero-description {
    font-size: 16px;
    color: var(--color-text);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.hero-description strong {
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

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

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--color-primary);
    transition: all 0.2s ease;
}

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

.btn-secondary:hover .btn-arrow-dark {
    color: var(--color-white);
}

.btn-arrow-dark {
    width: 12px;
    height: 12px;
    color: var(--color-primary);
}

/* Hero Decorations */
.hero-decorations {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 20px;
}

.decoration-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-style: italic;
    transform: translateX(-100%);
}

.decoration-text {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
    transform: rotate(-8deg);
}

.decoration-arrow {
    width: 44px;
    height: 39px;
    margin-top: 8px;
    margin-left: 20px;
}

.decoration-right {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transform: translateX(100%);
}

.up-arrow {
    width: 40px;
    height: 40px;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rating-asset {
    height: 55px;
    width: auto;
}

.rating-text {
    font-size: 13px;
    font-style: italic;
    color: var(--color-text);
    margin-top: 4px;
}

/* Printer Bed */
.printer-bed {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.bed-surface {
    width: calc(100% - 50px);
    height: 29px;
    background-color: #E8E6E3;
    border-radius: 26px 26px 0 0;
}

.bed-body {
    display: flex;
    width: 100%;
}

.bed-side {
    width: 25px;
    background-color: #E8E6E3;
    flex-shrink: 0;
}

.bed-side-left {
    border-radius: 0 0 0 12px;
}

.bed-side-right {
    border-radius: 0 0 12px 0;
}

.bed-content {
    flex: 1;
    height: 500px;
    background-color: #FFFFFF;
    background-image:
        linear-gradient(45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(-45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #F0EFED 75%),
        linear-gradient(-45deg, transparent 75%, #F0EFED 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    border-radius: 20px;
}

/* Features Section */
.features {
    background-color: var(--color-white);
    padding: 80px 40px;
    text-align: center;
}

.features-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.tick-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.features-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    font-style: italic;
}

.features-title strong {
    font-weight: 700;
}

.features-description {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    line-height: 1.7;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.feature-card-large .feature-card-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-card-small .feature-card-image {
    height: 150px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card-description {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Grid layout for feature cards */
@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .feature-card-large {
        grid-column: span 3;
    }

    .feature-card-small {
        grid-column: span 2;
    }
}

/* Download Section */
.download-section {
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
}

.download-title {
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
}

.download-subtitle {
    font-size: 18px;
    color: var(--color-text);
    display: block;
    margin-bottom: 32px;
}

.os-tabs {
    display: inline-flex;
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 40px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
}

.os-tab {
    padding: 12px 32px;
    border: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.os-tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.os-tab:hover:not(.active) {
    background-color: var(--color-bg-card);
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 32px;
    text-align: left;
}

.download-card-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.download-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-card-specs {
    list-style: none;
    margin-bottom: 24px;
}

.download-card-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
}


.download-card .btn-primary {
    display: inline-flex;
}

.download-card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.download-card-buttons .btn-primary {
    font-size: 13px;
    padding: 12px 20px;
}

/* Nightly Section */
.nightly-section {
    border-top: none;
    background: var(--color-white);
}
img.bed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
/* Install Guide Section */
.install-guide {
    background-color: var(--color-white);
    padding: 80px 40px;
    text-align: center;
}

.install-guide-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 48px;
}

.install-guide-video {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 16px;
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background-color: #FFFFFF;
    background-image:
        linear-gradient(45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(-45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #F0EFED 75%),
        linear-gradient(-45deg, transparent 75%, #F0EFED 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    border-radius: 16px;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.install-step {
    display: flex;
    flex-direction: column;
}
.video-placeholder img{
width: 100%;
height: 100%;
    border-radius: 10px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

.step-description strong {
    font-weight: 600;
}

/* How to Use Section */
.how-to-use {
    background-color: var(--color-bg-light);
    padding: 80px 40px;
}

.how-to-use-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 60px;
}

.how-to-use-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.how-to-use-image {
    border-radius: 16px;
    overflow: hidden;
}

.how-to-use-image img {
    width: 100%;
    height: auto;
    display: block;
}

.how-to-use-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 20px;
}

/* Progress track */
.how-to-use-steps::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 4px;
    background-color: var(--color-border);
    border-radius: 2px;
}

/* Progress indicator */
.progress-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 56px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: top 0.3s ease;
}

.use-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.use-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.use-step.active .use-step-number {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-border);
}

.use-step:not(.active) .use-step-number {
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.use-step-content {
    flex: 1;
}

.use-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.use-step:not(.active) .use-step-title {
    color: var(--color-text-light);
}

.use-step-description {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Video Guide Section */
.video-guide {
    background-color: var(--color-white);
    padding: 80px 40px;
    text-align: center;
}

.video-guide-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 48px;
}

.video-guide-container {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--color-border);
    border-radius: 24px;
    padding: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.video-guide-player {
    width: 100%;
    display: block;
    border-radius: 16px;
    background-color: #000;
}

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.video-wrapper .play-button:hover {
    transform: translate(-50%, -50%) translateY(-1px);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.12);
}

.video-wrapper .play-button:active {
    transform: translate(-50%, -50%) translateY(1px);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}

.video-wrapper.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

.video-guide-placeholder {
    width: 100%;
    height: 450px;
    background-color: #FFFFFF;
    background-image:
        linear-gradient(45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(-45deg, #F0EFED 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #F0EFED 75%),
        linear-gradient(-45deg, transparent 75%, #F0EFED 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.play-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.12);
}

.play-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}

.play-button svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
    padding: 80px 40px;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Conclusion Section */
.conclusion-section {
    background-color: var(--color-bg);
    padding: 80px 40px;
}

.conclusion-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
}

.conclusion-text a {
    color: var(--color-text);
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: var(--color-bg);
    padding: 0 40px 80px;
}

.disclaimer-section::before {
    content: '';
    display: block;
    max-width: 1100px;
    margin: 0 auto 60px;
    height: 1px;
    background-color: var(--color-border);
}

.disclaimer-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    padding: 24px 40px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 18px;
    height: 18px;
}

.copyright {
    font-size: 14px;
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    padding: 100px 40px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-links li a {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-links li a:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .nav-links {
        gap: 20px;
    }

    .footer {
        padding: 24px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-left {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
        position: relative;
        z-index: 1000;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .btn-download {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 40px 20px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-icon {
        width: 36px;
        height: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-decorations {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features {
        padding: 60px 20px;
    }

    .features-title {
        font-size: 32px;
    }

    .features-description br {
        display: none;
    }

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

    .feature-card-large,
    .feature-card-small {
        grid-column: 1 !important;
    }

    .download-section {
        padding: 60px 20px;
    }

    .download-title {
        font-size: 32px;
    }

    .download-cards {
        grid-template-columns: 1fr;
    }

    .os-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .download-card-buttons {
        flex-direction: column;
    }

    .install-guide {
        padding: 60px 20px;
    }

    .install-guide-title {
        font-size: 32px;
    }

    .video-placeholder {
        height: 250px;
    }

    .install-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-to-use {
        padding: 60px 20px;
    }

    .how-to-use-title {
        font-size: 32px;
    }

    .how-to-use-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-guide {
        padding: 60px 20px;
    }

    .video-guide-title {
        font-size: 32px;
    }

    .video-guide-placeholder {
        height: 250px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-title {
        font-size: 36px;
    }

    .conclusion-section {
        padding: 60px 20px;
    }

    .conclusion-title,
    .disclaimer-title {
        font-size: 28px;
    }

    .disclaimer-section {
        padding: 0 20px 60px;
    }

    .page-content {
        padding: 40px 20px 60px;
    }

    .contact-form {
        padding: 24px;
    }
}

/* Inner Pages Styles */
.page-hero {
    background-color: var(--color-bg);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text);
}

.page-content {
    background-color: var(--color-white);
    padding: 60px 40px 80px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-container h2:first-of-type {
    margin-top: 0;
}

.content-container p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.content-container a {
    color: var(--color-primary);
    text-decoration: underline;
}

.content-container a:hover {
    text-decoration: none;
}

.content-list {
    list-style: none;
    margin-bottom: 24px;
}

.content-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 8px;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.intro-text {
    font-size: 16px;
    margin-bottom: 32px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(180deg, #F5F4F2 0%, #FFFFFF 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-family);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-text);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}

.contact-note {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 24px;
}

.contact-note h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-note p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px 40px;
    }

    .page-title {
        font-size: 32px;
    }
}
