:root {
    --primary: #1c3123;
    --bg: #000000;
    --charcoal: #0a160e;
    --forest: #2d3a31;
    --text: #f1f5f9
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Plus Jakarta Sans', Georgia, 'Times New Roman', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden
}

::selection {
    background: rgba(28, 49, 35, .3)
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', Georgia, serif;
    line-height: 1.2
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 4px
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none
}

ul {
    list-style: none
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 999
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    z-index: 999;
    width: auto;
    height: auto;
    overflow: visible
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    width: 1em;
    height: 1em;
    overflow: hidden;
    speak: never
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(45, 58, 49, .3);
    background: rgba(14, 18, 16, .8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin: 0 auto
}

.hamburger {
    order: -1
}

.logo {
    display: none;
    align-items: center;
    gap: .75rem
}

.logo__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0
}

.logo__icon .material-symbols-outlined {
    font-size: 36px;
    width: 36px;
    height: 36px
}

.logo__text {
    display: none;
    flex-direction: column;
    align-items: center;
    line-height: 1
}

.logo__text-main {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase
}

.logo__text-sub {
    font-family: 'Cinzel', Georgia, serif;
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .35em;
    text-transform: uppercase
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem
}

.nav a {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: color .3s
}

.nav a:hover {
    color: var(--primary)
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: .5rem;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background .3s;
    display: inline-block;
    text-align: center
}

.btn-cta:hover {
    background: rgba(28, 49, 35, .8)
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all .3s
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100dvh;
    background: var(--charcoal);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.mobile-nav.active {
    transform: translateX(0)
}

.mobile-nav__close {
    align-self: flex-start;
    background: none;
    color: var(--text);
    font-size: 1.5rem;
    padding: .5rem;
    line-height: 1
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(45, 58, 49, .3);
    display: block;
    transition: color .3s
}

.mobile-nav a:hover {
    color: var(--primary)
}

.mobile-nav .btn-cta {
    margin-top: 1rem;
    text-align: center
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.overlay.active {
    opacity: 1;
    pointer-events: auto
}

/* HERO */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg)
}

/* FULL-PAGE LOADER */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
}

.page-loader--hidden {
    opacity: 0;
    pointer-events: none
}

.page-loader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(74, 124, 89, .2);
    border-top-color: #4a7c59;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to { transform: rotate(360deg) }
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg), rgba(0,0,0,.35) 12%, rgba(0,0,0,.35) 65%, rgba(0,0,0,.5), var(--bg));
    z-index: 1;
    pointer-events: none
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: saturate(1.3) brightness(.75);
    filter: saturate(1.3) brightness(.75)
}

.hero__bg video {
    position: relative;
    z-index: 0;
    -webkit-filter: brightness(.4);
    filter: brightness(.4)
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 64rem;
    padding: 0 1.5rem;
    text-align: center
}

.hero__badge {
    display: inline-block;
    padding: .25rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9999px;
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.hero__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -.025em
}

.hero__title em {
    font-style: italic
}

.hero__title--small {
    font-size: 2rem
}

.hero__sub {
    font-size: 1rem;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
    opacity: .9
}

.hero__buttons {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all .3s;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 22rem
}

.btn-hero--primary {
    background: var(--primary);
    color: #fff;
    animation: btnPulse 2s ease-in-out infinite
}

.btn-hero--primary:hover {
    animation: none;
    transform: scale(1.05)
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1) }
    50% { transform: scale(1.06) }
}

.btn-hero--secondary {
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff
}

.btn-hero--secondary:hover {
    background: rgba(255, 255, 255, .2)
}

/* SECTIONS */
.section {
    padding: 6rem 1.5rem
}

.section--charcoal {
    background: var(--charcoal)
}

.section--dark {
    background: var(--bg)
}

/* ABOUT */
.about__grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto
}

.about__img-wrap {
    position: relative;
    padding-bottom: 1rem
}

.about__img {
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(45, 58, 49, .3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about__badge {
    background: var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: .75rem;
    text-align: center;
    margin: -1.5rem auto 0;
    width: fit-content;
    position: relative;
    z-index: 2
}

.about__badge-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff
}

.about__badge-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .8
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.about__heading {
    font-size: 1.75rem;
    font-weight: 700
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    opacity: .9
}

.about__skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem
}

