* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --text-dark: #222;
    --text-light: #fff;
    --accent-blue: #0f3460;
    --light-gray: #f5f5f5;
    --border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(15, 52, 96, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn-large {
    background: linear-gradient(135deg, var(--primary-color), #e5c158);
    color: var(--secondary-color);
    border: none;
    padding: 18px 45px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* ========== SECTIONS STYLING ========== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 50px;
}

/* ========== WHY US SECTION ========== */
.why-us {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    font-weight: 400;
    line-height: 1.8;
}

/* ========== MARKET INFO SECTION ========== */
.market-info {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 0 60px 0;
}

.market-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.5);
}

.market-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.market-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.market-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
}

.diamonds {
    height: 250px;
    width: auto;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

/* ========== FRANCHISE BENEFITS ========== */
.franchise-benefits {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

.benefit-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e5c158);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.benefit-item p {
    color: #666;
    font-weight: 400;
    line-height: 1.7;
}

/* ========== NETWORK SECTION ========== */
.network {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 0;
}

.network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.5);
}

.network .section-title {
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(212, 175, 55, 0.25);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

.network-text {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== SECURITY SECTION ========== */
.security {
    background-color: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.security-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.security-card p {
    color: #666;
    font-weight: 400;
    line-height: 1.8;
}

/* ========== COMPETITIVE SECTION ========== */
.competitive {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 0;
}

.competitive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.5);
}

.competitive .section-title {
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.22);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-item p {
    font-weight: 400;
    line-height: 1.7;
}

/* ========== TARGET AUDIENCE SECTION (Slide 8) ========== */
.target-audience {
    background-color: white;
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.audience-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: white;
}

.audience-icon {
    margin-bottom: 25px;
}

.audience-icon img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.audience-card p {
    color: #666;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1rem;
}

.audience-highlight {
    background: linear-gradient(135deg, var(--primary-color), #e5c158);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.audience-highlight p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

/* ========== BUSINESS SUCCESS SECTION (Slide 9) ========== */
.business-success {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 0;
}

.business-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.55);
}

.business-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.business-success .section-title {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
}

.business-description {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.success-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-item {
    background: rgba(212, 175, 55, 0.25);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.success-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.success-icon {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.success-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

/* ========== JOIN MARKET SECTION (Updated) ========== */
.join-market {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-market-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    background-image: url('фоны/10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 60px;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.join-market-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 52, 96, 0.4) 100%);
    z-index: 1;
}

.join-market .container {
    position: relative;
    z-index: 3;
    padding-left: 40px;
}

.slide-10-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 550px;
    margin: 0;
}

.slide-10-logo {
    margin-bottom: 30px;
}

.slide-10-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.slide-10-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.3;
    text-align: left;
}

.slide-10-contacts {
    background: rgba(255, 255, 255, 0.88);
    padding: 32px 36px;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    max-width: 420px;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.contact-link::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-link--tg::before {
    background: url('icons/иконка тг.png') center/contain no-repeat;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.contact-link--phone::before {
    content: '📞';
    width: auto;
    height: auto;
    font-size: 1.05rem;
    line-height: 1;
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Base styles for contact elements */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-item a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.market-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 400;
    line-height: 1.8;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-blue) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    font-weight: 400;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    text-align: center;
    font-weight: 400;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slide-10-title {
        font-size: 1.8rem;
    }

    .slide-10-contacts {
        padding: 30px 25px;
    }

    .contact-link {
        font-size: 1rem;
    }

    .join-market-wrapper {
        padding: 0 30px;
    }

    .slide-10-content {
        max-width: 100%;
    }

    .benefits-list,
    .features-grid,
    .security-grid,
    .advantages-list,
    .network-stats,
    .contact-methods,
    .audience-grid,
    .success-features {
        grid-template-columns: 1fr;
    }

    .market-content h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slide-10-title {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    .slide-10-contacts {
        padding: 25px 20px;
    }

    .contact-link {
        width: fit-content;
    }

    .contact-label {
        font-size: 1.1rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    .nav-content {
        gap: 10px;
    }

    .cta-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .benefit-number,
    .stat-card {
        padding: 20px;
    }

    .hero-logo-img {
        height: auto;
        width: 370px;
    }

    .join-market-wrapper {
        background-position: -850px center;
    }
}