:root {
  --color-primary: #1f3d4e;
  --color-secondary: #4c8d7d;
  --color-accent: #f5a623;
  --color-light: #f7fbfd;
  --color-dark: #102029;
  --color-muted: #6c7a82;
  --max-width: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 8px 24px rgba(16, 32, 41, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 32, 41, 0.16);
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: #ffffff;
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--color-primary);
}

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

main {
  overflow: hidden;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 32, 41, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav.primary-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 0.25rem;
}

nav.primary-nav .btn-primary {
  color: #fff;
}

nav.primary-nav .btn-primary:hover,
nav.primary-nav .btn-primary:focus {
  color: #fff;
}

nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav.primary-nav a:hover::after,
nav.primary-nav a:focus::after,
nav.primary-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: #0b6aa6;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  background: #095985;
  box-shadow: 0 16px 32px rgba(31, 61, 78, 0.28);
}

.btn-outline {
  background: rgba(31, 61, 78, 0.12);
  color: var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(31, 61, 78, 0.2);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus {
  background: rgba(255, 255, 255, 0.22);
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
  padding: 0.9rem 1.75rem;
  box-shadow: 0 20px 40px rgba(9, 89, 133, 0.35);
}

.sticky-cta:hover,
.sticky-cta:focus {
  box-shadow: 0 24px 48px rgba(9, 89, 133, 0.42);
}

@media (max-width: 640px) {
  .sticky-cta {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1rem;
    text-align: center;
  }
}

.section {
  padding: 5rem 1.5rem;
}

.section-light {
  background: var(--color-light);
}

.section-dark {
  background: var(--color-dark);
  color: #fff;
}

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

.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-header span {
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: inherit;
}

.before-after-grid,
.detail-grid,
.landscape-grid,
.brand-grid {
  display: grid;
  gap: 1.5rem;
}

.before-after-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.before-after-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.before-after-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.before-after-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.paired-images {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.paired-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.paired-image span {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(16, 32, 41, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.detail-grid figure,
.landscape-grid figure {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.detail-grid figcaption,
.landscape-grid figcaption {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
}

.brand-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.brand-card img {
  margin: 0 auto;
  max-height: 96px;
  width: auto;
}

.brand-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.brand-card small {
  display: block;
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .paired-images {
    grid-template-columns: 1fr;
  }

  .brand-card img {
    max-height: 72px;
  }
}

.section-header p {
  max-width: 640px;
  color: var(--color-muted);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(120deg, rgba(16, 32, 41, 0.9), rgba(31, 61, 78, 0.65)), url('../images/cleaned-and-sealed-half-round-gutters.webp') center/cover no-repeat;
  color: #fff;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy p {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hero .checklist li {
  color: #fff;
}

.hero .checklist li::before {
  background: rgba(255, 255, 255, 0.18);
  color: #102029;
}

.hero-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.hero-links a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-links a:hover,
.hero-links a:focus {
  color: #fff;
  border-color: #fff;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero a:hover,
.hero a:focus,
.section-dark a:hover,
.section-dark a:focus,
.feature-band a:hover,
.feature-band a:focus {
  color: #fff;
}

.hero-icon-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.hero-icon-strip img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2));
}

@media (max-width: 600px) {
  .hero-icon-strip {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-icon-strip img {
    height: 48px;
  }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.trust-badge {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(31, 61, 78, 0.1);
}

.trust-badge-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .trust-badge {
    padding: 1.25rem 1rem;
    gap: 0.6rem;
  }

  .trust-badge-icon {
    width: 54px;
    height: 54px;
  }

  .trust-badge-icon img {
    width: 26px;
    height: 26px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-media {
  margin: -0.5rem -0.5rem 1rem;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.card p {
  color: var(--color-muted);
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.plan-inclusions {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--color-dark);
  font-weight: 500;
}

.plan-inclusions li + li {
  margin-top: 0.4rem;
}

.plan-inclusions li::marker {
  color: var(--color-primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(31, 61, 78, 0.08);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(76, 141, 125, 0.15);
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.before-after {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

.before-after img {
  display: block;
  width: 100%;
}

.before-after .after-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  --reveal: 50;
  clip-path: inset(0 calc(100% - (var(--reveal, 50) * 1%)) 0 0);
}

.before-after input[type=range] {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.55;
}

.checklist li::before {
  content: "✓";
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 600px) {
  .checklist li {
    font-size: 0.95rem;
    gap: 0.65rem;
  }

  .checklist li::before {
    flex-basis: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}

.link-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.link-list a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}

.link-list a:hover {
  color: var(--color-primary);
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card .content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

.form-card--on-dark {
  background: rgba(16, 32, 41, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.form-card--on-dark label {
  color: #fff;
}

.form-card--on-dark input,
.form-card--on-dark select,
.form-card--on-dark textarea {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  border: 1px solid rgba(16, 32, 41, 0.25);
}

.form-card--on-dark .form-note {
  color: rgba(255, 255, 255, 0.8);
}

.form-note {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 32, 41, 0.15);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 61, 78, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-area-list a {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.brand-badges img {
  height: 44px;
  width: auto;
}

.brand-badges img.rainwise-badge {
  height: 52px;
}

.footer-badges {
  margin: 1.25rem 0 0.75rem;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.hero-badges {
  margin-top: 2rem;
}

.hero-badges img {
  height: 56px;
}

.hero-badges img.rainwise-badge {
  height: 64px;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

thead {
  background: var(--color-primary);
  color: #fff;
}

td,
th {
  padding: 1rem;
  border-bottom: 1px solid rgba(16, 32, 41, 0.08);
  text-align: left;
}

.accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(16, 32, 41, 0.08);
}

.accordion-button {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(76, 141, 125, 0.08);
  padding: 0 1.5rem;
}

.accordion-content p {
  margin: 0;
  padding: 1rem 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 220px;
}

.accordion-item.active .accordion-button::after {
  transform: rotate(45deg);
}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.badge {
  background: rgba(76, 141, 125, 0.12);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.feature-band {
  background: linear-gradient(120deg, rgba(31, 61, 78, 0.95), rgba(76, 141, 125, 0.95));
  color: #fff;
  padding: 4rem 1.5rem;
}

.feature-band .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(31, 61, 78, 0.12);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  background: var(--color-secondary);
  color: #fff;
}

.category-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.category-filter button {
  border: none;
  background: rgba(31, 61, 78, 0.08);
  color: var(--color-primary);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.category-filter button.active {
  background: var(--color-secondary);
  color: #fff;
}

.hero-small {
  min-height: 340px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(16, 32, 41, 0.92), rgba(31, 61, 78, 0.72));
  color: #fff;
  padding: 5rem 1.5rem 3rem;
}

.hero-small h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-small p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.highlight {
  background: rgba(245, 166, 35, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  nav.primary-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-copy p {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-links {
    justify-content: center;
  }

  .card-media {
    margin: -0.25rem -0.25rem 0.75rem;
  }

  .form-card {
    padding: 2rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
