@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
  --primary: #C8102E;
  --primary-dark: #a00d25;
  --primary-light: #ffebee;
  --dark: #1e1e1e;
  --text-gray: #555;
  --light-gray: #f8f9fa;
  --white: #fff;
  --radius: 20px; 
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(200, 16, 46, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Vazirmatn', sans-serif;
  background: #f4f6f9; 
  color: var(--dark);
  line-height: 1.8;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--dark);
  font-size: 15px;
  position: relative;
  padding: 5px 0;
  cursor: pointer;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0; 
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

.header-cta {
  display: none;
}


.hero {
  padding: 160px 5% 120px;
  text-align: center;
  position: relative;
  background: #fff;
  color: white;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../pic/baner2.png'); 
  background-size: cover;
  background-position: center;
  opacity: 1; 
  transition: transform 12s ease-out;
  z-index: 1;
  filter: saturate(1.05); 
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.05) 50%, 
    rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero:hover .hero-bg {
  transform: scale(1.05); 
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); 
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 1;
  margin-bottom: 40px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}


.btn {
  padding: 12px 30px;
  border-radius: 12px; 
  font-size: 15px;
  font-family: inherit; 
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
  z-index: 5;
  border: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
  border: 1px solid var(--primary);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}


section {
  padding: 80px 8%;
}

.section-title {
  font-size: 30px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  font-weight: 800;
  color: var(--dark);
}

.section-title span {
  color: var(--primary); 
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(200, 16, 46, 0.1);
  z-index: -1;
  border-radius: 4px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch; 
}

.service-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.03); 
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; 
  position: relative;
  overflow: hidden;
  height: 100%; 
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 16, 46, 0.1);
}

.custom-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: 20px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.custom-icon svg {
  width: 42px;
  height: 42px;
  fill: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .custom-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

.service-card:hover .custom-icon svg {
  fill: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.service-card h3 {
  margin: 10px 0 15px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.service-card p {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.7;
  width: 100%;
}

.service-card .btn {
  width: 100%;
  margin-top: auto; 
  padding: 12px;
  font-size: 14px;
}

.service-img-box {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}


.page-view {
  display: none;
  padding-block: 48px 90px;
  animation: pageFade 0.5s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.table-container {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    0 2px 8px rgba(0,0,0,0.03);
  margin-top: 32px;
  -webkit-overflow-scrolling: touch;
}

.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
}

th {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  font-size: 15px;
  color: #333;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr {
  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

tbody tr:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.03);
}

tbody tr:hover td {
  color: var(--primary-dark);
}

.price-value {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary);
}

.last-update {
  font-size: 12px;
  color: #9ca3af;
  font-style: italic;
}

.table-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.table-title i {
  color: var(--primary);
  font-size: 1.1em;
}

.back-btn-container {
  margin-bottom: 32px;
}

.back-btn {
  border: 2px solid var(--dark) !important;
  color: var(--dark) !important;
  transition:
    all 0.25s ease,
    transform 0.2s ease;
}

.back-btn:hover {
  background: var(--dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-view {
    padding-top: 32px;
    padding-bottom: 70px;
  }
  th, td {
    padding: 14px 16px;
    font-size: 14px;
  }
  .table-title {
    font-size: 1.1rem;
  }
  .price-value {
    font-size: 1rem;
  }
}


.about-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-right: 6px solid var(--primary);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-box::after {
  content: '\f10d'; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  color: rgba(0,0,0,0.03);
  z-index: 0;
}

.about-text {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 2.2;
  text-align: justify;
  position: relative;
  z-index: 1;
}


#process {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.03) 0%, transparent 70%);
  z-index: 0;
}

.process-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: start;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  position: relative;
}


.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--dark);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 4px solid white;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--primary);
  transform: scale(1.1) rotate(10deg);
}

.step-card {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1),
    0 0 0 8px rgba(200,16,46,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.15),
    0 0 0 12px rgba(200,16,46,0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon {
  font-size: 40px;
  color: var(--primary);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 4px 8px rgba(200,16,46,0.4));
}

.step-content {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-step:hover .step-content::before {
  transform: scaleX(1);
}

.process-step:hover .step-content {
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.step-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px 0;
  position: relative;
  z-index: 2;
}

.step-content p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.process-step:hover::after {
  opacity: 1;
  height: 40px;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}

.contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 15px rgba(200, 16, 46, 0.2);
}

.contact-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.contact-info p {
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
}

.contact-info a {
  font-weight: 700;
  color: var(--dark);
  position: relative;
}

.contact-info a:hover {
  color: var(--primary);
}


footer {
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  color: #a0a0a0;
  padding: 70px 0 0;
  font-size: 14px;
  position: relative;
  direction: rtl; 
  text-align: right;
  border-top: 3px solid var(--primary); 
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden; 
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px; 
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0; 
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary); 
  transition: width 0.3s ease;
}

.footer-col:hover h4::before {
  width: 100%;
}

.footer-col p {
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.footer-col p:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05); 
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--primary);
  color: #fff; 
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(200, 16, 46, 0.4);
  border-color: var(--primary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-links ul li a i {
  margin-left: 8px; 
  font-size: 10px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-right: 8px; 
}

.footer-links ul li a:hover i {
  transform: translateX(-3px); 
}

.footer-contact p {
  display: flex;
  align-items: flex-start; 
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary);
  margin-left: 12px;
  font-size: 16px;
  margin-top: 5px; 
  min-width: 20px;
  text-align: center;
}

.footer-contact a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
  direction: ltr; 
  display: inline-block;
}

.footer-contact a:hover {
  color: var(--primary);
}

.copyright {
  background: #050505;
  text-align: center;
  padding: 25px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.copyright span {
  color: var(--primary);
  font-weight: 700;
  padding: 0 5px;
}



.mobile-menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  color: var(--dark, #222);
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  opacity: 0.8;
}

.mobile-menu-btn:active {
  transform: scale(0.92);
}



@media (min-width: 769px) {
  .header-cta {
    display: block;
  }
}



@media (max-width: 768px) {


  header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,.05);
    z-index: 1000;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }



  nav#mainNav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 18px;
    padding: 12px;

    box-shadow:
      0 10px 30px rgba(0,0,0,.08),
      0 3px 10px rgba(0,0,0,.04);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px);

    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;

    z-index: 999;
  }

  nav#mainNav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav#mainNav a {
    width: 100%;
    padding: 14px 16px;

    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    border-radius: 12px;

    transition:
      background .25s ease,
      color .25s ease,
      transform .25s ease;
  }

  nav#mainNav a:hover,
  nav#mainNav a:focus {
    background: #f5f7fa;
    color: var(--primary, #007bff);
    transform: translateX(-4px);
  }



  section {
    padding: 60px 20px;
  }





.hero {
  min-height: 120px;
  padding: 0 20px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #fff;
}

.hero::before {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  );
}

.hero-content {
  width: 100%;
  padding: 30px 0;
}

.hero-content h1 {
  font-size: 30px;
  line-height: 1.5;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
}

  

  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    text-align: center;
  }


  .services-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .about-box {
    padding: 25px;
    border-right-width: 4px;
    border-radius: 12px;
  }

  .about-box::after {
    font-size: 55px;
    opacity: .04;
  }



  .process-step::after {
    display: none;
  }

  .step-card {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
  }

  .step-icon {
    font-size: 26px;
  }



  .footer-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
  }

  .footer-col {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}