/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --primary: #e43636;
  --primary-dark: #942815;
  --dark: #1c1f26;
  --darker: #12141a;
  --muted: #6b7280;
  --light: #f5f6f8;
  --white: #fff;
  --radius: 6px;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff
}

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

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

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: .5px
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff
}

.btn-ghost:hover {
  background: #fff;
  color: var(--dark)
}

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

.btn-dark:hover {
  background: #000
}

/* Top bar */
.top-bar {
  background: var(--darker);
  color: #cfd2d8;
  font-size: 13px;
  padding: 10px 0
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.top-left span {
  margin-right: 20px
}

.top-left i {
  color: var(--primary);
  margin-right: 6px
}

.top-social a {
  margin-left: 12px;
  color: #cfd2d8;
  transition: var(--transition)
}

.top-social a:hover {
  color: var(--primary)
}

/* Header */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .2)
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none !important;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  max-width: 280px;
  background: rgba(20, 23, 29, .98);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
  padding: 6px 0;
  z-index: 150;
}

.nav-dropdown:hover .dropdown-menu {
  display: block !important;
}

.dropdown-menu a {
  color: #f5f5f7;
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--primary);
}

@media (max-width: 900px) {
  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 8px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 0 12px 14px;
    color: #fff;
  }
}

.dropdown-menu li {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff
}

.logo svg {
  max-width: 180px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column
}

.logo-text strong {
  color: var(--primary)
}

.logo-text small {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #aab;
  margin-top: 4px
}

.main-nav ul {
  display: flex;
  gap: 6px
}

.main-nav a {
  color: #fff;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition)
}

.main-nav a:hover {
  color: var(--primary)
}

.nav-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px
}

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('../images/hero.png') center/cover no-repeat;
  color: #fff
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 17, 22, .85) 0%, rgba(15, 17, 22, .55) 60%, rgba(15, 17, 22, .3) 100%)
}

.hero-content {
  position: relative;
  padding: 100px 20px;
  max-width: 1200px
}

.hero-eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 13px
}

.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: #dcdfe4;
  margin-bottom: 30px;
  max-width: 560px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* CTA bar */
.cta-bar {
  background: var(--primary);
  color: #fff;
  padding: 28px 0
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.cta-icon {
  font-size: 44px;
  opacity: .9
}

.cta-text {
  flex: 1;
  min-width: 220px
}

.cta-text h3 {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 4px
}

.cta-text p {
  opacity: .9;
  font-size: 14px
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Sections */
section {
  padding: 90px 0
}

.section-head {
  text-align: center;
  margin-bottom: 50px
}

.eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark)
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px
}

.check-list {
  margin: 20px 0 26px
}

.check-list li {
  padding: 6px 0;
  color: #333
}

.check-list i {
  color: var(--primary);
  margin-right: 10px
}

/* Services */
.service-split {
  background: #fff;
  padding: 20px 0 90px
}

.service-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.split-card {
  min-height: 320px;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12)
}

.split-card-commercial {
  background: linear-gradient(135deg, rgba(28, 31, 38, .96), rgba(228, 54, 54, .72)), url('../images/service1.jpg') center/cover no-repeat;
  color: #fff
}

.split-card-domestic {
  background: linear-gradient(135deg, rgba(28, 31, 38, .96), rgba(17, 24, 39, .7)), url('../images/service3.jpg') center/cover no-repeat;
  color: #fff
}

.split-content {
  max-width: 500px
}

.split-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff
}

.split-content p {
  color: #f3f4f6;
  margin-bottom: 22px
}

.services {
  background: var(--light)
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .06);
  transition: var(--transition)
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.service-img {
  height: 220px;
  overflow: hidden
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.service-card:hover .service-img img {
  transform: scale(1.08)
}

.service-body {
  padding: 30px 24px;
  position: relative
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px
}

.service-list li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 14px;
  position: relative
}

.service-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: -28px 0 16px
}

.service-body h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px
}

.service-body p {
  color: var(--muted);
  font-size: 15px
}

.section-copy {
  max-width: 760px;
  margin: 12px auto 0;
  color: #4b5563;
  font-size: 16px
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600
}

.service-link:hover {
  color: var(--primary-dark)
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start
}

.service-detail-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05)
}

.service-detail-card h3 {
  margin-bottom: 10px
}

/* Stats */
.stats {
  position: relative;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12, 15, 20, 0.95) 0%, rgba(28, 31, 38, 0.92) 45%, rgba(228, 54, 54, 0.78) 100%),
    url('../images/hero3.jpg') center/cover no-repeat fixed;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .1));
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stats-grid>div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.stats-grid h3 {
  font-size: 44px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px
}

.stats-grid p {
  color: #f3f4f6;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: block;
  transition: var(--transition)
}

.project:hover,
.project:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  outline: none
}

