/*
Theme Name: WPM
Theme URI: https://gardenland-zadaszenia.pl
Author: Garden Land
Author URI: https://gardenland-zadaszenia.pl
Description: Lekki, szybki motyw WordPress dla Garden Land — bez Elementora, oparty na czystym PHP i CSS.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpm
*/

/* ===== RESET & BASE ===== */
/* Google Fonts loaded via functions.php (preload, non-blocking) */

:root {
  /* Color tokens (HSL) */
  --background: 0 0% 100%;
  --foreground: 215 28% 17%;
  --card: 0 0% 100%;
  --card-foreground: 215 28% 17%;
  --primary: 152 67% 44%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 215 28% 17%;
  --muted: 220 14% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 152 67% 44%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 152 67% 44%;
  --radius: 0.75rem;
  --section-dark: 220 26% 14%;
  --section-dark-foreground: 220 14% 96%;
  --section-dark-card: 220 20% 20%;
  --section-cream: 40 33% 96%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer img {
  max-width: 70px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.wpm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
}

.wpm-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.wpm-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wpm-header__logo-garden {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.wpm-header__logo-land {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: hsl(var(--primary));
}

.wpm-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.wpm-header__phone:hover {
  opacity: 0.9;
}

.wpm-header__phone svg {
  width: 1rem;
  height: 1rem;
}

/* ===== HERO SECTION ===== */
.wpm-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.wpm-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wpm-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wpm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      hsla(var(--foreground) / 0.80),
      hsla(var(--foreground) / 0.60),
      hsla(var(--foreground) / 0.30));
}

.wpm-hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .wpm-hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.wpm-hero__badge {
  display: inline-block;
  background: hsla(var(--primary) / 0.20);
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.wpm-hero__title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

.wpm-hero__title span {
  color: hsl(var(--primary));
}

.wpm-hero__desc {
  font-size: 1.125rem;
  color: hsla(var(--primary-foreground) / 0.80);
  max-width: 32rem;
}

@media (min-width: 768px) {
  .wpm-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .wpm-hero__title {
    font-size: 3.75rem;
  }
}

/* Hero Form */
.wpm-hero__form-wrap {
  background: hsl(var(--background));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.wpm-hero__form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.wpm-hero__form-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.wpm-hero__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wpm-hero__form input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: hsl(var(--foreground));
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.wpm-hero__form input::placeholder {
  color: hsl(var(--muted-foreground));
}

.wpm-hero__form input:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.wpm-hero__form-success {
  text-align: center;
  padding: 2rem 0;
}

.wpm-hero__form-success-icon {
  font-size: 3rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.wpm-hero__form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.wpm-hero__form-success p {
  color: hsl(var(--muted-foreground));
}

/* File Upload Area */
.wpm-hero__upload-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.wpm-hero__upload {
  position: relative;
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background: hsl(var(--secondary));
}

.wpm-hero__upload:hover {
  border-color: hsl(var(--primary));
  background: hsla(var(--primary) / 0.04);
}

.wpm-hero__upload--dragover {
  border-color: hsl(var(--primary));
  background: hsla(var(--primary) / 0.08);
  border-style: solid;
}

.wpm-hero__upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}

.wpm-hero__upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}

.wpm-hero__upload-content svg {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.wpm-hero__upload-text {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.wpm-hero__upload-text strong {
  color: hsl(var(--primary));
  font-weight: 600;
}

.wpm-hero__upload-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* File List */
.wpm-hero__upload-list {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
}

.wpm-hero__file-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 0.6);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  animation: wpm-file-in 0.2s ease;
}

@keyframes wpm-file-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpm-hero__file-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: hsl(var(--primary));
}

.wpm-hero__file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.wpm-hero__file-name {
  font-weight: 500;
  color: hsl(var(--foreground));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wpm-hero__file-size {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
}

.wpm-hero__file-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 0;
}

.wpm-hero__file-remove:hover {
  background: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
}

.btn-primary--inline {
  width: auto;
  padding: 0.875rem 2rem;
}

/* ===== STATS BAR ===== */
.wpm-stats {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 2.5rem 0;
}

.wpm-stats .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .wpm-stats .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wpm-stats__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.wpm-stats__stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  color: #facc15;
}

.wpm-stats__value {
  font-size: 2.25rem;
  font-weight: 900;
  color: hsl(var(--foreground));
}

.wpm-stats__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.wpm-stats__label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== PROBLEM SECTION ===== */
.wpm-problem {
  background: hsl(var(--background));
  padding: 5rem 0;
}

.wpm-problem .container {
  max-width: 42rem;
  text-align: center;
}

.wpm-problem__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wpm-problem__title {
    font-size: 2.25rem;
  }
}

.wpm-problem__box {
  border-radius: var(--radius);
  border: 1px solid hsla(var(--primary) / 0.20);
  background: hsla(var(--primary) / 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.wpm-problem__box p {
  color: hsl(var(--muted-foreground));
}

.wpm-problem__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.wpm-problem__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  padding: 0.75rem 1.25rem;
}

.wpm-problem__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--destructive));
  flex-shrink: 0;
}