.about__skill {
    display: flex;
    align-items: center;
    gap: .75rem
}

.about__skill .material-symbols-outlined {
    color: #4a7c59
}

.about__skill-label {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -.05em
}

/* STORY */
.story {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center
}

.story__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem
}

.story__quote {
    background: rgba(45, 58, 49, .25);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(45, 58, 49, .4);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7
}

.story__hidden {
    display: none
}

.story__hidden.active {
    display: contents
}

.story__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: 2rem auto 0;
    padding: .75rem 2rem;
    background: rgba(45, 58, 49, .25);
    border: 1px solid rgba(45, 58, 49, .5);
    border-radius: 2rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background .3s, border-color .3s;
    animation: bounce-btn 2s ease infinite
}

.story__toggle.active {
    animation: none
}

.story__toggle:hover {
    background: rgba(45, 58, 49, .45);
    border-color: rgba(45, 58, 49, .7)
}

.story__toggle-arrow {
    display: inline-block;
    transition: transform .3s;
    font-size: 1.25rem
}

.story__toggle.active .story__toggle-arrow {
    transform: rotate(180deg)
}

@keyframes bounce-btn {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) }
    40% { transform: translateY(6px) }
    60% { transform: translateY(3px) }
}

/* OFFERS */
.offers__header {
    text-align: center;
    margin-bottom: 4rem
}

.offers__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.offers__desc {
    font-size: 1.125rem
}

.offers__divider {
    width: 6rem;
    height: 4px;
    background: var(--primary);
    margin: 0 auto
}

.offers__grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: stretch
}

.offer-card {
    background: #121f17;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(45, 58, 49, .4);
    transition: border-color .3s;
    display: flex;
    flex-direction: column
}

.offer-card__body {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease
}

.offer-card__body.expanded {
    max-height: 2000px
}

.offer-card__body:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #121f17);
    pointer-events: none
}

.offer-card__toggle {
    display: block;
    margin-top: auto;
    margin-bottom: 1rem;
    padding: 1.5rem 0 0 0;
    background: none;
    color: #4a7c59;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    animation: bounce 2s ease-in-out infinite
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
}

.offer-card:hover {
    border-color: var(--primary)
}

.offer-card__icon {
    width: 4rem;
    height: 4rem;
    background: rgba(74, 124, 89, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background .3s
}

.offer-card__icon .material-symbols-outlined {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #fff
}

.offer-card:hover .offer-card__icon {
    background: var(--primary)
}

.offer-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.offer-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: .5rem;
    color: #fff;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    transition: background .3s;
    width: 100%;
    height: 4.5rem
}

.offer-card__btn:hover {
    background: rgba(28, 49, 35, .8)
}

.offer-card__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: .85
}

.offer-card__list li {
    display: flex;
    align-items: center;
    gap: .5rem
}

.offer-card__list .material-symbols-outlined {
    font-size: 14px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #4a7c59
}

/* FIT SECTION */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto
}

.fit-card {
    background: #121f17;
    border: 1px solid rgba(45, 58, 49, .4);
    border-radius: 1rem;
    padding: 2.5rem 2rem
}

.fit-card__list-wrap {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease
}

.fit-card__list-wrap.expanded {
    max-height: 1000px
}

.fit-card__list-wrap:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(45, 58, 49, .25));
    pointer-events: none
}

.fit-card__toggle {
    display: block;
    margin-top: 1rem;
    background: none;
    color: #4a7c59;
    font-size: .9rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    border: none;
    font-family: inherit
}

.fit-card--yes {
    border-top: 3px solid #4a7c59
}

.fit-card--no {
    border-top: 3px solid rgba(255, 255, 255, .15)
}

.fit-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.8rem
}

.fit-card--yes .fit-card__title .material-symbols-outlined {
    color: #4a7c59;
    font-size: 1.5rem;
    flex-shrink: 0
}