.project img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.project:hover img {
  transform: scale(1.08)
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  color: #fff;
  padding: 26px 20px 20px
}

.project-info h4 {
  font-size: 19px;
  margin-bottom: 4px
}

.project-info span {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 1px
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.lightbox.is-open {
  display: flex
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  text-align: center
}

.lightbox-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35)
}

.lightbox-caption {
  color: #fff;
  margin-top: 14px;
  font-size: 16px
}

/* Gallery */
.gallery-section {
  background: #fff;
  padding: 90px 0
}

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

.gallery-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover
}

.gallery-info {
  padding: 20px 22px 24px
}

.gallery-info h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 18px
}

.gallery-info p {
  color: var(--muted);
  font-size: 14px
}

/* Reviews */
.reviews-section {
  background: var(--light);
  padding: 90px 0
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px
}

.reviews-track {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
}

.review-slide {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  animation: slideIn .45s ease;
}

.review-slide.is-active {
  display: grid
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  text-align: center;
}

.review-stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.review-card p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8
}

.review-card h4 {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600
}

.carousel-control {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.carousel-control:hover {
  background: var(--primary);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--primary);
}

/* Contact */
.contact {
  background: var(--light)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px
}

.contact-info h2 {
  font-size: 32px;
  color: var(--dark);
  margin: 10px 0 16px
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 24px
}

.contact-list li {
  padding: 10px 0;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px
}

.contact-list i {
  color: var(--primary);
  width: 20px
}

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e5ea;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  background: #fafbfc
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff
}

.contact-form textarea {
  margin-bottom: 16px;
  resize: vertical
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px
}

.form-status.success {
  color: #16a34a
}

.form-status.error {
  color: #dc2626
}

/* Footer */
.site-footer {
  background: var(--darker);
  color: #cfd2d8;
  padding-top: 70px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  width: 100%;
  max-width: 280px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
  object-fit: contain;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px
}

.footer-grid ul li {
  padding: 6px 0;
  font-size: 14px
}

.footer-grid ul li a:hover {
  color: var(--primary)
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #22252d;
  border-radius: 50%;
  margin-right: 8px;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff
}

.footer-bottom {
  border-top: 1px solid #22252d;
  padding: 20px 0;
  font-size: 14px;
  text-align: center
}

/* Responsive */
@media (max-width:900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .service-split-grid,
  .services-grid,
  .projects-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

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

@media (max-width:640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 20px
  }

  .main-nav.open {
    display: block
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #22252d
  }

  .nav-toggle {
    display: inline-flex
  }

  .service-split-grid,
  .services-grid,
  .projects-grid,
  .gallery-grid,
  .reviews-grid,
  .stats-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

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

  section {
    padding: 60px 0
  }
}

/* ===== Page banner ===== */
.page-banner {
  position: relative;
  padding: 140px 0 110px;
  background:
    linear-gradient(135deg, rgba(12, 15, 20, .92) 0%, rgba(28, 31, 38, .78) 45%, rgba(228, 54, 54, .64) 100%),
    url('../images/hero.png') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.page-banner.inner {
  position: relative;
  padding: 140px 0 110px;
  background:
    linear-gradient(135deg, rgba(12, 15, 20, .92) 0%, rgba(28, 31, 38, .78) 45%, rgba(228, 54, 54, .64) 100%),
    url('../images/hero-inner.png') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.page-banner.inner2 {
  position: relative;
  padding: 140px 0 110px;
  background:
    linear-gradient(135deg, rgba(12, 15, 20, .92) 0%, rgba(28, 31, 38, .78) 45%, rgba(228, 54, 54, .64) 100%),
    url('../images/hero-inner2.png') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 0%, transparent 35%, transparent 65%, rgba(255, 255, 255, .06) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.page-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.page-banner h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .25);
}

.page-banner .crumbs {
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.page-banner .crumbs a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.page-banner .crumbs a:hover {
  color: #ffd1d1;
}

.page-banner .crumbs span {
  margin: 0 8px;
  color: rgba(255, 255, 255, .75);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  text-align: center
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block
}

.team-card .tb {
  padding: 18px
}

.team-card h4 {
  margin: 0 0 4px;
  font-size: 18px
}

.team-card span {
  color: #e63946;
  font-size: 13px;
  font-weight: 600
}

/* Project filter grid reuse */
.page-section {
  padding: 80px 0
}

.seo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px
}

.seo-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) 1.05fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.seo-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px
}

.seo-copy h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark)
}

.seo-copy p {
  color: #4b5563;
  margin-bottom: 12px
}

.seo-list {
  display: grid;
  gap: 8px
}

.seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #374151;
  font-size: 14px
}

.seo-list i {
  color: var(--primary);
  margin-top: 4px
}

@media (max-width: 900px) {
  .seo-stack {
    grid-template-columns: 1fr
  }

  .seo-block {
    grid-template-columns: 1fr
  }
}