/* Complete graffiti street pack redesign with brick textures, neon colors, and spray paint effects */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brick-dark: #1c1c1c;
  --neon-pink: #ff2e92;
  --neon-green: #36ff6b;
  --neon-cyan: #4df3ff;
  --neon-yellow: #ffd600;
  --white-spray: #f8f8f8;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-sans);
  color: var(--white-spray);
  line-height: 1.6;
  background-color: var(--brick-dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.brick-bg {
  background-color: var(--brick-dark);
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.03) 35px,
      rgba(255, 255, 255, 0.03) 38px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 75px,
      rgba(255, 255, 255, 0.03) 75px,
      rgba(255, 255, 255, 0.03) 78px
    );
  position: relative;
}

.spray-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-green), var(--neon-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 46, 146, 0.5));
}

.drip-text {
  position: relative;
  color: var(--white-spray);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.neon-stroke {
  border: 3px solid var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink), inset 0 0 10px rgba(255, 46, 146, 0.2);
  transition: var(--transition);
}

.neon-stroke:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan), inset 0 0 15px rgba(77, 243, 255, 0.3);
}

.sticker-tag {
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-green));
  color: var(--brick-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  margin: 1rem 0;
}

.splatter {
  position: relative;
  background-color: #252525;
}

.splatter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 46, 146, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(54, 255, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(77, 243, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.urban-card {
  background: rgba(28, 28, 28, 0.9);
  border: 2px solid rgba(255, 46, 146, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 4px 4px 0 rgba(255, 46, 146, 0.2), -2px -2px 0 rgba(77, 243, 255, 0.2);
  transition: var(--transition);
}

.urban-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0 rgba(255, 46, 146, 0.4), -3px -3px 0 rgba(77, 243, 255, 0.4);
}

.throwup {
  position: relative;
  border: 4px solid var(--neon-green);
  border-radius: 16px;
  box-shadow: 0 0 20px var(--neon-green), inset 0 0 20px rgba(54, 255, 107, 0.1);
}

.bubble-tag {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: var(--brick-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(77, 243, 255, 0.4);
  transition: var(--transition);
}

.bubble-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 46, 146, 0.6);
}

.graffiti-quote {
  background: var(--brick-dark);
  border-left: 5px solid var(--neon-yellow);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--neon-yellow);
  position: relative;
  box-shadow: inset 0 0 20px rgba(255, 214, 0, 0.1), 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.graffiti-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--neon-pink);
  opacity: 0.3;
}

.rough-frame {
  border: 6px solid var(--white-spray);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 0 2px var(--neon-pink), 0 0 0 4px var(--brick-dark), 0 0 0 6px var(--neon-cyan);
  clip-path: polygon(0% 2%, 2% 0%, 98% 0%, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0% 98%);
}

.spray-shadow {
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-cyan), 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brick-divider {
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--neon-pink) 25%,
    var(--neon-cyan) 50%,
    var(--neon-green) 75%,
    transparent 100%
  );
  margin: 3rem 0;
  position: relative;
}

.brick-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  background: var(--neon-yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-yellow);
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-main.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px var(--neon-pink);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--neon-pink), 2px 2px 0 var(--neon-cyan), 4px 4px 0 var(--brick-dark);
}

.site-name a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan), 2px 2px 0 var(--neon-pink), 4px 4px 0 var(--brick-dark);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-menu svg {
  filter: drop-shadow(0 0 5px var(--neon-pink));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: var(--brick-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 46, 146, 0.5);
}

.hero-section {
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-img {
  width: 100%;
  border-radius: 16px;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--white-spray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px var(--neon-yellow));
}

.feature-text h3 {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--white-spray);
}

.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--white-spray);
  line-height: 1.8;
}

.about-text strong {
  color: var(--neon-yellow);
  font-weight: 900;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-img {
  width: 100%;
  border-radius: 16px;
}

.cases-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--white-spray);
  max-width: 800px;
  margin: 1rem auto 0;
}

.cases-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.case-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.case-lede {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--neon-green);
}

.case-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.case-image-wrapper {
  position: relative;
}

.case-img {
  width: 100%;
  border-radius: 12px;
}

.drip-border {
  border: 4px solid var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink), inset 0 0 20px rgba(255, 46, 146, 0.1);
  position: relative;
}

.drip-border::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 10px;
  height: 15px;
  background: var(--neon-pink);
  border-radius: 0 0 50% 50%;
  box-shadow: 20px 0 0 var(--neon-cyan), 40px 0 0 var(--neon-green);
}

.case-text {
  color: var(--white-spray);
  line-height: 1.8;
}

.two-col {
  column-count: 1;
  column-gap: 2rem;
}

.two-col p {
  margin-bottom: 1rem;
}

.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.team-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  border-radius: 50%;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
  font-weight: 700;
}

.team-description {
  color: var(--white-spray);
  line-height: 1.7;
}

