/* ============================================
   Emrah Soydal Hurdacı - Bursa Hurdacı
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7f9;
  --color-surface: #ffffff;
  --color-surface-light: #eef0f3;
  --color-text: #1c2126;
  --color-text-muted: #5b6572;
  --color-border: #e4e7eb;

  --color-accent: #f5a623;
  --color-accent-dark: #d68910;
  --color-accent-contrast: #14181c;
  --color-eco: #3fb27f;
  --color-eco-dark: #2e8f64;

  --font-base: "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 3px rgba(245, 166, 35, 0.25);

  --container: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

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

.section {
  padding: 88px 0;
}
.section--alt { background: var(--color-bg-alt); }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.section-lead {
  color: var(--color-text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text);
}
.brand-logo { height: 72px; width: auto; display: block; }
.footer-brand-logo-wrap {
  display: inline-flex;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}
.footer-brand-logo-wrap .brand-logo { height: 42px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-eco));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #14181c;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text small {
  display: block;
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.main-nav { display: flex; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}
.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: var(--color-accent);
  background: var(--color-surface);
}
.caret { font-size: 0.65rem; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.dropdown a:hover { background: var(--color-surface-light); color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-text);
}
.header-phone svg { color: var(--color-accent); flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,24,28,0.94) 30%, rgba(20,24,28,0.65) 65%, rgba(20,24,28,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 60px 0; color: #f4f6f8; }
.hero-content h1,
.page-hero .hero-content h1 { color: #ffffff; }
.hero-content .breadcrumbs a,
.hero-content .breadcrumbs span { color: rgba(244, 246, 248, 0.75); }
.hero-content .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-content .btn-outline:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.hero-stat span { color: rgba(244, 246, 248, 0.65); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--color-accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero h1 span { color: var(--color-accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(244, 246, 248, 0.82);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--color-accent); }
.hero-stat span { color: var(--color-text-muted); font-size: 0.85rem; }

/* Page (inner) hero — smaller, for category/region pages */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-content { padding: 40px 0; max-width: 760px; }
.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: var(--color-accent); }

/* ============ Services / Cards Grid ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.card-img { height: 180px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.15rem; }
.card-body p { color: var(--color-text-muted); font-size: 0.94rem; flex: 1; }
.card-link {
  margin-top: 10px;
  font-weight: 700;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.card-link .arrow { transition: transform 0.15s ease; }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* Region chips grid */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.region-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.region-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-eco);
  box-shadow: var(--shadow-md);
}
.region-card-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(63, 178, 127, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.region-card-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.region-card-body strong { font-size: 1rem; color: var(--color-text); }
.region-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-eco-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.region-card .arrow { flex-shrink: 0; color: var(--color-text-muted); transition: transform 0.15s ease, color 0.15s ease; }
.region-card:hover .arrow { transform: translateX(4px); color: var(--color-eco); }

/* ============ About / split layout ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.badge-float strong { display: block; color: var(--color-accent); font-size: 1.4rem; }
.badge-float span { color: var(--color-text-muted); font-size: 0.82rem; }

.check-list { margin-top: 24px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--color-text-muted); }
.check-list .check-ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(63, 178, 127, 0.15);
  color: var(--color-eco);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ============ Numbered feature list (service/region pages) ============ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.feature-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.feature-item h4 { font-size: 1.02rem; }
.feature-item p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ============ Article body (long-form SEO content) ============ */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}
.article-body h3 {
  color: var(--color-text);
  font-size: 1.3rem;
  margin-top: 1.6em;
}
.article-body p { margin-bottom: 1.2em; }
.article-body p:first-child { margin-top: 0; }

/* ============ Process steps ============ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.step h4 { font-size: 1.05rem; }
.step p { color: var(--color-text-muted); font-size: 0.92rem; }

/* ============ Testimonials ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { color: var(--color-text-muted); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-surface-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--color-accent);
}
.testimonial-author strong { display: block; font-size: 0.94rem; }
.testimonial-author span { color: var(--color-text-muted); font-size: 0.78rem; }

/* ============ FAQ (accordion) ============ */
.faq-list { max-width: 780px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--color-text);
  font-weight: 700;
  text-align: left;
  font-size: 0.98rem;
}
.faq-question .plus { color: var(--color-accent); transition: transform 0.2s ease; font-size: 1.2rem; flex-shrink: 0; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  padding: 0 22px;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(120deg, var(--color-eco-dark), var(--color-eco));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #ffffff;
}
.cta-band-text { max-width: 560px; }
.cta-band h3 { font-size: 1.5rem; margin-bottom: 8px; color: #ffffff; line-height: 1.35; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 0.98rem; }
.cta-band .btn-primary {
  background: #ffffff;
  color: var(--color-eco-dark);
  padding: 16px 30px;
  gap: 10px;
  flex-shrink: 0;
}
.cta-band .btn-primary svg { color: var(--color-accent-dark); flex-shrink: 0; }
.cta-band .btn-primary:hover { background: #f0f3f0; box-shadow: var(--shadow-md); }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.contact-info-list { display: grid; gap: 18px; margin-bottom: 28px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-info-item .ic {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.12); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { font-size: 0.85rem; font-weight: 700; color: var(--color-text-muted); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 12px; }
.form-success {
  display: none;
  background: rgba(63,178,127,0.12);
  border: 1px solid var(--color-eco);
  color: var(--color-eco);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 24px;
  height: 280px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ============ Footer ============ */
.site-footer {
  background: #14181c;
  border-top: 1px solid #262c33;
  padding: 64px 0 24px;
  color: #eef1f4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer .brand-text small { color: #98a2ad; }
.footer-brand p { color: #98a2ad; font-size: 0.92rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #1f252c;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #2c333b;
  color: #eef1f4;
}
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-col h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: #98a2ad; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #eef1f4; font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid #262c33;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7d8790;
  font-size: 0.85rem;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Prev/Next nav (region/service pages) */
.pn-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.pn-link {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.pn-link span { display: block; font-size: 0.78rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.pn-link strong { font-size: 1rem; }
.pn-link:hover strong { color: var(--color-accent); }
.pn-next { text-align: right; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 96px 0 0 0;
    background: var(--color-bg);
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list > li > a { padding: 14px; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    margin-top: 4px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-phone span { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .cta-band { padding: 32px; flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pn-nav { grid-template-columns: 1fr; }
  .pn-next { text-align: left; }
}
