/* ===== VARIABLES ===== */
:root {
    --black: #1a1a1a;
    --black-soft: #2c2c2c;
    --charcoal: #3d3d3d;
    --copper: #b87333;
    --copper-light: #d4915a;
    --copper-dark: #8f5a28;
    --beige: #f5efe6;
    --beige-warm: #ebe2d3;
    --cream: #faf7f2;
    --text: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --bg: #ffffff;
    --bg-alt: var(--cream);
    --bg-dark: var(--black);
    --border: #e8e2d6;
    --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06);
    --shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 12px 32px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 24px 48px rgba(26, 26, 26, 0.14);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--black);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--black);
    color: var(--cream);
    border-color: var(--black);
}

.btn-primary:hover {
    background: var(--copper);
    border-color: var(--copper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--cream);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-nav {
    padding: 11px 26px;
    background: var(--copper);
    color: white;
    border-color: var(--copper);
}

.btn-nav:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
    color: white;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
}

.lang-switch a.active {
    background: var(--copper);
    color: white;
}

.lang-switch .flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    overflow: hidden;
}

.lang-switch .flag-de {
    background: linear-gradient(to bottom, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.lang-switch .flag-pl {
    background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%);
}

.navbar.scrolled .lang-switch {
    background: var(--beige);
}

.navbar.scrolled .lang-switch a {
    color: var(--text-light);
}

.navbar.scrolled .lang-switch a.active {
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 17px;
    color: white;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 2px;
}

.navbar.scrolled .logo-text {
    color: var(--black);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: var(--text);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--copper);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--copper);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-toggle.active span {
    background: white !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.6) 60%, rgba(184, 115, 51, 0.35) 100%);
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
}

.hero-text {
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--copper-light);
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(212, 145, 90, 0.4);
    border-radius: 999px;
    background: rgba(212, 145, 90, 0.08);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4.25rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--copper-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--copper);
    border-color: var(--copper);
    color: white;
}

.hero .btn-primary:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
}

.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--black);
    border-color: white;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}

.hero-feature svg {
    width: 22px;
    height: 22px;
    color: var(--copper-light);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--copper);
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(184, 115, 51, 0.08);
    border-radius: 999px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.about-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--copper);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-card {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: white;
    padding: 22px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
}

.card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--copper);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-card strong {
    display: block;
    color: var(--black);
    margin-bottom: 4px;
    font-size: 15px;
}

.about-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 22px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-list {
    margin: 28px 0 36px;
    display: grid;
    gap: 14px;
}

.about-list li {
    position: relative;
    padding-left: 36px;
    color: var(--text);
    line-height: 1.6;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: var(--copper);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: white;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--copper-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 100%);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.service-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--copper);
    background: rgba(184, 115, 51, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
}

.service-card ul {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.service-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.service-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
}

/* ===== WHY US ===== */
.why-us {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-text h2 {
    color: white;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 18px;
}

.why-us-text > p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.7;
}

.why-us-text .section-tag {
    color: var(--copper-light);
    background: rgba(212, 145, 90, 0.12);
}

.why-us-features {
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(184, 115, 51, 0.18);
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--copper-light);
}

.feature h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.why-us-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(184, 115, 51, 0.12);
    border-color: rgba(184, 115, 51, 0.3);
    transform: translateY(-4px);
}

.value-card-icon {
    width: 44px;
    height: 44px;
    background: var(--copper);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-card-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.value-card h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--copper);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 18px;
}

.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    background: var(--black);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(184, 115, 51, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 18px;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--copper);
    border-color: var(--copper);
}

.cta .btn-primary:hover {
    background: var(--copper-dark);
    border-color: var(--copper-dark);
}

.cta .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--black);
    border-color: white;
}

