/* ==========================================================================
   CSS VARIABLES & SAPPHIRE PEACH DESIGN (WUGEHAS.ONE)
   ========================================================================== */
:root {
    --c-sapphire: #0f172a; /* Slate 900 */
    --c-sapphire-light: #1e293b; /* Slate 800 */
    --c-peach: #ffedd5; /* Orange 50 */
    --c-peach-dark: #fed7aa; /* Yellow 200 */
    --c-coral: #ea580c; /* Orange 600 */
    --c-coral-bright: #f97316; /* Orange 500 */
    --c-white: #ffffff;
    --c-text: #52525b; /* Zinc 600 */
    --c-line: #cbd5e1; /* Slate 300 */

    --pad-x: clamp(15px, 5vw, 30px);
    --pad-y: clamp(70px, 9vw, 120px);
    
    --rad-sm: 8px;
    --rad-md: 24px;
    --rad-full: 50%;
    
    --shadow-float: 0 24px 48px rgba(15, 23, 42, 0.1);
    --shadow-solid: 8px 8px 0 rgba(234, 88, 12, 0.2);
    --trans: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--c-peach);
    color: var(--c-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--c-sapphire); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -2px; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--c-coral); }
p { font-size: clamp(1.05rem, 1.5vw, 1.15rem); margin-bottom: 1.5rem; font-weight: 400; }

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--rad-md); }
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); border-bottom: 1px solid var(--c-line); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(15,23,42,0.05); }

.nav-mob-frame {
    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-mob-frame { padding: 20px var(--pad-x); } }

.brand { font-size: 2.2rem; font-weight: 900; color: var(--c-sapphire); letter-spacing: -1px; }
.brand span { color: var(--c-coral); }

.burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { width: 30px; height: 3px; background: var(--c-sapphire); border-radius: 2px; transition: var(--trans); }
#menu-tog { display: none; }

.desk-nav { display: none; }
.desk-nav ul { display: flex; gap: 35px; align-items: center; }
.desk-nav a { font-weight: 700; color: var(--c-text); font-size: 1.05rem; }
.desk-nav a:hover, .desk-nav a.active { color: var(--c-coral); }

