@font-face {
    font-family: 'Glitched';
    src: url('../fonts/font/Glitched-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glitched';
    src: url('../fonts/font/Glitched-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Glitched';
    src: url('../fonts/font/Glitched-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --page-gradient: linear-gradient(135deg, #ffffff 0%, #fffef0 100%);
}

html {
    min-height: 100%;
    background: var(--page-gradient);
    overflow-x: hidden;
}

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

body {
    font-family: 'Glitched', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100%;
    background: transparent;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    word-spacing: normal;
    padding-top: 90px;
}

body.menu-open {
    overflow: hidden;
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 700;
}

h3,
h4,
h5,
h6 {
    font-weight: 500;
}

strong {
    font-weight: 700;
}

button,
input,
textarea,
select {
    font-family: 'Glitched';
    font-weight: 400;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Glitched';
    font-weight: 300;
    color: #777777;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #ffffff;
    border-bottom: 3px solid #FFD700;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    will-change: transform;
}

body {
    padding-top: 90px;
}

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

.main-nav {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #000000;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
}

.menu-toggle.active span {
    background-color: #ffffff;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 80px 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav nav {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.mobile-nav nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav nav ul li a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav nav ul li a:hover {
    color: #FFD700;
}

.mobile-cta {
    display: block;
    text-align: center;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: block;
    line-height: 0;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.header-content .cta-button {
    margin-left: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

.cta-button {
    background-color: #FFD700;
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FFC700;
}

.hero {
    padding: 80px 0;
    background: transparent;
}

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

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #FFD700;
    color: #000000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #FFC700;
}

.btn-secondary {
    background-color: #000000;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #333333;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.hero-image picture {
    display: block;
    width: 100%;
    position: relative;
}

.hero-image picture::before {
    content: '';
    display: block;
    padding-top: 66.67%;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #FFD700;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e6c200;
}

.section {
    padding: 80px 0;
    background: transparent;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    word-wrap: break-word;
}

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

.feature-card {
    background-color: #fffef0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    transition: none;
    text-align: center;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.feature-card p {
    color: #333;
    line-height: 1.8;
    font-weight: 300;
}

.steps {
    background: inherit;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: transparent;
    padding: 25px;
    border-radius: 10px;
}

.step-number {
    background-color: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-section {
    background: inherit;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fffef0;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 2px solid #FFD700;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    text-align: center;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #333;
    line-height: 1.8;
    font-weight: 300;
}

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

.advantage-card {
    text-align: center;
    padding: 30px;
    background-color: #fffef0;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

#mirrors .advantage-card {
    background-color: transparent;
    border: none;
}

.links-page .advantages .advantage-card {
    background-color: transparent;
    border: none;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.security-tips {
    background: inherit;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-section {
    background-color: #fffef0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.tip-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
}

.tip-section ul {
    list-style: none;
}

.tip-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.tip-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 700;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.link-card {
    background-color: #fffef0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    text-align: center;
}

.link-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.link-card p {
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.link-card a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.checklist {
    background-color: transparent;
    padding: 40px 0;
    border-radius: 0;
    border: none;
}

.checklist h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #fffef0;
    border-radius: 5px;
    border: 2px solid #FFD700;
    word-spacing: normal;
    hyphens: auto;
    line-height: 1.6;
}

.checklist-item:before {
    content: "✓";
    color: #FFD700;
    font-size: 24px;
    font-weight: 700;
}

.contact-section {
    background: inherit;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 20px;
    color: #333;
    font-weight: 300;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-weight: 300;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .menu-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .header-content .cta-button {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .features,
    .steps-grid,
    .advantages,
    .tips-grid,
    .links-grid,
    .contact-grid,
    .footer-content,
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .feature-card,
    .tip-section,
    .advantage-card,
    .link-card,
    .checklist,
    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .feature-card h3,
    .advantage-card h3,
    .link-card h3 {
        font-size: 18px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    footer {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

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