/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1e293b;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #ecfdf5;
    --emerald-50: #d1fae5;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --tr: all .3s cubic-bezier(.22, 1, .36, 1)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

.container-sm {
    max-width: 800px
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--tr);
    letter-spacing: -.01em
}

.btn-primary {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald)
}

.btn-primary:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, .25)
}

.btn-outline {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .25);
    border-color: #fff
}

.btn-white {
    background: #fff;
    color: var(--emerald-dark);
    border-color: #fff
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .2)
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35)
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

.btn-telegram {
    background: #fff;
    color: #26A5E4;
    border-color: #fff
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(38, 165, 228, .2)
}

.btn-messenger {
    background: #fff;
    color: #0084FF;
    border-color: #fff
}

.btn-messenger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 132, 255, .2)
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--tr)
}

.header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--gray-200)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: -.02em
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    transition: transform .3s ease
}

.logo:hover .logo-img {
    transform: scale(1.1)
}

.header.scrolled .logo {
    color: var(--gray-900)
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-link {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    font-weight: 500;
    transition: var(--tr)
}

.nav-link:hover {
    color: #fff
}

.header.scrolled .nav-link {
    color: var(--gray-500)
}

.header.scrolled .nav-link:hover {
    color: var(--gray-900)
}

.cta-nav {
    background: var(--emerald);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px
}

.cta-nav:hover {
    background: var(--emerald-dark)
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 3px
}

.header.scrolled .lang-switch {
    background: var(--gray-100)
}

.lang {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    transition: var(--tr);
    letter-spacing: .5px
}

.lang.active {
    background: #fff;
    color: var(--gray-900)
}

.header.scrolled .lang {
    color: var(--gray-400)
}

.header.scrolled .lang.active {
    background: var(--gray-900);
    color: #fff
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px
}

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--tr)
}

.header.scrolled .burger span {
    background: var(--gray-900)
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .35) 50%, rgba(0, 0, 0, .55) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px
}

.hero-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto
}

.hero-location {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -.03em
}

.highlight {
    color: var(--emerald)
}

.hero-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, .7);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 500
}

/* Hero Airbnb Link */
.hero-airbnb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .08);
    transition: var(--tr);
    margin-top: 16px
}

.hero-airbnb-link:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    transform: translateY(-2px)
}

.hero-airbnb-link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s ease
}

.hero-airbnb-link:hover svg {
    transform: translateX(3px)
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.section-alt {
    background: linear-gradient(180deg, var(--gray-50) 0%, #f0fdf4 50%, var(--gray-50) 100%)
}

/* Dark themed section */
.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.section-dark .section-tag {
    color: #34d399
}

.section-dark .section-header h2 {
    color: #fff
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, .6)
}

/* Accent themed section */
.section-accent {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden
}

.section-accent::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, .15) 0%, transparent 70%);
    pointer-events: none
}

.section-accent .section-tag {
    color: var(--emerald-dark)
}

.section-accent .section-header h2 {
    color: var(--gray-900)
}

/* Decorative blobs */
#uslugi::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, .06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

#opinie::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, .05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

#jak-to-dziala::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, .04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

/* Subtle top borders on alternating sections */
.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    pointer-events: none
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    pointer-events: none
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--gray-900);
    margin-bottom: 12px
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.service-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--tr)
}

.section-alt .service-card {
    background: #fff
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
    transform: translateY(-4px)
}

.service-card-header {
    margin-bottom: 20px
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.badge-green {
    background: var(--emerald-light);
    color: var(--emerald-dark)
}

.badge-gray {
    background: var(--gray-100);
    color: var(--gray-500)
}

.service-list li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600)
}

.service-list li:last-child {
    border: none
}

.li-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

/* === PRICING === */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: 50px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto
}

.pricing-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--tr);
    color: var(--gray-500);
    font-family: inherit
}

.pricing-tab.active {
    background: #fff;
    color: var(--gray-900);
    box-shadow: var(--shadow-sm)
}

.pricing-content {
    display: none;
    animation: fadeIn .3s ease
}

.pricing-content.active {
    display: block
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 18px 28px;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100)
}

.price-row:last-child {
    border: none
}

.price-header {
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    background: var(--gray-50)
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: var(--emerald-dark)
}

.pricing-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-400)
}

.pricing-card-single {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 52px 32px
}

.pricing-amount {
    font-size: 60px;
    font-weight: 900;
    color: var(--emerald-dark);
    line-height: 1;
    margin-bottom: 12px
}

.pricing-amount span {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-400)
}

.pricing-min {
    margin-top: 16px;
    padding: 10px 22px;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--emerald-dark);
    display: inline-block
}

.pricing-cta {
    text-align: center;
    margin-top: 48px
}

/* === SUB CARDS === */
.sub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 560px;
    margin: 0 auto
}

.sub-cards-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 780px
}

.sub-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--tr);
    position: relative
}

.sub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.sub-card.featured {
    border-color: var(--emerald);
    box-shadow: 0 0 0 1px var(--emerald)
}

.sub-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: .3px;
    text-transform: uppercase
}

.sub-label {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 4px;
    margin-top: 8px
}

.sub-discount {
    font-size: 40px;
    font-weight: 900;
    color: var(--emerald);
    margin-bottom: 4px
}

.sub-price {
    font-size: 15px;
    color: var(--gray-600)
}

.sub-price strong {
    font-size: 24px;
    color: var(--gray-900)
}

.sub-note {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px
}

.sub-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: var(--emerald-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px
}

.sub-icon svg {
    width: 28px;
    height: 28px
}

