:root {
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --orange: #FF7043;
    --orange-dark: #E64A19;
    --text: #2D3436;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

.section-padding { padding: 80px 0; }
.bg-cream { background-color: var(--cream); }
.text-orange { color: var(--orange); }

/* HEADER */
.site-header {
    background: var(--cream);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a, .dropbtn {
    text-decoration: none; color: var(--text); font-weight: 600;
    background: none; border: none; cursor: pointer; font-size: 16px;
}

.dropdown { position: relative; }
.dropdown-content {
    display: none; position: absolute; background: white;
    min-width: 200px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    top: 100%; border-radius: 8px; padding: 10px 0;
}
.dropdown-content a { display: block; padding: 10px 20px; font-size: 14px; }
.dropdown:hover .dropdown-content { display: block; }

/* BUTTONS */
.btn-orange {
    background: var(--orange); color: white; border: none;
    padding: 12px 25px; border-radius: 6px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 35px; font-size: 18px; }
.btn-outline {
    border: 2px solid var(--orange); color: var(--orange);
    text-decoration: none; border-radius: 6px; font-weight: 700;
}

/* HERO */
.hero { padding: 120px 0; text-align: center; }
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 18px; color: #636e72; max-width: 700px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }

/* CALCULATOR */
.calc-box {
    background: white; border-radius: 15px; padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); position: relative;
    max-width: 800px; margin: 0 auto;
}
.calc-step { display: none; }
.calc-step.active { display: block; animation: fadeIn 0.4s; }
.calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 20px 0; }
.calc-option { cursor: pointer; }
.calc-option input { display: none; }
.opt-card {
    border: 2px solid #eee; padding: 20px; border-radius: 8px;
    text-align: center; font-weight: 600; transition: 0.3s;
}
.calc-option input:checked + .opt-card {
    border-color: var(--orange); background: #fff5f2; color: var(--orange);
}
.calc-footer { display: flex; justify-content: space-between; margin-top: 30px; }
.calc-result-overlay {
    display: none; position: absolute; top:0; left:0; width:100%; height:100%;
    background: white; border-radius:15px; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.price-box { font-size: 32px; font-weight: 800; color: var(--orange); margin: 20px 0; }

/* GRIDS (INDUSTRIES & STEPS) */
.info-grid, .steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px;
}
.info-card { background: var(--cream); padding: 40px; border-radius: 12px; transition: 0.3s; }
.info-card:hover { background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.step-item { position: relative; padding-top: 40px; }
.step-num { font-size: 50px; font-weight: 800; color: rgba(255, 112, 67, 0.1); position: absolute; top: 0; left: 0; }

/* FOOTER */
.site-footer { padding: 60px 0 20px; background: var(--cream); border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-title { font-weight: 800; color: var(--orange); margin-bottom: 20px; text-transform: uppercase; font-size: 13px; }
.footer-col a { display: block; text-decoration: none; color: var(--text); margin-bottom: 10px; font-size: 14px; }
.footer-bottom { border-top: 1px solid #ddd; padding-top: 20px; text-align: center; font-size: 12px; color: #888; }

/* MOBILE NAVIGATION */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--text); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; width: 100%; height: 100%; background: white; z-index: 999; padding: 40px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 32px; }
    .calc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { flex-direction: column; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Стили для модального окна */
.modal-overlay {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Темный фон вокруг */
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.w-100 { width: 100%; }

.legal-text {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Фикс для кнопок, чтобы они нажимались */
.site-header, .hero {
    position: relative;
    z-index: 10;
}

:root {
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --orange: #FF7043;
    --orange-hover: #F4511E;
    --text: #333333;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* --- HEADER --- */
.site-header {
    background-color: var(--cream);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.desktop-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

/* Dropdown */
.dropdown { position: relative; }
.dropbtn {
    background: none; border: none; font-size: 16px; font-weight: 500;
    cursor: pointer; color: var(--text);
}
.dropdown-content {
    display: none; position: absolute; background: var(--white);
    min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%; left: 0; border-radius: 4px;
}
.dropdown-content a {
    padding: 12px 16px; display: block; font-size: 14px;
}
.dropdown-content a:hover { background: var(--cream); color: var(--orange); }
.dropdown:hover .dropdown-content { display: block; }

/* Button */
.btn-orange {
    background-color: var(--orange);
    color: white; border: none; padding: 12px 24px;
    border-radius: 4px; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.btn-orange:hover { background-color: var(--orange-hover); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer;
}
.hamburger span { width: 24px; height: 3px; background: var(--text); }

/* --- FOOTER --- */
.site-footer {
    background-color: var(--cream);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 { color: var(--orange); margin-bottom: 20px; }
.footer-col a { display: block; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    text-align: center; border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px; font-weight: bold;
}

/* --- MODAL --- */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.6);
    z-index: 1000; align-items: center; justify-content: center;
}
.modal-card {
    background: var(--white); padding: 40px; border-radius: 8px;
    width: 100%; max-width: 400px; position: relative;
}
.modal-card input {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box;
}
.close-modal {
    position: absolute; right: 15px; top: 10px; font-size: 28px;
    background: none; border: none; cursor: pointer;
}
.form-footer-text { font-size: 11px; color: #777; margin-top: 15px; }
.full-width { width: 100%; }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: var(--white);
    z-index: 200; padding: 50px 20px; box-sizing: border-box;
}
.mobile-menu a { display: block; font-size: 22px; text-decoration: none; color: var(--text); margin-bottom: 15px; }
.menu-label { color: var(--orange); font-weight: bold; margin: 20px 0 10px; text-transform: uppercase; font-size: 14px; }
.close-menu { position: absolute; right: 20px; top: 20px; font-size: 35px; border: none; background: none; }

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- FOOTER STYLES --- */
.site-footer {
    background-color: var(--cream);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 14px; /* Стандартный размер для футера */
}

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

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

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.contact-item {
    margin: 0 0 10px 0;
    color: var(--text);
}

/* Самая нижняя полоса */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 25px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    color: #888; /* Серый цвет для юридической надписи */
    font-size: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Стили для страницы команды */
.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--orange);
}

/* Квадрат с должностью */
.position-box {
    width: 70px;
    height: 70px;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 18px;
    border-radius: 8px; /* Слегка скругленные углы для стиля */
    text-transform: uppercase;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text);
}

.position-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact {
    font-size: 14px;
    color: #636e72;
    font-style: italic;
    line-height: 1.4;
}

/* Адаптив для маленьких экранов */
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-num {
    width: 35px;
    height: 35px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.4;
}

.faq-item p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    border: 2px dashed #ddd;
}

.faq-cta p {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Hybrid Page Styles */
.badge { background: var(--orange); color: white; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 60px 0; }
.hero-text { flex: 1; }
.hero-visual { flex: 1; display: flex; justify-content: center; }

/* Инфографика в Hero */
.hybrid-logic { text-align: center; }
.code-box { background: var(--dark); color: white; padding: 20px 40px; border-radius: 10px; font-weight: 800; position: relative; }
.logic-arrow { width: 2px; height: 50px; background: var(--orange); margin: 10px auto; position: relative; }
.logic-arrow::after { content: ''; position: absolute; bottom: 0; left: -4px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 8px solid var(--orange); }
.platforms { display: flex; gap: 20px; }
.plat-icon { border: 2px solid var(--orange); padding: 10px 20px; border-radius: 8px; font-weight: 700; }

/* Карточки выбора */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.choice-card { background: white; padding: 30px; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; }
.choice-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.choice-icon { font-size: 30px; margin-bottom: 15px; }

/* Статистика */
.benefit-flex { display: flex; align-items: center; gap: 60px; }
.benefit-info { flex: 2; }
.benefit-list { list-style: none; margin-top: 20px; }
.benefit-list li { margin-bottom: 15px; position: relative; padding-left: 25px; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.benefit-stats { flex: 1; display: grid; gap: 20px; }
.stat-item { background: var(--orange); color: white; padding: 30px; border-radius: 15px; text-align: center; }
.stat-num { font-size: 40px; font-weight: 800; display: block; }

/* Таблица сравнения */
.table-container { overflow-x: auto; margin-top: 40px; }
.comp-table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; }
.comp-table th, .comp-table td { padding: 20px; border-bottom: 1px solid #eee; text-align: left; }
.comp-table th { background: #f8f9fa; font-weight: 800; }
.comp-table td.highlight { background: #fff5f2; font-weight: 700; }

/* Таймлайн */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.t-item { position: relative; padding-top: 30px; }
.t-dot { width: 40px; height: 40px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 15px; }
.t-content h4 { margin-bottom: 10px; }

@media (max-width: 768px) { .hero-flex, .benefit-flex { flex-direction: column; text-align: center; } .benefit-list { text-align: left; } }

/* iOS Page Specifics */
.micro-features { display: flex; flex-wrap: wrap; gap: 15px; margin: 25px 0; font-size: 14px; font-weight: 600; color: #636e72; }
.micro-features span { background: #eee; padding: 5px 12px; border-radius: 5px; }

/* Solutions Grid */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.sol-card { background: var(--white); border: 1px solid #eee; padding: 40px 20px; text-align: center; border-radius: 12px; transition: 0.3s; }
.sol-card:hover { border-color: var(--orange); transform: scale(1.02); }

/* Tech Flex */
.tech-flex { display: flex; gap: 60px; align-items: flex-start; }
.tech-content { flex: 1; }
.tech-benefits { flex: 1; display: grid; gap: 20px; }
.tech-stack { display: flex; gap: 10px; margin-top: 20px; }
.tech-tag { background: var(--dark); color: white; padding: 6px 15px; border-radius: 4px; font-size: 13px; font-weight: 700; }
.benefit-item-small { background: white; padding: 20px; border-radius: 10px; border-left: 4px solid var(--orange); }

/* Vertical Timeline */
.v-timeline { max-width: 600px; margin: 40px auto; position: relative; padding-left: 30px; border-left: 2px solid #eee; }
.v-step { position: relative; margin-bottom: 40px; }
.v-dot { position: absolute; left: -37px; top: 0; width: 12px; height: 12px; background: var(--orange); border-radius: 50%; border: 4px solid white; box-shadow: 0 0 0 2px var(--orange); }
.v-txt h4 { margin-bottom: 5px; color: var(--text); }
.v-txt p { font-size: 14px; color: #636e72; }

/* Dark Publication Box */
.bg-dark { background: #1e272e; color: white; }
.pub-box { display: flex; align-items: center; gap: 40px; padding: 60px 0; }
.pub-icon { font-size: 80px; color: var(--orange); }
.pub-text p { opacity: 0.8; margin-top: 10px; }

@media (max-width: 768px) {
    .tech-flex, .pub-box { flex-direction: column; text-align: center; }
    .tech-stack { justify-content: center; }
}

/* Android Page Styling */
.h-process {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.p-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
}

.p-num {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: 800;
    font-size: 14px;
    z-index: 2;
    position: relative;
}

.p-line {
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.p-step:last-child .p-line { display: none; }

.p-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* Визуал для Hero (заглушка под девайс) */
.android-box {
    width: 280px;
    height: 400px;
    border: 8px solid #333;
    border-radius: 30px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.tech-label {
    background: var(--orange);
    color: white;
    padding: 10px;
    font-weight: 800;
    font-size: 12px;
    transform: rotate(-5deg);
}

@media (max-width: 768px) {
    .h-process {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    .p-step {
        text-align: left;
        margin-bottom: 30px;
    }
    .p-line {
        left: -27px;
        top: 45px;
        width: 2px;
        height: 100%;
    }
}

/* Publishing Page Styles */
.publishing-icons { display: flex; gap: 20px; align-items: center; justify-content: center; }
.pub-circle { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; border: 2px dashed var(--orange); color: var(--orange); }

.platforms-flex { display: flex; gap: 30px; margin-top: 40px; }
.platform-card { flex: 1; background: white; padding: 40px; border-radius: 15px; border: 1px solid #eee; }
.plat-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.plat-logo { font-size: 32px; color: var(--orange); }
.plat-list { list-style: none; }
.plat-list li { margin-bottom: 12px; padding-left: 20px; position: relative; font-size: 15px; }
.plat-list li::before { content: '→'; position: absolute; left: 0; color: var(--orange); }

.publishing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.pub-card { background: white; padding: 25px; border-radius: 10px; border-bottom: 3px solid var(--orange); }
.pub-card h4 { margin-bottom: 10px; font-size: 16px; }
.pub-card p { font-size: 14px; color: #636e72; }

.challenges-box { background: #fff5f2; padding: 50px; border-radius: 20px; text-align: center; }
.challenges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.chall-item { background: white; padding: 15px; border-radius: 8px; font-weight: 600; font-size: 14px; text-align: left; display: flex; align-items: center; gap: 10px; }
.chall-item span { color: #eb4d4b; font-weight: 800; }

.timeline-support { display: flex; gap: 60px; align-items: center; }
.timing { flex: 1; background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; }
.time-item { font-size: 20px; margin-bottom: 10px; }
.small { font-size: 12px; opacity: 0.6; }
.support-text { flex: 2; }

@media (max-width: 768px) {
    .platforms-flex, .timeline-support { flex-direction: column; }
    .challenges-box { padding: 30px 20px; }
}

/* TV Apps Specific Styling */
.badge-orange { background: var(--orange); }
.micro-features.light span { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }

/* TV Visual Mockup */
.tv-frame { width: 320px; margin: 0 auto; }
.tv-screen { 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    background: #333; 
    border: 10px solid #444; 
    border-radius: 10px; 
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.tv-content-mock {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1e272e, #2d3436);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tv-content-mock::after {
    content: '▶';
    color: var(--orange);
    font-size: 40px;
}
.tv-stand {
    width: 60px;
    height: 20px;
    background: #444;
    margin: 0 auto;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

/* Monetization Grid */
.monetization-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}
.mon-item { 
    background: white; 
    padding: 30px; 
    border-radius: 15px; 
    text-align: center; 
    transition: 0.3s;
}
.mon-item:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.mon-icon { font-size: 40px; display: block; margin-bottom: 15px; }

/* Tech Stack Vertical */
.tech-stack-v { 
    flex: 0 0 200px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.tech-stack-v h3 { font-size: 18px; margin-bottom: 10px; }

@media (max-width: 768px) {
    .tech-stack-v { flex-direction: row; flex-wrap: wrap; margin-top: 30px; }
}

/* About Us Styles */
.about-hero { text-align: center; padding: 80px 0; }
.lead-text { font-size: 20px; color: #636e72; max-width: 700px; margin: 20px auto 0; line-height: 1.6; }

.founder-flex { display: flex; align-items: center; gap: 60px; margin-top: 40px; }
.founder-image { flex: 0 0 300px; }
.photo-placeholder { 
    width: 300px; height: 350px; background: #eee; border-radius: 20px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 60px; font-weight: 800; color: #ccc; border: 2px solid #ddd;
}
.founder-text blockquote { 
    font-size: 24px; font-weight: 700; color: var(--text); 
    border-left: 4px solid var(--orange); padding-left: 20px; margin: 20px 0; 
}

.mission-box { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.mission-box h2 { font-size: 36px; margin-bottom: 20px; }

.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.value-card { 
    background: white; padding: 15px 30px; border-radius: 50px; 
    border: 1px solid #eee; font-weight: 700; color: var(--orange);
}

.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.approach-item { padding: 30px; background: #fdfdfd; border-radius: 15px; transition: 0.3s; }
.approach-item:hover { background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.app-num { font-size: 40px; font-weight: 800; color: rgba(255, 121, 63, 0.2); display: block; margin-bottom: 10px; }

.final-cta h2 { font-size: 32px; margin-bottom: 20px; }
.final-cta p { opacity: 0.8; max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }

@media (max-width: 768px) {
    .founder-flex { flex-direction: column; text-align: center; }
    .founder-text blockquote { border-left: none; border-top: 4px solid var(--orange); padding: 20px 0 0; }
}


/* Contacts Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-text h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p, .info-text a {
    color: #636e72;
    line-height: 1.6;
    text-decoration: none;
}

/* Form Styles */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-form-box h3 { margin-bottom: 25px; }

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 15px;
}

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

/* Map & Messengers */
.map-placeholder {
    height: 400px;
    background: #e5e3df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    padding: 20px 40px;
    background: white;
    border-radius: 50px;
    font-weight: 700;
    color: #999;
}

.messenger-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.msg-link {
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.telegram { background: #0088cc; }
.whatsapp { background: #25d366; }
.linkedin { background: #0077b5; }
.msg-link:hover { opacity: 0.8; transform: translateY(-3px); }

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}


/* Privacy Policy Styles */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.policy-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text);
}

.policy-text p {
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 15px;
}

.policy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text li {
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 8px;
}

.policy-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
}
