@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #091833;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #44b678;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 854px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* REKLAMA bar — matches index.html */
.ad-bar {
  width: 100%;
  background: #d9d9d9;
  padding: 10px;
  text-align: center;
}

.ad-bar-label {
  display: inline-block;
  color: #000;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-main {
  padding: 2.5rem 0 4rem;
  background: #fff;
}

.legal-main h1 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #091833;
  margin: 0 0 0.5rem;
}

.legal-lead {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(9, 24, 51, 0.7);
  margin: 0 0 2rem;
  max-width: 48rem;
}

.legal-section {
  margin-bottom: 2rem;
  max-width: 48rem;
}

.legal-section h2 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: #091833;
  margin: 0 0 0.75rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: #091833;
  margin: 1.25rem 0 0.5rem;
}

.legal-section p,
.legal-section li {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #102a3c;
  margin: 0 0 0.75rem;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-section li {
  margin-bottom: 0.35rem;
}

.legal-card {
  background: #f0f9f4;
  border: 1px solid rgba(68, 182, 120, 0.2);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-block {
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.contact-block h2 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.legal-form {
  max-width: 36rem;
  margin-top: 1rem;
}

.legal-form.is-hidden {
  display: none;
}

.legal-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #091833;
  margin-bottom: 1rem;
}

.legal-form input,
.legal-form select,
.legal-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: #091833;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.2);
  border-radius: 0.5rem;
}

.legal-form input:focus,
.legal-form select:focus,
.legal-form textarea:focus {
  outline: 2px solid #44b678;
  outline-offset: 0;
  border-color: #44b678;
}

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

.legal-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.legal-form .checkbox-label input {
  width: auto;
  margin-top: 0.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background: #44b678;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #3aa86a;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.form-message[hidden] {
  display: none !important;
}

.form-message.success {
  background: #f0f9f4;
  border: 1px solid #44b678;
  color: #091833;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #dc2626;
  color: #991b1b;
}

.site-footer {
  background: #111827;
  color: #fff;
  padding: 2.5rem 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #44b678;
  text-decoration: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-logo {
  font-family: Poppins, Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  font-size: 14px;
}

.footer-mid {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 995px) {
  .footer-mid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}

.footer-contact {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 995px) {
  .footer-contact {
    align-items: flex-end;
    text-align: right;
  }
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-address {
  margin-top: 1rem;
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 12px;
  color: #666;
}

.footer-disclaimer-mobile {
  display: block;
  margin-top: 1.5rem;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}

@media (min-width: 995px) {
  .footer-disclaimer-mobile {
    display: none;
  }
}

@media (max-width: 994px) {
  .footer-disclaimer-desktop {
    display: none;
  }
}