.fit-card--no .fit-card__title .material-symbols-outlined {
    color: rgba(255, 255, 255, .4);
    font-size: 1.5rem;
    flex-shrink: 0
}

.fit-card__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0
}

.fit-card__list li {
    position: relative;
    padding-left: 1.6rem;
    line-height: 1.7;
    color: var(--text);
    opacity: .85
}

.fit-card--yes .fit-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700
}

.fit-card--no .fit-card__list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .35);
    font-weight: 700
}

.fit-card__cta {
    margin-top: 1.8rem;
    font-style: italic;
    color: #4a7c59;
    line-height: 1.6;
    opacity: .95
}

/* JAK PRACUJĘ */
.jak-pracuje__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: center
}

.jak-pracuje__content {
    display: flex;
    flex-direction: column
}

.jak-pracuje__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    line-height: 1.8;
    opacity: .9
}

.jak-pracuje__img {
    border-radius: 1rem;
    overflow: hidden
}

.jak-pracuje__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem
}

/* METHODS */
.methods__grid {
    display: grid;
    gap: 5rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto
}

.methods__content {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.methods__title {
    font-size: 1.75rem;
    font-weight: 700
}

.methods__quote {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .9;
    font-style: normal
}

.methods__steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 1rem
}

.methods__step {
    display: flex;
    gap: 1.5rem
}

.methods__step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(74, 124, 89, .5);
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgba(74,124,89,.5) 0%, rgba(74,124,89,.5) 40%, rgba(180,230,190,.9) 50%, rgba(74,124,89,.5) 60%, rgba(74,124,89,.5) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite
}

@keyframes shimmer {
    0% { background-position: 100% 0 }
    100% { background-position: -100% 0 }
}

.methods__step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.methods__step p {
    opacity: .85
}

.methods__visual {
    background: #121f17;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(45, 58, 49, .4);
    font-size: 1rem
}

.methods__vis-quote {
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem
}

.methods__vis-img {
    width: 100%;
    height: 16rem;
    border-radius: .75rem;
    overflow: hidden
}

.methods__vis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.methods__photos-split {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: 1.5rem
}

.methods__photo {
    position: absolute;
    inset: 0
}

.methods__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.methods__photo--1 {
    clip-path: polygon(0 0, 57% 0, 43% 100%, 0 100%)
}

.methods__photo--2 {
    clip-path: polygon(57% 0, 100% 0, 100% 100%, 43% 100%)
}

.methods__photo--1 img {
    object-position: 75% top
}

.methods__photo--2 img {
    object-position: 25% top
}

/* PRICING */
.pricing {
    max-width: 90rem;
    margin: 0 auto
}

.pricing__title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.75rem;
    font-weight: 700
}

.pricing__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center
}

.price-card {
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(45, 58, 49, .4);
    border-radius: .75rem;
    background: #121f17;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 100%
}

.price-card--featured {
    border-color: var(--primary);
    background: rgba(28, 49, 35, .05);
    position: relative;
    overflow: hidden
}

.price-card__pop {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    font-size: 10px;
    padding: .25rem .75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.05em;
    border-radius: 0 0 0 .75rem
}

.price-card__name {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .875rem
}

.price-card__amount {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: .5rem
}

.price-card__detail {
    font-size: .75rem;
    opacity: .75;
    margin-bottom: 1.5rem
}

.price-card__desc {
    font-size: .85rem;
    line-height: 1.6;
    opacity: .8;
    margin-bottom: 1.5rem
}

.btn-price {
    width: 100%;
    padding: .75rem;
    border-radius: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    transition: all .3s;
    display: block;
    text-align: center
}

.btn-price--outline {
    background: transparent;
    border: 1px solid #4a7c59;
    color: #4a7c59
}

.btn-price--outline:hover {
    background: var(--primary);
    color: #fff
}

.btn-price--filled {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary)
}

.btn-price--filled:hover {
    background: rgba(28, 49, 35, .8)
}

