/* ==========================================================================
   CSS VARIABLES & SLATE TERRACOTTA DESIGN (GINADIH.ONL)
   ========================================================================== */
:root {
    --c-slate: #1e293b; /* Slate 800 */
    --c-slate-light: #334155; /* Slate 700 */
    --c-terra: #c2410c; /* Orange 700 - Terracotta */
    --c-terra-light: #ea580c; /* Orange 600 */
    --c-ash: #f8fafc; /* Slate 50 - Background */
    --c-dark: #0f172a; /* Slate 900 */
    --c-text: #475569; /* Slate 600 */
    --c-white: #ffffff;
    --c-line: #cbd5e1; /* Slate 300 */

    --pad-x: clamp(15px, 5vw, 30px);
    --pad-y: clamp(70px, 9vw, 120px);
    
    --rad-sm: 6px;
    --rad-md: 16px;
    
    --shadow-soft: 0 20px 40px rgba(30, 41, 59, 0.08);
    --shadow-terra: 0 10px 30px rgba(194, 65, 12, 0.2);
    --trans: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background-color: var(--c-ash);
    color: var(--c-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--c-dark); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -1px; }
h1 { font-size: clamp(2.8rem, 8vw, 5rem); letter-spacing: -2px; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--c-terra); }
p { font-size: clamp(1.05rem, 1.5vw, 1.15rem); margin-bottom: 1.5rem; font-weight: 500; }

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--rad-sm); }
ul { list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.sec-p { padding: var(--pad-y) 0; }
.txt-c { text-align: center; }

/* ==========================================================================
   HEADER (STRICT 10PX MOBILE PADDING)
   ========================================================================== */
.site-hdr { background: var(--c-white); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--c-terra); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.nav-slate-wrap {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 10px; /* СТРОГО 10PX НА МОБИЛЬНОМ */
    max-width: 1200px; margin: 0 auto; position: relative;
}

@media (min-width: 768px) { .nav-slate-wrap { padding: 20px var(--pad-x); } }

.brand { font-size: 2.2rem; font-weight: 900; color: var(--c-slate); letter-spacing: -1px; text-transform: uppercase; }
.brand span { color: var(--c-terra); }

.burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { width: 30px; height: 3px; background: var(--c-dark); transition: var(--trans); border-radius: 2px; }
#menu-tog { display: none; }

.desk-nav { display: none; }
.desk-nav ul { display: flex; gap: 35px; align-items: center; }
.desk-nav a { font-weight: 800; color: var(--c-text); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.desk-nav a:hover, .desk-nav a.active { color: var(--c-terra); }

.mob-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-slate); padding: 15px 20px 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.mob-nav a { display: block; font-weight: 800; color: var(--c-white); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; }
.mob-nav li:last-child a { border-bottom: none; }
#menu-tog:checked ~ .mob-nav { display: block; }

@media (min-width: 992px) {
    .burger { display: none; }
    .desk-nav { display: block; }
    .mob-nav { display: none !important; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 45px; font-weight: 800; font-size: 1.05rem; border-radius: var(--rad-sm); cursor: pointer; transition: var(--trans); border: 2px solid transparent; text-transform: uppercase; letter-spacing: 1px; }
.btn-t { background: var(--c-terra); color: var(--c-white); box-shadow: var(--shadow-terra); }
.btn-t:hover { background: var(--c-dark); color: var(--c-white); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-s { background: var(--c-white); border-color: var(--c-slate); color: var(--c-slate); }
.btn-s:hover { background: var(--c-slate); color: var(--c-white); }

/* ==========================================================================
   GENERAL GRIDS
   ========================================================================== */
.g-2 { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .g-2 { grid-template-columns: 1fr 1fr; gap: 60px; } }

/* ==========================================================================
   INDEX: POLYGON SPLIT HERO, CIRCLE MATRIX & ANATOMY GAP
   ========================================================================== */
/* Polygon Split Hero */
.poly-hero { position: relative; padding: 80px 0; background: var(--c-white); overflow: hidden; }
.poly-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--c-slate); clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%); z-index: 0; }
@media (min-width: 992px) { .poly-bg { clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%); } }

.ph-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 2; align-items: center; }
@media (min-width: 992px) { .ph-grid { grid-template-columns: 1.1fr 0.9fr; } }
.ph-txt h1, .ph-txt p { color: var(--c-white); }
@media (max-width: 991px) { .ph-txt p { color: var(--c-text); margin-top: 150px; } .ph-txt h1 { margin-bottom: -130px; position: relative; z-index: 10; } }

.ph-img { border-radius: var(--rad-md); overflow: hidden; box-shadow: var(--shadow-soft); border: 6px solid var(--c-white); background: var(--c-white); }
.ph-img img { width: 100%; height: 400px; object-fit: cover; }

