/*:root {
    --bg:      #ffffff;
    --surface: #f5f3ef;
         --accent:  #e84c00;
    --accent:  #d94400;
    --accent2: #ff6b1a;
    --text:    #111111;
    --muted:   #6b6b6b;
    --line:    #e0ddd8;
    --max:     920px;
}*/


:root {
    --bg:      #ffffff;
    --surface: #f5f3ef;
    --accent:  #e84c00;
    --accent2: #ff6b1a;
    --text:    #111111;
    --muted:   #6b6b6b;
    --line:    #e0ddd8;
    --max:     920px;
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lora', Georgia, serif;
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 0 40px;
    height: 56px;
}
.nav-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.12em;
    color: var(--text);
    text-decoration: none;
}
.nav-cta {
    font-family: 'Lora', serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--accent);
    padding: 9px 22px;
    text-decoration: none;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent2); }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 56px;
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: rise 0.5s ease 0.1s forwards;
}

.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
/*    font-size: clamp(60px, 8vw, 96px);*/
font-size: clamp(50px, 3.8vw, 50px);
    /*line-height: 0.92;*/
    line-height: 0.96;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 0.6s ease 0.25s forwards;
}

.hero-headline em {
    font-style: normal;
    color: var(--accent);
    display: block;
}

.hero-sub {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0;
    animation: rise 0.6s ease 0.4s forwards;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    animation: rise 0.6s ease 0.55s forwards;
}

.btn-primary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--accent);
    padding: 18px 40px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

.hero-note {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

/* ── HERO PHOTO ── */
.hero-right {
    position: relative;
    opacity: 0;
    animation: rise 0.8s ease 0.3s forwards;
}

.hero-photo-wrap {
    position: relative;
    border-radius: 4px;
}

.hero-photo-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--accent);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.25;
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 0;
    background: var(--accent);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    z-index: 2;
    line-height: 1.4;
}

/* ── STATS ── */
#stats {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-strip {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.stat-item {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 0.02em;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── SECTIONS ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section + section { border-top: 1px solid var(--line); }

.s-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.s-headline {
    font-family: 'Bebas Neue', sans-serif;
/*    font-size: clamp(44px, 6vw, 72px);*/
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 0.03em;
    line-height: 0.93;
    color: var(--text);
    margin-bottom: 40px;
}

/* ── CREDO ── */
#solution { background: var(--surface); }

.credo-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.credo-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 4px;
}

.credo-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
}

.credo-body em { font-style: italic; color: var(--text); }

/* ── FOR WHOM ── */
.for-whom-list { list-style: none; padding: 0; margin: 0; }

.for-whom-list li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
    padding: 14px 0 14px 36px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.for-whom-list li:first-child { border-top: 1px solid var(--line); }
.for-whom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── FORMATS ── */
#formats { background: var(--surface); }

.formats-intro {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.75;
}

.formats-intro a {
    color: var(--accent);
    text-decoration: none;
}
.formats-intro a:hover {
    text-decoration: underline;
}

.formats-list { display: flex; flex-direction: column; gap: 2px; }

.format-row {
    background: var(--bg);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: start;
    gap: 28px;
    border: 1px solid var(--line);
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.format-row:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(232,76,0,0.08); }
.format-row.open  { border-color: var(--accent); }

.format-index {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.35;
    border-right: 1px solid var(--line);
    padding-right: 28px;
    padding-top: 4px;
}

.format-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1;
}

.format-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}


.about-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.75;
    color: var(--text);
    max-width: 680px;
    margin-bottom: 24px;
    padding-left: 24px;
    border-left: 3px solid var(--accent);
}



.format-toggle {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.5;
    transition: transform 0.25s, opacity 0.25s;
    align-self: start;
    user-select: none;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.format-row.open .format-toggle { transform: rotate(45deg); opacity: 1; }

.format-row.open .btn-details { display: none; }


.btn-details {
    display: inline-block;
    margin-top: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.btn-details:hover { color: var(--accent2); }


.format-soon {
    display: inline-block;
    margin-left: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 3px 8px;
    vertical-align: middle;
    opacity: 0.6;
}


.format-steps {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 12px;
}
.format-row.open .format-steps { display: flex; }

.format-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

.step-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-family: 'Bebas Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* ── ABOUT ── */
.about-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 24px;
}

/* ── CTA ── */
#cta {
    background: var(--accent);
    text-align: center;
    padding: 120px 0;
    border-top: none !important;
}

/*.cta-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 110px);
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 0.92;
    margin-bottom: 24px;
}*/

.cta-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
}