/* CONTACT */
.contact__grid {
    display: grid;
    gap: 5rem;
    max-width: 80rem;
    margin: 0 auto
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

.contact__title {
    font-size: 1.75rem;
    font-weight: 700
}

.contact__desc {
    font-size: 1rem;
    opacity: .9
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 1rem
}

.contact__detail .material-symbols-outlined {
    color: #4a7c59
}

.contact__free-tile {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--charcoal);
    border: 1px solid var(--forest);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: -3rem;
}

.contact__free-icon .material-symbols-outlined {
    font-size: 2rem;
    color: #4a7c59
}

.contact__free-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.contact__free-desc {
    font-size: .9rem;
    opacity: .85;
    line-height: 1.7
}

.contact__calendly {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #121f17;
    border: 1px solid var(--forest);
    scrollbar-color: #2d3a31 #0e1210;
    scrollbar-width: thin
}

.contact__calendly ::-webkit-scrollbar {
    width: 8px
}

.contact__calendly ::-webkit-scrollbar-track {
    background: #0e1210
}

.contact__calendly ::-webkit-scrollbar-thumb {
    background: #2d3a31;
    border-radius: 4px
}

.contact__calendly ::-webkit-scrollbar-thumb:hover {
    background: #4a7c59
}

.contact__calendly .calendly-inline-widget iframe {
    border-radius: 1.5rem;
    scrollbar-color: #2d3a31 #0e1210;
    scrollbar-width: thin
}

/* EXTRAS */
.extras__grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto
}

.extras__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.event {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(45, 58, 49, .2)
}

.event__date {
    text-align: center;
    flex-shrink: 0
}

.event__day {
    display: block;
    font-size: 1.25rem;
    font-weight: 900
}

.event__month {
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--primary)
}

.event__name {
    font-weight: 700
}

.event__loc {
    font-size: .875rem;
    opacity: .75
}

.dl-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: .75rem;
    border: 1px solid rgba(45, 58, 49, .2);
    transition: border-color .3s;
    margin-bottom: 1rem
}

.dl-link:hover {
    border-color: var(--primary)
}

.dl-link__name {
    font-weight: 700
}

.dl-link .material-symbols-outlined {
    transition: transform .3s
}

.dl-link:hover .material-symbols-outlined {
    transform: translateX(4px)
}

/* TESTIMONIALS SLIDER */
.test__wrap {
    max-width: 80rem;
    margin: 0 auto;
    position: relative
}

.test__title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.75rem;
    font-weight: 700
}

.test__slider {
    overflow: hidden
}

.test__track {
    display: flex;
    transition: transform .4s ease
}

.tcard {
    min-width: 100%;
    padding: 2rem;
    background: #121f17;
    border-radius: 1rem;
    border: 1px solid rgba(45, 58, 49, .4);
    font-style: italic;
    font-size: 1rem;
    position: relative;
    box-sizing: border-box
}

.tcard__qi {
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: .1;
    font-size: 60px !important;
    width: 60px !important;
    height: 60px !important
}

.tcard__text {
    position: relative;
    z-index: 1
}

.tcard__author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-style: normal
}

.tcard__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(45, 58, 49, .3);
    flex-shrink: 0
}

.tcard__name {
    font-weight: 700;
    font-size: .875rem
}

.tcard__role {
    font-size: .75rem;
    text-transform: uppercase;
    opacity: .75
}

.test__arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem
}

.test__arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(45, 58, 49, .3);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    transition: background .3s
}

.test__arrow:hover {
    background: var(--primary)
}

.tcard__stars {
    font-size: 1.25rem;
    letter-spacing: .2rem;
    margin-top: .75rem
}

.tcard__stars span {
    color: rgba(212, 160, 23, .15);
    display: inline-block;
    animation: starFill .4s ease forwards;
}

.tcard__stars span:nth-child(1) { animation-delay: .1s }
.tcard__stars span:nth-child(2) { animation-delay: .3s }
.tcard__stars span:nth-child(3) { animation-delay: .5s }
.tcard__stars span:nth-child(4) { animation-delay: .7s }
.tcard__stars span:nth-child(5) { animation-delay: .9s }