.wpm-problem__item span {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.wpm-problem__bottom {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

/* ===== FEATURES SECTION ===== */
.wpm-features {
  background: hsl(var(--section-dark));
  padding: 5rem 0;
}

.wpm-features .container {
  text-align: center;
}

.wpm-features__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .wpm-features__title {
    font-size: 2.25rem;
  }
}

.wpm-features__subtitle {
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.wpm-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .wpm-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wpm-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wpm-features__card {
  border-radius: var(--radius);
  background: hsl(var(--section-dark-card));
  padding: 1.5rem;
  text-align: left;
}

.wpm-features__card-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.wpm-features__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 0.5rem;
}

.wpm-features__card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== PRODUCTS SECTION ===== */
.wpm-products {
  background: hsl(var(--section-cream));
  padding: 5rem 0;
}

.wpm-products .container {
  text-align: center;
}

.wpm-products__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .wpm-products__title {
    font-size: 2.25rem;
  }
}

.wpm-products__subtitle {
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
}

.wpm-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .wpm-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wpm-products__card {
  border-radius: var(--radius);
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpm-products__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.wpm-products__card img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
}

.wpm-products__card-body {
  padding: 1.25rem;
}

.wpm-products__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.wpm-products__card-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.wpm-products__card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wpm-products__card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.wpm-products__card-features svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* ===== STEPS SECTION ===== */
.wpm-steps {
  background: hsl(var(--background));
  padding: 5rem 0;
}

.wpm-steps .container {
  text-align: center;
}

.wpm-steps__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .wpm-steps__title {
    font-size: 2.25rem;
  }
}

.wpm-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wpm-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wpm-steps__card {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 1.5rem;
  text-align: left;
}

.wpm-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.wpm-steps__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.wpm-steps__card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== REVIEWS SECTION ===== */
.wpm-reviews {
  background: hsl(var(--background));
  padding: 5rem 0;
}

.wpm-reviews .container {
  text-align: center;
}

.wpm-reviews__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .wpm-reviews__title {
    font-size: 2.25rem;
  }
}

.wpm-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.wpm-reviews__stars svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #facc15;
  color: #facc15;
}

.wpm-reviews__google {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.wpm-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .wpm-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wpm-reviews__card {
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  padding: 1.25rem;
  text-align: left;
}

.wpm-reviews__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wpm-reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 700;
}

.wpm-reviews__card-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.wpm-reviews__card-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.wpm-reviews__card-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
}

.wpm-reviews__card-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
  color: #facc15;
}

.wpm-reviews__card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== WHY US SECTION ===== */
.wpm-whyus {
  background: hsl(var(--section-dark));
  padding: 5rem 0;
}

.wpm-whyus .container {
  text-align: center;
}

.wpm-whyus__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .wpm-whyus__title {
    font-size: 2.25rem;
  }
}

.wpm-whyus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wpm-whyus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wpm-whyus__card {
  border-radius: var(--radius);
  background: hsl(var(--section-dark-card));
  padding: 2rem;
  text-align: center;
}

.wpm-whyus__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.wpm-whyus__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 0.5rem;
}

.wpm-whyus__card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== FAQ SECTION ===== */
.wpm-faq {
  background: hsl(var(--background));
  padding: 5rem 0;
}

.wpm-faq .container {
  max-width: 48rem;
}

.wpm-faq__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .wpm-faq__title {
    font-size: 2.25rem;
  }
}

.wpm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wpm-faq__item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.wpm-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: background-color 0.15s ease;
}

.wpm-faq__question:hover {
  background: hsla(var(--muted) / 0.5);
}

.wpm-faq__chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
}

.wpm-faq__item.active .wpm-faq__chevron {
  transform: rotate(180deg);
}

.wpm-faq__answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

.wpm-faq__item.active .wpm-faq__answer {
  max-height: 300px;
  padding: 0 1.25rem 1rem;
}

/* ===== CTA SECTION ===== */
.wpm-cta {
  background: hsl(var(--section-dark));
  padding: 5rem 0;
}

.wpm-cta .container {
  max-width: 42rem;
  text-align: center;
}

.wpm-cta__title {
  font-size: 1.875rem;
  font-weight: 900;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wpm-cta__title {
    font-size: 2.25rem;
  }
}

.wpm-cta__list {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.wpm-cta__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--section-dark-foreground));
}

.wpm-cta__list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.wpm-cta__note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.wpm-footer {
  background: hsl(var(--section-dark));
  border-top: 1px solid hsl(var(--section-dark-card));
  padding: 3rem 0;
}

.wpm-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wpm-footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wpm-footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wpm-footer__logo-garden {
  font-size: 1.25rem;
  font-weight: 900;
  color: hsl(var(--section-dark-foreground));
}

.wpm-footer__logo-land {
  font-size: 1.25rem;
  font-weight: 900;
  color: hsl(var(--primary));
}

.wpm-footer h4 {
  font-weight: 700;
  color: hsl(var(--section-dark-foreground));
  margin-bottom: 0.75rem;
}

.wpm-footer p,
.wpm-footer a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.wpm-footer a:hover {
  color: hsl(var(--primary));
}

.wpm-footer a.underline {
  text-decoration: underline;
}

/* ===== SVG ICONS INLINE ===== */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ===== UTILITY: sr-only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== WORDPRESS COMPATIBILITY ===== */
.wp-block-post-content>* {
  max-width: 100%;
}

/* Hide admin bar overlap for sticky header */
body.admin-bar .wpm-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .wpm-header {
    top: 46px;
  }
}