/* ============================================
   Hesarix — Cybersecurity Landing Page
   style.css
   ============================================ */

/* ---------- Font Faces ---------- */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Variables ---------- */
:root {
  --c-bg: #0a0e1a;
  --c-card: #111827;
  --c-card-hover: #1a2332;
  --c-border: #1e293b;
  --c-blue: #00d4ff;
  --c-green: #00ff88;
  --c-muted: #94a3b8;
  --c-text: #e2e8f0;
  --c-white: #ffffff;
  --font-fa: "Vazirmatn", "Inter", system-ui, sans-serif;
  --font-en: "Inter", "Vazirmatn", system-ui, sans-serif;
  --font-active: var(--font-fa);
  --header-h: 64px;
  --max-w: 1200px;
}

html[lang="en"] {
  --font-active: var(--font-en);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-active);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-bar {
  width: 5rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  margin: 0 auto 1rem;
}

.section-intro {
  text-align: center;
  color: var(--c-muted);
  max-width: 40rem;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

/* ---------- Scroll Animation ---------- */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim.delay-1 { transition-delay: 0.1s; }
.anim.delay-2 { transition-delay: 0.2s; }
.anim.delay-3 { transition-delay: 0.3s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.logo svg:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--c-muted);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.desktop-nav a:hover {
  color: var(--c-blue);
  background: rgba(0, 212, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--c-border);
  border-radius: 0.5rem;
  color: var(--c-muted);
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.hamburger {
  display: none;
  padding: 0.5rem;
  color: var(--c-muted);
  transition: color 0.2s;
}

.hamburger:hover {
  color: var(--c-white);
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--c-border);
  padding: 1rem 1.5rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--c-muted);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--c-blue);
  background: rgba(0, 212, 255, 0.05);
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--c-bg), transparent 30%, transparent 70%, var(--c-bg));
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  padding: 0 1.5rem;
}

.hero-logo {
  width: 128px;
  height: 128px;
  margin: 0 auto 2rem;
  animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
  background: linear-gradient(90deg, var(--c-blue), var(--c-white), var(--c-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--c-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  color: var(--c-bg);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: opacity 0.2s, transform 0.2s;
  animation: fadeInUp 0.6s ease 0.6s both, pulseGlow 2s ease-in-out infinite 1s;
}

.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 212, 255, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

.mission-card {
  background: linear-gradient(135deg, var(--c-card), #0f172a);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.mission-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mission-icon.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--c-blue);
}

.mission-icon.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--c-green);
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--c-muted);
  line-height: 1.8;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-muted);
}

.values-list .check-icon {
  color: var(--c-green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5), transparent);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  background: linear-gradient(135deg, var(--c-card), #0f172a);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

html[dir="rtl"] .service-card::before {
  transform-origin: right;
}
html[dir="ltr"] .service-card::before {
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  text-align: start;
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-wrap.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--c-blue);
}

.service-icon-wrap.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--c-green);
}

.service-header-text {
  flex: 1;
  min-width: 0;
}

.service-header-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
}

.service-header-text p {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .service-header-text p {
    white-space: normal;
  }
}

.service-chevron {
  flex-shrink: 0;
  color: var(--c-muted);
  transition: transform 0.3s;
}

.service-card.open .service-chevron {
  transform: rotate(180deg);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-card.open .service-body {
  max-height: 800px;
}

.service-body-inner {
  padding: 0 1.5rem 1.5rem;
}

.service-body-inner .divider {
  border-top: 1px solid var(--c-border);
  padding-top: 1.25rem;
}

.service-body-inner .description {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem 1.5rem;
}

.sub-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
}

.sub-service-item .check-icon {
  color: var(--c-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.sub-service-item span {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.deliverables-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.deliverable-item .file-icon {
  color: var(--c-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-card {
  background: linear-gradient(135deg, var(--c-card), #0f172a);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.clients-table {
  width: 100%;
  border-collapse: collapse;
}

.clients-table th {
  background: rgba(0, 212, 255, 0.08);
  padding: 1rem 1.5rem;
  text-align: start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-blue);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.clients-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}

.clients-table tr:hover td {
  background: rgba(0, 212, 255, 0.03);
}

.clients-table .sector-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.clients-table .sector-cell svg {
  color: var(--c-blue);
  flex-shrink: 0;
}

.clients-table .sector-cell span {
  font-weight: 500;
  color: var(--c-text);
}

.clients-table .count-cell {
  color: var(--c-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.clients-table .type-cell {
  color: var(--c-muted);
}

.clients-note {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--c-border);
  background: rgba(0, 212, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-muted);
}

.clients-note svg {
  color: var(--c-blue);
  flex-shrink: 0;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certs-section {
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5), transparent);
}

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

.cert-badge {
  background: linear-gradient(135deg, var(--c-card), #1a1a2e);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 10% 100%, 0 85%);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cert-badge:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.cert-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s;
}

.cert-badge:hover .cert-icon-wrap {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 136, 0.3));
}

.cert-icon-wrap svg {
  color: var(--c-green);
}

.cert-badge h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.cert-badge .issuer {
  font-size: 0.85rem;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
}

.cert-badge .domain {
  font-size: 0.85rem;
  color: var(--c-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-card {
  max-width: 36rem;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-card), #0f172a);
  border: 1px solid var(--c-border);
  border-radius: 0.75rem;
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--c-blue);
}

.contact-icon-wrap.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--c-green);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
}

.contact-value a {
  color: var(--c-blue);
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--c-green);
}

.contact-divider {
  border-top: 1px solid var(--c-border);
  margin: 1.5rem 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--c-border);
  background: #080c16;
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-logo span {
  font-size: 0.85rem;
  color: var(--c-muted);
}

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

.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--c-blue);
}

.footer-domain {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-blue);
  transition: color 0.2s;
}

.footer-domain:hover {
  color: var(--c-green);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

html[dir="rtl"] .back-to-top {
  left: 1.5rem;
}
html[dir="ltr"] .back-to-top {
  right: 1.5rem;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  border-color: var(--c-blue);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  .clients-table th,
  .clients-table td {
    padding: 0.75rem 1rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sub-services-grid {
    grid-template-columns: 1fr;
  }
}