@keyframes starFill {
    0% { color: rgba(212, 160, 23, .15); transform: scale(1) }
    50% { transform: scale(1.3) }
    100% { color: #d4a017; transform: scale(1) }
}

/* FOOTER */
.footer {
    background: var(--bg);
    border-top: 1px solid rgba(45, 58, 49, .2);
    padding: 5rem 1.5rem 0
}

.footer__grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto
}

.footer__brand .logo {
    margin-bottom: 1.5rem
}

.footer__brand-desc {
    max-width: 24rem;
    opacity: .75;
    line-height: 2
}

.footer__nav-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .875rem
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: .75
}

.footer__nav-list a {
    transition: color .3s
}

.footer__nav-list a:hover {
    color: var(--primary)
}

.footer__brand .logo__text {
    display: flex
}

.footer__social {
    display: flex;
    gap: 1rem
}

.footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(45, 58, 49, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.footer__social a:hover {
    background: var(--primary)
}

.footer__social .social--fb:hover {
    background: #1877F2
}

.footer__social .social--ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)
}

.footer__copy {
    text-align: center;
    padding: 3rem 0 .5rem;
    border-top: 1px solid rgba(45, 58, 49, .4);
    opacity: .6;
    font-size: .875rem;
    max-width: 80rem;
    margin: 0 auto
}

/* RESPONSIVE */
@media(min-width:768px) {
    .section {
        padding: 6rem 5rem
    }

    .header {
        padding: 1rem 5rem
    }

    .footer {
        padding: 5rem 5rem 2.5rem
    }

    .logo {
        display: flex
    }

    .logo__text {
        display: flex
    }

    .hero__title {
        font-size: 6rem
    }

    .hero__title--small {
        font-size: 3.5rem
    }

    .hero__content h1 {
        font-size: 3.75rem
    }

    .fit-grid {
        grid-template-columns: 1fr 1fr
    }

    .fit-card {
        padding: 2.5rem
    }

    .jak-pracuje__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }

    .hero__sub {
        font-size: 1.25rem
    }

    .hero__buttons {
        flex-direction: row
    }

    .btn-hero {
        width: auto;
        max-width: none
    }

    .about__heading {
        font-size: 2.5rem
    }

    .about__badge {
        position: absolute;
        bottom: -0.8rem;
        right: -1.5rem;
        margin: 0;
        padding: 2rem
    }

    .about__badge-num {
        font-size: 2.25rem
    }

    .story__title {
        font-size: 2.5rem;
        margin-bottom: 3rem
    }

    .story__quote {
        font-size: 1.125rem;
        padding: 2.5rem
    }

    .offers__title {
        font-size: 2.5rem
    }

    .offers__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .methods__title {
        font-size: 2.5rem
    }

    .methods__quote {
        font-size: 1.125rem
    }

    .methods__step h4 {
        font-size: 1.25rem
    }

    .methods__visual {
        padding: 3rem;
        font-size: 1.125rem
    }

    .pricing__title {
        font-size: 2.5rem
    }

    .price-card {
        flex: 1 1 calc(50% - 1.5rem)
    }

    .contact__title {
        font-size: 2.5rem
    }

    .contact__desc {
        font-size: 1.125rem
    }

    .about__text {
        font-size: 1.125rem
    }

    .test__title {
        font-size: 2.5rem
    }

    .tcard {
        min-width: calc(50% - 1rem);
        margin: 0 .5rem;
        font-size: 1.125rem;
        padding: 2.5rem
    }

    .offer-card__title {
        font-size: 1.5rem
    }

    .extras__grid {
        flex-direction: row
    }

    .extras__grid>div {
        flex: 1
    }

    .tcard {
        min-width: calc(50% - 1rem);
        margin: 0 .5rem
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr
    }
}

@media(min-width:1024px) {
    .nav {
        display: flex
    }

    .hamburger {
        display: none
    }

    .about__grid {
        grid-template-columns: 1fr 1fr
    }

    .methods__grid {
        grid-template-columns: 1fr 1fr
    }

    .contact__grid {
        grid-template-columns: 1fr 1fr
    }

    .price-card {
        flex: 1 1 0;
        min-width: 0
    }

    .tcard {
        min-width: calc(33.333% - 1rem);
        margin: 0 .5rem
    }
}