/*
Theme Name: Pergole Landing
Theme URI: https://liradom.pl/pergole
Author: LIRA Dom
Author URI: https://liradom.pl
Description: Motyw landing page dla pergoli - nowoczesna strona z formularzem kontaktowym do generowania leadów.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pergole-landing
*/

/* ========================================
   CSS RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */
:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 30%, 18%);
  --heading: hsl(220, 40%, 13%);
  --text-body: hsl(220, 10%, 40%);
  --surface: hsl(30, 20%, 97%);
  --surface-elevated: hsl(0, 0%, 100%);
  --border: hsl(220, 14%, 90%);
  --primary: hsl(20, 80%, 52%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-10: hsla(20, 80%, 52%, 0.1);
  --primary-40: hsla(20, 80%, 52%, 0.4);
  --muted-foreground: hsl(220, 10%, 46%);
  --destructive: hsl(0, 84.2%, 60.2%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --radius: 0.75rem;
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ========================================
   TOPBAR / HEADER
   ======================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.topbar__logo {
  display: flex;
  align-items: center;
}

.topbar__logo-img {
  height: 36px;
  width: auto;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: color 0.2s;
}

.topbar__phone:hover {
  color: var(--primary);
}

.topbar__phone svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary--full {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.80));
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 2.5rem 0 2.5rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.hero__title-accent {
  color: var(--primary);
}

.hero__subtitle {
  color: var(--text-body);
  font-size: 1rem;
  max-width: 32rem;
  line-height: 1.7;
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.hero__badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.hero__image {
  display: none;
}

.hero__image img {
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 28rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Form Card in Hero */
.hero__form-card {
  background: var(--surface-elevated);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.hero__form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero__form-subtitle {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__fields--compact {
  gap: 0.75rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: box-shadow 0.2s;
  outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  box-shadow: 0 0 0 3px var(--primary-40);
}

/* Chip / Pill selector */
.contact-form__chips-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__chips-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-form__chip-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.contact-form__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.contact-form__chip:hover {
  border-color: var(--primary-40);
  background: var(--primary-10);
}

.contact-form__chip-input:checked+.contact-form__chip {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.contact-form__chip--help {
  border-style: dashed;
}

.contact-form__chip-input:checked+.contact-form__chip--help {
  background: hsl(45, 85%, 52%);
  color: hsl(40, 50%, 14%);
  border-color: hsl(45, 85%, 52%);
  border-style: solid;
}

.contact-form__textarea {
  resize: none;
  min-height: 80px;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.contact-form__consent input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.contact-form__consent-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.contact-form__note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: 4rem 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header__subtitle {
  color: var(--text-body);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
}

.benefits__grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-card {
  background: var(--surface-elevated);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.benefit-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-card__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  padding: 4rem 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery__item {
  overflow: hidden;
  border-radius: 0.75rem;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ========================================
   PERGOLA TYPES SECTION
   ======================================== */
.pergola-types {
  padding: 4rem 0;
  background: var(--surface);
}

.pergola-types__grid {
  display: grid;
  gap: 1.25rem;
}

.type-card {
  background: var(--surface-elevated);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.type-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.type-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.type-card__body {
  padding: 1.5rem;
}

.type-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.type-card__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.type-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.type-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.type-card__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.type-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: text-decoration 0.2s;
  display: inline-block;
}

.type-card__link:hover {
  text-decoration: underline;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: 4rem 0;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.process-step {
  text-align: center;
}

.process-step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.process-step__icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.process-step__num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust {
  padding: 4rem 0;
  background: var(--surface);
}

.trust__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-elevated);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border);
}

.trust__item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.trust__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 4rem 0;
}

.faq__list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.faq__question:hover {
  background: var(--surface);
}

.faq__question-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--muted-foreground);
}

.faq__item.active .faq__question-icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  padding: 4rem 0;
  background: var(--heading);
}

.final-cta__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.final-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.final-cta__desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  line-height: 1.7;
}

.final-cta__form-card {
  background: var(--surface-elevated);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.footer__text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 0.75rem;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

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

.toast--error {
  border-color: var(--destructive);
}

.toast__title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.toast__description {
  font-size: 0.8125rem;
  color: var(--text-body);
}

/* ========================================
   SCROLL ANIMATIONS (IntersectionObserver)
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.scale-in {
  opacity: 0;
  transform: scale(0.95);
}

.animate-on-scroll.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thankyou-page {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--surface);
}

.thankyou-hero {
  padding: 3rem 0;
  width: 100%;
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface-elevated);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Animated checkmark icon */
.thankyou-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon__check {
  width: 40px;
  height: 40px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  animation: thankyou-checkmark 0.5s ease 0.3s both;
}

.thankyou-icon__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--primary);
  opacity: 0;
  animation: thankyou-ring 1.8s ease-out infinite;
}

.thankyou-icon__ring--delay {
  animation-delay: 0.6s;
}

@keyframes thankyou-ring {
  0% {
    transform: scale(0.5);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes thankyou-checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thankyou-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.thankyou-subtitle strong {
  color: var(--primary);
  font-weight: 600;
}

/* Steps */
.thankyou-steps {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.thankyou-steps__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

.thankyou-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.thankyou-step__num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-step__content {
  flex: 1;
}

.thankyou-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.thankyou-step__desc {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* CTA phone */
.thankyou-cta {
  margin-bottom: 1.5rem;
}

.thankyou-cta__text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.thankyou-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.thankyou-cta__phone:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.thankyou-cta__phone svg {
  width: 18px;
  height: 18px;
}

/* Back link */
.thankyou-back {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  transition: opacity 0.2s;
}

.thankyou-back:hover {
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE: TABLET (≥640px)
   ======================================== */
@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pergola-types__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE: DESKTOP (≥768px)
   ======================================== */
@media (min-width: 768px) {
  .topbar__inner {
    height: 80px;
  }

  .topbar__logo-img {
    height: 44px;
  }

  .topbar__phone {
    display: flex;
  }

  .topbar__actions {
    gap: 1.5rem;
  }

  .hero {
    padding-top: 96px;
  }

  .hero__content {
    padding: 5rem 0;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__text-block {
    gap: 2rem;
  }

  .hero__badges {
    gap: 1rem;
  }

  .hero__form-card {
    padding: 2rem;
  }

  .hero__form-title {
    font-size: 1.5rem;
  }

  .section-header__title {
    font-size: 1.875rem;
  }

  .benefits,
  .gallery,
  .pergola-types,
  .process,
  .trust,
  .faq,
  .final-cta {
    padding: 6rem 0;
  }

  .benefits__grid,
  .gallery__grid {
    gap: 1rem;
  }

  .faq__question {
    font-size: 1rem;
  }

  .final-cta__title {
    font-size: 1.875rem;
  }

  .final-cta__form-card {
    padding: 2rem;
  }

  .thankyou-page {
    padding-top: 96px;
  }

  .thankyou-card {
    padding: 3rem 2.5rem;
  }

  .thankyou-title {
    font-size: 2rem;
  }

  .thankyou-steps {
    padding: 2rem;
  }
}

/* ========================================
   RESPONSIVE: LARGE DESKTOP (≥1024px)
   ======================================== */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__image {
    display: block;
  }

  .main-content {
    padding-bottom: 0;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-cta__grid {
    grid-template-columns: 1fr 1fr;
  }
}