/* Buttons */
.btn { align-items: center; justify-content: center; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; line-height: 1.5; cursor: pointer; transition: all 250ms ease; border: none; text-decoration: none; position: relative; }
.btn { background: #7c7e86; color: #ffffff; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(33, 128, 141, 0.4); }
.btn--primary { background: #3f62f0; color: #fcfcf9; }
.btn--primary:hover { background: #1cd469; }
.btn--primary:active { background: #129256; }
.btn--secondary { background: rgba(94, 82, 64, 0.12); color: #13343b; }
.btn--secondary:hover { background: rgba(94, 82, 64, 0.2); }
.btn--secondary:active { background: rgba(94, 82, 64, 0.25); }
.btn--outline { background: transparent; border: 1px solid rgba(94, 82, 64, 0.2); color: #13343b; }
.btn--outline:hover { background: rgba(94, 82, 64, 0.12); }
.btn--sm { padding: 4px 12px; font-size: 12px; border-radius: 6px; }
.btn--lg { padding: 10px 20px; font-size: 16px; border-radius: 10px; }
.btn--full-width { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.tabs { margin-bottom: 20px; }
.tab-button { padding: 10px 20px; margin-right: 5px; cursor: pointer; }
.tab-button.active { background-color: #007cba; color: white; }
.form-container { padding: 20px; border: 1px solid #ddd; }

.bookings-container {
    margin: 20px 15px; /* góra/dół: 20px, lewy/prawy: 15px */
    /* lub bardziej szczegółowo: */
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 550; line-height: 1.2; color: #13343b; letter-spacing: -0.01em; }
h1 { font-size: 30px; margin-bottom: 10px}
h2 { font-size: 24px; margin-bottom: 10px}
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
h7 { font-size: 40px; }
p { margin: 0 0 16px 0; }
a { color: #000000; text-decoration: none; transition: color 150ms ease; }
a:hover { color: #ff6600; }



/* Code elements */
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 13px; background-color: rgba(94, 82, 64, 0.12); border-radius: 6px; }
code { padding: 1px 4px; }
pre { padding: 16px; margin: 16px 0; overflow: auto; border: 1px solid rgba(94, 82, 64, 0.2); }
pre code { background: none; padding: 0; }


/* Form elements */
.form-control { display: block; width: 100%; padding: 8px 12px; font-size: 14px; line-height: 1.5; color: #13343b; background-color: #fffffd; border: 1px solid rgba(94, 82, 64, 0.2); border-radius: 8px; transition: border-color 150ms ease, box-shadow 150ms ease; }
textarea.form-control { font-family: "Segoe UI", Roboto, sans-serif; font-size: 14px; }
select.form-control { padding: 8px 12px; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 32px; }
.form-control:focus { border-color: #21808d; outline: 2px solid #21808d; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 12px; }
.form-group { margin-bottom: 16px; }

/* Card component */
.card { background-color: #fffffd; border-radius: 12px; border: 1px solid rgba(94, 82, 64, 0.12); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02); overflow: hidden; transition: box-shadow 250ms ease; }
.card:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02); }
.card__body { padding: 16px; }
.card__header, .card__footer { padding: 16px; border-bottom: 1px solid rgba(94, 82, 64, 0.12); }

/* Status indicators */
.status { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 9999px; font-weight: 500; font-size: 12px; }
.status--success { background-color: rgba(33, 128, 141, 0.15); color: #21808d; border: 1px solid rgba(33, 128, 141, 0.25); }
.status--error { background-color: rgba(192, 21, 47, 0.15); color: #c0152f; border: 1px solid rgba(192, 21, 47, 0.25); }
.status--warning { background-color: rgba(168, 75, 47, 0.15); color: #a84b2f; border: 1px solid rgba(168, 75, 47, 0.25); }
.status--info { background-color: rgba(98, 108, 113, 0.15); color: #626c71; border: 1px solid rgba(98, 108, 113, 0.25); }

/* Container layout */
.container { width: 100%; margin-right: auto; margin-left: auto; padding-left: 16px; padding-right: 16px; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* Utility classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.m-0 { margin: 0; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mx-8 { margin-left: 8px; margin-right: 8px; }
.my-8 { margin-top: 8px; margin-bottom: 8px; }
.p-0 { padding: 0; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.px-8 { padding-left: 8px; padding-right: 8px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.block { display: block; }
.hidden { display: none; }

/* new sections containe */
.grey_bg { background-color: rgba(59, 130, 246, 0.08); padding: 32px 0; display: flex; align-items: center; }
.white_bg { padding: 32px 0; background-color: #fffffd; }



.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.hero-text h1 { font-size: 30px; margin-bottom: 20px; line-height: 1.2; color: #13343b; }
.hero-subtitle { font-size: 16px; margin-bottom: 24px; text-align: justify; line-height: 1.5; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; }
.trial-note { color: #21808d; font-weight: 500; font-size: 14px; margin: 0; }
.hero-image { text-align: center; width: 100%; }
.hero-image img { width: 100%; max-width: 500px; height: auto; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02); object-fit: cover; display: block; margin: 0 auto; }

/* Features Section */

.features h2 { text-align: center; margin-bottom: 32px; color: #13343b; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { background-color: #c1c1ad41; padding: 24px; border-radius: 12px; border: 1px solid rgba(94, 82, 64, 0.12); text-align: center; transition: transform 250ms ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02); }
.feature-icon { font-size: 30px; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 12px; color: #13343b; }
.feature-card p { color: #626c71; margin: 0; }


/* Pricing Section */
.pricing { padding: 48px 0; background-color: rgba(33, 128, 141, 0.06); }
.pricing h2 { text-align: center; margin-bottom: 16px; color: #13343b; font-size: 28px; }
.pricing-subtitle { text-align: center; color: #626c71; margin-bottom: 40px; font-size: 16px; line-height: 1.5; }
.pricing-card { background-color: #fcfcf9; padding: 32px; border-radius: 16px; border: 1px solid rgba(94, 82, 64, 0.12); text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02); transition: all 250ms ease; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.pricing-badge { background-color: #21808d; color: white; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; margin-bottom: 24px; display: inline-block; }
.pricing-amount { font-size: 48px; font-weight: 700; color: #13343b; margin-bottom: 8px; }
.pricing-period { color: #626c71; margin-bottom: 24px; font-size: 16px; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-features li { color: #626c71; margin-bottom: 12px; position: relative; padding-left: 24px; }
.pricing-features li::before { content: ""; color: #21808d; font-weight: 600; position: absolute; left: 0; }
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← ZMIANA: 2 kolumny obok siebie */
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
/* Benefits Section */
.benefits { padding: 48px 0; background-color: #fffffd; }
.benefits h2 { text-align: center; margin-bottom: 16px; color: #13343b; font-size: 28px; }
.benefits-subtitle { text-align: center; color: #626c71; margin-bottom: 40px; font-size: 16px; line-height: 1.5; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background-color: #fcfcf9; border-radius: 12px; border: 1px solid rgba(94, 82, 64, 0.08); transition: all 250ms ease; }
.benefit-item:hover { transform: translateY(-2px); box-shadow: 0 8px 12px -3px rgba(0, 0, 0, 0.04); border-color: rgba(33, 128, 141, 0.2); }
.benefit-icon { flex-shrink: 0; width: 48px; height: 48px; background-color: rgba(33, 128, 141, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #21808d; }
.benefit-content h3 { margin: 0 0 8px 0; color: #13343b; font-size: 18px; font-weight: 600; }
.benefit-content p { margin: 0; color: #626c71; line-height: 1.5; }

/* CTA Section */
.cta { padding: 64px 0; background: linear-gradient(135deg, rgba(33, 128, 141, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%); text-align: center; }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: 32px; margin-bottom: 16px; color: #13343b; line-height: 1.2; }
.cta-subtitle { font-size: 18px; color: #626c71; margin-bottom: 32px; line-height: 1.5; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-primary { background-color: #21808d; color: white; padding: 16px 32px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 18px; transition: all 250ms ease; border: none; cursor: pointer; box-shadow: 0 4px 6px -1px rgba(33, 128, 141, 0.2); }
.cta-primary:hover { background-color: #1e6b75; transform: translateY(-2px); box-shadow: 0 8px 12px -3px rgba(33, 128, 141, 0.3); }
.cta-note { color: #21808d; font-weight: 500; font-size: 14px; margin: 8px 0 0 0; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; color: #626c71; font-size: 14px; margin-top: 16px; }
.cta-guarantee::before { content: "🔒"; font-size: 16px; }

/* rules Section*/
.rules li { color: #626c71; margin-bottom: 12px; position: relative; padding-left: 24px; }
.rules li::before { content: ""; color: #21808d; font-weight: 600; position: absolute; left: 0; }
.rules {text-align: left;}
.rules {margin: 30px 30px 30px 30px; /* góra, prawo, dół, lewo */}

/* schedule service Section*/
.schedule_service {text-align: left;}
.schedule_service {margin: 0px 0px 0px 0px; /* góra, prawo, dół, lewo */}

.container_service {
    max-width: 500px !important;  /* lub %/vw */
    margin-left: 0 !important;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  body { padding-top: 70px; }
  .hero-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-text h1 { font-size: 24px; }
  .hero-image img { max-width: 400px; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 24px 0; }
  .hero-text h1 { font-size: 20px; }
  .hero-subtitle { font-size: 14px; }
  .features { padding: 24px 0; }
  .feature-card { padding: 16px; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

ul.ul_week {
  list-style-type: none;
}

form {
  align-self: left;
  max-width: 500px; /* maksymalna szerokość formularza */
  margin: 0 auto;   /* wyśrodkowanie na stronie */
  border-radius: 8px; /* zaokrąglenie rogów */
  margin-left: 0;
}


/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #1f2937;
}

.comparison-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Profiles Section */
.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.profile-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

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

.profile-logo-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.profile-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #1f2937;
}

.profile-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.category-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.profile-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    margin: 1rem 0;
}

.profile-address {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.btn--sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .comparison-grid,
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}
