:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0d1b2a;
  --accent: #4caf50;
  --accent-light: #66bb6a;
  --accent-dark: #388e3c;
  --gold: #d4a853;
  --gold-light: #e6c47f;
  --white: #fff;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
  --dark-gray: #757575;
  --text: #212121;
  --text-light: #616161;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --font-family: "Heebo", sans-serif;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --font-scale-factor: 1;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale-factor)) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body,
button,
input,
textarea,
select,
p,
span,
div,
a,
label {
  font-size: calc(1em * var(--font-scale-factor)) !important;
}
html.font-size-90 {
  --font-scale-factor: 0.9;
}
html.font-size-95 {
  --font-scale-factor: 0.95;
}
html.font-size-100 {
  --font-scale-factor: 1;
}
html.font-size-105 {
  --font-scale-factor: 1.05;
}
html.font-size-110 {
  --font-scale-factor: 1.1;
}
html.invert {
  filter: invert(100%);
}
html.grayscale {
  filter: grayscale(100%);
}
html.readable-font,
html.readable-font body,
html.readable-font input,
html.readable-font textarea,
html.readable-font button,
html.readable-font select,
html.readable-font label,
html.readable-font span,
html.readable-font p,
html.readable-font div,
html.readable-font a {
  font-family:
    "Arial Rounded MT Bold", "Tahoma", "Verdana", system-ui, sans-serif !important;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
html.underline-links a,
html.underline-links a *,
html.underline-links button,
html.underline-links [role="button"],
html.underline-links [data-link="true"] {
  text-decoration: underline !important;
}
html.high-contrast {
  --category-hover-bg: #333 !important;
  --category-active-bg: #444 !important;
  --color-bg: #000 !important;
  --color-text-strong: #ff0 !important;
  --color-border: #ff0 !important;
  --color-chip: #000 !important;
}
html.high-contrast,
html.high-contrast body,
html.high-contrast main {
  background-color: var(--color-bg) !important;
  color: var(--color-text-strong) !important;
}
html.high-contrast
  :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    small,
    strong,
    em,
    li,
    dd,
    dt,
    a,
    button,
    label
  ) {
  color: var(--color-text-strong) !important;
}
html.high-contrast [class*="bg-"] {
  background-color: var(--color-bg) !important;
}
html.high-contrast .border {
  border-color: var(--color-border) !important;
}
html.high-contrast :is(button, input, textarea, select, section, div) {
  background-color: var(--color-bg) !important;
  color: var(--color-text-strong) !important;
  border-color: var(--color-border) !important;
}
html.high-contrast img {
  border: 2px solid var(--color-border) !important;
  border-radius: 4px;
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ====================================
   UTILITY CLASSES
   ==================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 30px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(13, 27, 42, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-logo-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 2rem;
}

.hero-logo-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.7;
}

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

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
  background: var(--white);
  padding: 10px 0;
}

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

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
}

.service-content {
  padding: 30px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
  background: var(--light-gray);
  padding: 20px 0;
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  height: 500px;

  background: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-content .highlight {
  color: var(--primary);
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 40px;
  height: 40px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.about-feature span {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

/* ====================================
   STATISTICS SECTION - GREEN BAR
   ==================================== */
.stats {
  background: var(--accent);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

/* ====================================
   PROCESS SECTION
   ==================================== */
.process {
  background: var(--white);
  padding: 20px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -20px;
  width: 40px;
  height: 2px;
  background: var(--gray);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ====================================
   CLIENTS SECTION
   ==================================== */
.clients {
  background: var(--light-gray);
  padding: 20px 0;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-logo {
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 120px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-logo img {
  width: auto;
  border-radius: 8px;
  opacity: 0.75;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.client-logo:hover img {
  filter: grayscale(20%);
  opacity: 0.7;
}

.client-placeholder {
  font-size: 0.95rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
  background: var(--white);
  padding: 20px 100px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  width: 55px;
  height: 55px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.contact-item-text h4 {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-item-text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-item-text a {
  color: var(--primary);
}

.contact-item-text a:hover {
  color: var(--accent);
}

/* Contact Form */
.form-embed {
  max-width: 800px;
  margin: 0 auto;
  direction: rtl;
}

.form-embed iframe {
  width: 100%;
  height: 1305px;
  border: none;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.faq {
  background: var(--light-gray);
  padding: 2px 20px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social i {
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.a11y {
  position: fixed;
  left: 0;
  bottom: 4.5rem;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
.a11y-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 0 9999px 9999px 0;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.a11y-panel {
  width: min(13rem, 85vw);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.a11y-title {
  font-weight: 700;
  color: var(--text);
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
}
.a11y-item {
  width: 100%;
  border: 1px solid var(--gray);
  background: transparent;
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}
.a11y-item:hover {
  background: var(--light-gray);
  border-color: var(--dark-gray);
  transform: translateY(-1px);
}
.a11y-item.is-selected {
  background: rgba(76, 175, 80, 0.12);
  border-color: rgba(76, 175, 80, 0.55);
  font-weight: 700;
}
#a11yPanel[hidden] {
  display: none !important;
}
.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a11y-btn {
  transform: scale(0.8);
  transform-origin: center;
}
.a11y-btn i {
  font-size: 22px;
}

/* ====================================
   WHATSAPP FLOATING BUTTON
   ==================================== */
.whatsapp-float {
  position: fixed;
  bottom: 125px;
  left: 25px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 1.75rem;
  color: var(--white);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ====================================
   MOBILE MENU
   ==================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transition: var(--transition-slow);
  padding: 80px 30px 40px;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  left: 25px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ====================================
   ANIMATIONS
   ==================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 15px;
    left: 2px;
  }
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 350px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 0;
  }

  .stat-item {
    padding: 24px 0;
  }

  .stat-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .clients-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .client-logo {
    min-width: 0;
    min-height: 110px;
    padding: 18px;
    border-radius: 18px;
  }

  .client-logo img {
    width: auto;
  }
  .contact {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-logo-text {
    font-size: 2.25rem;
  }

  .hero-logo-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .clients-grid {
    gap: 15px;
  }

  .about-content {
    padding: 30px 25px;
    height: 700px;
  }
  .footer-links {
    gap: 12px;
  }
}