.contacts-section {
  padding: 5rem 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px var(--neon-yellow));
}

.contact-details h3 {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: var(--neon-pink);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--neon-yellow);
}

.contact-details p {
  color: var(--white-spray);
}

.contact-note {
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.7);
  margin-top: 0.5rem;
}

.contact-form-wrapper {
  padding: 2.5rem;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neon-cyan);
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--neon-pink);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: rgba(28, 28, 28, 0.8);
  color: var(--white-spray);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 15px var(--neon-yellow);
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-label span {
  color: var(--white-spray);
  font-size: 0.95rem;
}

.checkbox-label span a {
  color: var(--neon-green);
  text-decoration: underline;
}

.checkbox-label.error span {
  color: var(--neon-yellow);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: var(--brick-dark);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 46, 146, 0.5);
}

.map-wrapper {
  margin-top: 3rem;
  padding: 2rem;
}

.map-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-wrapper iframe {
  border-radius: 12px;
}

.footer-main {
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(248, 248, 248, 0.8);
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.2rem;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-label {
  font-weight: 700;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contacts a {
  color: var(--neon-pink);
}

.footer-contacts a:hover {
  color: var(--neon-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 46, 146, 0.3);
  margin-bottom: 1rem;
}

.footer-copyright {
  color: rgba(248, 248, 248, 0.7);
}

.btn-footer {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
  color: var(--brick-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-footer:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(54, 255, 107, 0.5);
}

.footer-disclaimer {
  text-align: center;
  color: rgba(248, 248, 248, 0.6);
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--brick-dark);
  border-top: 3px solid var(--neon-pink);
  box-shadow: 0 -4px 30px rgba(255, 46, 146, 0.3);
  padding: 1.5rem;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  color: var(--white-spray);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: var(--brick-dark);
}

.btn-cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 46, 146, 0.5);
}

.btn-cookie-decline {
  background: rgba(248, 248, 248, 0.1);
  color: var(--white-spray);
  border: 2px solid var(--white-spray);
}

.btn-cookie-decline:hover {
  background: rgba(248, 248, 248, 0.2);
}

@media (max-width: 968px) {
  .burger-menu {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--brick-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 3px solid var(--neon-pink);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .bubble-tag {
    display: block;
    text-align: center;
  }

  .header-cta {
    width: 100%;
  }

  .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .contacts-grid,
  .case-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .two-col {
    column-count: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container-custom {
    padding: 0 15px;
  }

  .hero-section,
  .about-section,
  .cases-section,
  .team-section,
  .contacts-section {
    padding: 3rem 0;
  }

  .section-title,
  .spray-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* === THANK PAGE: missing styles fix ===================================== */

.thank-section {
  padding: 4rem 0 5rem;
}
.thank-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.thank-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.thank-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--neon-yellow);
  background: rgba(28,28,28,0.9);
  border: 4px solid var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink), inset 0 0 15px rgba(255, 46, 146, 0.25);
}
.thank-title {
  margin-bottom: 0.5rem;
}
.thank-subtitle {
  font-size: 1.125rem;
  color: rgba(248,248,248,0.85);
  margin-bottom: 1.75rem;
}

.thank-message {
  text-align: left;
  margin: 0 auto 2rem;
}
.thank-message p + p {
  margin-top: 0.85rem;
}

.thank-next-steps {
  margin-top: 2.5rem;
}
.steps-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step-item {
  text-align: left;
}
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 16px rgba(77, 243, 255, 0.35);
}
.step-item h3 {
  margin-bottom: 0.5rem;
  transform: rotate(-1.5deg);
}
.step-item p {
  color: var(--white-spray);
  line-height: 1.7;
}

.thank-explore {
  margin-top: 3rem;
}
.explore-links {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.explore-card {
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 rgba(255,46,146,0.35), -4px -4px 0 rgba(77,243,255,0.35);
}
.explore-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.explore-card h3 {
  margin-bottom: 0.4rem;
}
.explore-card p {
  color: rgba(248,248,248,0.85);
}

.thank-cta {
  margin-top: 2.25rem;
}

/* Footer spacing harmony on this page */
.footer-main { margin-top: 2.5rem; }

/* Scroll shadow on sticky header when page is scrolled */
@media (hover: none), (pointer: coarse) {
  .header-main { box-shadow: 0 3px 14px rgba(0,0,0,.35); }
}

/* === Responsive tweaks for thank page =================================== */
@media (max-width: 1024px) {
  .thank-content { padding: 0 8px; }
}
@media (max-width: 968px) {
  .steps-grid, .explore-links {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .thank-section { padding: 3rem 0 3.5rem; }
  .steps-grid, .explore-links {
    grid-template-columns: 1fr;
  }
  .thank-message { padding: 1rem; }
  .thank-icon { width: 74px; height: 74px; font-size: 2rem; }
}
