/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES - URSZULA SOSNOWSKA RZECZOZNAWCA MAJĄTKOWY
   ========================================================================== */

/* Fonty Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Zmienne CSS */
:root {
    /* Kolory */
    --color-primary: #0f172a;        /* Głęboki granat/grafit (Slate 900) */
    --color-primary-light: #1e293b;  /* Slate 800 */
    --color-primary-dark: #020617;   /* Slate 950 */
    --color-accent: #c5a880;         /* Ciepłe złoto */
    --color-accent-hover: #b3946a;   /* Ciemniejszy odcień złota */
    --color-accent-light: #f5efe6;   /* Bardzo jasny złoty/kremowy */
    --color-text-dark: #1e293b;      /* Ciemny tekst */
    --color-text-muted: #64748b;     /* Przygaszony tekst */
    --color-bg-light: #f8fafc;       /* Jasne tło sekcji (Slate 50) */
    --color-bg-white: #ffffff;       /* Białe tło */
    --color-border: #e2e8f0;         /* Jasna ramka */
    --color-error: #ef4444;          /* Czerwony dla błędów */
    --color-success: #10b981;        /* Zielony dla sukcesów */

    /* Typografia */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Outfit', sans-serif;

    /* Cienie */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
    
    /* Promienie zaokrągleń */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Przejścia */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Szerokość kontenera */
    --container-max-width: 1240px;
}

/* Reset i podstawy */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

/* Dekoracyjna linia pod nagłówkiem H2 */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

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

/* Komponenty Layoutu */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--color-bg-light);
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-transform: uppercase;
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: inline-block;
}

/* Przyciski */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-dark:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAWIGACJA
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition);
}

.header-scrolled .header-container {
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Menu Nawigacyjne */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-primary-light);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

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

.header-action {
    display: flex;
    align-items: center;
}

/* Hamburger Menu dla Mobile */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 6px 0;
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(4, 21, 45) 0%, rgb(15, 23, 42) 90%);
    color: var(--color-bg-white);
    padding: 180px 0 120px 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Geometryczne Tło CSS bez grafik AI */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(197, 168, 128, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: 3.25rem;
    color: var(--color-bg-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1; /* Slate 300 */
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Prawa kolumna hero: Nowoczesny panel z zaufaniem */
.hero-badge-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: var(--radius-md);
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.badge-item {
    display: flex;
    gap: 16px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.badge-title {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-bg-white);
    margin-bottom: 4px;
}

.badge-desc {
    font-size: 0.875rem;
    color: #94a3b8; /* Slate 400 */
    margin-bottom: 0;
}

/* ==========================================================================
   O KANCELARII (O MNIE)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.about-feat-item {
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
    transition: var(--transition);
}

.about-feat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-feat-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feat-desc {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Prawa kolumna - graficzny panel etyki */
.ethics-card {
    background-color: var(--color-primary-light);
    color: var(--color-bg-white);
    padding: 45px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ethics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-accent);
}

.ethics-card h3 {
    color: var(--color-bg-white);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.ethics-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.ethics-list {
    list-style: none;
    margin-top: 25px;
}

.ethics-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.ethics-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 12px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
}

/* ==========================================================================
   ZAKRES WYCEN (OFERTA)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.service-list {
    list-style: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.2rem;
    top: -2px;
}

/* ==========================================================================
   PRZEZNACZENIE WYCEN (CELE)
   ========================================================================== */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.purpose-card {
    background-color: var(--color-bg-white);
    padding: 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.purpose-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.purpose-title svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

.purpose-desc {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   PROCES WSPÓŁPRACY (JAK DZIAŁAMY)
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    position: relative;
    background-color: var(--color-bg-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.process-num {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(197, 168, 128, 0.15);
    line-height: 1;
    margin-bottom: 15px;
    position: absolute;
    top: 25px;
    right: 30px;
}

.process-step h3 {
    margin-top: 15px;
    font-size: 1.25rem;
}

/* ==========================================================================
   KONTAKT & MAPA GOOGLE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Kolumna info kontaktowe */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-card {
    display: flex;
    gap: 20px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--color-accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-card-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

/* Mapa */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Formularz Kontaktowy */
.contact-form-panel {
    background-color: var(--color-bg-white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-primary);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* RODO Checkbox */
.form-checkbox-group {
    margin-top: 25px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Statusy wysyłki */
.form-status {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 20px;
    display: none;
}

.form-status-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-status-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* ==========================================================================
   STOPKA (FOOTER)
   ========================================================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px 0;
    border-top: 3px solid var(--color-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-copy {
    margin-bottom: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   RODO BANER COOKIES & STRONA POLITYKI PRYWATNOŚCI
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--color-bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
}

.cookie-accept:hover {
    background-color: var(--color-accent-hover);
}

/* Specjalny layout dla polityki prywatności */
.policy-header {
    background: radial-gradient(circle at 10% 20%, rgb(4, 21, 45) 0%, rgb(15, 23, 42) 90%);
    color: var(--color-bg-white);
    padding: 140px 0 60px 0;
    text-align: center;
}

.policy-header h1 {
    color: var(--color-bg-white);
    font-size: 2.25rem;
    margin-bottom: 10px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--color-text-muted);
}

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

/* ==========================================================================
   RESPONSIVE WEB DESIGN (RWD)
   ========================================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

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

    .hero {
        padding: 140px 0 80px 0;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-badge-card {
        max-width: 550px;
    }

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

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

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

@media (max-width: 768px) {
    /* Mobilne Menu hamburgerowe */
    .burger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 40px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }

    .header-scrolled .nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .header-action {
        display: none; /* Ukryj CTA z headera na komórkach */
    }

    /* Burger Active Animation */
    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

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

    /* Hero */
    .hero-title {
        font-size: 2.25rem;
    }

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

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

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

    .contact-form-panel {
        padding: 30px 20px;
    }

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

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .ethics-card {
        padding: 25px;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column-reverse;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
