/* ============================
   KANCELARIA UJD BY ETIM.PRO
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

/* ============================
   KONTENER
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ============================
   HEADER I NAVI
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 95px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4a4a;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #1a1a1a;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* ============================
   SEKCJA HERO
   ============================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #ebded2;
    overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  background: url('assets/f2.jpg?w=1200&q=85') no-repeat;
  background-size: 80%;
  background-position: right 65%;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ebded2 0%, rgba(232, 223, 211, 0.95) 35%, rgba(232, 223, 211, 0.7) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #5a5a5a;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
	  justify-content: center;
}

/* ============================
   BUTTONY
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: #6a6a6a;
    padding: 0.75rem 1.5rem;
}

.btn-text:hover {
    color: #1a1a1a;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ============================
   SEKCJE
   ============================ */
.about,
.specializations,
.cooperation,
.map-section {
    padding: 3rem 0;
}

.specializations {
    background: #f5ede3;
}

.about {
    background: #ffffff;
}

.cooperation {
    background: #f5ede3;
}

.map-section {
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ============================
   O NAS / PRAWNICY
   ============================ */
.lawyers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1065px;
    margin: 0 auto;
}

.lawyer-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lawyer-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lawyer-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.05);
}

.lawyer-name {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.lawyer-title {
    font-size: 0.95rem;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.lawyer-bio {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0rem;
    text-align: justify;
}


.lawyer-bio-more {
  display: none;
}

.lawyer-bio,
.lawyer-bio-more,
.lawyer-bio-more p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    hyphens: auto;
}

.lawyer-bio-more p:first-child {
    margin-top: 0;
}

.bio-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: #c8a45d; 
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.bio-toggle:hover {
  text-decoration: underline;
}

.lawyer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lawyer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.lawyer-contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lawyer-contact-link:hover {
    color: #8b7355;
}

/* ============================
   SPECJALIZACJE
   ============================ */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 115, 85, 0.15);
    opacity: 0;
    transform: translateY(20px);
}

.spec-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.spec-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.12);
    border-color: rgba(139, 115, 85, 0.3);
}

.spec-icon {
    margin: 0 auto 1.5rem;
    width: 48px;
    height: 48px;
}

.spec-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1a1a1a;
    stroke-width: 1.5;
}

.spec-title {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* ============================
   KONTAKT
   ============================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item,
.location-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafaf9;
    border-radius: 50%;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1a1a1a;
}

.contact-item h3,
.location-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-item a {
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a1a1a;
}

.location-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

/* ============================
   FORMULARZ
   ============================ */
