	.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 40px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    color: white;
    transition: 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.4);
}

.lang-btn.active {
    background: #F97316;
    color: white;
}
	.nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-top{
    font-weight:700;
    font-size:18px;
    color:#000000;
}

.logo-bottom{
    font-size:18px;
    color:#000000;
}
@media (max-width: 768px) {

    nav {
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;        /* ссылки в ряд */
        flex-wrap: wrap;            /* если не помещаются — переносятся */
        gap: 15px;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .lang-btn {
        font-size: 13px;
        padding: 5px 10px;
    }
	.hero-arrow hero-prev{
		margin-top:15px;
	}
	.hero-arrow hero-next{
		margin-top:15px
	}
	.main{
		margin-left:-760px;
	}
	.logo-text{
	display:none;
	}
}
	 nav {
            display: flex;
            padding: 2rem 5%;
            position: relative;
            z-index: 100;

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

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

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

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background: #fff;
    font-size: 15px;
    line-height: 1.5;
  }
  main{
     max-width: 1400px;
     margin:0 auto;
  }

  /* ── NAV ── */
  nav {
    display: flex;
    height: 64px;
    background: #fff;
    gap: 44px;
	margin-top:30px;  
  }

  nav a {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
  }

  nav a:hover { color: #E8710A; }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 60px 60px 60px 60px;
    gap: 40px;
    align-items: start;
  }

  .hero-left {}

  .hero-label {
    font-size: 38px;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 38px;
    font-weight: 600;
    color: #E8710A;
    line-height: 1.25;
  }

  .hero-right {
    padding-top: 4px;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.6;
  }

  .hero-right .row {
    margin-bottom: 4px;
  }


  .hero-right .goal-label {
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .hero-right .goal-text {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.65;
  }

  /* ── DIVIDER ── */
  hr {
    border: none;
    border-top: 1px solid #E0DDD6;
  }

  /* ── PARTICIPANTS ── */
  .participants {
    padding: 70px 60px 70px;
  }

  .section-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }

  .section-sub {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 48px;
  }

  .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 48px;
    column-gap: 60px;
  }

  .card {}

  .card-icon {
    width: 52px;
    height: 52px;
    background: #FEF3E2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .card-title {
    font-size: 22.53px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .card-desc {
    font-size: 18.03px;
    color: #6b6b6b;
    line-height: 1.6;
  }

  /* SVG icons inline */
  .icon-crown { color: #E8710A; }

  /* ── CRITERIA ── */
  .criteria {
    padding: 70px 60px;
    text-align: center;
  }

  .criteria .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 500;
  }

  .criteria .section-sub {
    text-align: center;
    margin-bottom: 52px;
    font-size: 18px;
    font-weight: 400;
    color: #667085;
  }

  .criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    text-align: left;
  }

  .crit-block {
    border-left: 3px solid #E8710A;
    padding-left: 16px;
  }

  .crit-title {
    font-size: 19.22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
  }

  .crit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .crit-list li {
    font-size: 19.22px;
    color: #667085;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
  }

  .crit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a4a4a;
  }

  /* ── STAGES NEW ── */
  .stages {
    padding: 70px 60px;
  }

  .stages .section-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 8px;
  }

  .tl-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    position: relative;
    padding-bottom: 36px;
  }

  .tl-item:last-child { padding-bottom: 0; }

  .tl-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E8710A;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .tl-line {
    width: 2px;
    flex: 1;
    background: #E0DDD6;
    margin-top: 4px;
  }

  .tl-item:last-child .tl-line { display: none; }

  .tl-title {
    font-size: 22px;
    font-weight: 500;
    color: #344054;
    margin-bottom: 6px;
  }

  .tl-desc {
    font-size: 19.22px;
    color: #344054;
    font-weight: 500;
    line-height: 1.6;
  }

  /* ── PRIZES ── */
  .prizes { padding: 70px 60px; text-align: center; }
  .prizes .section-title { text-align: center; margin-bottom: 10px; font-size: 40px; font-weight: 500; }
  .prizes .section-sub { text-align: center; margin-bottom: 48px; font-size: 16px; font-weight: 400; color: #717171;}

  .prizes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    text-align: center;
  }

  .prize-card {
    border: 1px solid #E0DDD6;
    border-radius: 4px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .prize-icon {
    width: 56px;
    height: 56px;
    background: #FEF3E2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .prize-title { font-size: 28px; font-weight: 500; color: #1a1a1a; margin-bottom: 8px; line-height: 1.35; }
  .prize-desc { font-size: 14px; color: #6b6b6b; line-height: 1.55; }

  /* ── OBLIGATIONS ── */
  .obligations {
    border-bottom: 1px solid #E0DDD6;
    padding: 60px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .obligations .section-title { margin-bottom: 0; font-size: 38px; font-weight: 400;}
  .oblig-text { font-size: 16px; color: #4a4a4a; line-height: 1.75; }

  /* ── IP + FINAL ── */
  .bottom-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 70px 60px;
    border-bottom: 1px solid #E0DDD6;
  }

  .bottom-col .section-title { font-size: 38px; margin-bottom: 24px; font-weight: 400; }
  .bottom-col p { font-size: 14px; color: #4a4a4a; line-height: 1.75; margin-bottom: 50px; }

  /* ── CTA BANNER ── */
  .cta-banner-wrap {
    padding: 0 80px;
    margin: 60px auto;
    max-width: 1440px;
  }

  .cta-banner {
    width: 1280px;
    max-width: 100%;
    height: 298px;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 300px;
    box-sizing: border-box;
  }

  .cta-banner-left {
    width: 622px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
  }

  .cta-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
  }

  .cta-banner-title span {
    color: #E8710A;
    font-style: italic;
  }

  .cta-banner-desc {
    font-size: 13px;
    color: #6b6b6b;
    line-height: 1.65;
    margin: 0;
  }

  .cta-banner-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #E8710A;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 40px;
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
  }

  .cta-banner-btn:hover {
    background: #d0620a;
    transform: translateY(-1px);
  }

  .cta-banner-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .cta-banner-btn:hover svg {
    transform: translateX(3px);
  }

  /* ── CONTACT BAR ── */
  .contact-bar {
    background: #D9D9D9;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .contact-bar-label {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
  }

  .contact-bar-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 8px 8px 8px 24px;
    gap: 10px;
    width: 380px;
    max-width: 100%;
  }

  .contact-bar-input {
    border: none;
    outline: none;
    font-size: 15px;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    flex: 1;
    background: transparent;
  }

  .contact-bar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2196F3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .contact-bar-btn:hover { background: #1976D2; }

  /* ── FOOTER ── */
  footer {
    background: #ECEEF1;
    padding: 60px 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-nav {
    display: flex;
    gap: 48px;
    list-style: none;
  }

  .footer-nav a {
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
  }

  .footer-nav a:hover { color: #E8710A; }

  .footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .footer-socials a {
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }

  .footer-socials a:hover { color: #E8710A; }

  .footer-copy {
    font-size: 13px;
    color: #6b6b6b;
  }

  /* ── ADAPTIVE ── */
  @media (max-width: 860px) {
    nav { padding: 0 24px; gap: 28px; flex-wrap: wrap; justify-content: flex-end; height: auto; padding-top: 16px; padding-bottom: 16px; }
    .hero { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
    .participants { padding: 50px 24px; }
    .cards { grid-template-columns: 1fr; gap: 36px; }
    .criteria { padding: 50px 24px; }
    .criteria-grid { grid-template-columns: 1fr; gap: 28px; }
    .stages { padding: 50px 24px; }
    .prizes { padding: 50px 24px; }
    .prizes-grid { grid-template-columns: 1fr; gap: 16px; }
    .obligations { grid-template-columns: 1fr; padding: 50px 24px; gap: 24px; }
    .bottom-two { grid-template-columns: 1fr; padding: 50px 24px; gap: 40px; }
    .cta-banner-wrap { padding: 0 24px; margin: 40px auto; }
    .cta-banner { height: auto; gap: 32px; flex-direction: column; align-items: flex-start; padding: 40px 32px; }
    .cta-banner-left { width: 100%; }
    .cta-banner-btn { width: 100%; justify-content: center; }
    .contact-bar { flex-direction: column; padding: 32px 24px; gap: 20px; }
    .contact-bar-form { width: 100%; }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px; }
    footer { padding: 40px 24px 32px; }
  }
.main { flex: 1; padding: 24px 60px 80px; max-width: 760px; margin-left: 100px; }
h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.subtitle { font-size: 1rem; color: #333; line-height: 1.55; margin-bottom: 40px; }
.field { margin-bottom: 18px; }
label { display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 7px; }
input[type="text"], input[type="tel"], input[type="email"] {
  display: flex; width: 100%; padding: 17px 23px; border: 1.5px solid #76767C; border-radius: 18px; font-size: 0.97rem; font-family: inherit; color: #1a1a1a; background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder { color: #aaa; font-weight: 400; }
input:focus { border-color: #f07c00; box-shadow: 0 0 0 3px rgba(240,124,0,0.12); }

.congress-apply-btn { display: flex; align-items: center; gap: 8px; width: 225px; padding: 3px 5px; background: #F97316; border-radius: 45px; margin-top: 25px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; cursor:pointer;}
.congress-apply-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(249,115,22,0.3); }
.btn-text { padding: 15px 25px; color: #fff; font-weight: 600; font-size: 1rem; }
.btn-icon-circle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: #fff; border-radius: 50%; }
.btn-icon-circle svg { width: 20px; height: 20px; }
	.breadcrumbs { display: flex; align-items: center; gap: 8px; padding: 4px 60px 4px 160px; flex-wrap: wrap; } .breadcrumbs a { text-decoration: none; color: #76767C; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; } .breadcrumbs a:hover { color: #f07c00; } .breadcrumb-sep { color: #bbb; font-size: 0.85rem; } .breadcrumb-current { color: #1a1a1a; font-size: 0.85rem; font-weight: 600; }
	footer { background: #f0f1f3; padding: 40px 60px 30px; display: flex; flex-direction: column; align-items: center; gap: 20px; } .footer-nav { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; } .footer-nav a { text-decoration: none; color: #444; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; } .footer-nav a:hover { color: #f07c00; } .footer-socials { display: flex; gap: 20px; margin-top: 40px; align-items: center; } .footer-socials a { color: #555; text-decoration: none; transition: color 0.2s; } .footer-socials a:hover { color: #1a1a1a; } .footer-socials svg { width: 18px; height: 18px; fill: currentColor; } .footer-copy { font-size: 0.78rem; color: #999; }

#formMessage { display:none; max-width:760px; margin:20px auto; padding:20px; border-radius:16px; background:#F97316; color:#fff; text-align:center; font-weight:600; font-size:1rem; }
	.field input[type="checkbox"]{
margin-right:8px;
transform:scale(1.2);
}

.field label{
display:block;
margin-bottom:6px;
font-weight:500;
}