/* ===== CONTACT ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-card:hover {
    border-color: var(--copper);
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--black);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--copper);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a, .contact-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--copper);
}

/* ===== FORM ===== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--copper);
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: white;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 22px 0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--copper);
    border-color: var(--copper);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--copper-light);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
    display: block;
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--copper-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    margin: 0 4px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--copper-light);
    border-bottom-color: var(--copper-light);
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 20px;
    color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    max-width: calc(100vw - 48px);
    width: auto;
}

.notification-success { background: #16a34a; }
.notification-error { background: #dc2626; }

.notification button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
}

.notification button:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

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

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

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

    .about-content {
        gap: 48px;
    }

    .why-us-content {
        gap: 48px;
    }

    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 28px 40px;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 18px 0;
        color: white !important;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu a::after { display: none; }

    .nav-menu .btn-nav {
        margin-top: 20px;
        display: inline-flex;
        width: 100%;
        border-bottom: none;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-right {
        gap: 12px;
    }

    .lang-switch {
        padding: 4px 6px;
    }

    .lang-switch a {
        padding: 4px 8px;
        font-size: 12px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 130px 0 70px;
    }

    .hero-features {
        gap: 16px;
        padding-top: 24px;
    }

    .hero-feature {
        font-size: 13px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-image::after {
        display: none;
    }

    .about-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding: 56px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 110px 0 56px;
    }

    .hero-eyebrow {
        font-size: 11px;
        padding: 6px 12px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 36px;
    }

    .hero-buttons .btn {
        flex: 1 1 100%;
    }

    .hero-features {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        padding: 13px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 15px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .navbar.scrolled .logo-img {
        width: 38px;
        height: 38px;
    }

    .notification {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }
}

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

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--copper-light);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--copper);
    box-shadow: var(--shadow);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.4;
    transition: var(--transition);
}

.faq-question > span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ""; }

.faq-question:hover {
    color: var(--copper);
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--copper);
}

.faq-item[open] .faq-icon {
    background: var(--copper);
    color: white;
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 15px;
    animation: fadeInUp 0.3s ease;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer strong { color: var(--black); }

.faq-answer ul {
    padding-left: 22px;
    list-style: disc;
    margin: 8px 0 12px;
}

.faq-answer ul li {
    margin-bottom: 6px;
}

.faq-answer a {
    color: var(--copper);
    border-bottom: 1px solid currentColor;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 22px;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 22px 20px;
        font-size: 14px;
    }
}

/* ===== LEGAL PAGES ===== */
.legal {
    padding: 140px 0 80px;
    background: var(--cream);
    min-height: 100vh;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.legal-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.legal-content .lead {
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 36px 0 14px;
    color: var(--black);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 24px 0 10px;
    color: var(--black);
}

.legal-content p,
.legal-content ul,
.legal-content address {
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.75;
    font-style: normal;
}

.legal-content ul {
    padding-left: 22px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--copper);
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    border-bottom-color: var(--copper);
}

.legal-content strong {
    color: var(--black);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 14px;
}

.legal-back:hover {
    color: var(--copper);
}

@media (max-width: 768px) {
    .legal { padding: 110px 0 60px; }
    .legal-content {
        padding: 32px 24px;
    }
}

/* ===== BLOG ===== */
.blog-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #f8f6f1 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
}

.blog-hero .container {
    max-width: 880px;
}

.blog-hero .section-tag {
    margin-bottom: 18px;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--black);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.blog-hero .lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-light);
    max-width: 720px;
    margin: 0;
}

.blog-index {
    padding: 80px 0 100px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--copper);
}

.blog-card .blog-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-card h2,
.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.25;
    color: var(--black);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.blog-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
}

.blog-card .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--copper);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: gap 0.25s ease, color 0.25s ease;
}

.blog-card:hover .blog-link {
    color: var(--copper);
    gap: 12px;
}

/* ===== ARTICLE ===== */
.article {
    padding: 140px 0 80px;
    background: var(--white);
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.article-breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
    color: var(--copper);
}

.article-breadcrumbs span[aria-current] {
    color: var(--black);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.article-meta .article-cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.article h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.15;
    color: var(--black);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.article .article-lead {
    font-size: 20px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 48px;
    font-weight: 400;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.25;
    color: var(--black);
    margin: 48px 0 18px;
    letter-spacing: -0.01em;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.3;
    color: var(--black);
    margin: 36px 0 14px;
    font-weight: 600;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin: 0 0 20px;
}

.article-body ul {
    margin: 0 0 28px;
    padding-left: 0;
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.article-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 2px;
    background: var(--copper);
}

.article-body strong {
    color: var(--black);
    font-weight: 600;
}

.article-body a {
    color: var(--black);
    border-bottom: 1px solid var(--copper);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-body a:hover {
    color: var(--copper);
}

.article-cta {
    margin-top: 56px;
    padding: 40px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.article-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.article-cta .btn {
    background: var(--copper);
    color: var(--white);
    border-color: var(--copper);
}

.article-cta .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.article-related {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.article-related h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 0 28px;
    color: var(--black);
    letter-spacing: -0.01em;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.article-related-grid a {
    display: block;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.article-related-grid a:hover {
    border-color: var(--copper);
    transform: translateY(-2px);
}

.article-related-grid .blog-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.article-related-grid h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.3;
    color: var(--black);
    margin: 0;
}

@media (max-width: 768px) {
    .article { padding: 110px 0 60px; }
    .blog-hero { padding: 110px 0 50px; }
    .blog-index { padding: 60px 0 80px; }
    .blog-card { padding: 28px; }
    .article-cta { padding: 32px 24px; }
    .article-body h2 { font-size: 26px; margin: 40px 0 14px; }
    .article-body h3 { font-size: 20px; }
}

/* ===== RATGEBER (sekcja blogu na stronie głównej) ===== */
.ratgeber {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f6f1 100%);
}

.ratgeber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.ratgeber-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.ratgeber-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--copper);
}

.ratgeber-card .blog-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 12px;
}

.ratgeber-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.ratgeber-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 18px;
    flex: 1;
}

.ratgeber-card .blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--copper);
    padding-bottom: 3px;
    align-self: flex-start;
}

.ratgeber-more {
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(110%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

.fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