.sub-card.featured .sub-icon {
    background: rgba(16, 185, 129, .15)
}

.sub-perks {
    list-style: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    text-align: left
}

.sub-card.featured .sub-perks {
    border-top-color: rgba(16, 185, 129, .2)
}

.sub-perks li {
    font-size: 13px;
    color: var(--gray-500);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px
}

.sub-perks li::before {
    content: '\2713';
    color: var(--emerald);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0
}

/* === STEPS (dark bg) === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.step-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: var(--tr);
    position: relative;
    backdrop-filter: blur(8px)
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, .15);
    border-color: rgba(16, 185, 129, .3);
    background: rgba(255, 255, 255, .1)
}

.step-num {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 1px;
    margin-bottom: 16px
}

.step-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 16px
}

.section-dark .step-icon {
    stroke: #34d399
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.step-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5
}

/* === FEATURES === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--tr)
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-50)
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px
}

.feature-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5
}

/* === TESTIMONIALS (on accent bg) === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(16, 185, 129, .15);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--tr);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04)
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, .12);
    border-color: var(--emerald)
}

.stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px
}

.testimonial-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald-dark)
}

/* === FAQ === */
.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--tr)
}

.faq-item:hover {
    border-color: var(--gray-300)
}

.faq-item.active {
    border-color: var(--emerald)
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--gray-800)
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--tr);
    font-weight: 300
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--emerald);
    color: #fff
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

.faq-item.active .faq-answer {
    max-height: 200px
}

/* === CTA === */
.section-cta {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.cta-content>p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.cta-small {
    font-size: 14px;
    color: rgba(255, 255, 255, .6)
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 48px 0 24px
}

.footer-inner {
    text-align: center
}

.footer-brand {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.footer-brand p {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
    margin-top: 4px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: 14px;
    transition: var(--tr)
}

.footer-links a:hover {
    color: var(--emerald)
}

.footer-nip {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
    letter-spacing: .3px
}

.footer-copy {
    font-size: 12px;
    color: var(--gray-600)
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* Mobile nav elements - hidden on desktop */
.nav-header,
.nav-footer {
    display: none
}

.nav-links {
    display: contents
}

/* === RESPONSIVE === */
@media(max-width:768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        transition: var(--tr);
        padding: 0;
        box-shadow: -8px 0 24px rgba(0, 0, 0, .1);
        z-index: 1001
    }

    .nav.open {
        right: 0
    }

    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 28px;
        border-bottom: 1px solid var(--gray-100)
    }

    .nav-brand {
        font-weight: 800;
        font-size: 16px;
        color: var(--gray-900);
        letter-spacing: -.02em
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: var(--gray-100);
        color: var(--gray-600);
        cursor: pointer;
        transition: var(--tr);
        margin-left: 16px;
        flex-shrink: 0
    }

    .nav-close:hover {
        background: var(--gray-200);
        color: var(--gray-900)
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 24px 20px;
        overflow-y: auto
    }

    .nav-link {
        color: var(--gray-600) !important;
        padding: 14px 12px;
        border-radius: var(--radius-sm);
        font-size: 15px;
        transition: var(--tr)
    }

    .nav-link:hover {
        background: var(--gray-50);
        color: var(--gray-900) !important
    }

    .nav-footer {
        display: flex;
        justify-content: center;
        padding: 20px 28px;
        border-top: 1px solid var(--gray-100)
    }

    .nav-lang-switch {
        display: flex;
        gap: 2px;
        background: var(--gray-100);
        border-radius: 50px;
        padding: 3px
    }

    .nav-lang {
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        color: var(--gray-400);
        transition: var(--tr);
        letter-spacing: .5px
    }

    .nav-lang.active {
        background: var(--gray-900);
        color: #fff
    }

    .burger {
        display: flex
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .sub-cards {
        grid-template-columns: 1fr;
        max-width: 320px
    }

    .section {
        padding: 64px 0
    }

    .pricing-tabs {
        flex-direction: column;
        max-width: 240px
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center
    }
}

@media(max-width:480px) {
    .steps-grid {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .btn-lg {
        width: 100%;
        justify-content: center
    }

    .lang-switch {
        display: none
    }
}

/* === PROMO BANNER === */
.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #065f46 100%);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
    animation: slideUp .5s ease-out;
}

.promo-banner.hidden {
    display: none;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-banner-text {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
}

.promo-highlight {
    font-size: 22px;
    font-weight: 900;
    color: #fbbf24;
    animation: pulse-glow 2s ease-in-out infinite;
}

.promo-banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: #fff;
    color: #059669;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--tr);
    white-space: nowrap;
}

.promo-banner-btn:hover {
    background: #fbbf24;
    color: #1a1a1a;
    transform: scale(1.05);
}

.promo-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--tr);
    flex-shrink: 0;
}

.promo-banner-close:hover {
    color: #fff;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(251, 191, 36, .4);
    }

    50% {
        text-shadow: 0 0 20px rgba(251, 191, 36, .8);
    }
}

/* Add padding to body to prevent banner hiding content */
body {
    padding-bottom: 60px;
}

@media(max-width:768px) {
    .promo-banner {
        padding: 10px 40px 10px 16px;
        gap: 8px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .promo-banner-content {
        gap: 10px;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
    }

    .promo-banner-text {
        font-size: 12px;
        text-align: left;
        white-space: nowrap;
    }

    .promo-highlight {
        font-size: 16px;
    }

    .promo-banner-btn {
        padding: 6px 14px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .promo-banner-close {
        position: absolute;
        top: 4px;
        right: 6px;
        font-size: 14px;
        padding: 2px 6px;
    }
}