/* Circle Matrix */
.circle-wrap { padding: 80px 0; background: var(--c-ash); }
.circle-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; max-width: 1000px; margin: 0 auto; }
.c-card { width: 280px; height: 280px; background: var(--c-white); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; box-shadow: var(--shadow-soft); border: 2px solid var(--c-line); transition: var(--trans); }
.c-card:hover { transform: scale(1.05); border-color: var(--c-terra); box-shadow: var(--shadow-terra); }
.cc-ico { font-size: 3rem; margin-bottom: 10px; display: block; }
.c-card h3 { font-size: 1.2rem; color: var(--c-slate); margin-bottom: 5px; line-height: 1.2; }
.c-card p { font-size: 0.9rem; margin: 0; line-height: 1.4; }

/* Anatomy Gap Visualizer */
.anat-gap-sec { background: var(--c-white); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.anat-ui { max-width: 400px; margin: 40px auto 0; position: relative; height: 395px; }
.au-bone { background: var(--c-line); height: 100px; width: 100%; position: relative; }
.au-bone.top { border-radius: 40px 40px 10px 10px; }
.au-bone.bottom { border-radius: 10px 10px 40px 40px; }
.au-cartilage { background: var(--c-slate-light); height: 20px; width: 90%; margin: 0 auto; border-radius: 10px; }
.au-fluid { background: linear-gradient(90deg, rgba(234, 88, 12, 0.2), rgba(234, 88, 12, 0.8), rgba(234, 88, 12, 0.2)); height: 40px; width: 96%; margin: 4px auto; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--c-terra-light); font-weight: 900; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; box-shadow: 0 0 20px rgba(194, 65, 12, 0.4); animation: pulseFluid 3s infinite alternate; }
@keyframes pulseFluid { 0% { opacity: 0.6; height: 30px; } 100% { opacity: 1; height: 40px; } }

/* ==========================================================================
   PROGRAM: THICK TIMELINE & HOVER EXPAND BOXES
   ========================================================================== */
/* Thick Timeline Track */
.thick-tl { max-width: 900px; margin: 0 auto; position: relative; padding: 40px 0 0 40px; }
.thick-tl::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 12px; background: var(--c-slate); border-radius: 6px; }

.ttl-step { position: relative; background: var(--c-white); padding: 40px; border-radius: var(--rad-md); box-shadow: var(--shadow-soft); margin-bottom: 50px; border: 1px solid var(--c-line); }
.ttl-step::before { content: ''; position: absolute; top: 40px; left: -46px; width: 30px; height: 30px; background: var(--c-terra); border-radius: 50%; box-shadow: 0 0 0 6px var(--c-ash); z-index: 2; }

/* Timeline Breaker (REQUIRED bg-1.jpg) */
.tl-breaker { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: 400px; background: url('img/bg-1.jpg') center/cover fixed; margin-top: 60px; margin-bottom: 60px; display: flex; align-items: center; justify-content: center; }
.tl-breaker::after { content: ''; position: absolute; inset: 0; background: rgba(30, 41, 59, 0.7); }
.tlb-txt { position: relative; z-index: 2; color: white; text-align: center; max-width: 800px; padding: 0 20px; }
.tlb-txt h2 { color: var(--c-terra-light); }

/* Hover Expand Boxes FAQ */
.expand-faq { display: flex; flex-wrap: wrap; gap: 20px; max-width: 1000px; margin: 0 auto; justify-content: center; }
.ef-box { background: var(--c-white); border: 2px solid var(--c-line); width: 100%; max-width: 450px; height: 100px; border-radius: var(--rad-sm); overflow: hidden; transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease; display: flex; flex-direction: column; cursor: pointer; }
.ef-head { height: 100px; display: flex; align-items: center; padding: 0 30px; font-weight: 800; font-size: 1.15rem; color: var(--c-slate); justify-content: space-between; flex-shrink: 0; }
.ef-head::after { content: '+'; font-size: 1.8rem; color: var(--c-terra); transition: transform 0.4s ease; }
.ef-body { padding: 0 30px 30px; color: var(--c-text); opacity: 0; transition: opacity 0.3s ease; }
.ef-box:hover { height: 260px; box-shadow: var(--shadow-soft); border-color: var(--c-slate); }
.ef-box:hover .ef-head::after { transform: rotate(45deg); }
.ef-box:hover .ef-body { opacity: 1; transition-delay: 0.2s; }

/* ==========================================================================
   MISSION: CENTER ORBIT WRAP & NOTCHED TICKETS
   ========================================================================== */