.contact-form {
    background: #fafaf9;
    padding: 3rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.captcha-group {
    margin-top: 2rem;
}

.captcha-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.captcha-wrapper img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.captcha-refresh {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

.captcha-refresh svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
}

/* ============================
   PARTNERZY
   ============================ */
.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.partner-placeholder {
    max-width: 320px;
    height: 170px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    color: #6a6a6a;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.partner-placeholder svg {
    width: 40px;
    height: 40px;
    stroke: #1a1a1a;
}

.partner-placeholder span {
    font-weight: 500;
}

.partner-item:hover .partner-placeholder {
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================
   MAPA
   ============================ */
.map-section {
    padding: 6rem 0;
    background: #ffffff;
}

.map-container {
    margin-bottom: 4rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.map-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.map-location-card {
    background: #fafaf9;
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-pin {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50%;
}

.map-pin svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
}

.map-location-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.map-location-card p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================
   STOPKA
   ============================ */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-logo img {
    height: 90px;
    width: auto;
    opacity: 0.9;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #a68961;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #9a9a9a;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: #9a9a9a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #6a6a6a;
    font-size: 0.85rem;
}

/* ============================
   COOKIE
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #e5e5e5;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ============================
   RESPONSYWNOŚĆ
   ============================ */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about,
    .specializations,
    .contact,
    .cooperation {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lawyers {
        gap: 3rem;
    }
    
    .lawyer-bio {
        text-align: left;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* pojedyncza kolumna na tele */
    .spec-item {
        grid-column: 1 / -1 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .map-locations {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1079px) {
  .hero::before {
    right: 0;
    width: 100%;
    background-position: center;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.9;
  }

@media (max-width: 1079px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(232, 223, 211, 0.97) 0%,
      rgba(232, 223, 211, 0.92) 35%,
      rgba(232, 223, 211, 0.82) 60%,
      rgba(232, 223, 211, 0.60) 100%
    );
  }
}



@media (max-width: 1079px) {
  .hero-content {
    position: relative;
    margin-top: clamp(440px, 28vh, 380px); 
    max-width: 100%;
    text-align: center;
    padding: 0; 
  }

  /* Glow tylko pod tekstem */
  .hero-title,
  .hero-subtitle {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
  }

  .hero-title { margin-bottom: 0.6rem; }
  .hero-subtitle { margin-bottom: 1.2rem; }

  
  .hero-buttons a,
  .hero-buttons .btn {
    width: min(340px, 100%);
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.12);
  }
}
  .hero-buttons {
    justify-content: center;
  }
}

/* ============================
   KONSULTACJE ONLINE
   ============================ */
.online-consultations-page {
    background: #ffffff;
}

.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #e8dfd3 0%, #f5ede3 100%);
    text-align: center;
}

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

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #6a6a6a;
    font-family: 'Inter', sans-serif;
}

.online-intro {
    padding: 6rem 0;
    background: #ffffff;
}

.intro-content {
    display: grid;
    text-align: justify;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-text p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits {
    padding: 6rem 0;
    background: #f5ede3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8dfd3;
    border-radius: 50%;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1a1a1a;
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    color: #6a6a6a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.how-it-works {
    padding: 6rem 0;
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, #c9b39a, transparent);
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.step-item p {
    color: #6a6a6a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.platforms {
    padding: 6rem 0;
    background: #fafaf9;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.platform-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8dfd3;
    border-radius: 50%;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1a1a1a;
}

.platform-card h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.platform-card p {
    color: #6a6a6a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.pricing {
    padding: 6rem 0;
    background: #ffffff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fafaf9;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4c5b9;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.pricing-card.featured h3 {
    color: #ffffff;
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 1rem;
    color: #6a6a6a;
    font-weight: 400;
}

.pricing-card.featured .period {
    color: #9a9a9a;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #4a4a4a;
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
}

.pricing-note {
    text-align: center;
    color: #6a6a6a;
    font-size: 0.95rem;
    font-style: italic;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e5e5e5;
    margin-bottom: 3rem;
}

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

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-buttons .btn-primary:hover {
    background: #f5f5f5;
}

.cta-buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.nav-link.active {
    color: #1a1a1a;
    font-weight: 500;
}

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

/* responsywność */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-item::after {
        display: none;
    }
    
    .step-item:nth-child(4),
    .step-item:nth-child(5) {
        grid-column: span 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .page-hero {
        padding: 7rem 0 4rem;
    }
}

/* ============================
   MODAL (RODO & REGULAMIN)
   ============================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    max-width: 800px;
    width: 100%;
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #4a4a4a;
    transition: color 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1a1a1a;
}

#modal-body h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

#modal-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

#modal-body p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

#modal-body ul,
#modal-body ol {
    margin: 1rem 0 1rem 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

#modal-body li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .hero-contact {
        gap: 1rem;
    }
    
    .hero-contact-item {
        padding: 1.25rem 1.5rem;
    }
    
    .hero-phone,
    .hero-email {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   RODO & REGULAMIN
   ============================ */
.legal-page {
    background: #ffffff;
    min-height: 100vh;
}

.legal-content {
    padding: 10rem 0 6rem;
}

.legal-inner {
    max-width: 900px;
    margin: 0 auto;
}

.legal-inner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 600;
}

.legal-inner h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.legal-inner h3 {
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.legal-inner p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.legal-inner p.lead {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.legal-inner ul,
.legal-inner ol {
    margin: 1.25rem 0 1.75rem 2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-inner li {
    margin-bottom: 0.75rem;
}

.legal-inner strong {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-inner a {
    color: #8b7355;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-inner a:hover {
    color: #1a1a1a;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    text-align: center;
}

.legal-footer p {
    color: #6a6a6a;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 7rem 0 4rem;
    }
    
    .legal-inner {
        padding: 0 1.5rem;
    }
    
    .legal-inner h1 {
        font-size: 2rem;
    }
    
    .legal-inner h2 {
        font-size: 1.5rem;
    }
    
    .legal-inner ul,
    .legal-inner ol {
        margin-left: 1.5rem;
    }
}
