/* ==========================================================================
   Centrum Rodina, z. s. — Modern Floating Nav & Clean Layout
   Hero & Top: Pure Seamless White (#ffffff)
   Body Sections: Warm Organic Sand & Linen (#DED5BD / #F8F5EE)
   Accents: #FF8F57 (Coral), #5CC0DF (Cyan), #5CB949 (Green Hope)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Accents */
  --brand-orange: #FF8F57;
  --brand-orange-hover: #f0773b;
  --brand-orange-light: #fef5ee;

  --brand-cyan: #5CC0DF;
  --brand-cyan-hover: #48b0d0;
  --brand-cyan-dark: #1f8fa9;
  --brand-cyan-light: #eef8fb;
  --brand-cyan-subtle: #d2eff7;

  --brand-green: #5CB949;
  --brand-green-hover: #4ea43c;
  --brand-green-light: #eff8ec;
  --brand-green-dark: #327524;

  /* Warm Organic Linen / Sand Palette (#DED5BD) */
  --sand-base: #F8F5EE;       /* Gentle warm linen page background */
  --sand-subtle: #F1ECE0;     /* Soft alternating section background */
  --sand-card: #FFFFFF;       /* Clean crisp card surface */
  --sand-border: #E5DEC9;     /* Warm subtle border */
  --sand-accent: #DED5BD;     /* Warm sand */

  --bg-page: var(--sand-base);
  --bg-card: var(--sand-card);
  --bg-subtle: var(--sand-subtle);
  
  /* Text */
  --text-main: #2A2825;
  --text-muted: #57534D;
  --text-light: #7E7971;

  /* Layout & Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --container-max: 1100px;
  --shadow-card: 0 4px 18px rgba(70, 60, 45, 0.05);
  --shadow-hover: 0 10px 28px rgba(70, 60, 45, 0.09);
  --shadow-floating-nav: 0 10px 30px -4px rgba(45, 35, 20, 0.08), 0 4px 10px -2px rgba(45, 35, 20, 0.04);
  --transition: all 0.22s ease-in-out;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-cyan-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-orange);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: clamp(3.25rem, 5vw, 5rem);
}

/* --- Badges & Headings --- */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background-color: #ebf7e8;
  color: var(--brand-green-dark);
  border: 1.5px solid #bde6b3;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 143, 87, 0.35);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 143, 87, 0.45);
}

.btn-green {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
  background-color: #20ba59;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1.5px solid var(--sand-border);
}

.btn-secondary:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan-dark);
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* Tour Trigger Button */
.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  border: 1.5px solid var(--brand-cyan-subtle);
  padding: 0.85rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.btn-tour:hover {
  background-color: var(--brand-cyan);
  color: #ffffff;
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 192, 223, 0.3);
}

/* ================= SEAMLESS PURE WHITE HERO WRAPPER ================= */
.hero-top-wrapper {
  background: #ffffff;
  border-bottom: 1px solid var(--sand-border);
  padding-top: 98px;
}

/* Floating Navbar */
.clean-nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding-inline: 1.25rem;
}

.nav-wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(229, 222, 201, 0.85);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-floating-nav);
  padding: 0.45rem 1.35rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.nav-brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--brand-cyan-dark);
}

.nav-links a.active {
  color: var(--brand-cyan-dark);
  font-weight: 800;
}

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

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  border: 1.5px solid var(--brand-cyan-subtle);
}

.nav-phone-btn:hover {
  background: var(--brand-cyan);
  color: #ffffff;
  border-color: var(--brand-cyan);
}

.nav-tour-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--sand-border);
  background: #ffffff;
  color: var(--brand-cyan-dark);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(43, 98, 112, 0.08);
  transition: var(--transition);
}

.nav-tour-icon:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-light);
}

