/* =============================================
   DESAFIO ONFIRE — CSS
   ============================================= */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #FF6B00;
    --orange-light: #FF8C3A;
    --orange-dark: #CC5500;
    --yellow: #FFB800;
    --dark: #0D0D0D;
    --dark-2: #1A1A1A;
    --dark-3: #242424;
    --light: #FAFAFA;
    --white: #FFFFFF;
    --gray: #888;
    --text-body: #2C2C2C;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.10);
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- CONTAINER --- */
.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

/* --- TYPOGRAPHY --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.10);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--yellow);
    background: rgba(255, 184, 0, 0.15);
}

.section-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    text-align: center;
    color: var(--dark);
}

.section-title.light {
    color: var(--white);
}

.highlight {
    color: var(--yellow);
    position: relative;
}

.highlight-dark {
    color: var(--orange);
}

.section-desc {
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    line-height: 1.7;
}

/* --- SECTION --- */
.section {
    padding: 88px 0;
    position: relative;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 800;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-3px) scale(1.025);
    filter: brightness(1.08);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    padding: 18px 36px;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.45);
}

.btn--hero {
    padding: 20px 42px;
    font-size: 1.15rem;
    gap: 4px;
}

.btn__price {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.06em;
}

.btn--cta {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFD54F 100%);
    color: var(--dark);
    padding: 22px 48px;
    font-size: 1.12rem;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 40px rgba(255, 184, 0, 0.55);
    border-radius: 50px;
    animation: pulse-btn 2.4s infinite;
}

.btn--large {
    padding: 26px 60px;
    font-size: 1.2rem;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 8px 40px rgba(255, 184, 0, 0.55);
    }

    50% {
        box-shadow: 0 8px 60px rgba(255, 184, 0, 0.85);
    }
}

/* ==========================
   HERO
   ========================== */
.hero {
    position: relative;
    min-height: 100svh;
    background: url('images/bg-orange-texture.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 10, 10, 0.82) 0%,
            rgba(20, 6, 0, 0.72) 55%,
            rgba(200, 60, 0, 0.30) 100%);
    z-index: 1;
}

.nav {
    position: relative;
    z-index: 10;
    padding-top: 28px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.nav__logo {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.hero__inner {
    position: relative;
    z-index: 10;
    flex: 1;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: flex-end;
    gap: 0;
}

.hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding-block: 60px 110px;
    gap: 20px;
}

.hero__photo {
    position: relative;
    align-self: stretch;
    z-index: 9;
}

.hero__photo-img {
    position: absolute;
    bottom: 0;
    left: -160px;
    right: 0;
    height: 95%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-8px 0 40px rgba(255, 107, 0, 0.25));
}

.badge {
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 100px;
}

.pulse {
    animation: pulse-badge 2.8s infinite ease-in-out;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(255, 184, 0, 0);
    }
}

.hero__title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 1.08;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero__sub {
    max-width: 600px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.date-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero__guarantee {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero__scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    position: relative;
}

.hero__scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    animation: scroll-mouse 2s infinite ease;
}

@keyframes scroll-mouse {
    0% {
        top: 6px;
        opacity: 1;
    }

    80% {
        top: 20px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 0;
    }
}

/* ==========================
   URGENCY BAR
   ========================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light));
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-family: var(--font-main);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

/* ==========================
   WHAT IS IT
   ========================== */
.what {
    background: var(--white);
}

.what .container {
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.card {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.card__icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.card h3 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 0.92rem;
    color: #666;
}

/* ==========================
   PROOF / BEFORE-AFTER
   ========================== */
.proof {
    background: linear-gradient(135deg, #0D0D0D 0%, #1e1e1e 100%);
}

.proof__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.proof .section-tag {
    color: var(--yellow);
    background: rgba(255, 184, 0, 0.15);
}

.proof .section-title {
    color: var(--white);
}

.proof .section-desc {
    color: rgba(255, 255, 255, 0.70);
}

.proof__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
}

.proof__list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-main);
    font-weight: 600;
}

.proof__image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.proof__labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    pointer-events: none;
}

.label-before,
.label-after {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--white);
}

.label-before {
    background: rgba(0, 0, 0, 0.55);
}

.label-after {
    background: rgba(255, 107, 0, 0.70);
}

.proof__img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.proof__image-wrap:hover .proof__img {
    transform: scale(1.03);
}

/* ==========================
   FOR WHOM
   ========================== */
.forwhom {
    background: var(--light);
}

.forwhom .container {
    text-align: center;
}

.forwhom__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.forwhom__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}

.forwhom__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.forwhom__item span {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.forwhom__item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-main);
}

/* ==========================
   INCLUDED / WHAT YOU GET
   ========================== */
.included {
    background: var(--white);
}

.included .container {
    text-align: center;
}

.included__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.included__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}

.included__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.included__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.included__item h4 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.included__item p {
    font-size: 0.88rem;
    color: #666;
}

/* ==========================
   PRICING
   ========================== */
.pricing {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a0800 60%, #0a0a0a 100%);
    overflow: hidden;
    text-align: center;
}

.pricing__bg-texture {
    position: absolute;
    inset: 0;
    background: url('images/bg-orange-texture.jpg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.pricing__inner {
    position: relative;
    z-index: 2;
}

.price-card {
    max-width: 520px;
    margin: 48px auto 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.30);
    border-radius: 24px;
    padding: 44px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.price-card__logo {
    height: 50px;
    width: auto;
}

.price-card__dates {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--yellow);
    background: rgba(255, 184, 0, 0.12);
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.price-card__desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 340px;
    text-align: center;
}

.price-card__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.price-card__from {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: var(--orange);
}

.price-card__price {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    color: var(--white);
}

