@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@400;500&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #07111F;
  color: #e8edf2;
  overflow-x: hidden;
}

/* ── Navigation ── */
.jw-nav {
  background: #07111F;
  border-bottom: 1px solid rgba(57, 211, 83, 0.15);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.jw-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}
.jw-logo span { color: #39D353; }

.jw-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.jw-nav-links a {
  color: #a0adb8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.jw-nav-links a:hover { color: #e8edf2; }

.jw-nav-cta {
  background: #39D353 !important;
  color: #07111F !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
}
.jw-nav-cta:hover {
  background: #2ebd48 !important;
  color: #07111F !important;
}

/* ── Hero ── */
.jw-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07111F;
}

.jw-hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.06;
  pointer-events: none;
}
.jw-hero-bg div { border: 0.5px solid #39D353; }

.jw-hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #39D353;
}

.jw-hero-content {
  position: relative;
  padding: 60px 48px;
  max-width: 600px;
}

.jw-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #39D353;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.jw-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #39D353;
}

.jw-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.jw-hero h1 em {
  font-style: normal;
  color: #39D353;
}

.jw-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #7a8fa0;
  max-width: 420px;
  margin-bottom: 36px;
}

.jw-hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.jw-hero-stats {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  gap: 36px;
}
.jw-stat { text-align: right; }
.jw-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  line-height: 1;
}
.jw-stat-num span { color: #39D353; }
.jw-stat-label {
  font-size: 11px;
  color: #4d6070;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Buttons ── */
.btn-primary {
  background: #39D353;
  color: #07111F;
  border: none;
  padding: 14px 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #2ebd48; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #a0adb8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 13px 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #e8edf2;
}

/* ── Ticker ── */
.jw-ticker {
  background: #39D353;
  color: #07111F;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.jw-ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.jw-ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
}
.jw-ticker-dot {
  color: rgba(7, 17, 31, 0.4);
  margin-right: 8px;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section shared ── */
.jw-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #39D353;
  margin-bottom: 8px;
}
.jw-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  line-height: 1.05;
}

/* ── Services ── */
.jw-services {
  padding: 72px 32px;
  background: #0b1926;
}
.jw-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(57, 211, 83, 0.08);
  border: 1px solid rgba(57, 211, 83, 0.08);
}
.jw-service-card {
  background: #0b1926;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.jw-service-card:hover { background: #0f2030; }
.jw-service-card:hover .jw-svc-bar { width: 100%; }

.jw-svc-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #39D353;
  width: 0;
  transition: width 0.3s ease;
}
.jw-svc-icon {
  font-size: 28px;
  color: #39D353;
  margin-bottom: 16px;
  display: block;
}
.jw-svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.jw-svc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #5a7080;
}
.jw-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #39D353;
  text-decoration: none;
}

/* ── Portfolio ── */
.jw-portfolio {
  padding: 72px 32px;
  background: #07111F;
}
.jw-portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.jw-portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 4px;
}
.jw-portfolio-item {
  background: #0f2030;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.jw-portfolio-item:first-child { grid-row: 1 / 3; }

.jw-portfolio-pattern {
  position: absolute;
  inset: 0;
  display: grid;
}
.jw-portfolio-pattern div { border: 0.5px solid rgba(57, 211, 83, 0.06); }

.jw-portfolio-item:nth-child(1) .jw-portfolio-pattern { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(8, 1fr); }
.jw-portfolio-item:nth-child(2) .jw-portfolio-pattern { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
.jw-portfolio-item:nth-child(3) .jw-portfolio-pattern { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); }
.jw-portfolio-item:nth-child(4) .jw-portfolio-pattern { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); }
.jw-portfolio-item:nth-child(5) .jw-portfolio-pattern { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); }

.jw-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}
.jw-portfolio-item:hover .jw-portfolio-overlay { opacity: 1; }

.jw-portfolio-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #39D353;
  font-weight: 500;
  margin-bottom: 4px;
}
.jw-portfolio-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
}
.jw-portfolio-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0.12;
}
.jw-portfolio-placeholder i { font-size: 32px; color: #39D353; }
.jw-portfolio-placeholder span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #39D353; }

/* ── Testimonials ── */
.jw-testimonials {
  padding: 72px 32px;
  background: #0b1926;
}
.jw-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.jw-testimonial-card {
  background: #07111F;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 28px 24px;
  position: relative;
}
.jw-testimonial-card::before {
  content: '"';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: #39D353;
  opacity: 0.12;
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
}
.jw-stars {
  color: #39D353;
  font-size: 13px;
  margin-bottom: 12px;
}
.jw-testimonial-text {
  font-size: 13px;
  line-height: 1.75;
  color: #7a8fa0;
  margin-bottom: 18px;
  position: relative;
}
.jw-testimonial-author {
  font-weight: 500;
  font-size: 13px;
  color: #c8d5df;
}
.jw-testimonial-location {
  font-size: 11px;
  color: #3d5060;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── CTA Strip ── */
.jw-cta {
  padding: 72px 32px;
  background: #07111F;
  border-top: 1px solid rgba(57, 211, 83, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.jw-cta-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.jw-cta-left h2 em {
  font-style: normal;
  color: #39D353;
}
.jw-cta-left p {
  font-size: 14px;
  color: #4d6070;
}
.jw-cta-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.jw-cta-input {
  background: #0b1926;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #e8edf2;
  width: 200px;
  outline: none;
  transition: border-color 0.2s;
}
.jw-cta-input::placeholder { color: #3a5060; }
.jw-cta-input:focus { border-color: rgba(57, 211, 83, 0.5); }

/* ── Footer ── */
.jw-footer {
  background: #050e17;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.jw-footer-copy {
  font-size: 12px;
  color: #2d4050;
  letter-spacing: 0.04em;
}
.jw-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.jw-footer-links a {
  font-size: 12px;
  color: #2d4050;
  text-decoration: none;
  transition: color 0.2s;
}
.jw-footer-links a:hover { color: #39D353; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .jw-services-grid { grid-template-columns: repeat(2, 1fr); }
  .jw-testimonials-grid { grid-template-columns: 1fr; }
  .jw-portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .jw-portfolio-item:first-child { grid-row: auto; }
  .jw-hero-stats { position: static; margin-top: 40px; justify-content: flex-start; }
  .jw-hero { flex-direction: column; align-items: flex-start; }
  .jw-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .jw-nav-links { display: none; }
  .jw-hero h1 { font-size: 52px; }
  .jw-services-grid { grid-template-columns: 1fr; }
  .jw-portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .jw-cta-form { flex-direction: column; width: 100%; }
  .jw-cta-input { width: 100%; }
  .jw-hero-content { padding: 48px 24px; }
  .jw-services, .jw-portfolio, .jw-testimonials, .jw-cta { padding: 48px 20px; }
  .jw-footer { flex-direction: column; align-items: flex-start; }
}