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

:root {
    --orange: #ff6b00;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray-mid: #666666;
    --gray-dark: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    border-bottom: 3px solid var(--black);
    z-index: 1000;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 12px 30px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-header:hover {
    background: var(--orange);
}

.mobile-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 40px;
    z-index: 999;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

main {
    margin-top: 80px;
}

.hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: calc(100vh - 80px);
}

.hero-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gray-light);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    width: fit-content;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-mid);
    margin-bottom: 40px;
    max-width: 500px;
}

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

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 3px solid var(--black);
}

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

.hero-image {
    position: relative;
    overflow: hidden;
    background: var(--gray-dark);
}

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

.section {
    padding: 120px 60px;
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-gray {
    background: var(--gray-light);
}

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

.section-header {
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-mid);
    max-width: 700px;
}

.section-black .section-subtitle {
    color: #999;
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

.card {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 50px;
    transition: all 0.3s;
}

.section-black .card {
    background: var(--gray-dark);
    border-color: var(--gray-mid);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 20px;
    line-height: 1;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-mid);
}

.section-black .card-text {
    color: #999;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.split-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-dark);
    overflow: hidden;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 100px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-black .stat-label {
    color: #999;
}

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

.testimonial {
    background: var(--white);
    padding: 50px;
    border-left: 5px solid var(--orange);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: var(--gray-mid);
}

.form-section {
    background: var(--gray-light);
    padding: 100px 60px;
}

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

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

.form-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px;
    border: 3px solid var(--black);
    background: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.form-error {
    color: var(--orange);
    font-size: 14px;
    margin-top: 8px;
    display: none;
    font-weight: 600;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: var(--orange);
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--orange);
}

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

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-text {
    color: #999;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--orange);
}

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

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid var(--gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--black);
    padding: 30px 60px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cookie-text {
    color: var(--gray-mid);
    margin-bottom: 20px;
}

.cookie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.cookie-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-item input {
    width: 18px;
    height: 18px;
}

.cookie-item label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: var(--black);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--orange);
}

.cookie-btn-settings {
    background: var(--orange);
    color: var(--white);
}

.cookie-btn-settings:hover {
    background: var(--black);
}

.cookie-btn-reject {
    background: var(--gray-light);
    color: var(--black);
}

.cookie-btn-reject:hover {
    background: var(--gray-mid);
    color: var(--white);
}

.content-page {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-header {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 3px solid var(--black);
}

.content-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.content-subtitle {
    font-size: 22px;
    color: var(--gray-mid);
    line-height: 1.6;
}

.content-section {
    margin-bottom: 60px;
}

.content-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-mid);
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    margin: 30px 0;
}

.content-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-mid);
}

.content-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.content-image {
    margin: 60px 0;
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-dark);
    overflow: hidden;
}

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

.highlight {
    background: var(--gray-light);
    padding: 40px;
    border-left: 5px solid var(--orange);
    margin: 40px 0;
}

.highlight-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-mid);
}

.legal-page {
    padding: 120px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
}

.legal-date {
    color: var(--gray-mid);
    font-size: 16px;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-mid);
    margin-bottom: 20px;
}

.legal-list {
    margin: 20px 0 20px 30px;
}

.legal-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-mid);
}

.thanks-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-mid);
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-image {
        min-height: 400px;
    }

    .section {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 40px;
    }

    .grid-2,
    .grid-3,
    .split,
    .testimonials {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-banner {
        padding: 20px;
    }

    .cookie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .content-title,
    .legal-title {
        font-size: 40px;
    }
}