.cta-sub {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.btn-cta-white {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: #fff;
    padding: 18px 52px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }


footer {
    border-top: 1px solid var(--line);
    padding: 28px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0 32px;
    font-size: 13px;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.footer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--accent);
}
footer span:last-of-type { text-align: right; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }



/* ── ANIMATIONS ── */
@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */

@media (max-width: 800px) {
    nav { padding: 0 18px; }
    .nav-name-full { display: none; }
    .nav-name-short { display: block; }
    .nav-cta { display: none; }
}


@media (max-width: 680px) {
    nav { padding: 0 18px; }
    .nav-name-full { display: none; }
    .nav-name-short { display: block; }
    .nav-cta { display: none; }

    #hero { min-height: auto; padding-top: 56px; }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 18px 56px;
        gap: 36px;
    }
    .hero-right { order: -1; }
    .hero-photo { height: 280px; object-position: center 25%; }
    .hero-badge { left: 0; bottom: 16px; }
    .hero-photo-wrap::before { display: none; }

    .btn-primary { align-self: stretch; text-align: center; padding: 16px 24px; }

    .stat-item { padding: 24px 40px; }
    .stat-num { font-size: 44px; }

    .wrap { padding: 0 18px; }
    section { padding: 64px 0; }

    .credo-grid { grid-template-columns: 1fr; gap: 28px; }
    .credo-body { font-size: 16px; }

    .format-row {
        grid-template-columns: 1fr auto;
        gap: 0;
        padding: 22px 18px;
    }
    .format-index {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
        padding-bottom: 10px;
        margin-bottom: 12px;
        font-size: 28px;
    }
    .format-content { grid-column: 1 / 2; }
    .format-toggle { grid-column: 2 / 3; grid-row: 1; }

    .cta-headline { font-size: clamp(44px, 13vw, 72px); }
    .cta-sub { font-size: 16px; }
    .btn-cta-white { display: block; padding: 16px 24px; }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding: 24px 18px;
    }
    footer a { text-align: center; }

    .for-whom-list li { font-size: 16px; }
}


@media (max-width: 680px) {
    .btn-format {
        display: block;
        text-align: center;
        padding: 12px 24px;
        width: 100%;
    }
}


.format-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin-top: 8px;
}





/* ── PRICE TABLE ── */
.price-table {
    margin-top: 20px;
    border: 1px solid var(--line);
    border-collapse: collapse;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}
.price-table thead th {
    background: var(--surface);
    color: var(--muted);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.price-table tbody tr {
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
}
.price-table tbody tr:last-child {
    border-bottom: none;
}
.price-table tbody tr:hover {
    background: var(--surface);
}
.price-table td {
    padding: 11px 16px;
    color: var(--text);
    vertical-align: middle;
    line-height: 1.4;
}
.price-table td:last-child {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    text-align: right;
}
.price-table .price-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.price-table tr.price-individual td {
    color: var(--muted);
    font-style: italic;
}
.price-table tr.price-individual td:last-child {
    color: var(--muted);
    font-style: italic;
    font-weight: 400;
}

.price-table td.price-duration {
    color: var(--text);
}

.price-table a {
    color: var(--accent);
    text-decoration: none;
}
.price-table a:hover {
    text-decoration: underline;
}

@media (max-width: 680px) {
    .price-table thead { display: none; }
    .price-table, .price-table tbody, .price-table tr, .price-table td {
        display: block;
        width: 100%;
    }
    .price-table tr {
        padding: 10px 14px;
        border-bottom: 1px solid var(--line);
    }
    .price-table td {
        padding: 2px 0;
        text-align: left !important;
    }
    .price-table td:last-child {
        font-size: 15px;
        margin-top: 4px;
    }
}



.btn-format {
    display: inline-block;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}
.btn-format:hover {
    background: var(--accent);
    color: #fff;
}


@media (max-width: 680px) {
    .format-soon {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        width: fit-content;
    }
}


.about-video {
    margin: 32px 0;
}

.about-video video {
    width: 100%;
    max-width: 680px;
    display: block;
    border: 1px solid var(--line);
}



.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-item {
    padding: 32px 40px;
    border: 1px solid var(--line);
}

.testimonial-item:nth-child(odd) {
    background: var(--surface);
}

.testimonial-item:nth-child(even) {
    background: var(--bg);
}

.testimonial-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-transform: uppercase;
}

@media (max-width: 680px) {
    .testimonial-item { padding: 24px 18px; }
}


.cta-contacts {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-link {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: #fff;
    padding: 16px 40px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@media (max-width: 680px) {
    .cta-contact-link {
        display: block;
        text-align: center;
        padding: 14px 24px;
        width: 100%;
    }
}