/* Center Orbit Wrap (REQUIRED bg.jpg) */
.orbit-wrap-sec { max-width: 1000px; margin: 0 auto; text-align: justify; position: relative; padding: 40px 0; }
.orbit-img { width: 300px; height: 300px; border-radius: 50%; float: left; shape-outside: circle(50%); margin: 20px 40px 20px 0; object-fit: cover; box-shadow: var(--shadow-soft); border: 8px solid var(--c-white); }
@media (min-width: 768px) {
    .orbit-img { float: right; margin: 20px 0 20px 40px; }
}
@media (max-width: 767px) {
    .orbit-img { float: none; shape-outside: none; display: block; margin: 0 auto 30px; width: 250px; height: 250px; }
}

/* Notched Tickets (Values) */
.tickets-grid { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 60px auto 0; }
@media (min-width: 768px) { .tickets-grid { flex-direction: row; } }
.nt-card { background: var(--c-white); padding: 40px 30px; flex: 1; text-align: center; position: relative; box-shadow: var(--shadow-soft); border-top: 4px solid var(--c-terra); }
/* Cutout effect */
.nt-card::before, .nt-card::after { content: ''; position: absolute; top: 50%; width: 24px; height: 24px; background: var(--c-ash); border-radius: 50%; transform: translateY(-50%); box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }
.nt-card::before { left: -12px; }
.nt-card::after { right: -12px; }

/* ==========================================================================
   FORM (4 FIELDS)
   ========================================================================== */
.frm-ui { background: var(--c-white); padding: clamp(40px, 6vw, 60px); border-radius: var(--rad-md); box-shadow: var(--shadow-soft); max-width: 700px; margin: 0 auto; border-top: 8px solid var(--c-slate); }
.f-row { margin-bottom: 25px; }
.f-row label { display: block; font-weight: 800; color: var(--c-dark); margin-bottom: 8px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.f-row input, .f-row textarea { width: 100%; padding: 18px; border: 2px solid var(--c-line); border-radius: var(--rad-sm); font-family: inherit; font-size: 1rem; background: var(--c-ash); transition: var(--trans); }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--c-terra); background: var(--c-white); box-shadow: inset 4px 0 0 var(--c-terra); }
.f-row textarea { min-height: 140px; resize: vertical; }

/* ==========================================================================
   FOOTER (HARDCODED COLORS & !IMPORTANT)
   ========================================================================== */
.site-ftr { background-color: #0f172a !important; color: #cbd5e1 !important; padding: 80px 0 30px; margin-top: 80px; }
.ftr-g { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
@media (min-width: 768px) { .ftr-g { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.f-logo { font-size: 2.2rem; font-weight: 900; color: #ffffff !important; margin-bottom: 15px; display: block; letter-spacing: -1px; text-transform: uppercase; }
.f-logo span { color: #ea580c !important; } /* Terracotta */
.f-desc { font-size: 0.95rem; line-height: 1.7; font-weight: 400; color: #cbd5e1 !important; text-transform: none; }
.f-h { color: #ffffff !important; font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.f-links li { margin-bottom: 12px; }
.f-links a { font-weight: 600; transition: var(--trans); color: #cbd5e1 !important; text-transform: none; }
.f-links a:hover { color: #ea580c !important; padding-left: 5px; }
.f-copy { border-top: 1px solid #1e293b !important; padding-top: 30px; text-align: center; font-size: 0.95rem; color: #94a3b8 !important; }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
#ck-bnnr { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--c-white); padding: 25px 30px; border-radius: var(--rad-md); z-index: 9999; display: flex; flex-direction: column; gap: 15px; transform: translateY(150%); transition: 0.5s ease; box-shadow: var(--shadow-soft); border: 2px solid var(--c-slate); max-width: 900px; margin: 0 auto; }
#ck-bnnr.show { transform: translateY(0); }
.ck-txt { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--c-text); font-weight: 500; }
.ck-txt a { color: var(--c-terra); font-weight: 800; text-decoration: underline; }
.ck-acts { display: flex; gap: 10px; }
.b-ck { padding: 12px 25px; border: none; border-radius: var(--rad-sm); font-weight: 800; cursor: pointer; flex: 1; transition: var(--trans); font-size: 0.95rem; text-align: center; font-family: inherit; text-transform: uppercase; letter-spacing: 0.5px; }
.b-ck.y { background: var(--c-slate); color: #fff; }
.b-ck.y:hover { background: var(--c-dark); }
.b-ck.n { background: var(--c-line); color: var(--c-dark); }
.b-ck.n:hover { background: var(--c-ash); }
@media (min-width: 768px) { #ck-bnnr { flex-direction: row; align-items: center; justify-content: space-between; } .ck-acts { width: auto; flex-shrink: 0; } .b-ck { flex: none; } }