*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #ffffff;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.utility-bar {
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.78rem;
  color: #4b5563;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #16a34a;
  font-weight: 500;
}

.utility-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #84cc16, #e5e7eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #022c22;
  box-shadow: 0 0 0 1px rgba(190, 242, 100, 0.7), 0 8px 20px rgba(22, 163, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-mark:hover::before {
  opacity: 1;
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.logo-text small {
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.7;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  color: #4b5563;
  opacity: 0.9;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #84cc16, #16a34a);
  transition: width 0.16s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
}

.nav-cta {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #84cc16;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: #ffffff;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(132, 204, 22, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.accent {
  display: inline-block;
  background: linear-gradient(to right, #84cc16, #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 32rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  color: inherit;
}

.btn.primary {
  background: linear-gradient(120deg, #84cc16, #16a34a);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.4);
}

.btn.ghost:hover {
  border-color: #84cc16;
  background: #ecfdf3;
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: #d1d5db;
  background: #ffffff;
}

.btn.small {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

.btn.full-width {
  width: 100%;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.metric {
  min-width: 110px;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease;
}

.metric:hover .metric-value {
  transform: scale(1.1);
  color: #84cc16;
}

.metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.hero-metrics-panel {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.hero-metrics-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #84cc16, #16a34a, #84cc16);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.glass-panel {
  width: 100%;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 1.4rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(132, 204, 22, 0.12);
}

.glass-panel h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.glass-panel p {
  font-size: 0.9rem;
  color: #4b5563;
}

.glass-panel ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.glass-panel ul li::before {
  content: "•";
  color: #facc15;
  margin-right: 0.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}

.badge-alt {
  border-color: #84cc16;
  background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
  position: relative;
  overflow: hidden;
}

.badge-alt::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.section {
  padding: 3rem 0;
  background: #ffffff;
}

.section-alt {
  background: #f9fafb;
}

.section + .section {
  border-top: 1px solid #f3f4f6;
}

.section-heading {
  text-align: left;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0 0 0.3rem;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #84cc16, #16a34a);
  border-radius: 999px;
  animation: expandWidth 0.8s ease-out 0.3s backwards;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.section-heading p {
  margin: 0;
  color: #4b5563;
  max-width: 34rem;
  font-size: 0.94rem;
}

.partners-marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-marquee {
  display: flex;
  gap: 2rem;
  width: fit-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.partners-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.partner-card:hover {
  transform: translateY(-6px) scale(1.08);
  border-color: #84cc16;
  box-shadow: 0 10px 24px rgba(132, 204, 22, 0.25);
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.15);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
}

.partners-grid-alt {
  gap: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.service-card,
.value-card,
.team-card,
.gallery-card,
.blog-card {
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.1rem 1.2rem;
  background: #ffffff;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.service-card:hover,
.value-card:hover,
.team-card:hover,
.gallery-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: #84cc16;
  box-shadow: 0 12px 32px rgba(132, 204, 22, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.card-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #84cc16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-icon::after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #16a34a;
}

.card-icon-network::after {
  width: 12px;
}

.card-icon-system::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.card-icon-training::after {
  width: 2px;
  height: 10px;
}

.card-icon-branding::after {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.service-card h3,
.value-card h3,
.team-card h3,
.gallery-card h3,
.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.service-card p,
.value-card p,
.team-card p,
.gallery-card p,
.blog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #84cc16;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.service-card:hover .card-link,
.value-card:hover .card-link,
.gallery-card:hover .card-link,
.blog-card:hover .card-link {
  color: #16a34a;
  gap: 0.6rem;
}

.service-card:hover .card-link::after,
.value-card:hover .card-link::after,
.gallery-card:hover .card-link::after,
.blog-card:hover .card-link::after {
  transform: translateX(4px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 3rem;
  color: #84cc16;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #84cc16;
  box-shadow: 0 12px 28px rgba(132, 204, 22, 0.12);
}

.testimonial-quote {
  margin-top: 0;
  font-size: 0.95rem;
}

.testimonial-name {
  margin: 0.9rem 0 0.1rem;
  font-weight: 600;
}

.testimonial-role {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.contact-preview {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: center;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.3rem;
  font-size: 0.9rem;
}

.emergency-phone {
  font-weight: 600;
  font-size: 1.05rem;
}

.site-footer {
  padding-top: 2.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 360px;
}

.footer-title {
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.footer-sub {
  margin: 0;
  font-size: 0.84rem;
  color: #6b7280;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-columns h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111827;
}

.footer-columns a {
  display: block;
  margin-bottom: 0.25rem;
  color: #4b5563;
}

.footer-phone-label {
  margin-top: 0.6rem;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-phone {
  font-weight: 600;
  color: #16a34a;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 0.9rem 0 1.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-bottom-inner {
  text-align: center;
}

.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  animation: fadeIn 0.8s ease-out;
}

.page-hero h1 {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.page-hero .page-intro {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
}

.page-intro {
  margin: 0;
  max-width: 36rem;
  color: #4b5563;
  font-size: 0.96rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.panel {
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.1rem 1.2rem;
  background: #ffffff;
  font-size: 0.9rem;
  color: #111827;
}

.panel-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "▹";
  color: #84cc16;
  margin-right: 0.4rem;
}

.feature-list.small {
  font-size: 0.86rem;
}

.team-grid {
  position: relative;
}

.team-card {
  position: relative;
  overflow: visible;
}

.team-card-photo {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 110px;
  height: 110px;
  border-radius: 0.8rem;
  border: 3px solid #ffffff;
  overflow: hidden;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.2);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInScale 0.6s ease-out backwards;
}

.team-card:nth-child(1) .team-card-photo { animation-delay: 0.1s; }
.team-card:nth-child(2) .team-card-photo { animation-delay: 0.2s; }
.team-card:nth-child(3) .team-card-photo { animation-delay: 0.3s; }
.team-card:nth-child(4) .team-card-photo { animation-delay: 0.4s; }
.team-card:nth-child(5) .team-card-photo { animation-delay: 0.5s; }

.team-card:hover .team-card-photo {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 20px rgba(132, 204, 22, 0.3);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.team-grid .avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #bbf7d0, #84cc16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.team-card:hover .avatar-circle {
  transform: scale(1.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.web-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.web-project-card {
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  animation: fadeInUp 0.6s ease-out backwards;
}

.web-project-card:nth-child(1) { animation-delay: 0.1s; }
.web-project-card:nth-child(2) { animation-delay: 0.2s; }
.web-project-card:nth-child(3) { animation-delay: 0.3s; }
.web-project-card:nth-child(4) { animation-delay: 0.4s; }

.web-project-card:hover {
  transform: translateY(-8px);
  border-color: #84cc16;
  box-shadow: 0 16px 40px rgba(132, 204, 22, 0.2);
}

.web-project-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.web-project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.web-project-card:hover .web-project-image::before {
  opacity: 1;
}

.web-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-project-content {
  padding: 1.2rem 1.3rem;
}

.web-project-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.web-project-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.web-project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #84cc16;
  font-weight: 500;
}

.web-project-card:hover .web-project-link {
  color: #16a34a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.blog-tag {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #84cc16;
}

.contact-form {
  border-radius: 1.1rem;
  border: 1px solid #e5e7eb;
  padding: 1.4rem 1.5rem;
  background: #ffffff;
}

.field-group {
  margin-bottom: 1rem;
}

.field-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: #111827;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #84cc16;
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

textarea {
  resize: vertical;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.4rem 0.9rem;
  background: #ffffff;
  font-size: 0.82rem;
  cursor: pointer;
}

.pill.selected {
  border-color: #84cc16;
  background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.2);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.contact-info {
  display: grid;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.contact-info h2 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.contact-info p {
  margin: 0;
  color: #d1d5db;
}

.emergency-card {
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px dashed #d1d5db;
}

.emergency-card p {
  margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .contact-preview {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-visual {
    align-items: stretch;
  }

  .partners-marquee-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .team-card-photo {
    width: 70px;
    height: 70px;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 56px 1.5rem auto;
    border-radius: 0.9rem;
    padding: 0.7rem 0.9rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .main-nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .utility-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-metrics {
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}