.mob-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-sapphire); padding: 15px 20px 25px; border-top: 4px solid var(--c-coral); box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.mob-nav a { display: block; font-weight: 700; color: var(--c-white); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; letter-spacing: 1px; }
.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: 16px 40px; font-weight: 800; font-size: 1.1rem; border-radius: var(--rad-md); cursor: pointer; transition: var(--trans); border: 2px solid transparent; font-family: 'DM Sans', sans-serif; }
.btn-p { background: var(--c-coral); color: var(--c-white); box-shadow: var(--shadow-solid); }
.btn-p:hover { background: var(--c-sapphire); color: var(--c-white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(15,23,42,0.2); border-color: var(--c-sapphire); }
.btn-s { background: var(--c-white); border-color: var(--c-sapphire); color: var(--c-sapphire); box-shadow: 4px 4px 0 var(--c-line); }
.btn-s:hover { background: var(--c-sapphire); color: var(--c-white); box-shadow: 4px 4px 0 var(--c-sapphire); }

/* ==========================================================================
   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: STAGGERED CARDS & KINETIC RINGS
   ========================================================================== */
/* Staggered Cards */
.stagger-grid { display: flex; flex-direction: column; gap: 30px; margin-top: 50px; }
@media (min-width: 768px) {
    .stagger-grid { flex-direction: row; align-items: stretch; justify-content: center; }
    .sg-card { width: 33.333%; display: flex; flex-direction: column; }
    .sg-card:nth-child(2) { margin-top: 40px; margin-bottom: -40px; }
}
.sg-card { background: var(--c-white); padding: 40px; border-radius: var(--rad-md); box-shadow: var(--shadow-float); border: 1px solid var(--c-white); transition: var(--trans); }
.sg-card:hover { border-color: var(--c-coral); transform: translateY(-10px); }
.sg-icon { font-size: 3.5rem; margin-bottom: 20px; display: block; color: var(--c-sapphire); }

/* Kinetic Rings (Activity Rings UI) */
.rings-container { display: flex; flex-direction: column; align-items: center; gap: 50px; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .rings-container { flex-direction: row; justify-content: space-around; } }
.ring-box { text-align: center; }
.ring-ui { position: relative; width: 180px; height: 180px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.05); }
.ring-ui::before { content: ''; position: absolute; width: 140px; height: 140px; background: var(--c-white); border-radius: 50%; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.ring-val { position: relative; z-index: 3; font-size: 2rem; font-weight: 900; color: var(--c-sapphire); }
/* Conic gradients for rings */
.r-1 { background: conic-gradient(var(--c-coral) 0% 75%, var(--c-line) 75% 100%); }
.r-2 { background: conic-gradient(var(--c-sapphire) 0% 60%, var(--c-line) 60% 100%); }
.r-3 { background: conic-gradient(#10b981 0% 85%, var(--c-line) 85% 100%); }

/* ==========================================================================
   PROGRAM: STICKY SIDEBAR WAY & GRID TOOLTIPS
   ========================================================================== */
/* Sticky Sidebar */
.sticky-layout { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .sticky-layout { flex-direction: row; align-items: flex-start; } }
.sl-sidebar { width: 100%; }
@media (min-width: 992px) { .sl-sidebar { width: 30%; position: sticky; top: 120px; } }
.sl-nav { display: flex; flex-direction: column; gap: 15px; border-left: 4px solid var(--c-line); padding-left: 20px; }
.sl-nav-item { font-size: 1.2rem; font-weight: 800; color: var(--c-text); padding: 10px 0; transition: var(--trans); }
.sl-nav-item.active { color: var(--c-coral); }

.sl-content { width: 100%; display: flex; flex-direction: column; gap: 60px; }
@media (min-width: 992px) { .sl-content { width: 70%; padding-left: 40px; } }
.sl-block { background: var(--c-white); padding: 40px; border-radius: var(--rad-md); box-shadow: var(--shadow-float); }
.sl-block img { margin: 30px 0; border: 2px solid var(--c-line); }

/* Grid Tooltips FAQ */
.tt-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tt-grid { grid-template-columns: repeat(2, 1fr); } }
.tt-item { background: var(--c-white); padding: 30px; border-radius: var(--rad-sm); border: 1px solid var(--c-line); cursor: default; transition: var(--trans); position: relative; overflow: hidden; min-height: 120px; display: flex; flex-direction: column; justify-content: center; }
.tt-item:hover { background: var(--c-sapphire); color: var(--c-white); border-color: var(--c-sapphire); transform: scale(1.02); z-index: 10; box-shadow: var(--shadow-float); }
.tt-item h4 { font-size: 1.15rem; margin: 0; transition: var(--trans); }
.tt-item:hover h4 { color: var(--c-coral); margin-bottom: 15px; }
.tt-item p { font-size: 1rem; opacity: 0; max-height: 0; margin: 0; transition: var(--trans); color: #cbd5e1; }
.tt-item:hover p { opacity: 1; max-height: 200px; }

/* ==========================================================================
   MISSION: MAGAZINE DROP-CAP & HONEYCOMB GRID
   ========================================================================== */
/* Magazine Layout */
.mag-article { max-width: 900px; margin: 0 auto; font-size: 1.15rem; line-height: 1.8; color: var(--c-text); background: var(--c-white); padding: clamp(30px, 6vw, 60px); border-radius: var(--rad-md); box-shadow: var(--shadow-float); }
.drop-cap::first-letter { float: left; font-size: 6rem; line-height: 0.8; font-weight: 900; color: var(--c-coral); margin-right: 15px; margin-top: 10px; font-family: 'DM Sans', sans-serif; }
.mag-article img { margin: 40px 0; border-radius: var(--rad-sm); width: 100%; max-height: 400px; object-fit: cover; }

/* Honeycomb Grid (CSS Rhombus approximation) */
.honeycomb { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.hc-cell { width: 100%; max-width: 280px; background: var(--c-sapphire); color: var(--c-white); padding: 40px 30px; text-align: center; border-radius: 40px 0 40px 0; box-shadow: var(--shadow-solid); transition: var(--trans); border: 2px solid var(--c-sapphire); }
.hc-cell:nth-child(even) { background: var(--c-white); color: var(--c-text); border-color: var(--c-line); border-radius: 0 40px 0 40px; box-shadow: 8px 8px 0 var(--c-line); }
.hc-cell:nth-child(even) h3 { color: var(--c-coral); }
.hc-cell:hover { transform: translateY(-5px); border-color: var(--c-coral); }
.hc-cell h3 { color: var(--c-peach); font-size: 1.5rem; margin-bottom: 15px; }

/* ==========================================================================
   FORM (4 FIELDS)
   ========================================================================== */
.frm-ui { background: var(--c-white); padding: clamp(40px, 6vw, 60px); border-radius: var(--rad-md); box-shadow: var(--shadow-float); max-width: 700px; margin: 0 auto; position: relative; border-top: 6px solid var(--c-coral); }
.f-row { margin-bottom: 25px; }
.f-row label { display: block; font-weight: 800; color: var(--c-sapphire); margin-bottom: 8px; font-size: 0.95rem; text-transform: uppercase; }
.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-peach); transition: var(--trans); }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--c-coral); background: var(--c-white); }
.f-row textarea { min-height: 140px; resize: vertical; }

/* ==========================================================================
   FOOTER (STRICT DATES)
   ========================================================================== */
.site-ftr { background: var(--c-sapphire); color: #cbd5e1; 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: #fff; margin-bottom: 15px; display: block; letter-spacing: -1px; }
.f-logo span { color: var(--c-coral); }
.f-desc { font-size: 0.95rem; line-height: 1.7; font-weight: 400; }
.f-h { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.f-links li { margin-bottom: 12px; }
.f-links a { font-weight: 600; transition: var(--trans); color: #cbd5e1; }
.f-links a:hover { color: var(--c-coral); padding-left: 5px; }
.f-copy { border-top: 1px solid #1e293b; padding-top: 30px; text-align: center; font-size: 0.95rem; color: #94a3b8; }

/* ==========================================================================
   COOKIE BANNER (2 BUTTONS, LINK IN TEXT)
   ========================================================================== */
#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-float); border: 2px solid var(--c-sapphire); max-width: 900px; margin: 0 auto; }
#ck-bnnr.show { transform: translateY(0); }
.ck-txt p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--c-text); font-weight: 500; }
.ck-txt a { color: var(--c-coral); 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; }
.b-ck.y { background: var(--c-sapphire); color: #fff; }
.b-ck.y:hover { background: var(--c-coral); }
.b-ck.n { background: var(--c-line); color: var(--c-sapphire); }
.b-ck.n:hover { background: var(--c-sapphire-light); color: #fff; }
@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; } }