/* Hero Section */
.hero-clean {
  padding-top: clamp(1.5rem, 3.5vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-clean h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-clean h1 span.orange {
  color: var(--brand-orange);
}

.hero-clean p.hero-sub {
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-service-area {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.65rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.hero-service-area-label {
  flex: 0 1 auto;
  color: #111111;
  font-size: 1.176rem;
  font-weight: 400;
  line-height: 1.35;
}

.hero-town-group {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-town-group.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.hero-town-name {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #111111;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-town-name + .hero-town-name::before {
  content: "•";
  margin-right: 0.4rem;
  color: #111111;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Frameless Clean Hero Illustration */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sketch-box {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 480px;
  width: 100%;
}

.hero-sketch-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ================= COLLAPSIBLE SERVICES ================= */
.services-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-accordion-card {
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-accordion-card:hover,
.service-accordion-card[open] {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-cyan);
}

.service-accordion-card summary {
  min-height: 102px;
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.service-accordion-card summary::-webkit-details-marker {
  display: none;
}

.service-accordion-card summary:focus-visible {
  outline: 3px solid var(--brand-cyan-subtle);
  outline-offset: -3px;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.card-icon.orange {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.card-icon.cyan {
  background: var(--brand-cyan-light);
  color: var(--brand-cyan-dark);
}

.card-icon.green {
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.service-question-icon {
  font-size: 1.45rem;
  font-weight: 800;
}

.service-accordion-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
}

.service-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand-base);
  color: var(--brand-cyan-dark);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-accordion-card[open] .service-toggle {
  transform: rotate(45deg);
  background: var(--brand-cyan-light);
}

.service-accordion-content {
  padding: 0 1.4rem 1.35rem 5.75rem;
}

.service-accordion-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= HOW IT WORKS: 3 STEPS ================= */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.step-item {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--brand-cyan);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.15rem;
}

.step-item:nth-child(2) .step-circle {
  background: var(--brand-orange);
}

.step-item:nth-child(3) .step-circle {
  background: var(--brand-green);
}

.step-item h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.step-item p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================= ABOUT US (2-COLUMN) ================= */
.about-simple {
  background: #ffffff;
  border-block: 1px solid var(--sand-border);
}

.about-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.about-flower-box {
  background: var(--sand-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand-border);
}

.about-flower-box img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.about-split-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.about-split-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.about-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.about-checkmarks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
}

.about-checkmarks li svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

/* ================= CONTACT & FAST CALLBACK ================= */
.contact-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-card-box {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-border);
  box-shadow: var(--shadow-card);
}

.contact-card-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.contact-card-box p.desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group-clean {
  margin-bottom: 1.15rem;
}

.form-group-clean label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-input-clean {
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-border);
  background: var(--sand-base);
  color: var(--text-main);
  transition: var(--transition);
}

.form-input-clean:focus {
  outline: none;
  border-color: var(--brand-cyan);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(92, 192, 223, 0.2);
}

.form-delivery-note {
  margin-top: 0.85rem;
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

/* Direct Contacts List */
.direct-contacts-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.direct-phone-hero {
  background: var(--brand-cyan-light);
  border: 2px solid var(--brand-cyan-subtle);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.direct-phone-hero span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.direct-phone-hero a {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  display: inline-block;
}

.direct-phone-hero a:hover {
  color: var(--brand-orange);
}

.direct-info-card {
  background: #ffffff;
  border: 1px solid var(--sand-border);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
}

.direct-info-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.direct-info-card p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Team inside contact section */
.team-showcase {
  margin-top: 4.5rem;
  padding-top: 0;
  border-top: none;
}

.team-heading {
  margin-bottom: 2rem;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
}

.team-member-card {
  overflow: visible;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-3px);
}

.team-member-card:hover .team-member-portrait {
  box-shadow: 0 14px 30px rgba(45, 37, 29, 0.12);
}

.team-member-portrait {
  aspect-ratio: 1.03 / 1;
  background-image: url("../pic/team.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  border-radius: 1.35rem;
  filter: contrast(1.02);
  box-shadow: 0 8px 22px rgba(45, 37, 29, 0.08);
  transition: var(--transition);
}

.team-member-portrait-1 {
  background-position: 0% center;
}

.team-member-portrait-2 {
  background-position: 33.333% center;
}

.team-member-portrait-3 {
  background-position: 66.667% center;
}

.team-member-portrait-4 {
  background-position: 100% center;
}

.team-member-body {
  padding: 0.9rem 0.25rem 0;
}

.team-member-body h3 {
  min-height: 0;
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-size: 1.06rem;
  line-height: 1.35;
}

.team-member-role {
  min-height: 0;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.team-member-contact {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-top: 0;
  border-top: none;
}

.team-member-contact a {
  overflow-wrap: anywhere;
  color: var(--brand-cyan-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ================= PARTNERS ================= */
.partners-simple {
  padding-block: 2.75rem;
  border-top: 1px solid var(--sand-border);
  background: #ffffff;
}

.funding-feature {
  padding: 2.25rem;
  background: #ffffff;
  border: none;
  border-radius: 0;
}

.funding-support-line {
  margin-bottom: 1.25rem;
  color: var(--text-main);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.5;
  text-align: center;
}

.funding-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.funding-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: var(--transition);
}

.funding-logo-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.funding-logo-card-with-url {
  flex-direction: column;
  gap: 0.7rem;
}

.funding-logo-url {
  color: var(--brand-cyan-dark);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.funding-logo-card-with-url:hover .funding-logo-url {
  color: var(--brand-orange);
}

.funding-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.funding-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-cyan-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.funding-copy h2 {
  margin-bottom: 0.85rem;
  color: var(--text-main);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
}

.funding-copy p {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.funding-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--brand-cyan-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

/* ================= SASRD SUBPAGE ================= */
.subpage-hero {
  padding-block: clamp(2.5rem, 5vw, 5rem);
  background: #ffffff;
}

.sasrd-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.back-link {
  display: block;
  width: fit-content;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.subpage-hero h1 {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.subpage-hero h1 .orange {
  color: var(--brand-orange);
}

.subpage-hero p {
  max-width: 670px;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.sasrd-hero-image {
  display: flex;
  justify-content: center;
}

.sasrd-hero-image img {
  width: min(100%, 420px);
  height: auto;
}

.sasrd-overview {
  padding-block: 2.5rem;
}

.sasrd-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sasrd-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.sasrd-fact > span {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--brand-cyan);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
}

.sasrd-fact:nth-child(2) > span {
  background: var(--brand-orange);
}

.sasrd-fact:nth-child(3) > span {
  background: var(--brand-green);
}

.sasrd-fact h2 {
  margin-bottom: 0.25rem;
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.3;
}

.sasrd-fact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sasrd-section-white {
  background: #ffffff;
  border-block: 1px solid var(--sand-border);
}

.sasrd-content-narrow {
  max-width: 920px;
}

.sasrd-section-heading {
  margin-bottom: 2rem;
}

.sasrd-section-heading > span,
.target-panel-title > span,
.sasrd-cta-inner > div > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-cyan-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sasrd-section-heading h2,
.target-panel-title h2 {
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.sasrd-section-heading p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.situation-grid span {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  color: var(--text-main);
  background: var(--sand-base);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 600;
}

.situation-grid span::before {
  position: absolute;
  top: 0.88rem;
  left: 0.9rem;
  color: var(--brand-green);
  content: "✓";
  font-weight: 900;
}

.scope-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
  border-left: 4px solid var(--brand-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.sasrd-target-section {
  background: var(--sand-subtle);
}

.target-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.target-list > div {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--sand-border);
}

.target-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 1rem;
}

.target-list p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.sasrd-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sasrd-offer-grid article {
  min-height: 150px;
  padding: 1.35rem;
  background: var(--sand-base);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
}

.sasrd-offer-grid span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--brand-orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.sasrd-offer-grid h3 {
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.35;
}

.sasrd-activities-section {
  background: var(--sand-base);
}

.activity-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.activity-accordion details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
}

.activity-accordion summary {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 1.3rem;
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.activity-accordion summary::-webkit-details-marker {
  display: none;
}

.activity-accordion summary::after {
  margin-left: auto;
  color: var(--brand-cyan-dark);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.activity-accordion details[open] summary::after {
  content: "−";
}

.activity-accordion summary span {
  display: flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--brand-cyan);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

.activity-content {
  padding: 0 1.4rem 1.35rem 4.85rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.activity-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.activity-content li::marker {
  color: var(--brand-green);
}

.sasrd-cta {
  padding-block: 3.5rem;
  background: #ffffff;
  border-top: 1px solid var(--sand-border);
}

.sasrd-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.sasrd-cta h2 {
  max-width: 680px;
  color: var(--text-main);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.25;
}

.sasrd-cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ================= CAREER SUBPAGE ================= */
.career-page {
  background: var(--sand-base);
}

.career-empty-state {
  min-height: 68vh;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.career-container {
  max-width: 790px;
  text-align: center;
}

.career-container .back-link {
  margin-bottom: 2rem;
}

.career-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 150px;
  margin: 0 auto 1.35rem;
}

.career-logo-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 145px;
  object-fit: contain;
}

.career-eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-cyan-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.career-container > h1 {
  margin-bottom: 2rem;
  color: var(--text-main);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.career-status-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.career-status-dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  background: var(--brand-orange);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 6px var(--brand-orange-light);
}

.career-status-card h2 {
  margin-bottom: 0.7rem;
  color: var(--text-main);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.3;
}

.career-status-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.career-contact {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.career-contact a {
  font-weight: 800;
}

.career-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ================= PRIVACY / LEGAL SUBPAGE ================= */
.legal-container {
  max-width: 920px;
}

.legal-hero {
  padding-block: clamp(2.75rem, 6vw, 5.5rem);
  background: #ffffff;
}

.legal-hero .back-link {
  margin-bottom: 1.7rem;
}

.legal-eyebrow {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-cyan-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.legal-hero p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.legal-page {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  background: var(--sand-base);
}

.legal-controller-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--brand-cyan-light);
  border-radius: var(--radius-lg);
}

.legal-section-number {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.legal-controller-card h2,
.legal-content h2 {
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.25;
}

.legal-controller-card p,
.legal-content p,
.legal-list {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.legal-facts div {
  min-width: 0;
}

.legal-facts dt {
  margin-bottom: 0.18rem;
  color: var(--text-light);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-facts dd {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legal-content {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.legal-content > section {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.legal-content > section + section {
  border-top: 1px solid var(--sand-border);
}

.legal-content p + p,
.legal-content p + .legal-list {
  margin-top: 0.9rem;
}

.legal-list {
  padding-left: 1.25rem;
}

.legal-list li {
  padding-left: 0.35rem;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.legal-list li::marker {
  color: var(--brand-cyan-dark);
}

.legal-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.legal-purpose-grid article {
  padding: 1.25rem;
  background: var(--sand-base);
  border-radius: var(--radius-md);
}

.legal-purpose-grid article:last-child {
  grid-column: 1 / -1;
}

.legal-purpose-grid h3 {
  margin-bottom: 0.45rem;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.35;
}

.legal-purpose-grid p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.legal-content > .legal-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--brand-cyan-light);
}

.legal-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 260px;
}

.legal-contact-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.legal-updated {
  margin-top: 1.15rem;
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: right;
}

/* ================= COMPLAINTS SUBPAGE ================= */
.complaint-hero-actions {
  margin-top: 1.6rem;
}

.complaint-assurance-card {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--brand-green-light);
  border-radius: var(--radius-lg);
}

.complaint-assurance-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
}

.complaint-assurance-card h2 {
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.3;
}

.complaint-assurance-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.complaint-person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.complaint-person-grid article {
  padding: 1.15rem;
  background: var(--sand-base);
  border-radius: var(--radius-md);
}

.complaint-person-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.complaint-person-grid p {
  font-size: 0.86rem;
  line-height: 1.55;
}

#jak-podat {
  scroll-margin-top: 110px;
}

.complaint-method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
  list-style: none;
  counter-reset: complaint-method;
}

.complaint-method-list li {
  position: relative;
  min-width: 0;
  padding: 1.2rem 1.2rem 1.2rem 3.6rem;
  background: var(--brand-cyan-light);
  border-radius: var(--radius-md);
  counter-increment: complaint-method;
}

.complaint-method-list li::before {
  content: counter(complaint-method);
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-cyan);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.complaint-method-list li > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 800;
}

.complaint-method-list p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.complaint-form-download {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1.2rem;
  background: var(--brand-orange-light);
  border-radius: var(--radius-md);
}

.complaint-form-download strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.complaint-form-download p {
  font-size: 0.83rem;
  line-height: 1.5;
}

.complaint-form-download .btn {
  flex: 0 0 auto;
}

.complaint-deadline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.complaint-deadline-grid article {
  padding: 1.15rem;
  background: var(--sand-base);
  border-radius: var(--radius-md);
}

.complaint-deadline-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-orange);
  font-size: 1.45rem;
  line-height: 1;
}

.complaint-deadline-grid span {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.complaint-authorities a {
  font-weight: 800;
}

.legal-content > .complaint-status-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--brand-green-light);
}

.complaint-status-dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 7px rgba(92, 185, 73, 0.14);
}

.complaint-status-card h2 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.complaint-status-card p {
  font-size: 0.9rem;
}

/* ================= MEMBER MEETINGS SUBPAGE ================= */
.meetings-hero-actions {
  margin-top: 1.6rem;
}

.meetings-page {
  scroll-margin-top: 100px;
}

.meetings-summary {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--brand-cyan-light);
  border-radius: var(--radius-lg);
}

.meetings-summary > div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex: 0 0 auto;
}

.meetings-summary strong {
  color: var(--brand-cyan-dark);
  font-size: 2.25rem;
  line-height: 1;
}

.meetings-summary span {
  max-width: 120px;
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.meetings-summary p {
  max-width: 530px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.meetings-year-section + .meetings-year-section {
  margin-top: 3rem;
}

.meetings-year-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--sand-border);
}

.meetings-year-heading h2 {
  color: var(--text-main);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.meetings-year-heading span {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.meetings-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.meeting-document-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.meeting-document-card:hover {
  color: inherit;
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.meeting-date {
  width: 78px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.meeting-date strong {
  color: var(--brand-orange);
  font-size: 1.65rem;
  line-height: 1;
}

.meeting-date span {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.meeting-document-copy {
  min-width: 0;
}

.meeting-file-type {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-cyan-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.meeting-document-copy h3 {
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.4;
}

.meeting-document-copy p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.meeting-open-link {
  color: var(--brand-cyan-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.meetings-help-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding: clamp(1.4rem, 4vw, 2.1rem);
  background: var(--brand-green-light);
  border-radius: var(--radius-lg);
}

.meetings-help-card h2 {
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.meetings-help-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.meetings-help-card .btn {
  flex: 0 0 auto;
}

.report-year-box strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.report-year-box span {
  max-width: 62px;
  line-height: 1.25;
}

/* ================= DONATION SUBPAGE ================= */
.nav-links a.donation-nav-link {
  color: var(--brand-orange);
}

.donation-top-wrapper {
  overflow: hidden;
}

.donation-hero {
  padding-block: clamp(2.5rem, 5vw, 5rem);
  background: #ffffff;
}

.donation-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.donation-hero h1 {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.donation-hero h1 span {
  display: block;
  color: var(--brand-orange);
}

.donation-hero-copy > p {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.donation-family-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}

.donation-family-scene img {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  height: auto;
}

.donation-family-scene::before {
  position: absolute;
  inset: 8% 5% 3%;
  background: var(--sand-subtle);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  content: "";
  transform: rotate(-3deg);
}

.donation-sticker {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.9rem;
  color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(-7deg);
}

.sticker-one {
  top: 7%;
  left: 2%;
  background: var(--brand-green);
}

.sticker-two {
  top: 18%;
  right: 0;
  background: var(--brand-cyan);
  transform: rotate(8deg);
}

.donation-heart {
  position: absolute;
  right: 7%;
  bottom: 6%;
  z-index: 3;
  color: var(--brand-orange);
  font-size: 3.5rem;
  line-height: 1;
  transform: rotate(12deg);
}

.donation-choice-section {
  background: var(--sand-subtle);
}

.donation-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-cyan-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.donation-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-top: 5px solid var(--brand-cyan);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.donation-card-1000 {
  border-top-color: var(--brand-orange);
}

.donation-card-5000 {
  border-top-color: var(--brand-green);
}

.donation-card-regular {
  border-top-color: #7b61a8;
}

.donation-card-top {
  min-height: 76px;
  margin-bottom: 0.9rem;
}

.donation-amount {
  display: block;
  color: var(--text-main);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
}

.donation-card-label {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.donation-qr-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  padding: 0.7rem;
  overflow: hidden;
  background: #ffffff;
  border: 2px dashed var(--sand-border);
  border-radius: var(--radius-md);
}

.donation-qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.donation-qr-placeholder {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
}

.donation-qr-placeholder[hidden] {
  display: none;
}

.donation-qr-placeholder::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
  border-radius: var(--radius-md);
  content: "QR";
  font-size: 1rem;
  font-weight: 900;
}

.donation-qr-placeholder strong {
  color: var(--text-main);
  font-size: 0.95rem;
}

.donation-qr-placeholder span {
  font-size: 0.78rem;
}

.donation-card > p {
  min-height: 3rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.donation-download {
  width: 100%;
  margin-top: auto;
  padding: 0.7rem 0.8rem;
  color: #ffffff;
  background: var(--brand-cyan);
  font-size: 0.88rem;
}

.donation-download:hover {
  color: #ffffff;
  background: var(--brand-cyan-dark);
}

.donation-download.is-unavailable {
  color: var(--text-light);
  background: var(--sand-subtle);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.donation-mobile-tip {
  margin: 1.5rem auto 0;
  padding: 1rem 1.2rem;
  max-width: 720px;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
}

.donation-impact-section {
  background: #ffffff;
  border-top: 1px solid var(--sand-border);
}

.donation-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.donation-impact-grid article {
  padding: 1.4rem;
  background: var(--sand-base);
  border-radius: var(--radius-md);
}

.donation-impact-grid article > span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--brand-orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.donation-impact-grid h3 {
  margin-bottom: 0.45rem;
  color: var(--text-main);
  font-size: 1.1rem;
}

.donation-impact-grid p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.donation-trust-section {
  padding-block: 2.4rem;
  background: var(--brand-cyan-light);
  border-block: 1px solid var(--brand-cyan-subtle);
}

.donation-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.donation-trust-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--brand-cyan);
}

.donation-trust-grid strong {
  color: var(--text-main);
  font-size: 0.98rem;
}

.donation-trust-grid span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.donation-company-section {
  background: var(--sand-base);
}

.donation-company-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.donation-company-card h2 {
  margin-bottom: 0.65rem;
  color: var(--text-main);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.donation-company-card p {
  max-width: 720px;
  color: var(--text-muted);
  line-height: 1.65;
}

.donation-company-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ================= CLEAN FOOTER ================= */
.footer-clean {
  background: #242220;
  color: rgba(255, 255, 255, 0.78);
  padding-block: 3.5rem 2rem;
  border-top: 3px solid var(--sand-accent);
}

.footer-clean-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-clean h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-clean p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-clean a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-clean a:hover {
  color: var(--brand-cyan);
}

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

/* Floating WhatsApp Button */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.fab-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* ================= GUIDED TOUR (FLOATING CONTROL CARD) ================= */
.tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 20, 15, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-backdrop.active {
  display: block;
  opacity: 1;
}

.tour-modal-card {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10001;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--sand-accent);
  padding: 1.75rem 2rem;
  max-width: 480px;
  width: calc(100% - 2.5rem);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-modal-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tour-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

/* Clickable Step Pills / Tabs */
.tour-steps-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-step-pill {
  background: var(--sand-subtle);
  border: 1px solid var(--sand-border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.tour-step-pill:hover {
  background: var(--sand-accent);
  color: var(--text-main);
}

.tour-step-pill.active {
  background: var(--brand-cyan);
  color: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: 0 2px 8px rgba(92, 192, 223, 0.4);
}

.tour-close-btn {
  background: var(--sand-subtle);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tour-close-btn:hover {
  color: #ffffff;
  background: var(--brand-orange);
}

.tour-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tour-body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--sand-border);
}

.tour-btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-btn-prev {
  background: var(--sand-subtle);
  color: var(--text-main);
  border: 1px solid var(--sand-border);
}

.tour-btn-prev:hover {
  background: #e5ddd0;
}

.tour-btn-next {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 143, 87, 0.4);
  margin-left: auto;
}

.tour-btn-next:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
}

/* Spotlight element highlight with high visibility glow */
.tour-highlight {
  position: relative !important;
  z-index: 10002 !important;
  box-shadow: 0 0 0 6px var(--brand-cyan), 0 0 35px rgba(92, 192, 223, 0.6) !important;
  border-radius: var(--radius-md) !important;
  transition: box-shadow 0.3s ease;
  background-color: #ffffff !important;
}

/* Toast alert notification */
.toast-msg {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1050;
  background: var(--brand-green-dark);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-weight: 700;
  font-size: 0.98rem;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast-msg.show {
  transform: translateX(0);
}

/* Cookie bar */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin-inline: auto;
  background: #242220;
  color: #ffffff;
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border: 1px solid var(--sand-accent);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner.active {
  display: flex;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-top-wrapper {
    padding-top: 76px;
  }

  .clean-nav {
    top: 8px;
    padding-inline: 0.75rem;
  }

  .nav-wrap {
    height: 60px;
    padding: 0.4rem 1rem;
  }

  .nav-brand img {
    height: 40px;
  }

  .nav-tour-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero-grid, .about-split, .contact-clean-grid, .footer-clean-grid, .sasrd-hero-grid, .target-panel, .sasrd-cta-inner, .donation-hero-grid, .donation-company-card {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .legal-controller-card,
  .legal-content > .legal-contact-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-contact-actions {
    min-width: 0;
    max-width: 360px;
  }

  .sasrd-facts {
    grid-template-columns: 1fr;
  }

  .sasrd-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-grid,
  .donation-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sasrd-cta-actions {
    justify-content: flex-start;
  }
  
  .nav-links {
    display: none;
  }

  .tour-modal-card {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1.25rem !important;
    max-width: none;
    width: auto;
    padding: 1.35rem 1.25rem;
  }

  .tour-steps-nav {
    gap: 0.25rem;
  }

  .tour-step-pill {
    font-size: 0.74rem;
    padding: 0.25rem 0.55rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 1rem;
  }

  .section {
    padding-block: 2.75rem;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .hero-service-area {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .clean-nav {
    padding-inline: 0.5rem;
  }

  .nav-wrap {
    padding-inline: 0.75rem;
  }

  .nav-brand img {
    height: 36px;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .nav-phone-btn {
    padding-inline: 0.8rem;
  }

  .services-accordion-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-accordion-card summary {
    min-height: 82px;
    grid-template-columns: 46px 1fr 30px;
    gap: 0.8rem;
    padding: 1rem;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
  }

  .service-accordion-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .service-toggle {
    width: 30px;
    height: 30px;
  }

  .service-accordion-content {
    padding: 0 1rem 1rem 4.85rem;
  }

  .service-accordion-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-card-box {
    padding: 1.5rem 1.2rem;
  }

  .team-showcase {
    margin-top: 3rem;
    padding-top: 0;
  }

  .team-members-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .team-member-card {
    max-width: 390px;
    width: 100%;
    margin-inline: auto;
  }

  .team-member-portrait {
    aspect-ratio: 1.45 / 1;
    background-position-y: 24%;
    background-size: 400% auto;
  }

  .team-member-body h3,
  .team-member-role {
    min-height: auto;
  }

  .subpage-hero {
    padding-block: 2.5rem 3rem;
  }

  .legal-hero {
    padding-block: 2.5rem 3rem;
  }

  .legal-facts,
  .legal-purpose-grid {
    grid-template-columns: 1fr;
  }

  .legal-purpose-grid article:last-child {
    grid-column: auto;
  }

  .legal-content > section {
    padding: 1.35rem;
  }

  .legal-contact-actions {
    max-width: none;
  }

  .complaint-person-grid,
  .complaint-method-list,
  .complaint-deadline-grid {
    grid-template-columns: 1fr;
  }

  .complaint-form-download {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }

  .complaint-form-download .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .complaint-assurance-card {
    gap: 0.85rem;
  }

  .complaint-assurance-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .meetings-summary,
  .meetings-help-card {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .meetings-document-grid {
    grid-template-columns: 1fr;
  }

  .meetings-help-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .subpage-hero h1 {
    font-size: 2.05rem;
  }

  .subpage-hero p {
    font-size: 1rem;
  }

  .sasrd-hero-image {
    display: none;
  }

  .situation-grid,
  .target-list,
  .sasrd-offer-grid {
    grid-template-columns: 1fr;
  }

  .target-panel {
    gap: 1.5rem;
  }

  .sasrd-offer-grid article {
    min-height: auto;
  }

  .sasrd-offer-grid span {
    margin-bottom: 0.65rem;
  }

  .activity-accordion summary {
    gap: 0.7rem;
    padding: 1rem;
    font-size: 0.92rem;
  }

  .activity-content {
    padding: 0 1rem 1.1rem 1.25rem;
    font-size: 0.9rem;
  }

  .sasrd-cta-actions {
    flex-direction: column;
  }

  .sasrd-cta-actions .btn {
    width: 100%;
  }

  .career-empty-state {
    padding-block: 2.5rem 3.5rem;
  }

  .career-container .back-link {
    margin-bottom: 1.2rem;
  }

  .career-logo-wrap {
    width: 130px;
    height: 115px;
  }

  .career-container > h1 {
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
  }

  .career-status-card {
    padding: 1.35rem;
  }

  .career-actions {
    flex-direction: column;
  }

  .career-actions .btn {
    width: 100%;
  }

  .donation-hero {
    padding-block: 2.5rem 3rem;
  }

  .donation-hero h1 {
    font-size: 2.35rem;
  }

  .donation-hero-copy > p {
    font-size: 1rem;
  }

  .donation-family-scene {
    min-height: 320px;
  }

  .donation-family-scene img {
    width: min(100%, 360px);
  }

  .donation-grid,
  .donation-impact-grid,
  .donation-trust-grid {
    grid-template-columns: 1fr;
  }

  .donation-card {
    max-width: 390px;
    width: 100%;
    margin-inline: auto;
  }

  .donation-card-top {
    min-height: auto;
  }

  .donation-card > p {
    min-height: auto;
  }

  .donation-company-actions {
    flex-direction: column;
  }

  .donation-company-actions .btn {
    width: 100%;
  }

  .partners-simple {
    padding-block: 2rem;
  }

  .funding-feature {
    padding: 1.25rem;
  }

  .funding-logos {
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }

  .funding-logo-card {
    min-height: 92px;
    padding: 0.65rem;
  }

  .funding-logo-card img {
    max-height: 70px;
  }

  .funding-copy h2 {
    font-size: 1.3rem;
  }

  .funding-copy p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

@media (max-width: 430px) {
  .nav-phone-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .nav-phone-btn span {
    display: none;
  }
}
