* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #070707;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(45, 159, 106, 0.12);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #2d9f6a 0%, #7cf0ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mail-pill {
  color: #c4f5d3;
  border: 1px solid rgba(45, 159, 106, 0.28);
  background: linear-gradient(135deg, rgba(45, 159, 106, 0.18), rgba(45, 159, 106, 0.06));
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d9f6a;
  margin: 5px 0 5px auto;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  max-width: 100%;
  height: 100vh;
  z-index: 1100;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  border-left: 1px solid rgba(45, 159, 106, 0.16);
  padding: 1.2rem 1.2rem 2rem;
  transition: right 0.35s ease;
  text-align: right;
}

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

.slide-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-menu-title {
  font-size: 1rem;
  font-weight: 700;
  color: #dfffe9;
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 159, 106, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #eafdf0;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.slide-menu a {
  display: block;
  width: 100%;
  color: #f0f0f0;
  padding: 1rem 0;
  border-radius: 12px;
  margin-bottom: 0.2rem;
  transition: 0.3s ease;
  text-align: right;
}

.slide-menu a:hover {
  background: rgba(45, 159, 106, 0.09);
  color: #88f3b3;
  padding-right: 0.75rem;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1005;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(45, 159, 106, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(45, 159, 106, 0.10), transparent 28%),
    linear-gradient(135deg, #161616 0%, #090909 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(45, 159, 106, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 159, 106, 0.22) 1px, transparent 1px);
  background-size: 82px 82px;
  animation: gridMove 18s linear infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding-bottom: 6.3rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c3f7d2;
  border: 1px solid rgba(45, 159, 106, 0.22);
  border-radius: 999px;
  background: rgba(45, 159, 106, 0.10);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2d9f6a 0%, #d8ffe2 45%, #76ebaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  color: #bdbdbd;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-points span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d2d2d2;
  font-size: 0.84rem;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  color: #c8f8d8;
  animation: scrollBounce 2s infinite;
  z-index: 3;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(124, 240, 171, 0.72);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  background: rgba(255, 255, 255, 0.02);
}

.scroll-wheel {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #7cf0ab;
  animation: wheelMove 1.6s infinite;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #7cf0ab;
  border-bottom: 2px solid #7cf0ab;
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(7px);
  }
  60% {
    transform: translateX(-50%) translateY(3px);
  }
}

@keyframes wheelMove {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2d9f6a 0%, #247a51 100%);
  box-shadow: 0 12px 28px rgba(45, 159, 106, 0.18);
}

.section {
  position: relative;
  padding: 4rem 0 3rem;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 159, 106, 0.34), transparent);
}

.contact {
  background: linear-gradient(135deg, #111111 0%, #171717 100%);
}

.emergency {
  background: linear-gradient(135deg, #161616 0%, #0b0b0b 100%);
}

.services {
  background: linear-gradient(135deg, #0a0a0a 0%, #171717 100%);
}

.portfolio {
  background: linear-gradient(135deg, #101010 0%, #181818 100%);
}

.support {
  background: linear-gradient(135deg, #0b0b0b 0%, #111111 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  margin-bottom: 0.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2d9f6a 0%, #c9ffd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #aaaaaa;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
}

.card-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.info-card,
.wide-card,
.project-card,
.support-box {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.90), rgba(18, 18, 18, 0.95));
  border: 1px solid rgba(45, 159, 106, 0.16);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.info-card,
.wide-card {
  padding: 1.35rem;
}

.info-card h3,
.wide-card h3,
.support-box h2 {
  color: #7be7a7;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.info-card p,
.wide-card p {
  color: #c4c4c4;
}

.info-card p + p {
  margin-top: 0.55rem;
}

.wide-card {
  margin-top: 1rem;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.portfolio-grid-3only {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 159, 106, 0.34);
}

.browser-frame {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0;
}

.browser-bar {
  height: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.7rem;
  background: #171717;
  border-bottom: none;
  line-height: normal;
}

.browser-left,
.browser-right {
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c840;
}

.browser-domain {
  font-size: 0.56rem;
  text-align: center;
  color: #98a098;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.browser-right span {
  width: 10px;
  text-align: center;
  font-size: 0.58rem;
  color: #8c8c8c;
  line-height: 1;
}

.shot-wrap {
  height: 172px;
  background: #0d0d0d;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.shot-wrap img {
  display: block;
  width: 100%;
  height: 172px;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: top center;
  vertical-align: top;
  background: #0d0d0d;
}

.project-info {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.project-info h3 {
  color: #efefef;
  font-size: 0.98rem;
  margin: 0;
  word-break: break-word;
  line-height: 1.25;
}

.project-text {
  margin: 0;
  font-size: 0.71rem;
  line-height: 1.4;
  color: #a2a2a2;
  min-height: 40px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
}

.tag-wordpress {
  background: rgba(0, 133, 186, 0.16);
  border: 1px solid rgba(0, 133, 186, 0.28);
  color: #82cfee;
}

.tag-elementor {
  background: rgba(211, 41, 120, 0.14);
  border: 1px solid rgba(211, 41, 120, 0.26);
  color: #ff89bf;
}

.tag-ecommerce {
  background: rgba(45, 159, 106, 0.16);
  border: 1px solid rgba(45, 159, 106, 0.26);
  color: #a8f2c3;
}

.tag-shopify {
  background: rgba(149, 191, 71, 0.16);
  border: 1px solid rgba(149, 191, 71, 0.26);
  color: #c3ea93;
}

.tag-html {
  background: rgba(255, 123, 73, 0.14);
  border: 1px solid rgba(255, 123, 73, 0.24);
  color: #ffb28a;
}

.tag-custom {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0f0f0;
}

.contact-link {
  color: #dfffe9;
  font-weight: 700;
}

.support-box {
  padding: 1.25rem 1.35rem;
}

.support-box-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-box-minimal h2 {
  margin-bottom: 0;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #8c8c8c;
  font-size: 0.92rem;
  background: #050505;
  border-top: 1px solid rgba(45, 159, 106, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(117, 234, 164, 0.95), rgba(117, 234, 164, 0));
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  10%, 85% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(80px);
  }
}

@media (max-width: 1180px) {
  .portfolio-grid-3only {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .card-grid-3,
  .portfolio-grid-3only {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .logo {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .mail-pill {
    display: none;
  }

  .support-box-minimal {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 0 2.8rem;
  }

  .hero-content {
    padding-bottom: 6.2rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.55rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .scroll-down {
    bottom: 0.4rem;
  }
}

@media (max-width: 640px) {
  .card-grid-3,
  .portfolio-grid-3only {
    grid-template-columns: 1fr;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
  }

  .hero-points span {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .shot-wrap {
    height: 220px;
  }

  .shot-wrap img {
    height: 220px;
  }

  .slide-menu {
    width: 100%;
    right: -100%;
  }

  .hero-content {
    padding-bottom: 5.6rem;
  }

  .scroll-down {
    bottom: 0.6rem;
  }
}