:root{
    --Black: #100C0A;
    --Dark-Brown: #1F130D;
    --Beige: #EEE5DA;
    --Orange: #F9561B;
    --White: #F9F7F4;
    --Dark-Grey:#7E7972;
    --radius: 8vmin;
	--frame-size: calc(var(--radius) / 0.8);
	--d-outer: calc(var(--radius) * 2);
	--d-inner: calc(var(--d-outer) - var(--frame-size));
    --font-size: calc(var(--radius) / 10);
}
.section-terms{
    background-color: var(--Dark-Brown);
    color: var(--White);
}

.sheet-terms{
    width: 100%;
    height: max-content;
    max-width: 70vw;
    display: flex;
    padding: 130px 60px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}


.no-number::before {
    content: none !important;
  }

li{
    font-size: clamp(1rem, 0.9671rem + 0.1754vw, 1.125rem);
    font-weight: 500;
    line-height: 2;
    text-align: justify;
}
ol {
    counter-reset: section;
    list-style-type: none;
    padding-left: 0;
}
/* Hlavné sekcie (1., 2., 3.) */
ol > li {
    counter-increment: section;
    margin-bottom: 30px;
}
ol > li::before {
    content: counter(section) ". ";
    font-weight: bold;
}
/* Podsekcie (1.1., 1.2., atď.) */
ol ol {
    counter-reset: subsection;
    margin-top: 10px;
}
ol ol > li {
    counter-increment: subsection;
    margin: 10px 0;
    padding-left: 40px;
}
ol ol > li::before {
    content: counter(section) "." counter(subsection) ". ";
    font-weight: normal;
}
/* Štýl pre vnorené zoznamy */
ul {
    margin: 10px 0;
    padding-left: 40px;
}
ul li {
    margin-bottom: 5px;
}
.contact {
    background-color: var(--Black);
    padding: 20px;
    border-radius: 5px;
    margin: 10px 0;
}

.title-terms{
    margin-bottom: 40px;
    text-align: center;
}

.line-legal{
    margin: 30px 0px;
    border: 0.7px solid var(--Beige);
}
.link-legal{
    color: var(--Orange);
    text-decoration: none;
    cursor: none;
}

.link-legal:hover{
    color: var(--Orange);
    text-decoration: underline;
    cursor: none;
}

/* === Terms intro / company card === */
.terms-intro{
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    color: #EEE5DA;
}

/* 50/50 split: intro text on the left, company card on the right */
.operator-split{
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 32px 0 40px;
}
.operator-split > *{
    flex: 1 1 0;
    min-width: 0;
}
.operator-split__text{
    font-size: 20px;
    line-height: 1.6;
    color: #F9F7F4;
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.operator-split .company-card{
    margin: 0;
    max-width: none;
}

@media (max-width: 768px){
    .operator-split{
        flex-direction: column;
        gap: 28px;
    }
    .operator-split__text{
        font-size: 17px;
        text-align: center;
    }
}

.company-card{
    max-width: 560px;
    margin: 0 auto 32px;
    background: rgba(249,247,244,0.04);
    border: 1px solid rgba(249,247,244,0.10);
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
}
.company-card::before{
    display: none;
}
.company-card__name{
    font-size: 18px;
    font-weight: 700;
    color: #F9F7F4;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
    text-align: center;
}
.company-card__row{
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 14px;
    color: rgba(238,229,218,0.85);
    line-height: 1.5;
}
.company-card__row + .company-card__row{
    border-top: 1px solid rgba(249,247,244,0.06);
}
.company-card__icon{
    width: 16px;
    height: 16px;
    color: var(--Orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.company-card__label{
    color: rgba(238,229,218,0.50);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    min-width: 88px;
    flex-shrink: 0;
}
.company-card__value{
    color: #F9F7F4;
    font-weight: 500;
}
.company-card__value a{
    color: var(--Orange);
    text-decoration: none;
    font-weight: 600;
}
.company-card__value a:hover{
    text-decoration: underline;
}

.terms-acceptance{
    text-align: center;
    font-size: 13px;
    color: rgba(238,229,218,0.55);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(249,247,244,0.08);
    line-height: 1.7;
}

@media (max-width: 600px){
    .company-card{ padding: 28px 22px; }
    .company-card__row{ flex-wrap: wrap; }
    .company-card__label{ min-width: auto; }
}


@media only screen  and (min-width: 480px) and (max-width: 768px) {
    .sheet-terms{
        max-width: 100%;
        padding: 100px 26px;
    }
}


@media only screen and (min-width: 300px) and (max-width: 480px) {
    .sheet-terms{
        max-width: 100%;
        padding: 100px 26px;
    }
}
