/* ============================================
   KNOWLEDGE FORWARD — stylesheet
   Paleta: granat / biel / kremowy / złoty akcent
   Typografia: Playfair Display + Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-900: #0a1628;
  --navy-800: #142238;
  --navy-700: #1e3050;
  --navy-500: #3d5478;
  --gold: #c9a961;
  --gold-dark: #a8884a;
  --cream: #f7f6f2;
  --gray-100: #f0eeea;
  --gray-300: #d9d6cf;
  --gray-500: #8a8579;
  --gray-700: #4a4a48;
  --white: #ffffff;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.2em;
  color: var(--gray-700);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy-900);
  color: var(--cream);
}

.section--dark p,
.section--dark .eyebrow {
  color: var(--gray-300);
}

.section--cream {
  background: var(--cream);
}

.section--small {
  padding: 60px 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
  padding: 18px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__logo span {
  color: var(--gold);
}

.nav__logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
}

.nav__links a:hover {
  color: var(--gold-dark);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.nav__cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 500;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--gold-dark);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy-900);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: 920px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--gray-300);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
}

.btn--primary:hover {
  background: var(--cream);
  color: var(--navy-900);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gray-300);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--navy-900);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gold-dark);
}

/* ============================================
   STATS
   ============================================ */

.stats {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

/* ============================================
   FOUNDER (zdjęcie + bio)
   ============================================ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.founder-image {
  position: relative;
  max-width: 320px;
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--gray-300);
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.founder-text .eyebrow {
  color: var(--gold-dark);
  border-color: rgba(168, 136, 74, 0.4);
}

.founder-text h2 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.founder-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    max-width: 400px;
  }
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 12px;
}

.stat__number span {
  color: var(--gold);
}

.stat__label {
  font-size: 0.88rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin-bottom: 20px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.section--dark .section-head p {
  color: var(--gray-300);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
}

.service {
  padding: 48px 40px;
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}

.service:hover {
  background: var(--cream);
}

.service__number {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service h3 {
  margin-bottom: 16px;
  color: var(--navy-900);
}

.service p {
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.service__features {
  list-style: none;
  padding: 0;
}

.service__features li {
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 6px 0 6px 20px;
  position: relative;
}

.service__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   AUDIENCE / FOR-WHOM
   ============================================ */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.audience__card {
  background: var(--navy-800);
  padding: 40px 32px;
  border-left: 2px solid var(--gold);
}

.audience__card h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.audience__card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.audience__card p {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   PROJECTS / CASE STUDIES
   ============================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.project__brand {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.project h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.project__desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.project__meta {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-300);
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CLIENT LOGOS / BRAND STRIP
   ============================================ */

.brands {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.brands__title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-500);
  margin-bottom: 36px;
  font-weight: 600;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.brand {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-700);
  padding: 16px 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.brand:hover {
  color: var(--gold-dark);
  border-color: var(--gray-300);
  background: var(--white);
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.testimonial__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
}

.testimonial__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  left: -32px;
  top: -20px;
  line-height: 1;
}

.testimonial__author {
  font-size: 0.95rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
}

.testimonial__author strong {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__image {
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--gray-300);
}

.about-preview__image-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  font-style: italic;
}

.about-preview__image::after {
  content: 'tu wstaw zdjęcie';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-preview h2 {
  margin-bottom: 24px;
}

.about-preview__strengths {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.about-preview__strengths li {
  font-size: 0.95rem;
  color: var(--navy-900);
  padding: 4px 0 4px 20px;
  position: relative;
  font-weight: 500;
}

.about-preview__strengths li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--navy-900);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 60px 0 32px;
  border-top: 1px solid var(--navy-700);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.92rem;
  color: var(--gray-300);
  max-width: 340px;
  line-height: 1.7;
}

.footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--navy-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact-info__item {
  padding: 20px 0;
  border-top: 1px solid var(--gray-300);
}

.contact-info__item:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.contact-info__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info__value {
  font-size: 1.1rem;
  color: var(--navy-900);
  font-weight: 500;
}

.contact-info__value a:hover {
  color: var(--gold-dark);
}

.form {
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid var(--gray-300);
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-weight: 600;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--navy-900);
  transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.form__checkbox input {
  margin-top: 4px;
}

.form button[type="submit"] {
  width: 100%;
}

/* ============================================
   PAGE HEADERS (subpages)
   ============================================ */

.page-header {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header__inner {
  max-width: 800px;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-header p {
  color: var(--gray-300);
  font-size: 1.15rem;
  max-width: 640px;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-300);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__head h2 {
  margin-bottom: 16px;
}

.service-detail__number {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-detail__list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.service-detail__list li {
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--gray-300);
  position: relative;
  font-size: 0.98rem;
}

.service-detail__list li:last-child {
  border-bottom: 1px solid var(--gray-300);
}

.service-detail__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--gold);
  font-weight: 600;
}

.service-detail__list strong {
  color: var(--navy-900);
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

/* ============================================
   FAQ (details/summary)
   ============================================ */

.faq-item {
  border-top: 1px solid var(--gray-300);
  padding: 0;
  transition: var(--transition);
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--gray-300);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  transition: var(--transition);
}

.faq-item summary:hover {
  color: var(--gold-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 56px 24px 0;
  margin: 0;
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

.policy {
  max-width: 820px;
  margin: 0 auto;
}

.policy h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.policy h2:first-of-type {
  margin-top: 0;
}

.policy h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.policy p,
.policy ul {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.policy ul {
  padding-left: 24px;
}

.policy ul li {
  margin-bottom: 8px;
}

.policy strong {
  color: var(--navy-900);
}

.policy__update {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-style: italic;
}

/* ============================================
   PRINT / PDF EXPORT
   ============================================ */

@media print {
  .hero::before,
  .page-header::before {
    display: none !important;
  }

  .hero,
  .page-header,
  .section--dark,
  .cta-band,
  .footer {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .about-preview,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-100);
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero {
    padding: 80px 0 64px;
  }

  .testimonial__quote::before {
    display: none;
  }

  .form {
    padding: 32px 24px;
  }
}