.price-card__currency {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 8px;
}

.price-card__value {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 5.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 30%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card__cents {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 2rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.price-card__once {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-card__security {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
}

.price-card__methods {
    display: flex;
    gap: 18px;
}

.price-card__methods span {
    font-size: 0.82rem;
    font-family: var(--font-main);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================
   FAQ
   ========================== */
.faq {
    background: var(--light);
}

.faq .container {
    text-align: center;
}

.faq__list {
    max-width: 720px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq__item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-card);
}

.faq__item summary {
    padding: 20px 24px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq__item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item p {
    padding: 0 24px 20px;
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
}

/* ==========================
   FINAL CTA
   ========================== */
.final-cta {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    background: url('images/bg-orange-texture.jpg') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.final-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.final-cta__title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.final-cta__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
}

.final-cta__dates {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

/* ==========================
   FOOTER
   ========================== */
.footer {
    background: var(--dark);
    padding: 48px 0 36px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer__logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer__copy {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 540px;
    line-height: 1.6;
}

/* ==========================
   COUNTDOWN
   ========================== */
.countdown-section {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    padding: 28px 0;
}

.countdown-section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.countdown-section__label {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 64px;
}

.cd-unit strong {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}

.cd-unit small {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

.cd-sep {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--orange);
    margin-top: -6px;
}

/* ==========================
   AVATAR NARRATIVE
   ========================== */
.avatar {
    background: var(--white);
}

.avatar .container {
    text-align: center;
}

.avatar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
    text-align: left;
}

.avatar__quote-block {
    position: relative;
    background: linear-gradient(135deg, #0D0D0D 0%, #1e1e1e 100%);
    border-radius: var(--radius);
    padding: 44px 36px 36px;
    box-shadow: var(--shadow);
}

.avatar__quote-icon {
    position: absolute;
    top: -20px;
    left: 28px;
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    font-family: Georgia, serif;
}

.avatar__story {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avatar__story p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.avatar__story strong {
    color: var(--orange-light);
}

.avatar__sign {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.05rem !important;
    color: var(--white) !important;
    border-top: 1px solid rgba(255, 107, 0, 0.25);
    padding-top: 16px;
    margin-top: 4px;
}

.avatar__igor-transform {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avatar__caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-main);
    font-weight: 600;
}

/* ==========================
   GALLERY
   ========================== */
.gallery {
    background: var(--dark-2);
}

.gallery .section-tag {
    color: var(--yellow);
    background: rgba(255, 184, 0, 0.15);
}

.gallery .container {
    text-align: center;
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-desc {
    color: rgba(255, 255, 255, 0.60);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    background: #111;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: brightness(0.92);
}

.gallery__item:hover img {
    transform: scale(1.07);
    filter: brightness(1.05);
}

.gallery__item::after {
    content: 'ANTES → DEPOIS';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 107, 0, 0.85));
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 16px 8px 10px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================
   ABOUT IGOR
   ========================== */
.about-igor {
    background: linear-gradient(135deg, var(--light) 0%, #fff8f2 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.10);
}

.about-igor__inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: center;
}

.about-igor__image-col {
    position: relative;
}

.about-igor__img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-igor__img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.about-igor__badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.5);
    text-align: center;
}

.about-igor__badge-num {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
}

.about-igor__badge-label {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.about-igor__text {
    padding-block: 20px;
}

.about-igor__bio {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    margin-bottom: 28px;
}

.about-igor__bio p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.75;
}

.about-igor__bio strong {
    color: var(--dark);
}

.about-igor__credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cred-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.cred-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cred-item strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.2;
}

.cred-item small {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ==========================
   GUARANTEE + TESTIMONIALS
   ========================== */
.guarantee {
    background: var(--white);
}

.guarantee__inner {
    display: flex;
    justify-content: center;
}

.guarantee__box {
    max-width: 520px;
    width: 100%;
    background: linear-gradient(135deg, #0D0D0D 0%, #1e1e1e 100%);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.guarantee__icon {
    font-size: 3.2rem;
}

.guarantee__title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.3;
}

.guarantee__text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.guarantee__text strong {
    color: var(--orange-light);
}

.guarantee__badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
}

.guarantee__badges span {
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
}

/* --- Testimonials --- */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials .section-tag {
    align-self: flex-start;
}

.testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
    color: var(--yellow);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.94rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card__author {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--orange);
}

@media (max-width: 768px) {
    .guarantee__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ==========================
   SCROLL ANIMATIONS
   ========================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        padding-block: 0 48px;
        order: 2;
        margin-top: -24px;
        /* pull badge up under photo fade */
    }

    .hero__photo {
        order: 1;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .hero__photo-img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: contain;
        object-position: bottom center;
    }

    .proof__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proof__image-wrap {
        order: -1;
    }

    .proof .section-title,
    .proof .section-desc {
        text-align: center !important;
    }

    .proof__list {
        align-items: center;
    }

    .price-card {
        padding: 36px 24px;
    }

    .price-card__value {
        font-size: 4rem;
    }

    .btn--large {
        padding: 20px 36px;
        font-size: 1rem;
    }

    .avatar__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .avatar__igor-transform {
        order: -1;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-igor__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-igor__img-wrap {
        max-width: 340px;
        margin-inline: auto;
    }

    .about-igor .section-title {
        text-align: center !important;
    }

    .about-igor .section-tag {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        padding-block: 0 48px;
        order: 2;
        margin-top: -24px;
    }

    .hero__photo {
        order: 1;

        left: 20px;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .hero__photo-img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
        object-position: bottom center;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .included__list {
        grid-template-columns: 1fr;
    }

    .forwhom__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .about-igor__credentials {
        grid-template-columns: 1fr;
    }
}